diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/README.md b/lib/node_modules/@stdlib/math/base/special/sincosdf/README.md new file mode 100644 index 000000000000..b058d78db530 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/README.md @@ -0,0 +1,207 @@ + + +# sincosdf + +> Simultaneously compute the [sine][@stdlib/math/base/special/sindf] and [cosine][@stdlib/math/base/special/cosdf] of an angle measured in degrees (single-precision). + +
+ +## Usage + +```javascript +var sincosdf = require( '@stdlib/math/base/special/sincosdf' ); +``` + +#### sincosdf( x ) + +Simultaneously computes the [sine][@stdlib/math/base/special/sindf] and [cosine][@stdlib/math/base/special/cosdf] of an angle measured in degrees (single-precision). + +```javascript +var v = sincosdf( 0.0 ); +// returns [ ~0.0, ~1.0 ] + +v = sincosdf( 90.0 ); +// returns [ ~1.0, ~0.0 ] + +v = sincosdf( -30.0 ); +// returns [ ~-0.5, ~0.8660254 ] +``` + +#### sincosdf.assign( x, out, stride, offset ) + +Simultaneously computes the [sine][@stdlib/math/base/special/sindf] and [cosine][@stdlib/math/base/special/cosdf] of an angle measured in degrees and assigns the results to a provided output array. + +```javascript +var Float32Array = require( '@stdlib/array/float32' ); + +var out = new Float32Array( 2 ); + +var v = sincosdf.assign( 0.0, out, 1, 0 ); +// returns [ ~0.0, ~1.0 ] + +var bool = ( v === out ); +// returns true +``` + +
+ + + +
+ +## Examples + + + +```javascript +var uniform = require( '@stdlib/random/array/uniform' ); +var sincosdf = require( '@stdlib/math/base/special/sincosdf' ); + +var opts = { + 'dtype': 'float32' +}; +var x = uniform( 100, -360.0, 360.0, opts ); + +var y; +var i; +for ( i = 0; i < x.length; i++ ) { + y = sincosdf( x[ i ] ); + console.log( 'sincosdf(%d) = [ %d, %d ]', x[ i ], y[ 0 ], y[ 1 ] ); +} +``` + +
+ + + + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/math/base/special/sincosdf.h" +``` + +#### stdlib_base_sincosdf( x, &sine, &cosine ) + +Simultaneously computes the [sine][@stdlib/math/base/special/sindf] and [cosine][@stdlib/math/base/special/cosdf] of an angle measured in degrees. + +```c +float cosine; +float sine; + +stdlib_base_sincosdf( 4.0f, &sine, &cosine ); +``` + +The function accepts the following arguments: + +- **x**: `[in] float` input value. +- **sine**: `[out] float*` destination for the sine. +- **cosine**: `[out] float*` destination for the cosine. + +```c +void stdlib_base_sincosdf( const float x, float *sine, float *cosine ); +``` + +
+ + + + + +
+ +
+ + + + + +
+ +### Examples + +```c +#include "stdlib/math/base/special/sincosdf.h" +#include + +int main( void ) { + const float x[] = { 0.0f, 90.0f, 180.0f, 360.0f }; + + float cosine; + float sine; + int i; + for ( i = 0; i < 4; i++ ) { + stdlib_base_sincosdf( x[ i ], &sine, &cosine ); + printf( "x: %f => sine: %f, cosine: %f\n", x[ i ], sine, cosine ); + } +} +``` + +
+ + + +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/sincosdf/benchmark/benchmark.js new file mode 100644 index 000000000000..ec293a502878 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/benchmark/benchmark.js @@ -0,0 +1,135 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var bench = require( '@stdlib/bench' ); +var uniform = require( '@stdlib/random/array/uniform' ); +var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var sindf = require( '@stdlib/math/base/special/sindf' ); +var cosdf = require( '@stdlib/math/base/special/cosdf' ); +var format = require( '@stdlib/string/format' ); +var pkg = require( './../package.json' ).name; +var sincosdf = require( './../lib' ); + + +// MAIN // + +bench( pkg, function benchmark( b ) { + var x; + var y; + var i; + + x = uniform( 100, -10.0, 10.0, { + 'dtype': 'float32' + }); + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + y = sincosdf( x[ i%x.length ] ); + if ( isnanf( y[0] ) || isnanf( y[1] ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnanf( y[0] ) || isnanf( y[1] ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); + +bench( format( '%s::separate-evaluation', pkg ), function benchmark( b ) { + var x; + var y; + var i; + + x = uniform( 100, -10.0, 10.0, { + 'dtype': 'float32' + }); + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + y = [ + sindf( x[ i%x.length ] ), + cosdf( x[ i%x.length ] ) + ]; + if ( isnanf( y[0] ) || isnanf( y[1] ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnanf( y[0] ) || isnanf( y[1] ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); + +bench( format( '%s:assign', pkg ), function benchmark( b ) { + var x; + var y; + var i; + + x = uniform( 100, -10.0, 10.0, { + 'dtype': 'float32' + }); + y = [ 0.0, 0.0 ]; + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + sincosdf.assign( x[ i%x.length ], y, 1, 0 ); + if ( isnanf( y[0] ) || isnanf( y[1] ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnanf( y[0] ) || isnanf( y[1] ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); + +bench( format( '%s::separate-evaluation,in-place', pkg ), function benchmark( b ) { + var x; + var y; + var i; + + x = uniform( 100, -10.0, 10.0, { + 'dtype': 'float32' + }); + y = [ 0.0, 0.0 ]; + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + y[0] = sindf( x[ i%x.length ] ); + y[1] = cosdf( x[ i%x.length ] ); + if ( isnanf( y[0] ) || isnanf( y[1] ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnanf( y[0] ) || isnanf( y[1] ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/sincosdf/benchmark/benchmark.native.js new file mode 100644 index 000000000000..e5327c42e14b --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/benchmark/benchmark.native.js @@ -0,0 +1,64 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var resolve = require( 'path' ).resolve; +var bench = require( '@stdlib/bench' ); +var uniform = require( '@stdlib/random/array/uniform' ); +var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var tryRequire = require( '@stdlib/utils/try-require' ); +var format = require( '@stdlib/string/format' ); +var pkg = require( './../package.json' ).name; + + +// VARIABLES // + +var sincosdf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( sincosdf instanceof Error ) +}; + + +// MAIN // + +bench( format( '%s::native', pkg ), opts, function benchmark( b ) { + var x; + var y; + var i; + + x = uniform( 100, -10.0, 10.0, { + 'dtype': 'float32' + }); + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + y = sincosdf( x[ i % x.length ] ); + if ( isnanf( y[ 0 ] ) || isnanf( y[ 1 ] ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnanf( y[ 0 ] ) || isnanf( y[ 1 ] ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/benchmark/c/Makefile b/lib/node_modules/@stdlib/math/base/special/sincosdf/benchmark/c/Makefile new file mode 100644 index 000000000000..979768abbcec --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/benchmark/c/Makefile @@ -0,0 +1,146 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2026 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`): +INCLUDE ?= + +# List of source files: +SOURCE_FILES ?= + +# List of libraries (e.g., `-lopenblas -lpthread`): +LIBRARIES ?= + +# List of library paths (e.g., `-L /foo/bar -L /beep/boop`): +LIBPATH ?= + +# List of C targets: +c_targets := benchmark.out + + +# RULES # + +#/ +# Compiles source files. +# +# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`) +# @param {string} [CFLAGS] - C compiler options +# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`) +# @param {string} [SOURCE_FILES] - list of source files +# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`) +# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`) +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler (e.g., `gcc`) +# @param {string} CFLAGS - C compiler options +# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`) +# @param {string} SOURCE_FILES - list of source files +# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`) +# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`) +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) + +#/ +# Runs compiled benchmarks. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/math/base/special/sincosdf/benchmark/c/benchmark.c new file mode 100644 index 000000000000..440f820bc45b --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/benchmark/c/benchmark.c @@ -0,0 +1,140 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/sincosdf.h" +#include +#include +#include +#include + +#define NAME "sincosdf" +#define ITERATIONS 1000000 +#define REPEATS 3 + +/** +* Prints the TAP version. +*/ +static void print_version( void ) { + printf( "TAP version 13\n" ); +} + +/** +* Prints the TAP summary. +* +* @param total total number of tests +* @param passing total number of passing tests +*/ +static void print_summary( int total, int passing ) { + printf( "#\n" ); + printf( "1..%d\n", total ); + printf( "# total %d\n", total ); + printf( "# pass %d\n", passing ); + printf( "#\n" ); + printf( "# ok\n" ); +} + +/** +* Prints benchmark results. +* +* @param elapsed elapsed time in seconds +*/ +static void print_results( double elapsed ) { + double rate = (double)ITERATIONS / elapsed; + printf( " ---\n" ); + printf( " iterations: %d\n", ITERATIONS ); + printf( " elapsed: %0.9f\n", elapsed ); + printf( " rate: %0.9f\n", rate ); + printf( " ...\n" ); +} + +/** +* Returns a clock time. +* +* @return clock time +*/ +static double tic( void ) { + struct timeval now; + gettimeofday( &now, NULL ); + return (double)now.tv_sec + (double)now.tv_usec / 1.0e6; +} + +/** +* Generates a random float on the interval [min,max). +* +* @param min minimum value (inclusive) +* @param max maximum value (exclusive) +* @return random number +*/ +static float random_uniform( const float min, const float max ) { + float v = (float)rand() / ( (float)RAND_MAX + 1.0f ); + return min + ( v * (max - min) ); +} + +/** +* Runs a benchmark. +* +* @return elapsed time in seconds +*/ +static double benchmark( void ) { + float x[ 100 ]; + double elapsed; + float cosine; + float sine; + double t; + int i; + + // Generate random angles in degrees: + for ( i = 0; i < 100; i++ ) { + x[ i ] = random_uniform( -10.0f, 10.0f ); + } + + t = tic(); + for ( i = 0; i < ITERATIONS; i++ ) { + stdlib_base_sincosdf( x[ i % 100 ], &sine, &cosine ); + if ( sine != sine || cosine != cosine ) { + printf( "unexpected results\n" ); + break; + } + } + elapsed = tic() - t; + + if ( sine != sine || cosine != cosine ) { + printf( "unexpected results\n" ); + } + return elapsed; +} + +/** +* Main execution sequence. +*/ +int main( void ) { + double elapsed; + int i; + + // Seed RNG: + srand( time( NULL ) ); + + print_version(); + for ( i = 0; i < REPEATS; i++ ) { + printf( "# c::native::%s\n", NAME ); + elapsed = benchmark(); + print_results( elapsed ); + printf( "ok %d benchmark finished\n", i+1 ); + } + print_summary( REPEATS, REPEATS ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/binding.gyp b/lib/node_modules/@stdlib/math/base/special/sincosdf/binding.gyp new file mode 100644 index 000000000000..0d6508a12e99 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/binding.gyp @@ -0,0 +1,170 @@ +# @license Apache-2.0 +# +# Copyright (c) 2026 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# A `.gyp` file for building a Node.js native add-on. +# +# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md +# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md +{ + # List of files to include in this file: + 'includes': [ + './include.gypi', + ], + + # Define variables to be used throughout the configuration for all targets: + 'variables': { + # Target name should match the add-on export name: + 'addon_target_name%': 'addon', + + # Set variables based on the host OS: + 'conditions': [ + [ + 'OS=="win"', + { + # Define the object file suffix: + 'obj': 'obj', + }, + { + # Define the object file suffix: + 'obj': 'o', + } + ], # end condition (OS=="win") + ], # end conditions + }, # end variables + + # Define compile targets: + 'targets': [ + + # Target to generate an add-on: + { + # The target name should match the add-on export name: + 'target_name': '<(addon_target_name)', + + # Define dependencies: + 'dependencies': [], + + # Define directories which contain relevant include headers: + 'include_dirs': [ + # Local include directory: + '<@(include_dirs)', + ], + + # List of source files: + 'sources': [ + '<@(src_files)', + ], + + # Settings which should be applied when a target's object files are used as linker input: + 'link_settings': { + # Define libraries: + 'libraries': [ + '<@(libraries)', + ], + + # Define library directories: + 'library_dirs': [ + '<@(library_dirs)', + ], + }, + + # C/C++ compiler flags: + 'cflags': [ + # Enable commonly used warning options: + '-Wall', + + # Aggressive optimization: + '-O3', + ], + + # C specific compiler flags: + 'cflags_c': [ + # Specify the C standard to which a program is expected to conform: + '-std=c99', + ], + + # C++ specific compiler flags: + 'cflags_cpp': [ + # Specify the C++ standard to which a program is expected to conform: + '-std=c++11', + ], + + # Linker flags: + 'ldflags': [], + + # Apply conditions based on the host OS: + 'conditions': [ + [ + 'OS=="mac"', + { + # Linker flags: + 'ldflags': [ + '-undefined dynamic_lookup', + '-Wl,-no-pie', + '-Wl,-search_paths_first', + ], + }, + ], # end condition (OS=="mac") + [ + 'OS!="win"', + { + # C/C++ flags: + 'cflags': [ + # Generate platform-independent code: + '-fPIC', + ], + }, + ], # end condition (OS!="win") + ], # end conditions + }, # end target <(addon_target_name) + + # Target to copy a generated add-on to a standard location: + { + 'target_name': 'copy_addon', + + # Declare that the output of this target is not linked: + 'type': 'none', + + # Define dependencies: + 'dependencies': [ + # Require that the add-on be generated before building this target: + '<(addon_target_name)', + ], + + # Define a list of actions: + 'actions': [ + { + 'action_name': 'copy_addon', + 'message': 'Copying addon...', + + # Explicitly list the inputs in the command-line invocation below: + 'inputs': [], + + # Declare the expected outputs: + 'outputs': [ + '<(addon_output_dir)/<(addon_target_name).node', + ], + + # Define the command-line invocation: + 'action': [ + 'cp', + '<(PRODUCT_DIR)/<(addon_target_name).node', + '<(addon_output_dir)/<(addon_target_name).node', + ], + }, + ], # end actions + }, # end target copy_addon + ], # end targets +} diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/sincosdf/docs/repl.txt new file mode 100644 index 000000000000..fcd133f6dc48 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/docs/repl.txt @@ -0,0 +1,61 @@ + +{{alias}}( x ) + Simultaneously computes the sine and cosine of an angle measured in + degrees (single-precision). + + Parameters + ---------- + x: number + Input value (in degrees). + + Returns + ------- + y: Array + Sine and cosine. + + Examples + -------- + > var y = {{alias}}( 0.0 ) + [ ~0.0, ~1.0 ] + > y = {{alias}}( 90.0 ) + [ ~1.0, ~0.0 ] + > y = {{alias}}( -30.0 ) + [ ~-0.5, ~0.866 ] + > y = {{alias}}( NaN ) + [ NaN, NaN ] + + +{{alias}}.assign( x, out, stride, offset ) + Simultaneously computes the sine and cosine of an angle measured in + degrees (single-precision) and assigns the results to a provided output + array. + + Parameters + ---------- + x: number + Input value (in degrees). + + out: Array|TypedArray|Object + Output array. + + stride: integer + Output array stride. + + offset: integer + Output array index offset. + + Returns + ------- + y: Array|TypedArray|Object + Sine and cosine. + + Examples + -------- + > var out = new {{alias:@stdlib/array/float32}}( 2 ); + > var v = {{alias}}.assign( 0.0, out, 1, 0 ) + [ ~0.0, ~1.0 ] + > var bool = ( v === out ) + true + + See Also + -------- diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/sincosdf/docs/types/index.d.ts new file mode 100644 index 000000000000..a179ed7d3685 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/docs/types/index.d.ts @@ -0,0 +1,98 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +// TypeScript Version: 4.1 + +/// + +interface SinCosdf { + /** + * Simultaneously computes the sine and cosine of an angle measured in degrees (single-precision). + * + * @param x - input value (in degrees) + * @returns sine and cosine + * + * @example + * var v = sincosdf( 0.0 ); + * // returns [ ~0.0, ~1.0 ] + * + * @example + * var v = sincosdf( 90.0 ); + * // returns [ ~1.0, ~0.0 ] + * + * @example + * var v = sincosdf( -30.0 ); + * // returns [ ~-0.5, ~0.866 ] + * + * @example + * var v = sincosdf( NaN ); + * // returns [ NaN, NaN ] + */ + ( x: number ): Array; + + /** + * Simultaneously computes the sine and cosine of an angle measured in degrees (single-precision) and assigns the results to a provided output array. + * + * @param x - input value (in degrees) + * @param out - output array + * @param stride - output array stride + * @param offset - output array index offset + * @returns sine and cosine + * + * @example + * var Float32Array = require( '@stdlib/array/float32' ); + * + * var out = new Float32Array( 2 ); + * + * var v = sincosdf.assign( 0.0, out, 1, 0 ); + * // returns [ ~0.0, ~1.0 ] + * + * var bool = ( v === out ); + * // returns true + */ + assign>( ...args: [ number, T, number, number ] ): T; +} + +/** +* Simultaneously computes the sine and cosine of an angle measured in degrees (single-precision). +* +* @param x - input value (in degrees) +* @returns sine and cosine +* +* @example +* var v = sincosdf( 0.0 ); +* // returns [ ~0.0, ~1.0 ] +* +* @example +* var v = sincosdf( 90.0 ); +* // returns [ ~1.0, ~0.0 ] +* +* @example +* var v = sincosdf( -30.0 ); +* // returns [ ~-0.5, ~0.866 ] +* +* @example +* var v = sincosdf( NaN ); +* // returns [ NaN, NaN ] +*/ +declare var sincosdf: SinCosdf; + + +// EXPORTS // + +export = sincosdf; diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/sincosdf/docs/types/test.ts new file mode 100644 index 000000000000..7d890b27e444 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/docs/types/test.ts @@ -0,0 +1,112 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +/// + +import sincosdf = require( './index' ); + + +// TESTS // + +// The function returns an array of numbers... +{ + sincosdf( 1.0 ); // $ExpectType number[] +} + +// The compiler throws an error if the function is provided an argument other than a number... +{ + sincosdf( true ); // $ExpectError + sincosdf( false ); // $ExpectError + sincosdf( null ); // $ExpectError + sincosdf( undefined ); // $ExpectError + sincosdf( '5' ); // $ExpectError + sincosdf( [] ); // $ExpectError + sincosdf( {} ); // $ExpectError + sincosdf( ( x: number ): number => x ); // $ExpectError +} + +// The compiler throws an error if the function is provided insufficient arguments... +{ + sincosdf(); // $ExpectError +} + +// Attached to the main export is an `assign` method which returns an array-like object containing numbers... +{ + const out = [ 0.0, 0.0 ]; + + sincosdf.assign( 3.14e-319, out, 1, 0 ); // $ExpectType number[] +} + +// The compiler throws an error if the `assign` method is provided a first argument which is not a number... +{ + const out = [ 0.0, 0.0 ]; + + sincosdf.assign( true, out, 1, 0 ); // $ExpectError + sincosdf.assign( false, out, 1, 0 ); // $ExpectError + sincosdf.assign( '5', out, 1, 0 ); // $ExpectError + sincosdf.assign( null, out, 1, 0 ); // $ExpectError + sincosdf.assign( [], out, 1, 0 ); // $ExpectError + sincosdf.assign( {}, out, 1, 0 ); // $ExpectError + sincosdf.assign( ( x: number ): number => x, out, 1, 0 ); // $ExpectError +} + +// The compiler throws an error if the `assign` method is provided a second argument which is not an array-like object... +{ + sincosdf.assign( 1.0, 1, 1, 0 ); // $ExpectError + sincosdf.assign( 1.0, true, 1, 0 ); // $ExpectError + sincosdf.assign( 1.0, false, 1, 0 ); // $ExpectError + sincosdf.assign( 1.0, null, 1, 0 ); // $ExpectError + sincosdf.assign( 1.0, {}, 1, 0 ); // $ExpectError +} + +// The compiler throws an error if the `assign` method is provided a third argument which is not a number... +{ + const out = [ 0.0, 0.0 ]; + + sincosdf.assign( 1.0, out, '5', 0 ); // $ExpectError + sincosdf.assign( 1.0, out, true, 0 ); // $ExpectError + sincosdf.assign( 1.0, out, false, 0 ); // $ExpectError + sincosdf.assign( 1.0, out, null, 0 ); // $ExpectError + sincosdf.assign( 1.0, out, [], 0 ); // $ExpectError + sincosdf.assign( 1.0, out, {}, 0 ); // $ExpectError + sincosdf.assign( 1.0, out, ( x: number ): number => x, 0 ); // $ExpectError +} + +// The compiler throws an error if the `assign` method is provided a fourth argument which is not a number... +{ + const out = [ 0.0, 0.0 ]; + + sincosdf.assign( 1.0, out, 1, '5' ); // $ExpectError + sincosdf.assign( 1.0, out, 1, true ); // $ExpectError + sincosdf.assign( 1.0, out, 1, false ); // $ExpectError + sincosdf.assign( 1.0, out, 1, null ); // $ExpectError + sincosdf.assign( 1.0, out, 1, [] ); // $ExpectError + sincosdf.assign( 1.0, out, 1, {} ); // $ExpectError + sincosdf.assign( 1.0, out, 1, ( x: number ): number => x ); // $ExpectError +} + +// The compiler throws an error if the `assign` method is provided an unsupported number of arguments... +{ + const out = [ 0.0, 0.0 ]; + + sincosdf.assign(); // $ExpectError + sincosdf.assign( 1.0 ); // $ExpectError + sincosdf.assign( 1.0, out ); // $ExpectError + sincosdf.assign( 1.0, out, 1 ); // $ExpectError + sincosdf.assign( 1.0, out, 1, 0, 1 ); // $ExpectError +} diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/sincosdf/examples/c/Makefile new file mode 100644 index 000000000000..c8f8e9a1517b --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/examples/c/Makefile @@ -0,0 +1,146 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2026 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`): +INCLUDE ?= + +# List of source files: +SOURCE_FILES ?= + +# List of libraries (e.g., `-lopenblas -lpthread`): +LIBRARIES ?= + +# List of library paths (e.g., `-L /foo/bar -L /beep/boop`): +LIBPATH ?= + +# List of C targets: +c_targets := example.out + + +# RULES # + +#/ +# Compiles source files. +# +# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`) +# @param {string} [CFLAGS] - C compiler options +# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`) +# @param {string} [SOURCE_FILES] - list of source files +# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`) +# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`) +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler (e.g., `gcc`) +# @param {string} CFLAGS - C compiler options +# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`) +# @param {string} SOURCE_FILES - list of source files +# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`) +# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`) +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) + +#/ +# Runs compiled examples. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/sincosdf/examples/c/example.c new file mode 100644 index 000000000000..c9eb8f995295 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/examples/c/example.c @@ -0,0 +1,33 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/sincosdf.h" +#include + +int main( void ) { + const float x[] = { 0.0f, 90.0f, 180.0f, 360.0f }; + + float cosine; + float sine; + int i; + for ( i = 0; i < 4; i++ ) { + stdlib_base_sincosdf( x[ i ], &sine, &cosine ); + printf( "x: %f => sine: %f, cosine: %f\n", x[ i ], sine, cosine ); + } + return 0; +} diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/examples/index.js b/lib/node_modules/@stdlib/math/base/special/sincosdf/examples/index.js new file mode 100644 index 000000000000..a715c12715c9 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/examples/index.js @@ -0,0 +1,35 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +var uniform = require( '@stdlib/random/array/uniform' ); +var sincosdf = require( './../lib' ); + +var opts = { + 'dtype': 'float32' +}; + +var x = uniform( 100, 0.0, 360.0, opts ); + +var y; +var i; +for ( i = 0; i < x.length; i++ ) { + y = sincosdf( x[ i ] ); + console.log( 'sincosdf(%d) = [ %d, %d ]', x[ i ], y[ 0 ], y[ 1 ] ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/include.gypi b/lib/node_modules/@stdlib/math/base/special/sincosdf/include.gypi new file mode 100644 index 000000000000..bee8d41a2caf --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/include.gypi @@ -0,0 +1,53 @@ +# @license Apache-2.0 +# +# Copyright (c) 2026 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# A GYP include file for building a Node.js native add-on. +# +# Main documentation: +# +# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md +# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md +{ + # Define variables to be used throughout the configuration for all targets: + 'variables': { + # Source directory: + 'src_dir': './src', + + # Include directories: + 'include_dirs': [ + '[ ~0.0, ~1.0 ] +* +* var bool = ( v === out ); +* // returns true +*/ + +// MODULES // + +var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' ); +var main = require( './main.js' ); +var assign = require( './assign.js' ); + + +// MAIN // + +setReadOnly( main, 'assign', assign ); + + +// EXPORTS // + +module.exports = main; diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/lib/main.js b/lib/node_modules/@stdlib/math/base/special/sincosdf/lib/main.js new file mode 100644 index 000000000000..969b320d6686 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/lib/main.js @@ -0,0 +1,57 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var assign = require( './assign.js' ); + + +// MAIN // + +/** +* Simultaneously computes the sine and cosine of an angle measured in degrees (single-precision). +* +* @param {number} x - input value (in degrees) +* @returns {Array} sine and cosine +* +* @example +* var v = sincosdf( 0.0 ); +* // returns [ ~0.0, ~1.0 ] +* +* @example +* var v = sincosdf( 90.0 ); +* // returns [ ~1.0, ~0.0 ] +* +* @example +* var v = sincosdf( -30.0 ); +* // returns [ ~-0.5, ~0.8660254 ] +* +* @example +* var v = sincosdf( NaN ); +* // returns [ NaN, NaN ] +*/ +function sincosdf( x ) { + return assign( x, [ 0.0, 0.0 ], 1, 0 ); +} + + +// EXPORTS // + +module.exports = sincosdf; diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/lib/native.js b/lib/node_modules/@stdlib/math/base/special/sincosdf/lib/native.js new file mode 100644 index 000000000000..d35874fd3176 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/lib/native.js @@ -0,0 +1,61 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var Float32Array = require( '@stdlib/array/float32' ); +var addon = require( './../src/addon.node' ); + + +// MAIN // + +/** +* Simultaneously computes the sine and cosine of an angle measured in degrees (single-precision). +* +* @private +* @param {number} x - input value (in degrees) +* @returns {Float32Array} sine and cosine +* +* @example +* var v = sincosdf( 0.0 ); +* // returns [ ~0.0, ~1.0 ] +* +* @example +* var v = sincosdf( 90.0 ); +* // returns [ ~1.0, ~0.0 ] +* +* @example +* var v = sincosdf( -30.0 ); +* // returns [ ~-0.5, ~0.8660254 ] +* +* @example +* var v = sincosdf( NaN ); +* // returns [ NaN, NaN ] +*/ +function sincosdf( x ) { + var out = new Float32Array( 2 ); + addon( x, out ); + return out; +} + + +// EXPORTS // + +module.exports = sincosdf; diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/manifest.json b/lib/node_modules/@stdlib/math/base/special/sincosdf/manifest.json new file mode 100644 index 000000000000..2b17d053ee20 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/manifest.json @@ -0,0 +1,78 @@ +{ + "options": { + "task": "build" + }, + "fields": [ + { + "field": "src", + "resolve": true, + "relative": true + }, + { + "field": "include", + "resolve": true, + "relative": true + }, + { + "field": "libraries", + "resolve": false, + "relative": false + }, + { + "field": "libpath", + "resolve": true, + "relative": false + } + ], + "confs": [ + { + "task": "build", + "src": [ + "./src/main.c" + ], + "include": [ + "./include" + ], + "libraries": [], + "libpath": [], + "dependencies": [ + "@stdlib/napi/argv", + "@stdlib/napi/argv-float", + "@stdlib/napi/argv-float32array", + "@stdlib/napi/export", + "@stdlib/math/base/special/sindf", + "@stdlib/math/base/special/cosdf" + ] + }, + { + "task": "benchmark", + "src": [ + "./src/main.c" + ], + "include": [ + "./include" + ], + "libraries": [], + "libpath": [], + "dependencies": [ + "@stdlib/math/base/special/sindf", + "@stdlib/math/base/special/cosdf" + ] + }, + { + "task": "examples", + "src": [ + "./src/main.c" + ], + "include": [ + "./include" + ], + "libraries": [], + "libpath": [], + "dependencies": [ + "@stdlib/math/base/special/sindf", + "@stdlib/math/base/special/cosdf" + ] + } + ] +} diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/package.json b/lib/node_modules/@stdlib/math/base/special/sincosdf/package.json new file mode 100644 index 000000000000..a63f864f1f24 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/package.json @@ -0,0 +1,71 @@ +{ + "name": "@stdlib/math/base/special/sincosdf", + "version": "0.0.0", + "description": "Simultaneously compute the sine and cosine of an angle measured in degrees (single precision).", + "license": "Apache-2.0 AND BSL-1.0", + "author": { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + }, + "contributors": [ + { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + } + ], + "main": "./lib", + "gypfile": true, + "directories": { + "benchmark": "./benchmark", + "doc": "./docs", + "example": "./examples", + "include": "./include", + "lib": "./lib", + "src": "./src", + "test": "./test" + }, + "types": "./docs/types", + "scripts": {}, + "homepage": "https://github.com/stdlib-js/stdlib", + "repository": { + "type": "git", + "url": "git://github.com/stdlib-js/stdlib.git" + }, + "bugs": { + "url": "https://github.com/stdlib-js/stdlib/issues" + }, + "dependencies": {}, + "devDependencies": {}, + "engines": { + "node": ">=0.10.0", + "npm": ">2.7.0" + }, + "os": [ + "aix", + "darwin", + "freebsd", + "linux", + "macos", + "openbsd", + "sunos", + "win32", + "windows" + ], + "keywords": [ + "stdlib", + "stdmath", + "mathematics", + "math", + "math.sin", + "math.cos", + "sin", + "cos", + "sincosdf", + "sine", + "cosine", + "trig", + "trigonometry", + "degrees", + "angle" + ] +} diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/src/Makefile b/lib/node_modules/@stdlib/math/base/special/sincosdf/src/Makefile new file mode 100644 index 000000000000..2caf905cedbe --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/src/Makefile @@ -0,0 +1,70 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2026 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + + +# RULES # + +#/ +# Removes generated files for building an add-on. +# +# @example +# make clean-addon +#/ +clean-addon: + $(QUIET) -rm -f *.o *.node + +.PHONY: clean-addon + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: clean-addon + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/src/addon.c b/lib/node_modules/@stdlib/math/base/special/sincosdf/src/addon.c new file mode 100644 index 000000000000..8ce1f94a0947 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/src/addon.c @@ -0,0 +1,41 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/sincosdf.h" +#include "stdlib/napi/argv.h" +#include "stdlib/napi/argv_float.h" +#include "stdlib/napi/argv_float32array.h" +#include "stdlib/napi/export.h" +#include + +/** +* Receives JavaScript callback invocation data. +* +* @param env environment under which the function is invoked +* @param info callback data +* @return Node-API value +*/ +static napi_value addon( napi_env env, napi_callback_info info ) { + STDLIB_NAPI_ARGV( env, info, argv, argc, 2 ); + STDLIB_NAPI_ARGV_FLOAT( env, x, argv, 0 ); + STDLIB_NAPI_ARGV_FLOAT32ARRAY( env, y, ylen, argv, 1 ); + stdlib_base_sincosdf( x, &y[ 0 ], &y[ 1 ] ); + return NULL; +} + +STDLIB_NAPI_MODULE_EXPORT_FCN( addon ) diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/src/main.c b/lib/node_modules/@stdlib/math/base/special/sincosdf/src/main.c new file mode 100644 index 000000000000..310b502e84bb --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/src/main.c @@ -0,0 +1,41 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/sincosdf.h" +#include "stdlib/math/base/special/sindf.h" +#include "stdlib/math/base/special/cosdf.h" + +/** +* Simultaneously computes the sine and cosine of an angle measured in degrees (single-precision). +* +* @param x input value (in degrees) +* @param sine destination to store the sine +* @param cosine destination to store the cosine +* +* @example +* float x = 0.0f; +* +* float sine; +* float cosine; +* stdlib_base_sincosdf( x, &sine, &cosine ); +*/ +void stdlib_base_sincosdf( const float x, float* sine, float* cosine ) { + *sine = stdlib_base_sindf( x ); + *cosine = stdlib_base_cosdf( x ); + return; +} diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/REQUIRE new file mode 100644 index 000000000000..308c3be89c85 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 1.5 +JSON 0.21 diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/huge_negative.json b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/huge_negative.json new file mode 100644 index 000000000000..e9e9b8dea731 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/huge_negative.json @@ -0,0 +1 @@ +{"sine":[-0.0,-0.99939084,-0.06975647,0.9945219,0.1391731,-0.9848077,-0.20791169,0.9702957,0.27563736,-0.95105654,-0.34202015,0.92718387,0.40673664,-0.1391731,-0.46947157,0.06975647,0.52991927,-0.0,-0.58778524,-0.06975647,0.64278764,0.1391731,-0.6946584,0.9848077,0.7431448,0.27563736,-0.27563736,0.99939084,0.82903755,0.40673664,-0.1391731,0.9945219,0.89879405,0.52991927,-0.0,0.9702957,0.95105654,0.64278764,0.1391731,0.92718387,0.9848077,0.7431448,0.27563736,0.8660254,0.99939084,-0.20791169,0.34202015,0.7880108,0.9945219,0.89879405,0.52991927,-0.0,-0.52991927,-0.89879405,0.06975647,0.58778524,0.92718387,0.9848077,0.7431448,0.27563736,-0.27563736,-0.7431448,-0.20791169,0.34202015,0.7880108,0.9945219,0.89879405,0.52991927,-0.0,-0.52991927,-0.46947157,0.06975647,0.58778524,0.92718387,0.9848077,0.7431448,0.27563736,-0.27563736,-0.6946584,-0.20791169,0.34202015,0.7880108,0.9945219,0.89879405,0.52991927,-0.0,-0.8660254,-0.46947157,0.06975647,0.58778524,0.40673664,0.9848077,-0.64278764,0.27563736,-0.9702957,-0.7431448,-0.20791169,-0.92718387,0.7880108,0.1391731,0.89879405,-0.82903755,-0.0,-0.8660254,-0.89879405,0.06975647,-0.7880108,0.92718387,-0.1391731,0.7431448,-0.95105654,-0.27563736,-0.6946584,-0.9848077,0.34202015,0.64278764,0.9945219,-0.40673664,0.52991927,-0.99939084,-0.52991927,-0.46947157,-0.9945219,0.58778524,0.40673664,0.9848077,-0.64278764,0.27563736,-0.9702957,-0.7431448,-0.20791169,0.95105654,0.7880108,0.1391731,0.89879405,-0.82903755,-0.0,-0.8660254,-0.89879405,0.06975647,0.82903755,0.92718387,-0.1391731,0.7431448,-0.95105654,-0.27563736,-0.6946584,-0.9848077,0.34202015,0.64278764,0.9945219,-0.40673664,0.52991927,-0.99939084,-0.52991927,-0.46947157,0.99939084,0.58778524,0.40673664,0.9848077,-0.64278764,0.27563736,-0.9702957,-0.7431448,-0.20791169,0.95105654,0.7880108,0.1391731,0.89879405,-0.82903755,-0.0,-0.8660254,0.8660254,0.06975647,0.82903755,0.92718387,-0.1391731,0.7431448,-0.95105654,-0.27563736,0.7431448,0.9702957,0.34202015,-0.58778524,-0.9848077,-0.40673664,0.52991927,0.99939084,0.46947157,-0.46947157,-0.9945219,-0.52991927,0.40673664,0.9848077,0.6946584,-0.34202015,-0.9702957,-0.7431448,0.27563736,0.95105654,0.7880108,-0.06975647,-0.92718387,-0.82903755,-0.0,0.89879405,0.8660254,0.06975647,-0.7880108,-0.89879405,-0.1391731,0.7431448,0.9702957,0.20791169,-0.6946584,-0.9848077,-0.27563736,0.64278764,0.9945219,0.46947157,-0.58778524,-0.99939084,-0.52991927,0.52991927,0.99939084,0.58778524,-0.34202015,-0.9945219,-0.64278764,0.27563736,0.9848077,0.6946584,-0.20791169,-0.92718387,-0.7431448,0.1391731,0.89879405,0.8660254,-0.06975647,-0.8660254,-0.89879405,-0.0,0.82903755,0.92718387,0.20791169,-0.7880108,-0.95105654,-0.27563736,0.7431448,0.9702957,0.34202015,-0.58778524,-0.9848077,-0.40673664,0.52991927,0.9945219,0.46947157,-0.46947157,-0.9945219,-0.52991927,0.40673664,0.9848077,0.58778524,-0.34202015,-0.9702957,-0.7431448,0.27563736,0.95105654,0.7880108,-0.06975647,-0.92718387,-0.82903755,-0.0,0.89879405,0.8660254,0.06975647,-0.7880108,-0.89879405,-0.1391731,0.7431448,0.92718387,0.20791169,-0.6946584,-0.9848077,-0.27563736,0.64278764,0.9945219,0.34202015,-0.58778524,-0.99939084,-0.52991927,0.52991927,0.99939084,0.58778524,-0.34202015,-0.9945219,-0.64278764,0.27563736,0.9848077,0.6946584,-0.20791169,-0.92718387,-0.7431448,0.1391731,0.89879405,0.7880108,-0.06975647,-0.8660254,-0.89879405,-0.0,0.82903755,0.92718387,0.06975647,-0.7880108,-0.95105654,-0.27563736,0.7431448,0.9702957,0.34202015,-0.6946584,-0.9848077,-0.40673664,0.52991927,0.9945219,0.46947157,-0.46947157,-0.9945219,-0.52991927,0.40673664,0.9848077,0.58778524,-0.34202015,-0.9702957,-0.7431448,0.27563736,0.95105654,0.7880108,-0.20791169,-0.92718387,-0.82903755,-0.0,0.89879405,0.8660254,0.06975647,-0.8660254,-0.89879405,-0.1391731,0.7431448,0.92718387,0.20791169,-0.6946584,-0.9848077,-0.27563736,0.64278764,0.9945219,0.34202015,-0.58778524,-0.99939084,-0.52991927,0.40673664,0.9945219,0.46947157,-0.46947157,-0.9945219,-0.64278764,0.27563736,0.95105654,0.7880108,-0.34202015,-0.9702957,-0.7431448,0.1391731,0.89879405,0.8660254,0.06975647,-0.92718387,-0.82903755,-0.0,0.82903755,0.92718387,0.20791169,-0.6946584,-0.89879405,-0.1391731,0.7431448,0.9702957,0.34202015,-0.58778524,-0.99939084,-0.27563736,0.64278764,0.9945219,0.46947157,-0.46947157,-0.9945219,-0.64278764,0.52991927,0.99939084,0.58778524,-0.34202015,-0.9702957,-0.7431448,0.1391731,0.9848077,0.6946584,-0.20791169,-0.92718387,-0.82903755,-0.0,0.82903755,0.7880108,-0.06975647,-0.8660254,-0.89879405,-0.1391731,0.7431448,0.9702957,0.34202015,-0.7880108,-0.95105654,-0.27563736,0.64278764,0.9945219,0.46947157,-0.46947157,-0.9848077,-0.40673664,0.52991927,0.99939084,0.58778524,-0.34202015,-0.9702957,-0.52991927,0.40673664,0.9848077,0.6946584,-0.20791169,-0.92718387,-0.82903755,0.27563736,0.95105654,0.7880108,-0.06975647,-0.8660254,-0.89879405,-0.1391731,0.89879405,0.8660254,0.06975647,-0.7880108,-0.95105654,-0.27563736,0.64278764,0.92718387,0.20791169,-0.6946584,-0.9848077,-0.40673664,0.52991927,0.99939084,0.34202015,-0.58778524,-0.99939084,-0.52991927,0.40673664,0.9848077,0.6946584,-0.46947157,-0.9945219,-0.64278764,0.27563736,0.95105654,0.7880108,-0.06975647,-0.8660254,-0.7431448,0.1391731,0.89879405,0.8660254,0.06975647,-0.7880108,-0.95105654,-0.0,0.82903755,0.92718387,0.20791169,-0.6946584,-0.9848077,-0.40673664,0.7431448,0.9702957,0.34202015,-0.58778524,-0.99939084,-0.52991927,0.40673664,0.9945219,0.46947157,-0.46947157,-0.9945219,-0.64278764,0.27563736,0.95105654,0.58778524,-0.34202015,-0.9702957,-0.7431448,0.1391731,0.89879405,0.8660254,-0.20791169,-0.92718387,-0.82903755,-0.0,0.82903755,0.92718387,0.20791169,-0.8660254,-0.89879405,-0.1391731,0.7431448,0.9702957,0.34202015,-0.58778524,-0.95105654,-0.27563736,0.64278764,0.9945219,0.46947157,-0.46947157,-0.9945219,-0.64278764,0.52991927,0.99939084,0.58778524,-0.34202015,-0.9702957,-0.7431448,0.1391731,0.9848077,0.6946584,-0.20791169,-0.92718387,-0.82903755,-0.0,0.82903755,0.7880108,-0.06975647,-0.8660254,-0.89879405,-0.1391731,0.7431448,0.9702957,0.06975647,-0.7880108,-0.95105654,-0.27563736,0.64278764,0.9945219,0.46947157,-0.6946584,-0.9848077,-0.40673664,0.52991927,0.99939084,0.58778524,-0.34202015,-0.99939084,-0.52991927,0.40673664,0.9848077,0.6946584,-0.20791169,-0.92718387,-0.64278764,0.27563736,0.95105654,0.7880108,-0.06975647,-0.8660254,-0.89879405,0.1391731,0.89879405,0.8660254,0.06975647,-0.7880108,-0.95105654,-0.27563736,0.64278764,0.92718387,0.20791169,-0.6946584,-0.9848077,-0.40673664,0.52991927,0.99939084,0.34202015,-0.58778524,-0.99939084,-0.52991927,0.40673664,0.9848077,0.6946584,-0.46947157,-0.9945219,-0.64278764,0.27563736,0.95105654,0.7880108,-0.06975647,-0.9702957,-0.7431448,0.1391731,0.89879405,0.8660254,0.06975647,-0.7880108,-0.82903755,-0.0,0.82903755,0.92718387,0.20791169,-0.6946584,-0.9848077,-0.1391731,0.7431448,0.9702957,0.34202015,-0.58778524,-0.99939084,-0.52991927,0.64278764,0.9945219,0.46947157,-0.46947157,-0.9945219,-0.64278764,0.27563736,0.99939084,0.58778524,-0.34202015,-0.9702957,-0.7431448,0.1391731,0.89879405,0.8660254,-0.20791169,-0.92718387,-0.82903755,-0.0,0.82903755,0.92718387,0.20791169,-0.8660254,-0.89879405,-0.1391731,0.7431448,0.9702957,0.34202015,-0.58778524,-0.95105654,-0.27563736,0.64278764,0.9945219,0.46947157,-0.46947157,-0.9945219,-0.40673664,0.52991927,0.99939084,0.58778524,-0.34202015,-0.9702957,-0.7431448,0.40673664,0.9848077,0.6946584,-0.20791169,-0.92718387,-0.82903755,-0.0,0.95105654,0.7880108,-0.06975647,-0.8660254,-0.89879405,-0.1391731,0.7431448,0.8660254,0.06975647,-0.7880108,-0.95105654,-0.27563736,0.64278764,0.9945219,0.46947157,-0.6946584,-0.9848077,-0.40673664,0.52991927,0.99939084,0.58778524,-0.34202015,-0.99939084,-0.52991927,0.40673664,0.9848077,0.6946584,-0.20791169,-0.92718387,-0.64278764,-0.0,0.95105654,0.58778524,-0.06975647,-0.9702957,-0.89879405,0.1391731,0.7431448,0.8660254,-0.20791169,-0.7880108,-0.82903755,-0.27563736,0.82903755,0.9945219,0.20791169,-0.46947157,-0.9848077,-0.1391731,0.52991927,0.9702957,0.58778524,-0.58778524,-0.9702957,-0.52991927,0.64278764,0.9848077,0.46947157,-0.20791169,-0.9945219,-0.82903755,0.27563736,0.99939084,0.7880108,-0.34202015,-0.8660254,-0.7431448,-0.1391731,0.89879405,0.6946584,0.06975647,-0.92718387,-0.95105654,-0.0,0.64278764,0.92718387,-0.06975647,-0.6946584,-0.89879405,-0.40673664,0.7431448,0.99939084,0.34202015,-0.7880108,-0.99939084,-0.27563736,0.40673664,0.9945219,0.6946584,-0.46947157,-0.9848077,-0.64278764,0.52991927,0.95105654,0.58778524,-0.06975647,-0.9702957,-0.52991927,0.1391731,0.9848077,0.8660254,-0.20791169,-0.7880108,-0.82903755,0.27563736,0.82903755,0.7880108,0.20791169,-0.8660254,-0.9848077,-0.1391731,0.89879405,0.9702957,0.06975647,-0.58778524,-0.95105654,-0.52991927,0.64278764,0.92718387,0.46947157,-0.6946584,-0.9945219,-0.40673664,0.27563736,0.99939084,0.34202015,-0.34202015,-0.99939084,-0.7431448,0.40673664,0.89879405,0.6946584,-0.46947157,-0.92718387,-0.64278764,-0.0,0.95105654,0.92718387,-0.06975647,-0.9702957,-0.89879405,0.1391731,0.7431448,0.8660254,0.34202015,-0.7880108,-0.82903755,-0.27563736,0.82903755,0.9945219,0.20791169,-0.46947157,-0.9848077,-0.64278764,0.52991927,0.9702957,0.58778524,-0.58778524,-0.9702957,-0.52991927,0.1391731,0.9848077,0.46947157,-0.20791169,-0.9945219,-0.82903755,0.27563736,0.82903755,0.7880108,-0.34202015,-0.8660254,-0.7431448,-0.1391731,0.89879405,0.9702957,0.06975647,-0.92718387,-0.95105654,-0.0,0.64278764,0.92718387,0.46947157,-0.6946584,-0.89879405,-0.40673664,0.7431448,0.99939084,0.34202015,-0.34202015,-0.99939084,-0.27563736,0.40673664,0.9945219,0.6946584,-0.46947157,-0.92718387,-0.64278764,0.52991927,0.95105654,0.58778524,-0.06975647,-0.9702957,-0.89879405,0.1391731,0.9848077,0.8660254,-0.20791169,-0.7880108,-0.82903755,-0.27563736,0.82903755,0.7880108,0.20791169,-0.8660254,-0.9848077,-0.1391731,0.52991927,0.9702957,0.06975647,-0.58778524,-0.95105654,-0.52991927,0.64278764,0.9848077,0.46947157,-0.6946584,-0.9945219,-0.40673664,0.27563736,0.99939084,0.7880108,-0.34202015,-0.99939084,-0.7431448,0.40673664,0.89879405,0.6946584,0.06975647,-0.92718387,-0.64278764,-0.0,0.95105654,0.92718387,-0.06975647,-0.6946584,-0.89879405,0.1391731,0.7431448,0.8660254,0.34202015,-0.7880108,-0.99939084,-0.27563736,0.82903755,0.9945219,0.20791169,-0.46947157,-0.9848077,-0.64278764,0.52991927,0.9702957,0.58778524,-0.58778524,-0.9702957,-0.52991927,0.1391731,0.9848077,0.8660254,-0.20791169,-0.9945219,-0.82903755,0.27563736,0.82903755,0.7880108,0.20791169,-0.8660254,-0.7431448,-0.1391731,0.89879405,0.9702957,0.06975647,-0.58778524,-0.95105654,-0.0,0.64278764,0.92718387,0.46947157,-0.6946584,-0.9945219,-0.40673664,0.7431448,0.99939084,0.34202015,-0.34202015,-0.99939084,-0.7431448,0.40673664,0.9945219,0.6946584,-0.46947157,-0.92718387,-0.64278764,-0.0,0.95105654,0.58778524,-0.06975647,-0.9702957,-0.89879405,0.1391731,0.7431448,0.8660254,-0.20791169,-0.7880108,-0.82903755,-0.27563736,0.82903755,0.9945219,0.20791169,-0.8660254,-0.9848077,-0.1391731,0.52991927,0.9702957,0.58778524,-0.58778524,-0.95105654,-0.52991927,0.64278764,0.9848077,0.46947157,-0.20791169,-0.9945219,-0.40673664,0.27563736,0.99939084,0.7880108,-0.34202015,-0.8660254,-0.7431448,0.40673664,0.89879405,0.6946584,0.06975647,-0.92718387,-0.95105654,-0.0,0.95105654,0.92718387,-0.06975647,-0.6946584,-0.89879405,-0.40673664,0.7431448,0.8660254,0.34202015,-0.7880108,-0.99939084,-0.27563736,0.40673664,0.9945219,0.20791169,-0.46947157,-0.9848077,-0.64278764,0.52991927,0.95105654,0.58778524,-0.58778524,-0.9702957,-0.52991927,0.1391731,0.9848077,0.8660254,-0.20791169,-0.9945219,-0.82903755,0.27563736,0.82903755,0.7880108,0.20791169,-0.8660254,-0.9848077,-0.1391731,0.89879405,0.9702957,0.06975647,-0.58778524,-0.95105654,-0.52991927,0.64278764,0.92718387,0.46947157,-0.6946584,-0.9945219,-0.40673664,0.27563736,0.99939084,0.34202015,-0.34202015,-0.99939084,-0.7431448,0.40673664,0.89879405,0.6946584,-0.46947157,-0.92718387,-0.64278764,-0.0,0.95105654,0.92718387,-0.06975647,-0.9702957,-0.89879405,0.1391731,0.7431448,0.8660254,0.34202015,-0.7880108,-0.82903755,-0.27563736,0.82903755,0.9945219,0.20791169,-0.46947157,-0.9848077,-0.1391731,0.52991927,0.9702957,0.58778524,-0.58778524,-0.9702957,-0.52991927,0.64278764,0.9848077,0.46947157,-0.20791169,-0.9945219,-0.82903755,0.27563736,0.99939084,0.7880108,-0.34202015,-0.8660254,-0.7431448,-0.1391731,0.89879405,0.6946584,0.06975647,-0.92718387,-0.95105654,-0.0,0.64278764,0.92718387,-0.06975647,-0.6946584,-0.89879405,-0.40673664,0.7431448,0.99939084,0.34202015,-0.7880108,-0.99939084,-0.27563736,0.40673664,0.9945219,0.6946584,-0.46947157,-0.9848077,-0.64278764,0.52991927,0.95105654,0.58778524,-0.06975647,-0.9702957,-0.52991927,0.1391731,0.9848077,0.8660254,-0.20791169,-0.7880108,-0.82903755,0.27563736,0.82903755,0.7880108,0.20791169,-0.8660254,-0.9848077,-0.1391731,0.52991927,0.9702957,0.06975647,-0.58778524,-0.95105654,-0.52991927,0.64278764,0.9848077,0.46947157,-0.6946584,-0.9945219,-0.40673664,0.27563736,0.99939084,0.7880108,-0.34202015,-0.99939084,-0.7431448,0.40673664,0.89879405,0.6946584,0.06975647,-0.92718387,-0.64278764,-0.0,0.95105654,0.92718387,-0.06975647,-0.6946584,-0.89879405,0.1391731,0.7431448,0.8660254,0.34202015,-0.7880108,-0.99939084,-0.27563736,0.82903755,0.9945219,0.20791169,-0.46947157,-0.9848077,-0.64278764,0.52991927,0.9702957,0.58778524,-0.58778524,-0.9702957,-0.52991927,0.1391731,0.9848077,0.46947157,-0.20791169,-0.9945219,-0.82903755,0.27563736,0.82903755,0.7880108,-0.34202015,-0.8660254,-0.7431448,-0.1391731,0.89879405,0.9702957,0.06975647,-0.92718387,-0.95105654,-0.0,0.64278764,0.92718387,0.46947157,-0.6946584,-0.89879405,-0.40673664,0.7431448,0.99939084,0.34202015,-0.34202015,-0.99939084,-0.27563736,0.40673664,0.9945219,0.6946584,-0.46947157,-0.92718387,-0.64278764,0.52991927,0.95105654,0.58778524,-0.06975647,-0.9702957,-0.89879405,0.1391731,0.9848077,0.8660254,-0.20791169,-0.7880108,-0.82903755,-0.27563736,0.82903755,0.7880108,0.20791169,-0.8660254,-0.9848077,-0.1391731,0.52991927,0.9702957,0.06975647,-0.58778524,-0.95105654,-0.52991927,0.64278764,0.9848077,0.46947157,-0.20791169,-0.9945219,-0.40673664,0.27563736,0.99939084,0.7880108,-0.34202015,-0.8660254,-0.7431448,0.40673664,0.89879405,0.6946584,0.06975647,-0.92718387,-0.95105654,-0.0,0.95105654,0.92718387,-0.06975647,-0.6946584,-0.89879405,-0.40673664,0.7431448,0.8660254,0.34202015,-0.7880108,-0.99939084,-0.27563736,0.40673664,0.9945219,0.20791169,-0.46947157,-0.9848077,-0.64278764,0.52991927,0.95105654,0.58778524,-0.58778524,-0.9702957,-0.52991927,0.1391731,0.9848077,0.8660254,-0.20791169,-0.9945219,-0.82903755,0.27563736,0.82903755,0.7880108,0.20791169,-0.8660254,-0.7431448,-0.1391731,0.89879405,0.9702957,0.06975647,-0.58778524,-0.95105654,-0.0,0.64278764,0.92718387,0.46947157,-0.6946584,-0.9945219,-0.40673664,0.7431448,0.99939084,0.34202015,-0.34202015,-0.99939084,-0.7431448,0.40673664,0.9945219,0.6946584,-0.46947157,-0.92718387,-0.64278764,-0.0,0.95105654,0.58778524,-0.06975647,-0.9702957,-0.89879405,0.1391731,0.7431448,0.8660254,-0.20791169,-0.7880108,-0.82903755,-0.27563736,0.82903755,0.9945219,0.20791169,-0.8660254,-0.9848077,-0.1391731,0.52991927,0.9702957,0.58778524,-0.58778524,-0.95105654,-0.52991927,0.64278764,0.9848077,0.46947157,-0.20791169,-0.9945219,-0.82903755,0.27563736,0.99939084,0.7880108,-0.34202015,-0.8660254,-0.7431448,-0.1391731,0.89879405,0.6946584,0.06975647,-0.92718387,-0.95105654,-0.0,0.64278764,0.92718387,-0.06975647,-0.6946584,-0.89879405,-0.40673664,0.7431448,0.99939084,0.34202015,-0.7880108,-0.99939084,-0.27563736,0.40673664,0.9945219,0.6946584,-0.46947157,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.95105654,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.40673664,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,0.58778524,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.82903755,0.34202015,-0.34202015,-0.8660254,-0.27563736,0.40673664,0.89879405,0.9702957,-0.46947157,-0.92718387,-0.95105654,0.52991927,0.95105654,0.92718387,0.46947157,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.34202015,-0.82903755,-0.27563736,0.40673664,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.64278764,0.9848077,0.8660254,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.99939084,0.7880108,0.20791169,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.6946584,0.06975647,-0.58778524,-0.64278764,-0.0,0.64278764,0.9848077,-0.06975647,-0.6946584,-0.9945219,0.1391731,0.7431448,0.99939084,0.7880108,-0.7880108,-0.99939084,-0.7431448,0.82903755,0.9945219,0.6946584,0.06975647,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.99939084,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,-0.64278764,0.89879405,0.9702957,0.58778524,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.82903755,0.34202015,-0.34202015,-0.8660254,-0.27563736,0.40673664,0.89879405,0.9702957,-0.46947157,-0.92718387,-0.95105654,0.52991927,0.95105654,0.92718387,0.46947157,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.34202015,-0.82903755,-0.27563736,0.40673664,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.64278764,0.9848077,0.8660254,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.99939084,0.7880108,0.20791169,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.6946584,0.06975647,-0.58778524,-0.64278764,-0.0,0.64278764,0.9848077,-0.06975647,-0.6946584,-0.9945219,0.1391731,0.7431448,0.99939084,0.7880108,-0.7880108,-0.99939084,-0.7431448,0.82903755,0.9945219,0.6946584,0.06975647,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.99939084,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,-0.64278764,0.89879405,0.9702957,0.58778524,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.82903755,0.34202015,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.95105654,0.92718387,0.46947157,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.8660254,0.34202015,-0.34202015,-0.82903755,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.92718387,-0.58778524,-0.9702957,-0.89879405,0.64278764,0.9848077,0.8660254,0.34202015,-0.9945219,-0.82903755,-0.27563736,0.99939084,0.7880108,0.20791169,-0.46947157,-0.7431448,-0.1391731,0.52991927,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.0,0.64278764,0.9848077,-0.06975647,-0.6946584,-0.9945219,-0.82903755,0.7431448,0.99939084,0.7880108,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.9945219,0.6946584,0.06975647,-0.9848077,-0.64278764,-0.0,0.64278764,0.58778524,-0.06975647,-0.6946584,-0.52991927,0.1391731,0.7431448,0.99939084,-0.20791169,-0.7880108,-0.99939084,0.27563736,0.82903755,0.9945219,0.6946584,-0.8660254,-0.9848077,-0.64278764,0.89879405,0.9702957,0.58778524,-0.06975647,-0.95105654,-0.52991927,0.1391731,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.40673664,0.27563736,0.82903755,0.34202015,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.95105654,0.92718387,0.46947157,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.8660254,0.34202015,-0.34202015,-0.82903755,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.92718387,-0.58778524,-0.9702957,-0.89879405,0.64278764,0.9848077,0.8660254,0.34202015,-0.9945219,-0.82903755,-0.27563736,0.99939084,0.7880108,0.20791169,-0.46947157,-0.7431448,-0.1391731,0.52991927,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.0,0.64278764,0.9848077,-0.06975647,-0.6946584,-0.9945219,-0.82903755,0.7431448,0.99939084,0.7880108,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.9945219,0.6946584,0.06975647,-0.9848077,-0.64278764,-0.0,0.64278764,0.58778524,-0.06975647,-0.6946584,-0.52991927,0.1391731,0.7431448,0.99939084,-0.20791169,-0.7880108,-0.99939084,0.27563736,0.82903755,0.9945219,0.6946584,-0.8660254,-0.9848077,-0.64278764,0.89879405,0.9702957,0.58778524,-0.06975647,-0.95105654,-0.52991927,0.1391731,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.40673664,0.27563736,0.82903755,0.34202015,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.95105654,0.52991927,0.95105654,0.92718387,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.7880108,0.20791169,-0.46947157,-0.7431448,-0.1391731,0.52991927,0.95105654,0.06975647,-0.58778524,-0.9702957,-0.0,0.64278764,0.9848077,0.8660254,-0.6946584,-0.9945219,-0.82903755,0.7431448,0.99939084,0.7880108,0.20791169,-0.99939084,-0.7431448,-0.1391731,0.9945219,0.6946584,0.06975647,-0.58778524,-0.64278764,-0.0,0.64278764,0.58778524,-0.06975647,-0.6946584,-0.9945219,0.1391731,0.7431448,0.99939084,-0.20791169,-0.7880108,-0.99939084,-0.7431448,0.82903755,0.9945219,0.6946584,-0.8660254,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.95105654,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.40673664,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,0.58778524,-0.92718387,-0.95105654,-0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.95105654,0.52991927,0.95105654,0.92718387,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.7880108,0.20791169,-0.46947157,-0.7431448,-0.1391731,0.52991927,0.95105654,0.06975647,-0.58778524,-0.9702957,-0.0,0.64278764,0.9848077,0.8660254,-0.6946584,-0.9945219,-0.82903755,0.7431448,0.99939084,0.7880108,0.20791169,-0.99939084,-0.7431448,-0.1391731,0.9945219,0.6946584,0.06975647,-0.58778524,-0.64278764,-0.0,0.64278764,0.58778524,-0.06975647,-0.6946584,-0.9945219,0.1391731,0.7431448,0.99939084,-0.20791169,-0.7880108,-0.99939084,-0.7431448,0.82903755,0.9945219,0.6946584,-0.8660254,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.95105654,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.40673664,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,0.58778524,-0.92718387,-0.95105654,-0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.95105654,0.52991927,0.95105654,0.92718387,0.46947157,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.34202015,-0.82903755,-0.27563736,0.40673664,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.64278764,0.9848077,0.8660254,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.99939084,0.7880108,0.20791169,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.6946584,0.06975647,-0.58778524,-0.64278764,-0.0,0.64278764,0.9848077,-0.06975647,-0.6946584,-0.9945219,0.1391731,0.7431448,0.99939084,0.7880108,-0.7880108,-0.99939084,-0.7431448,0.82903755,0.9945219,0.6946584,0.06975647,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.99939084,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,-0.64278764,0.89879405,0.9702957,0.58778524,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.82903755,0.34202015,-0.34202015,-0.8660254,-0.27563736,0.40673664,0.89879405,0.9702957,-0.46947157,-0.92718387,-0.95105654,0.52991927,0.95105654,0.92718387,0.46947157,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.34202015,-0.82903755,-0.27563736,0.40673664,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.64278764,0.9848077,0.8660254,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.99939084,0.7880108,0.20791169,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.6946584,0.06975647,-0.58778524,-0.64278764,-0.0,0.64278764,0.9848077,-0.06975647,-0.6946584,-0.9945219,0.1391731,0.7431448,0.99939084,0.7880108,-0.7880108,-0.99939084,-0.7431448,0.82903755,0.9945219,0.6946584,0.06975647,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.99939084,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,-0.64278764,0.89879405,0.9702957,0.58778524,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.82903755,0.34202015,-0.34202015,-0.8660254,-0.27563736,0.40673664,0.89879405,0.9702957,-0.46947157,-0.92718387,-0.95105654,0.52991927,0.95105654,0.92718387,0.46947157,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.34202015,-0.82903755,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.92718387,-0.58778524,-0.9702957,-0.89879405,0.64278764,0.9848077,0.8660254,0.34202015,-0.9945219,-0.82903755,-0.27563736,0.99939084,0.7880108,0.20791169,-0.46947157,-0.7431448,-0.1391731,0.52991927,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.0,0.64278764,0.9848077,-0.06975647,-0.6946584,-0.9945219,-0.82903755,0.7431448,0.99939084,0.7880108,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.9945219,0.6946584,0.06975647,-0.9848077,-0.64278764,-0.0,0.64278764,0.58778524,-0.06975647,-0.6946584,-0.52991927,0.1391731,0.7431448,0.99939084,-0.20791169,-0.7880108,-0.99939084,0.27563736,0.82903755,0.9945219,0.6946584,-0.8660254,-0.9848077,-0.64278764,0.89879405,0.9702957,0.58778524,-0.06975647,-0.95105654,-0.52991927,0.1391731,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.40673664,0.27563736,0.82903755,0.34202015,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.95105654,0.92718387,0.46947157,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.8660254,0.34202015,-0.34202015,-0.82903755,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.92718387,-0.58778524,-0.9702957,-0.89879405,0.64278764,0.9848077,0.8660254,0.34202015,-0.9945219,-0.82903755,-0.27563736,0.99939084,0.7880108,0.20791169,-0.46947157,-0.7431448,-0.1391731,0.52991927,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.0,0.64278764,0.9848077,-0.06975647,-0.6946584,-0.9945219,-0.82903755,0.7431448,0.99939084,0.7880108,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.9945219,0.6946584,0.06975647,-0.9848077,-0.64278764,-0.0,0.64278764,0.58778524,-0.06975647,-0.6946584,-0.52991927,0.1391731,0.7431448,0.99939084,-0.20791169,-0.7880108,-0.99939084,0.27563736,0.82903755,0.9945219,0.6946584,-0.8660254,-0.9848077,-0.64278764,0.89879405,0.9702957,0.58778524,-0.06975647,-0.95105654,-0.52991927,0.1391731,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.40673664,0.27563736,0.82903755,0.34202015,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.95105654,0.92718387,0.46947157,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.8660254,0.34202015,-0.34202015,-0.82903755,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.92718387,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.7880108,0.20791169,-0.46947157,-0.7431448,-0.1391731,0.52991927,0.95105654,0.06975647,-0.58778524,-0.9702957,-0.0,0.64278764,0.9848077,0.8660254,-0.6946584,-0.9945219,-0.82903755,0.7431448,0.99939084,0.7880108,0.20791169,-0.99939084,-0.7431448,-0.1391731,0.9945219,0.6946584,0.06975647,-0.58778524,-0.64278764,-0.0,0.64278764,0.58778524,-0.06975647,-0.6946584,-0.9945219,0.1391731,0.7431448,0.99939084,-0.20791169,-0.7880108,-0.99939084,-0.7431448,0.82903755,0.9945219,0.6946584,-0.8660254,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.95105654,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.40673664,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,0.58778524,-0.92718387,-0.95105654,-0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.95105654,0.52991927,0.95105654,0.92718387,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.7880108,0.20791169,-0.46947157,-0.7431448,-0.1391731,0.52991927,0.95105654,0.06975647,-0.58778524,-0.9702957,-0.0,0.64278764,0.9848077,0.8660254,-0.6946584,-0.9945219,-0.82903755,0.7431448,0.99939084,0.7880108,0.20791169,-0.99939084,-0.7431448,-0.1391731,0.9945219,0.6946584,0.06975647,-0.58778524,-0.64278764,-0.0,0.64278764,0.58778524,-0.06975647,-0.6946584,-0.9945219,0.1391731,0.7431448,0.99939084,-0.20791169,-0.7880108,-0.99939084,-0.7431448,0.82903755,0.9945219,0.6946584,-0.8660254,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.95105654,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.40673664,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,0.58778524,-0.92718387,-0.95105654,-0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.95105654,0.52991927,0.95105654,0.92718387,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.64278764,0.9848077,0.8660254,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.99939084,0.7880108,0.20791169,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.6946584,0.06975647,-0.58778524,-0.64278764,-0.0,0.64278764,0.9848077,-0.06975647,-0.6946584,-0.9945219,0.1391731,0.7431448,0.99939084,0.7880108,-0.7880108,-0.99939084,-0.7431448,0.82903755,0.9945219,0.6946584,0.06975647,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.99939084,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,-0.8660254,-0.9848077,-0.64278764,-0.0],"x":[-1.03762935e20,-2.9915108e34,-5.9830217e34,-8.974532e34,-1.1966043e35,-1.4957554e35,-1.7949065e35,-2.0940576e35,-2.3932087e35,-2.6923597e35,-2.9915108e35,-3.290662e35,-3.589813e35,-3.8889643e35,-4.188115e35,-4.4872664e35,-4.7864173e35,-5.0855686e35,-5.3847195e35,-5.6838708e35,-5.9830217e35,-6.282173e35,-6.581324e35,-6.880475e35,-7.179626e35,-7.478777e35,-7.7779285e35,-8.077079e35,-8.37623e35,-8.6753816e35,-8.974533e35,-9.273683e35,-9.572835e35,-9.871986e35,-1.0171137e36,-1.0470288e36,-1.0769439e36,-1.106859e36,-1.13677415e36,-1.1666892e36,-1.1966043e36,-1.22651946e36,-1.2564346e36,-1.2863496e36,-1.3162648e36,-1.3461798e36,-1.376095e36,-1.40601e36,-1.4359252e36,-1.4658403e36,-1.4957555e36,-1.5256706e36,-1.5555857e36,-1.5855008e36,-1.6154158e36,-1.645331e36,-1.675246e36,-1.7051612e36,-1.7350763e36,-1.7649914e36,-1.7949066e36,-1.8248217e36,-1.8547367e36,-1.8846518e36,-1.914567e36,-1.944482e36,-1.9743972e36,-2.0043123e36,-2.0342274e36,-2.0641426e36,-2.0940575e36,-2.1239727e36,-2.1538878e36,-2.183803e36,-2.213718e36,-2.2436332e36,-2.2735483e36,-2.3034634e36,-2.3333784e36,-2.3632935e36,-2.3932087e36,-2.4231238e36,-2.4530389e36,-2.482954e36,-2.5128692e36,-2.5427843e36,-2.5726993e36,-2.6026144e36,-2.6325295e36,-2.6624447e36,-2.6923596e36,-2.722275e36,-2.75219e36,-2.7821052e36,-2.81202e36,-2.8419354e36,-2.8718504e36,-2.9017657e36,-2.9316806e36,-2.9615956e36,-2.991511e36,-3.021426e36,-3.0513412e36,-3.081256e36,-3.1111714e36,-3.1410864e36,-3.1710017e36,-3.2009166e36,-3.2308316e36,-3.260747e36,-3.290662e36,-3.320577e36,-3.350492e36,-3.3804074e36,-3.4103224e36,-3.4402373e36,-3.4701526e36,-3.5000676e36,-3.529983e36,-3.559898e36,-3.589813e36,-3.619728e36,-3.6496434e36,-3.6795584e36,-3.7094733e36,-3.7393886e36,-3.7693036e36,-3.799219e36,-3.829134e36,-3.859049e36,-3.888964e36,-3.918879e36,-3.9487944e36,-3.9787093e36,-4.0086246e36,-4.0385396e36,-4.068455e36,-4.09837e36,-4.128285e36,-4.1582e36,-4.188115e36,-4.2180304e36,-4.2479453e36,-4.2778606e36,-4.3077756e36,-4.337691e36,-4.367606e36,-4.397521e36,-4.427436e36,-4.457351e36,-4.4872664e36,-4.5171813e36,-4.5470966e36,-4.5770116e36,-4.606927e36,-4.6368418e36,-4.6667568e36,-4.696672e36,-4.726587e36,-4.7565024e36,-4.7864173e36,-4.8163326e36,-4.8462476e36,-4.876163e36,-4.9060778e36,-4.9359928e36,-4.965908e36,-4.995823e36,-5.0257383e36,-5.0556533e36,-5.0855686e36,-5.1154836e36,-5.1453985e36,-5.1753138e36,-5.2052288e36,-5.235144e36,-5.265059e36,-5.2949743e36,-5.324889e36,-5.3548046e36,-5.384719e36,-5.4146345e36,-5.44455e36,-5.474465e36,-5.50438e36,-5.534295e36,-5.5642103e36,-5.5941256e36,-5.62404e36,-5.6539556e36,-5.683871e36,-5.7137855e36,-5.743701e36,-5.773616e36,-5.8035314e36,-5.833446e36,-5.863361e36,-5.8932766e36,-5.923191e36,-5.9531065e36,-5.983022e36,-6.012937e36,-6.042852e36,-6.072767e36,-6.1026823e36,-6.132597e36,-6.162512e36,-6.1924275e36,-6.222343e36,-6.2522575e36,-6.282173e36,-6.312088e36,-6.3420033e36,-6.371918e36,-6.401833e36,-6.4317486e36,-6.461663e36,-6.4915785e36,-6.521494e36,-6.551409e36,-6.581324e36,-6.611239e36,-6.641154e36,-6.671069e36,-6.700984e36,-6.7308995e36,-6.760815e36,-6.7907295e36,-6.820645e36,-6.85056e36,-6.880475e36,-6.91039e36,-6.940305e36,-6.9702206e36,-7.000135e36,-7.0300505e36,-7.059966e36,-7.089881e36,-7.119796e36,-7.149711e36,-7.179626e36,-7.209541e36,-7.239456e36,-7.2693715e36,-7.299287e36,-7.3292015e36,-7.359117e36,-7.389032e36,-7.418947e36,-7.448862e36,-7.478777e36,-7.5086925e36,-7.538607e36,-7.5685225e36,-7.598438e36,-7.6283524e36,-7.658268e36,-7.688183e36,-7.718098e36,-7.748013e36,-7.777928e36,-7.8078435e36,-7.837758e36,-7.8676735e36,-7.897589e36,-7.927504e36,-7.9574187e36,-7.987334e36,-8.017249e36,-8.0471645e36,-8.077079e36,-8.1069945e36,-8.13691e36,-8.1668244e36,-8.19674e36,-8.226655e36,-8.25657e36,-8.286485e36,-8.3164e36,-8.3463155e36,-8.37623e36,-8.4061454e36,-8.436061e36,-8.465976e36,-8.4958907e36,-8.525806e36,-8.555721e36,-8.585636e36,-8.615551e36,-8.6454665e36,-8.675382e36,-8.7052964e36,-8.735212e36,-8.765127e36,-8.795042e36,-8.824957e36,-8.854872e36,-8.8847875e36,-8.914702e36,-8.9446174e36,-8.974533e36,-9.004448e36,-9.0343627e36,-9.064278e36,-9.094193e36,-9.124108e36,-9.154023e36,-9.1839385e36,-9.213854e36,-9.2437684e36,-9.2736837e36,-9.303599e36,-9.3335136e36,-9.363429e36,-9.393344e36,-9.4232595e36,-9.453174e36,-9.4830894e36,-9.513005e36,-9.5429194e36,-9.5728346e36,-9.60275e36,-9.632665e36,-9.66258e36,-9.692495e36,-9.7224104e36,-9.752326e36,-9.7822404e36,-9.8121557e36,-9.842071e36,-9.8719856e36,-9.901901e36,-9.931816e36,-9.9617315e36,-9.991646e36,-1.00215614e37,-1.0051477e37,-1.00813913e37,-1.01113066e37,-1.0141222e37,-1.0171137e37,-1.0201052e37,-1.0230967e37,-1.02608824e37,-1.0290797e37,-1.03207124e37,-1.03506277e37,-1.0380543e37,-1.04104576e37,-1.0440373e37,-1.0470288e37,-1.05002035e37,-1.0530118e37,-1.05600334e37,-1.05899487e37,-1.06198633e37,-1.0649779e37,-1.0679694e37,-1.0709609e37,-1.0739524e37,-1.0769438e37,-1.0799354e37,-1.0829269e37,-1.0859184e37,-1.08891e37,-1.0919015e37,-1.094893e37,-1.0978846e37,-1.100876e37,-1.1038675e37,-1.106859e37,-1.1098505e37,-1.1128421e37,-1.1158336e37,-1.1188251e37,-1.1218165e37,-1.124808e37,-1.1277996e37,-1.1307911e37,-1.1337826e37,-1.1367742e37,-1.1397657e37,-1.1427571e37,-1.1457486e37,-1.1487402e37,-1.1517317e37,-1.1547232e37,-1.1577147e37,-1.1607063e37,-1.1636977e37,-1.1666892e37,-1.1696807e37,-1.1726723e37,-1.1756638e37,-1.1786553e37,-1.1816468e37,-1.1846382e37,-1.1876298e37,-1.1906213e37,-1.1936128e37,-1.1966044e37,-1.1995959e37,-1.2025874e37,-1.2055788e37,-1.2085703e37,-1.2115619e37,-1.2145534e37,-1.2175449e37,-1.2205365e37,-1.223528e37,-1.2265194e37,-1.2295109e37,-1.2325025e37,-1.235494e37,-1.2384855e37,-1.241477e37,-1.2444686e37,-1.2474601e37,-1.2504515e37,-1.253443e37,-1.2564346e37,-1.2594261e37,-1.2624176e37,-1.2654091e37,-1.2684007e37,-1.2713921e37,-1.2743836e37,-1.2773751e37,-1.2803667e37,-1.2833582e37,-1.2863497e37,-1.2893412e37,-1.2923326e37,-1.2953242e37,-1.2983157e37,-1.3013072e37,-1.3042988e37,-1.3072903e37,-1.3102818e37,-1.3132732e37,-1.3162647e37,-1.3192563e37,-1.3222478e37,-1.3252393e37,-1.3282309e37,-1.3312224e37,-1.3342138e37,-1.3372053e37,-1.3401968e37,-1.3431884e37,-1.3461799e37,-1.3491714e37,-1.352163e37,-1.3551544e37,-1.3581459e37,-1.3611374e37,-1.364129e37,-1.3671205e37,-1.370112e37,-1.3731035e37,-1.376095e37,-1.3790865e37,-1.382078e37,-1.3850695e37,-1.388061e37,-1.3910526e37,-1.3940441e37,-1.3970355e37,-1.400027e37,-1.4030186e37,-1.4060101e37,-1.4090016e37,-1.4119932e37,-1.4149847e37,-1.4179762e37,-1.4209676e37,-1.4239591e37,-1.4269507e37,-1.4299422e37,-1.4329337e37,-1.4359253e37,-1.4389168e37,-1.4419082e37,-1.4448997e37,-1.4478912e37,-1.4508828e37,-1.4538743e37,-1.4568658e37,-1.4598574e37,-1.4628488e37,-1.4658403e37,-1.4688318e37,-1.4718233e37,-1.4748149e37,-1.4778064e37,-1.4807979e37,-1.4837893e37,-1.4867809e37,-1.4897724e37,-1.4927639e37,-1.4957555e37,-1.498747e37,-1.5017385e37,-1.5047299e37,-1.5077214e37,-1.510713e37,-1.5137045e37,-1.516696e37,-1.5196876e37,-1.5226791e37,-1.5256705e37,-1.528662e37,-1.5316535e37,-1.5346451e37,-1.5376366e37,-1.5406281e37,-1.5436197e37,-1.546611e37,-1.5496026e37,-1.5525941e37,-1.5555856e37,-1.5585772e37,-1.5615687e37,-1.5645602e37,-1.5675516e37,-1.5705432e37,-1.5735347e37,-1.5765262e37,-1.5795177e37,-1.5825093e37,-1.5855008e37,-1.5884923e37,-1.5914837e37,-1.5944753e37,-1.5974668e37,-1.6004583e37,-1.6034498e37,-1.6064414e37,-1.6094329e37,-1.6124243e37,-1.6154158e37,-1.6184074e37,-1.6213989e37,-1.6243904e37,-1.627382e37,-1.6303735e37,-1.6333649e37,-1.6363564e37,-1.639348e37,-1.6423395e37,-1.645331e37,-1.6483225e37,-1.651314e37,-1.6543055e37,-1.657297e37,-1.6602885e37,-1.66328e37,-1.6662716e37,-1.6692631e37,-1.6722546e37,-1.675246e37,-1.6782376e37,-1.6812291e37,-1.6842206e37,-1.6872121e37,-1.6902037e37,-1.6931952e37,-1.6961866e37,-1.6991781e37,-1.7021697e37,-1.7051612e37,-1.7081527e37,-1.7111442e37,-1.7141358e37,-1.7171272e37,-1.7201187e37,-1.7231102e37,-1.7261018e37,-1.7290933e37,-1.7320848e37,-1.7350763e37,-1.7380678e37,-1.7410593e37,-1.7440508e37,-1.7470423e37,-1.7500339e37,-1.7530254e37,-1.7560169e37,-1.7590085e37,-1.7619999e37,-1.7649914e37,-1.7679829e37,-1.7709744e37,-1.773966e37,-1.7769575e37,-1.779949e37,-1.7829404e37,-1.785932e37,-1.7889235e37,-1.791915e37,-1.7949065e37,-1.7978981e37,-1.8008896e37,-1.803881e37,-1.8068725e37,-1.809864e37,-1.8128556e37,-1.8158471e37,-1.8188386e37,-1.8218302e37,-1.8248216e37,-1.8278131e37,-1.8308046e37,-1.8337962e37,-1.8367877e37,-1.8397792e37,-1.8427707e37,-1.8457621e37,-1.8487537e37,-1.8517452e37,-1.8547367e37,-1.8577283e37,-1.8607198e37,-1.8637113e37,-1.8667027e37,-1.8696943e37,-1.8726858e37,-1.8756773e37,-1.8786688e37,-1.8816604e37,-1.8846519e37,-1.8876433e37,-1.8906348e37,-1.8936264e37,-1.8966179e37,-1.8996094e37,-1.902601e37,-1.9055925e37,-1.9085839e37,-1.9115754e37,-1.9145669e37,-1.9175585e37,-1.92055e37,-1.9235415e37,-1.926533e37,-1.9295246e37,-1.932516e37,-1.9355075e37,-1.938499e37,-1.9414906e37,-1.9444821e37,-1.9474736e37,-1.9504651e37,-1.9534565e37,-1.9564481e37,-1.9594396e37,-1.9624311e37,-1.9654227e37,-1.9684142e37,-1.9714057e37,-1.9743971e37,-1.9773886e37,-1.9803802e37,-1.9833717e37,-1.9863632e37,-1.9893548e37,-1.9923463e37,-1.9953377e37,-1.9983292e37,-2.0013208e37,-2.0043123e37,-2.0073038e37,-2.0102953e37,-2.0132869e37,-2.0162783e37,-2.0192698e37,-2.0222613e37,-2.0252529e37,-2.0282444e37,-2.0312359e37,-2.0342274e37,-2.0372188e37,-2.0402104e37,-2.0432019e37,-2.0461934e37,-2.049185e37,-2.0521765e37,-2.055168e37,-2.0581594e37,-2.061151e37,-2.0641425e37,-2.067134e37,-2.0701255e37,-2.073117e37,-2.0761086e37,-2.0791001e37,-2.0820915e37,-2.085083e37,-2.0880746e37,-2.0910661e37,-2.0940576e37,-2.0970492e37,-2.1000407e37,-2.1030321e37,-2.1060236e37,-2.1090151e37,-2.1120067e37,-2.1149982e37,-2.1179897e37,-2.1209813e37,-2.1239727e37,-2.1269643e37,-2.1299557e37,-2.132947e37,-2.1359388e37,-2.1389302e37,-2.1419218e37,-2.1449132e37,-2.147905e37,-2.1508963e37,-2.1538877e37,-2.1568794e37,-2.1598708e37,-2.1628624e37,-2.1658538e37,-2.1688455e37,-2.1718369e37,-2.1748285e37,-2.17782e37,-2.1808113e37,-2.183803e37,-2.1867944e37,-2.189786e37,-2.1927774e37,-2.195769e37,-2.1987605e37,-2.201752e37,-2.2047436e37,-2.207735e37,-2.2107266e37,-2.213718e37,-2.2167097e37,-2.219701e37,-2.2226925e37,-2.2256841e37,-2.2286755e37,-2.2316672e37,-2.2346586e37,-2.2376502e37,-2.2406416e37,-2.243633e37,-2.2466247e37,-2.249616e37,-2.2526078e37,-2.2555992e37,-2.2585908e37,-2.2615822e37,-2.2645736e37,-2.2675653e37,-2.2705567e37,-2.2735483e37,-2.2765397e37,-2.2795314e37,-2.2825228e37,-2.2855142e37,-2.2885059e37,-2.2914973e37,-2.294489e37,-2.2974803e37,-2.300472e37,-2.3034634e37,-2.3064548e37,-2.3094464e37,-2.3124378e37,-2.3154295e37,-2.318421e37,-2.3214125e37,-2.324404e37,-2.3273953e37,-2.330387e37,-2.3333784e37,-2.33637e37,-2.3393615e37,-2.342353e37,-2.3453445e37,-2.348336e37,-2.3513276e37,-2.354319e37,-2.3573106e37,-2.360302e37,-2.3632937e37,-2.366285e37,-2.3692765e37,-2.3722681e37,-2.3752596e37,-2.3782512e37,-2.3812426e37,-2.3842343e37,-2.3872257e37,-2.390217e37,-2.3932087e37,-2.3962e37,-2.3991918e37,-2.4021832e37,-2.4051748e37,-2.4081662e37,-2.4111576e37,-2.4141493e37,-2.4171407e37,-2.4201324e37,-2.4231238e37,-2.4261154e37,-2.4291068e37,-2.4320982e37,-2.4350899e37,-2.4380813e37,-2.441073e37,-2.4440643e37,-2.447056e37,-2.4500474e37,-2.4530388e37,-2.4560304e37,-2.4590218e37,-2.4620135e37,-2.465005e37,-2.4679966e37,-2.470988e37,-2.4739794e37,-2.476971e37,-2.4799624e37,-2.482954e37,-2.4859455e37,-2.4889371e37,-2.4919285e37,-2.4949202e37,-2.4979116e37,-2.500903e37,-2.5038946e37,-2.506886e37,-2.5098777e37,-2.512869e37,-2.5158608e37,-2.5188522e37,-2.5218436e37,-2.5248352e37,-2.5278266e37,-2.5308183e37,-2.5338097e37,-2.5368013e37,-2.5397927e37,-2.5427841e37,-2.5457758e37,-2.5487672e37,-2.5517589e37,-2.5547503e37,-2.557742e37,-2.5607333e37,-2.5637247e37,-2.5667164e37,-2.5697078e37,-2.5726994e37,-2.5756908e37,-2.5786825e37,-2.581674e37,-2.5846653e37,-2.587657e37,-2.5906483e37,-2.59364e37,-2.5966314e37,-2.599623e37,-2.6026145e37,-2.6056059e37,-2.6085975e37,-2.611589e37,-2.6145806e37,-2.617572e37,-2.6205636e37,-2.623555e37,-2.6265464e37,-2.629538e37,-2.6325295e37,-2.6355211e37,-2.6385126e37,-2.6415042e37,-2.6444956e37,-2.647487e37,-2.6504787e37,-2.65347e37,-2.6564617e37,-2.659453e37,-2.6624448e37,-2.6654362e37,-2.6684276e37,-2.6714192e37,-2.6744106e37,-2.6774023e37,-2.6803937e37,-2.6833854e37,-2.6863768e37,-2.6893682e37,-2.6923598e37,-2.6953512e37,-2.6983429e37,-2.7013343e37,-2.704326e37,-2.7073173e37,-2.7103087e37,-2.7133004e37,-2.7162918e37,-2.7192834e37,-2.7222748e37,-2.7252665e37,-2.728258e37,-2.7312493e37,-2.734241e37,-2.7372324e37,-2.740224e37,-2.7432154e37,-2.746207e37,-2.7491985e37,-2.75219e37,-2.7551815e37,-2.758173e37,-2.7611646e37,-2.764156e37,-2.7671476e37,-2.770139e37,-2.7731305e37,-2.776122e37,-2.7791135e37,-2.7821052e37,-2.7850966e37,-2.7880882e37,-2.7910796e37,-2.794071e37,-2.7970627e37,-2.800054e37,-2.8030457e37,-2.8060371e37,-2.8090288e37,-2.8120202e37,-2.8150116e37,-2.8180033e37,-2.8209947e37,-2.8239863e37,-2.8269777e37,-2.8299694e37,-2.8329608e37,-2.8359524e37,-2.8389438e37,-2.8419352e37,-2.844927e37,-2.8479183e37,-2.85091e37,-2.8539013e37,-2.856893e37,-2.8598844e37,-2.8628758e37,-2.8658675e37,-2.8688589e37,-2.8718505e37,-2.874842e37,-2.8778336e37,-2.880825e37,-2.8838164e37,-2.886808e37,-2.8897994e37,-2.892791e37,-2.8957825e37,-2.8987741e37,-2.9017656e37,-2.904757e37,-2.9077486e37,-2.91074e37,-2.9137317e37,-2.916723e37,-2.9197147e37,-2.922706e37,-2.9256975e37,-2.9286892e37,-2.9316806e37,-2.9346722e37,-2.9376636e37,-2.9406553e37,-2.9436467e37,-2.946638e37,-2.9496298e37,-2.9526212e37,-2.9556128e37,-2.9586042e37,-2.9615959e37,-2.9645873e37,-2.9675787e37,-2.9705703e37,-2.9735617e37,-2.9765534e37,-2.9795448e37,-2.9825364e37,-2.9855278e37,-2.9885192e37,-2.991511e37,-2.9945023e37,-2.997494e37,-3.0004854e37,-3.003477e37,-3.0064684e37,-3.0094598e37,-3.0124515e37,-3.015443e37,-3.0184345e37,-3.021426e37,-3.0244176e37,-3.027409e37,-3.0304004e37,-3.033392e37,-3.0363835e37,-3.039375e37,-3.0423665e37,-3.0453582e37,-3.0483496e37,-3.051341e37,-3.0543326e37,-3.057324e37,-3.0603157e37,-3.063307e37,-3.0662987e37,-3.0692901e37,-3.0722815e37,-3.0752732e37,-3.0782646e37,-3.0812563e37,-3.0842477e37,-3.0872393e37,-3.0902307e37,-3.093222e37,-3.0962138e37,-3.0992052e37,-3.1021968e37,-3.1051882e37,-3.10818e37,-3.1111713e37,-3.1141627e37,-3.1171543e37,-3.1201457e37,-3.1231374e37,-3.1261288e37,-3.1291205e37,-3.1321119e37,-3.1351033e37,-3.138095e37,-3.1410863e37,-3.144078e37,-3.1470694e37,-3.150061e37,-3.1530524e37,-3.1560438e37,-3.1590355e37,-3.162027e37,-3.1650186e37,-3.16801e37,-3.1710016e37,-3.173993e37,-3.1769847e37,-3.179976e37,-3.1829675e37,-3.185959e37,-3.1889505e37,-3.1919422e37,-3.1949336e37,-3.1979252e37,-3.2009166e37,-3.203908e37,-3.2068997e37,-3.209891e37,-3.2128828e37,-3.2158742e37,-3.2188658e37,-3.2218572e37,-3.2248486e37,-3.2278403e37,-3.2308317e37,-3.2338233e37,-3.2368147e37,-3.2398064e37,-3.2427978e37,-3.2457892e37,-3.2487808e37,-3.2517722e37,-3.254764e37,-3.2577553e37,-3.260747e37,-3.2637384e37,-3.2667298e37,-3.2697214e37,-3.2727128e37,-3.2757045e37,-3.278696e37,-3.2816875e37,-3.284679e37,-3.2876703e37,-3.290662e37,-3.2936534e37,-3.296645e37,-3.2996365e37,-3.302628e37,-3.3056195e37,-3.308611e37,-3.3116026e37,-3.314594e37,-3.3175856e37,-3.320577e37,-3.3235687e37,-3.32656e37,-3.3295515e37,-3.3325431e37,-3.3355345e37,-3.3385262e37,-3.3415176e37,-3.3445093e37,-3.3475007e37,-3.350492e37,-3.3534837e37,-3.356475e37,-3.3594668e37,-3.3624582e37,-3.3654498e37,-3.3684412e37,-3.3714326e37,-3.3744243e37,-3.3774157e37,-3.3804073e37,-3.3833987e37,-3.3863904e37,-3.3893818e37,-3.3923732e37,-3.3953649e37,-3.3983563e37,-3.401348e37,-3.4043393e37,-3.407331e37,-3.4103224e37,-3.4133138e37,-3.4163054e37,-3.4192968e37,-3.4222885e37,-3.42528e37,-3.4282716e37,-3.431263e37,-3.4342544e37,-3.437246e37,-3.4402374e37,-3.443229e37,-3.4462205e37,-3.449212e37,-3.4522035e37,-3.455195e37,-3.4581866e37,-3.461178e37,-3.4641696e37,-3.467161e37,-3.4701527e37,-3.473144e37,-3.4761355e37,-3.4791272e37,-3.4821186e37,-3.4851102e37,-3.4881016e37,-3.4910933e37,-3.4940847e37,-3.4970763e37,-3.5000677e37,-3.5030591e37,-3.5060508e37,-3.5090422e37,-3.5120338e37,-3.5150252e37,-3.518017e37,-3.5210083e37,-3.5239997e37,-3.5269914e37,-3.5299828e37,-3.5329744e37,-3.5359658e37,-3.5389575e37,-3.541949e37,-3.5449403e37,-3.547932e37,-3.5509233e37,-3.553915e37,-3.5569064e37,-3.559898e37,-3.5628895e37,-3.5658809e37,-3.5688725e37,-3.571864e37,-3.5748556e37,-3.577847e37,-3.5808386e37,-3.58383e37,-3.5868214e37,-3.589813e37,-3.5928045e37,-3.5957961e37,-3.5987875e37,-3.6017792e37,-3.6047706e37,-3.607762e37,-3.6107537e37,-3.613745e37,-3.6167367e37,-3.619728e37,-3.6227198e37,-3.6257112e37,-3.6287026e37,-3.6316942e37,-3.6346856e37,-3.6376773e37,-3.6406687e37,-3.6436603e37,-3.6466517e37,-3.6496432e37,-3.6526348e37,-3.6556262e37,-3.6586179e37,-3.6616093e37,-3.664601e37,-3.6675923e37,-3.6705837e37,-3.6735754e37,-3.6765668e37,-3.6795584e37,-3.6825498e37,-3.6855415e37,-3.688533e37,-3.6915243e37,-3.694516e37,-3.6975074e37,-3.700499e37,-3.7034904e37,-3.706482e37,-3.7094735e37,-3.7124649e37,-3.7154565e37,-3.718448e37,-3.7214396e37,-3.724431e37,-3.7274226e37,-3.730414e37,-3.7334054e37,-3.736397e37,-3.7393885e37,-3.7423802e37,-3.7453716e37,-3.7483632e37,-3.7513546e37,-3.754346e37,-3.7573377e37,-3.760329e37,-3.7633207e37,-3.7663121e37,-3.7693038e37,-3.7722952e37,-3.7752866e37,-3.7782782e37,-3.7812697e37,-3.7842613e37,-3.7872527e37,-3.7902444e37,-3.7932358e37,-3.7962272e37,-3.7992188e37,-3.8022102e37,-3.805202e37,-3.8081933e37,-3.811185e37,-3.8141763e37,-3.8171677e37,-3.8201594e37,-3.8231508e37,-3.8261425e37,-3.8291339e37,-3.8321255e37,-3.835117e37,-3.8381086e37,-3.8411e37,-3.8440914e37,-3.847083e37,-3.8500744e37,-3.853066e37,-3.8560575e37,-3.8590491e37,-3.8620405e37,-3.865032e37,-3.8680236e37,-3.871015e37,-3.8740067e37,-3.876998e37,-3.8799897e37,-3.882981e37,-3.8859725e37,-3.8889642e37,-3.8919556e37,-3.8949472e37,-3.8979386e37,-3.9009303e37,-3.9039217e37,-3.906913e37,-3.9099047e37,-3.9128962e37,-3.9158878e37,-3.9188792e37,-3.9218709e37,-3.9248623e37,-3.9278537e37,-3.9308453e37,-3.9338367e37,-3.9368284e37,-3.9398198e37,-3.9428114e37,-3.9458028e37,-3.9487942e37,-3.951786e37,-3.9547773e37,-3.957769e37,-3.9607604e37,-3.963752e37,-3.9667434e37,-3.9697348e37,-3.9727265e37,-3.9757179e37,-3.9787095e37,-3.981701e37,-3.9846926e37,-3.987684e37,-3.9906754e37,-3.993667e37,-3.9966584e37,-3.99965e37,-4.0026415e37,-4.0056332e37,-4.0086246e37,-4.011616e37,-4.0146076e37,-4.017599e37,-4.0205907e37,-4.023582e37,-4.0265737e37,-4.0295651e37,-4.0325565e37,-4.0355482e37,-4.0385396e37,-4.0415312e37,-4.0445227e37,-4.0475143e37,-4.0505057e37,-4.053497e37,-4.0564888e37,-4.0594802e37,-4.0624718e37,-4.0654632e37,-4.068455e37,-4.0714463e37,-4.0744377e37,-4.0774293e37,-4.0804207e37,-4.0834124e37,-4.0864038e37,-4.0893955e37,-4.0923869e37,-4.0953783e37,-4.09837e37,-4.1013613e37,-4.104353e37,-4.1073444e37,-4.110336e37,-4.1133274e37,-4.1163188e37,-4.1193105e37,-4.122302e37,-4.1252935e37,-4.128285e37,-4.1312766e37,-4.134268e37,-4.1372594e37,-4.140251e37,-4.1432425e37,-4.146234e37,-4.1492255e37,-4.1522172e37,-4.1552086e37,-4.1582002e37,-4.1611916e37,-4.164183e37,-4.1671747e37,-4.170166e37,-4.1731577e37,-4.1761492e37,-4.1791408e37,-4.1821322e37,-4.1851236e37,-4.1881153e37,-4.1911067e37,-4.1940983e37,-4.1970897e37,-4.2000814e37,-4.2030728e37,-4.2060642e37,-4.2090558e37,-4.2120472e37,-4.215039e37,-4.2180303e37,-4.221022e37,-4.2240134e37,-4.2270048e37,-4.2299964e37,-4.2329878e37,-4.2359795e37,-4.2389709e37,-4.2419625e37,-4.244954e37,-4.2479453e37,-4.250937e37,-4.2539286e37,-4.25692e37,-4.2599114e37,-4.262903e37,-4.265894e37,-4.268886e37,-4.2718776e37,-4.274869e37,-4.2778604e37,-4.280852e37,-4.2838437e37,-4.286835e37,-4.2898265e37,-4.292818e37,-4.29581e37,-4.298801e37,-4.3017926e37,-4.304784e37,-4.3077754e37,-4.310767e37,-4.3137587e37,-4.3167504e37,-4.3197415e37,-4.322733e37,-4.325725e37,-4.3287165e37,-4.3317076e37,-4.3346993e37,-4.337691e37,-4.340682e37,-4.3436737e37,-4.3466654e37,-4.349657e37,-4.352648e37,-4.35564e37,-4.3586315e37,-4.3616227e37,-4.3646143e37,-4.367606e37,-4.3705976e37,-4.373589e37,-4.3765804e37,-4.379572e37,-4.382563e37,-4.385555e37,-4.3885465e37,-4.391538e37,-4.3945293e37,-4.397521e37,-4.4005127e37,-4.403504e37,-4.4064955e37,-4.409487e37,-4.412479e37,-4.41547e37,-4.4184616e37,-4.421453e37,-4.4244444e37,-4.427436e37,-4.4304277e37,-4.4334193e37,-4.4364105e37,-4.439402e37,-4.442394e37,-4.445385e37,-4.4483766e37,-4.4513683e37,-4.45436e37,-4.457351e37,-4.4603427e37,-4.4633344e37,-4.4663255e37,-4.469317e37,-4.472309e37,-4.4753005e37,-4.4782916e37,-4.4812833e37,-4.484275e37,-4.487266e37,-4.490258e37,-4.4932494e37,-4.496241e37,-4.499232e37,-4.502224e37,-4.5052155e37,-4.5082067e37,-4.5111983e37,-4.51419e37,-4.5171816e37,-4.520173e37,-4.5231644e37,-4.526156e37,-4.529147e37,-4.532139e37,-4.5351306e37,-4.538122e37,-4.5411134e37,-4.544105e37,-4.5470967e37,-4.550088e37,-4.5530795e37,-4.556071e37,-4.559063e37,-4.562054e37,-4.5650456e37,-4.568037e37,-4.5710284e37,-4.57402e37,-4.5770117e37,-4.5800034e37,-4.5829945e37,-4.585986e37,-4.588978e37,-4.591969e37,-4.5949606e37,-4.5979523e37,-4.600944e37,-4.603935e37,-4.6069267e37,-4.6099184e37,-4.6129095e37,-4.615901e37,-4.618893e37,-4.6218845e37,-4.6248757e37,-4.6278673e37,-4.630859e37,-4.63385e37,-4.636842e37,-4.6398334e37,-4.642825e37,-4.645816e37,-4.648808e37,-4.6517995e37,-4.6547907e37,-4.6577823e37,-4.660774e37,-4.6637657e37,-4.666757e37,-4.6697485e37,-4.67274e37,-4.6757313e37,-4.678723e37,-4.6817146e37,-4.684706e37,-4.6876974e37,-4.690689e37,-4.6936807e37,-4.696672e37,-4.6996635e37,-4.702655e37,-4.705647e37,-4.708638e37,-4.7116296e37,-4.7146213e37,-4.7176124e37,-4.720604e37,-4.7235957e37,-4.7265874e37,-4.7295785e37,-4.73257e37,-4.735562e37,-4.738553e37,-4.7415446e37,-4.7445363e37,-4.747528e37,-4.750519e37,-4.753511e37,-4.7565024e37,-4.7594936e37,-4.762485e37,-4.765477e37,-4.7684685e37,-4.7714597e37,-4.7744513e37,-4.777443e37,-4.780434e37,-4.783426e37,-4.7864174e37,-4.789409e37,-4.7924e37,-4.795392e37,-4.7983836e37,-4.8013747e37,-4.8043664e37,-4.807358e37,-4.8103497e37,-4.813341e37,-4.8163325e37,-4.819324e37,-4.8223153e37,-4.825307e37,-4.8282986e37,-4.83129e37,-4.8342814e37,-4.837273e37,-4.8402647e37,-4.843256e37,-4.8462475e37,-4.849239e37,-4.852231e37,-4.855222e37,-4.8582136e37,-4.8612053e37,-4.8641964e37,-4.867188e37,-4.8701797e37,-4.8731714e37,-4.8761625e37,-4.879154e37,-4.882146e37,-4.885137e37,-4.8881287e37,-4.8911203e37,-4.894112e37,-4.897103e37,-4.900095e37,-4.9030864e37,-4.9060776e37,-4.909069e37,-4.912061e37,-4.9150525e37,-4.9180437e37,-4.9210353e37,-4.924027e37,-4.927018e37,-4.93001e37,-4.9330015e37,-4.935993e37,-4.9389843e37,-4.941976e37,-4.9449676e37,-4.9479587e37,-4.9509504e37,-4.953942e37,-4.9569337e37,-4.959925e37,-4.9629165e37,-4.965908e37,-4.9688993e37,-4.971891e37,-4.9748826e37,-4.9778743e37,-4.9808654e37,-4.983857e37,-4.9868487e37,-4.9898404e37,-4.9928315e37,-4.995823e37,-4.998815e37,-5.001806e37,-5.0047976e37,-5.0077893e37,-5.010781e37,-5.013772e37,-5.016764e37,-5.0197554e37,-5.0227466e37,-5.025738e37,-5.02873e37,-5.0317215e37,-5.0347127e37,-5.0377043e37,-5.040696e37,-5.043687e37,-5.046679e37,-5.0496704e37,-5.052662e37,-5.055653e37,-5.058645e37,-5.0616366e37,-5.0646277e37,-5.0676194e37,-5.070611e37,-5.0736027e37,-5.076594e37,-5.0795855e37,-5.082577e37,-5.0855683e37,-5.08856e37,-5.0915516e37,-5.094543e37,-5.0975344e37,-5.100526e37,-5.1035177e37,-5.106509e37,-5.1095005e37,-5.112492e37,-5.115484e37,-5.118475e37,-5.1214666e37,-5.1244583e37,-5.1274494e37,-5.130441e37,-5.1334327e37,-5.1364244e37,-5.1394155e37,-5.142407e37,-5.145399e37,-5.14839e37,-5.1513817e37,-5.1543733e37,-5.157365e37,-5.160356e37,-5.163348e37,-5.1663394e37,-5.1693306e37,-5.172322e37,-5.175314e37,-5.1783055e37,-5.1812967e37,-5.1842883e37,-5.18728e37,-5.190271e37,-5.193263e37,-5.1962545e37,-5.199246e37,-5.2022373e37,-5.205229e37,-5.2082206e37,-5.2112117e37,-5.2142034e37,-5.217195e37,-5.2201867e37,-5.223178e37,-5.2261695e37,-5.229161e37,-5.2321523e37,-5.235144e37,-5.2381356e37,-5.2411273e37,-5.2441184e37,-5.24711e37,-5.2501017e37,-5.253093e37,-5.2560845e37,-5.259076e37,-5.262068e37,-5.265059e37,-5.2680506e37,-5.2710423e37,-5.2740334e37,-5.277025e37,-5.280017e37,-5.2830084e37,-5.2859996e37,-5.288991e37,-5.291983e37,-5.294974e37,-5.2979657e37,-5.3009573e37,-5.303949e37,-5.30694e37,-5.309932e37,-5.3129234e37,-5.3159146e37,-5.318906e37,-5.321898e37,-5.3248896e37,-5.3278807e37,-5.3308724e37,-5.333864e37,-5.336855e37,-5.339847e37,-5.3428385e37,-5.34583e37,-5.3488213e37,-5.351813e37,-5.3548046e37,-5.3577957e37,-5.3607874e37,-5.363779e37,-5.3667707e37,-5.369762e37,-5.3727535e37,-5.375745e37,-5.3787363e37,-5.381728e37,-5.3847196e37,-5.3877113e37,-5.3907024e37,-5.393694e37,-5.3966857e37,-5.399677e37,-5.4026685e37,-5.40566e37,-5.408652e37,-5.411643e37,-5.4146347e37,-5.4176263e37,-5.4206175e37,-5.423609e37,-5.426601e37,-5.4295924e37,-5.4325836e37,-5.435575e37,-5.438567e37,-5.441558e37,-5.4445497e37,-5.4475413e37,-5.450533e37,-5.453524e37,-5.456516e37,-5.4595075e37,-5.4624986e37,-5.4654903e37,-5.468482e37,-5.4714736e37,-5.4744647e37,-5.4774564e37,-5.480448e37,-5.483439e37,-5.486431e37,-5.4894225e37,-5.492414e37,-5.4954053e37,-5.498397e37,-5.5013886e37,-5.50438e37,-5.5073714e37,-5.510363e37,-5.5133547e37,-5.516346e37,-5.5193375e37,-5.522329e37,-5.5253203e37,-5.528312e37,-5.5313036e37,-5.5342953e37,-5.5372864e37,-5.540278e37,-5.54327e37,-5.546261e37,-5.5492526e37,-5.552244e37,-5.555236e37,-5.558227e37,-5.5612187e37,-5.5642103e37,-5.5672015e37,-5.570193e37,-5.573185e37,-5.5761764e37,-5.5791676e37,-5.582159e37,-5.585151e37,-5.588142e37,-5.5911337e37,-5.5941254e37,-5.597117e37,-5.600108e37,-5.6031e37,-5.6060915e37,-5.6090826e37,-5.6120743e37,-5.615066e37,-5.6180576e37,-5.6210487e37,-5.6240404e37,-5.627032e37,-5.630023e37,-5.633015e37,-5.6360065e37,-5.638998e37,-5.6419893e37,-5.644981e37,-5.6479726e37,-5.6509643e37,-5.6539554e37,-5.656947e37,-5.6599387e37,-5.66293e37,-5.6659215e37,-5.668913e37,-5.671905e37,-5.674896e37,-5.6778877e37,-5.6808793e37,-5.6838705e37,-5.686862e37,-5.689854e37,-5.6928454e37,-5.6958366e37,-5.698828e37,-5.70182e37,-5.704811e37,-5.7078027e37,-5.7107943e37,-5.713786e37,-5.716777e37,-5.719769e37,-5.7227605e37,-5.7257516e37,-5.7287433e37,-5.731735e37,-5.7347266e37,-5.7377177e37,-5.7407094e37,-5.743701e37,-5.746692e37,-5.749684e37,-5.7526755e37,-5.755667e37,-5.7586583e37,-5.76165e37,-5.7646416e37,-5.767633e37,-5.7706244e37,-5.773616e37,-5.7766077e37,-5.779599e37,-5.7825905e37,-5.785582e37,-5.7885733e37,-5.791565e37,-5.7945566e37,-5.7975483e37,-5.8005394e37,-5.803531e37,-5.806523e37,-5.809514e37,-5.8125056e37,-5.815497e37,-5.818489e37,-5.82148e37,-5.8244717e37,-5.8274633e37,-5.8304545e37,-5.833446e37,-5.836438e37,-5.8394294e37,-5.8424206e37,-5.845412e37,-5.848404e37,-5.851395e37,-5.8543867e37,-5.8573784e37,-5.86037e37,-5.863361e37,-5.866353e37,-5.8693445e37,-5.8723356e37,-5.8753273e37,-5.878319e37,-5.8813106e37,-5.8843017e37,-5.8872934e37,-5.890285e37,-5.893276e37,-5.896268e37,-5.8992595e37,-5.902251e37,-5.9052423e37,-5.908234e37,-5.9112256e37,-5.914217e37,-5.9172084e37,-5.9202e37,-5.9231917e37,-5.926183e37,-5.9291745e37,-5.932166e37,-5.9351574e37,-5.938149e37,-5.9411407e37,-5.9441323e37,-5.9471235e37,-5.950115e37,-5.953107e37,-5.956098e37,-5.9590896e37,-5.962081e37,-5.965073e37,-5.968064e37,-5.9710557e37,-5.9740473e37,-5.9770385e37,-5.98003e37,-5.983022e37,-5.9860135e37,-5.9890046e37,-5.9919963e37,-5.994988e37,-5.997979e37,-6.0009707e37,-6.0039624e37,-6.006954e37,-6.009945e37,-6.012937e37,-6.0159285e37,-6.0189196e37,-6.0219113e37,-6.024903e37,-6.0278946e37,-6.030886e37,-6.0338774e37,-6.036869e37,-6.03986e37,-6.042852e37,-6.0458435e37,-6.048835e37,-6.0518263e37,-6.054818e37,-6.0578096e37,-6.060801e37,-6.0637924e37,-6.066784e37,-6.069776e37,-6.072767e37,-6.0757586e37,-6.07875e37,-6.0817414e37,-6.084733e37,-6.0877247e37,-6.0907163e37,-6.0937075e37,-6.096699e37,-6.099691e37,-6.102682e37,-6.1056736e37,-6.108665e37,-6.111657e37,-6.114648e37,-6.1176397e37,-6.1206314e37,-6.1236225e37,-6.126614e37,-6.129606e37,-6.1325975e37,-6.1355886e37,-6.1385803e37,-6.141572e37,-6.144563e37,-6.1475547e37,-6.1505464e37,-6.153538e37,-6.156529e37,-6.159521e37,-6.1625125e37,-6.1655037e37,-6.1684953e37,-6.171487e37,-6.1744786e37,-6.17747e37,-6.1804614e37,-6.183453e37,-6.186444e37,-6.189436e37,-6.1924275e37,-6.195419e37,-6.1984104e37,-6.201402e37,-6.2043937e37,-6.207385e37,-6.2103765e37,-6.213368e37,-6.21636e37,-6.219351e37,-6.2223426e37,-6.225334e37,-6.2283254e37,-6.231317e37,-6.2343087e37,-6.2373003e37,-6.2402915e37,-6.243283e37,-6.246275e37,-6.249266e37,-6.2522576e37,-6.2552493e37,-6.258241e37,-6.261232e37,-6.2642237e37,-6.2672154e37,-6.2702065e37,-6.273198e37,-6.27619e37,-6.2791815e37,-6.2821726e37,-6.2851643e37,-6.288156e37,-6.291147e37,-6.294139e37,-6.2971304e37,-6.300122e37,-6.303113e37,-6.306105e37,-6.3090965e37,-6.3120877e37,-6.3150793e37,-6.318071e37,-6.3210626e37,-6.324054e37,-6.3270454e37,-6.330037e37,-6.333029e37,-6.33602e37,-6.3390116e37,-6.342003e37,-6.3449944e37,-6.347986e37,-6.3509777e37,-6.3539693e37,-6.3569605e37,-6.359952e37,-6.362944e37,-6.365935e37,-6.3689266e37,-6.371918e37,-6.37491e37,-6.377901e37,-6.3808927e37,-6.3838844e37,-6.3868755e37,-6.389867e37,-6.392859e37,-6.3958505e37,-6.3988416e37,-6.4018333e37,-6.404825e37,-6.407816e37,-6.4108077e37,-6.4137994e37,-6.416791e37,-6.419782e37,-6.422774e37,-6.4257655e37,-6.4287567e37,-6.4317483e37,-6.43474e37,-6.4377316e37,-6.440723e37,-6.4437144e37,-6.446706e37,-6.449697e37,-6.452689e37,-6.4556805e37,-6.458672e37,-6.4616634e37,-6.464655e37,-6.4676467e37,-6.470638e37,-6.4736295e37,-6.476621e37,-6.479613e37,-6.482604e37,-6.4855956e37,-6.488587e37,-6.4915784e37,-6.49457e37,-6.4975617e37,-6.5005533e37,-6.5035445e37,-6.506536e37,-6.509528e37,-6.512519e37,-6.5155106e37,-6.5185023e37,-6.521494e37,-6.524485e37,-6.5274767e37,-6.5304684e37,-6.5334595e37,-6.536451e37,-6.539443e37,-6.5424345e37,-6.5454256e37,-6.5484173e37,-6.551409e37,-6.5544e37,-6.557392e37,-6.5603834e37,-6.563375e37,-6.566366e37,-6.569358e37,-6.5723495e37,-6.5753407e37,-6.5783323e37,-6.581324e37,-6.5843156e37,-6.587307e37,-6.5902984e37,-6.59329e37,-6.596281e37,-6.599273e37,-6.6022646e37,-6.605256e37,-6.6082474e37,-6.611239e37,-6.6142307e37,-6.617222e37,-6.6202135e37,-6.623205e37,-6.626197e37,-6.629188e37,-6.6321796e37,-6.635171e37,-6.6381624e37,-6.641154e37,-6.6441457e37,-6.6471374e37,-6.6501285e37,-6.65312e37,-6.656112e37,-6.659103e37,-6.6620946e37,-6.6650863e37,-6.668078e37,-6.671069e37,-6.6740607e37,-6.6770524e37,-6.6800435e37,-6.683035e37,-6.686027e37,-6.6890185e37,-6.6920097e37,-6.6950013e37,-6.697993e37,-6.700984e37,-6.703976e37,-6.7069674e37,-6.709959e37,-6.71295e37,-6.715942e37,-6.7189335e37,-6.7219247e37,-6.7249164e37,-6.727908e37,-6.7308997e37,-6.733891e37,-6.7368825e37,-6.739874e37,-6.7428653e37,-6.745857e37,-6.7488486e37,-6.75184e37,-6.7548314e37,-6.757823e37,-6.7608147e37,-6.763806e37,-6.7667975e37,-6.769789e37,-6.772781e37,-6.775772e37,-6.7787636e37,-6.7817553e37,-6.7847464e37,-6.787738e37,-6.7907297e37,-6.7937214e37,-6.7967125e37,-6.799704e37,-6.802696e37,-6.805687e37,-6.8086786e37,-6.8116703e37,-6.814662e37,-6.817653e37,-6.820645e37,-6.8236364e37,-6.8266276e37,-6.829619e37,-6.832611e37,-6.8356025e37,-6.8385937e37,-6.8415853e37,-6.844577e37,-6.847568e37,-6.85056e37,-6.8535514e37,-6.856543e37,-6.859534e37,-6.862526e37,-6.8655176e37,-6.8685087e37,-6.8715004e37,-6.874492e37,-6.8774837e37,-6.880475e37,-6.8834665e37,-6.886458e37,-6.8894493e37,-6.892441e37,-6.8954326e37,-6.898424e37,-6.9014154e37,-6.904407e37,-6.9073987e37,-6.91039e37,-6.9133815e37,-6.916373e37,-6.919365e37,-6.922356e37,-6.9253476e37,-6.9283393e37,-6.9313304e37,-6.934322e37,-6.9373137e37,-6.9403054e37,-6.9432965e37,-6.946288e37,-6.94928e37,-6.952271e37,-6.9552627e37,-6.9582543e37,-6.961246e37,-6.964237e37,-6.967229e37,-6.9702204e37,-6.9732116e37,-6.976203e37,-6.979195e37,-6.9821865e37,-6.9851777e37,-6.9881694e37,-6.991161e37,-6.9941527e37,-6.997144e37,-7.0001355e37,-7.003127e37,-7.0061183e37,-7.00911e37,-7.0121016e37,-7.015093e37,-7.0180844e37,-7.021076e37,-7.0240677e37,-7.027059e37,-7.0300505e37,-7.033042e37,-7.036034e37,-7.039025e37,-7.0420166e37,-7.0450083e37,-7.0479994e37,-7.050991e37,-7.0539827e37,-7.0569744e37,-7.0599655e37,-7.062957e37,-7.065949e37,-7.06894e37,-7.0719316e37,-7.0749233e37,-7.077915e37,-7.080906e37,-7.083898e37,-7.0868894e37,-7.0898806e37,-7.092872e37,-7.095864e37,-7.0988555e37,-7.1018467e37,-7.1048383e37,-7.10783e37,-7.110821e37,-7.113813e37,-7.1168044e37,-7.119796e37,-7.122787e37,-7.125779e37,-7.1287706e37,-7.1317617e37,-7.1347534e37,-7.137745e37,-7.1407367e37,-7.143728e37,-7.1467195e37,-7.149711e37,-7.1527023e37,-7.155694e37,-7.1586856e37,-7.161677e37,-7.1646684e37,-7.16766e37,-7.1706517e37,-7.173643e37,-7.1766345e37,-7.179626e37,-7.182618e37,-7.185609e37,-7.1886006e37,-7.1915923e37,-7.1945834e37,-7.197575e37,-7.2005667e37,-7.2035584e37,-7.2065495e37,-7.209541e37,-7.212533e37,-7.215524e37,-7.2185157e37,-7.2215073e37,-7.224499e37,-7.22749e37,-7.230482e37,-7.2334734e37,-7.2364646e37,-7.239456e37,-7.242448e37,-7.2454395e37,-7.2484307e37,-7.2514224e37,-7.254414e37,-7.257405e37,-7.260397e37,-7.2633885e37,-7.26638e37,-7.2693713e37,-7.272363e37,-7.2753546e37,-7.2783457e37,-7.2813374e37,-7.284329e37,-7.2873207e37,-7.290312e37,-7.2933035e37,-7.296295e37,-7.2992863e37,-7.302278e37,-7.3052696e37,-7.3082613e37,-7.3112524e37,-7.314244e37,-7.3172357e37,-7.320227e37,-7.3232185e37,-7.32621e37,-7.329202e37,-7.332193e37,-7.3351846e37,-7.3381763e37,-7.3411675e37,-7.344159e37,-7.347151e37,-7.3501424e37,-7.3531336e37,-7.356125e37,-7.359117e37,-7.362108e37,-7.3650997e37,-7.3680913e37,-7.371083e37,-7.374074e37,-7.377066e37,-7.3800574e37,-7.3830486e37,-7.38604e37,-7.389032e37,-7.3920236e37,-7.3950147e37,-7.3980064e37,-7.400998e37,-7.403989e37,-7.406981e37,-7.4099725e37,-7.412964e37,-7.4159553e37,-7.418947e37,-7.4219386e37,-7.4249297e37,-7.4279214e37,-7.430913e37,-7.4339047e37,-7.436896e37,-7.4398875e37,-7.442879e37,-7.4458703e37,-7.448862e37,-7.4518536e37,-7.4548453e37,-7.4578364e37,-7.460828e37,-7.4638197e37,-7.466811e37,-7.4698025e37,-7.472794e37,-7.475786e37,-7.478777e37,-7.4817687e37,-7.4847603e37,-7.4877515e37,-7.490743e37,-7.493735e37,-7.4967264e37,-7.4997176e37,-7.502709e37,-7.505701e37,-7.508692e37,-7.5116837e37,-7.5146754e37,-7.517667e37,-7.520658e37,-7.52365e37,-7.5266415e37,-7.5296326e37,-7.5326243e37,-7.535616e37,-7.5386076e37,-7.5415987e37,-7.5445904e37,-7.547582e37,-7.550573e37,-7.553565e37,-7.5565565e37,-7.559548e37,-7.5625393e37,-7.565531e37,-7.5685226e37,-7.571514e37,-7.5745054e37,-7.577497e37,-7.5804887e37,-7.58348e37,-7.5864715e37,-7.589463e37,-7.5924543e37,-7.595446e37,-7.5984376e37,-7.6014293e37,-7.6044205e37,-7.607412e37,-7.610404e37,-7.613395e37,-7.6163866e37,-7.619378e37,-7.62237e37,-7.625361e37,-7.6283527e37,-7.6313443e37,-7.6343355e37,-7.637327e37,-7.640319e37,-7.6433104e37,-7.6463016e37,-7.649293e37,-7.652285e37,-7.6552766e37,-7.6582677e37,-7.6612594e37,-7.664251e37,-7.667242e37,-7.670234e37,-7.6732255e37,-7.676217e37,-7.6792083e37,-7.6822e37,-7.6851916e37,-7.6881827e37,-7.6911744e37,-7.694166e37,-7.6971577e37,-7.700149e37,-7.7031405e37,-7.706132e37,-7.7091233e37,-7.712115e37,-7.7151066e37,-7.7180983e37,-7.7210894e37,-7.724081e37,-7.7270727e37,-7.730064e37,-7.7330555e37,-7.736047e37,-7.739039e37,-7.74203e37,-7.7450217e37,-7.7480133e37,-7.7510045e37,-7.753996e37,-7.756988e37,-7.7599794e37,-7.7629706e37,-7.765962e37,-7.768954e37,-7.771945e37,-7.7749367e37,-7.7779284e37,-7.78092e37,-7.783911e37,-7.786903e37,-7.7898945e37,-7.7928856e37,-7.7958773e37,-7.798869e37,-7.8018606e37,-7.8048517e37,-7.8078434e37,-7.810835e37,-7.813826e37,-7.816818e37,-7.8198095e37,-7.822801e37,-7.8257923e37,-7.828784e37,-7.8317756e37,-7.834767e37,-7.8377584e37,-7.84075e37,-7.8437417e37,-7.846733e37,-7.8497245e37,-7.852716e37,-7.8557073e37,-7.858699e37,-7.8616906e37,-7.8646823e37,-7.8676735e37,-7.870665e37,-7.873657e37,-7.876648e37,-7.8796396e37,-7.882631e37,-7.885623e37,-7.888614e37,-7.8916057e37,-7.8945973e37,-7.8975885e37,-7.90058e37,-7.903572e37,-7.9065634e37,-7.9095546e37,-7.912546e37,-7.915538e37,-7.918529e37,-7.9215207e37,-7.9245124e37,-7.927504e37,-7.930495e37,-7.933487e37,-7.9364785e37,-7.9394696e37,-7.9424613e37,-7.945453e37,-7.9484446e37,-7.9514357e37,-7.9544274e37,-7.957419e37,-7.96041e37,-7.963402e37,-7.9663935e37,-7.969385e37,-7.9723763e37,-7.975368e37,-7.9783596e37,-7.981351e37,-7.9843424e37,-7.987334e37,-7.9903257e37,-7.993317e37,-7.9963085e37,-7.9993e37,-8.0022914e37,-8.005283e37,-8.0082747e37,-8.0112663e37,-8.0142575e37,-8.017249e37,-8.020241e37,-8.023232e37,-8.0262236e37,-8.029215e37,-8.032207e37,-8.035198e37,-8.0381897e37,-8.0411814e37,-8.0441725e37,-8.047164e37,-8.050156e37,-8.0531475e37,-8.0561386e37,-8.0591303e37,-8.062122e37,-8.065113e37,-8.0681047e37,-8.0710964e37,-8.074088e37,-8.077079e37,-8.080071e37,-8.0830625e37,-8.0860536e37,-8.0890453e37,-8.092037e37,-8.0950286e37,-8.09802e37,-8.1010114e37,-8.104003e37,-8.106994e37,-8.109986e37,-8.1129775e37,-8.115969e37,-8.1189603e37,-8.121952e37,-8.1249436e37,-8.127935e37,-8.1309265e37,-8.133918e37,-8.13691e37,-8.139901e37,-8.1428926e37,-8.145884e37,-8.1488754e37,-8.151867e37,-8.1548587e37,-8.1578503e37,-8.1608415e37,-8.163833e37,-8.166825e37,-8.169816e37,-8.1728076e37,-8.175799e37,-8.178791e37,-8.181782e37,-8.1847737e37,-8.1877654e37,-8.1907565e37,-8.193748e37,-8.19674e37,-8.1997315e37,-8.2027226e37,-8.2057143e37,-8.208706e37,-8.211697e37,-8.2146887e37,-8.2176804e37,-8.220672e37,-8.223663e37,-8.226655e37,-8.2296465e37,-8.2326377e37,-8.2356293e37,-8.238621e37,-8.2416126e37,-8.244604e37,-8.2475954e37,-8.250587e37,-8.253578e37,-8.25657e37,-8.2595615e37,-8.262553e37,-8.2655444e37,-8.268536e37,-8.2715277e37,-8.274519e37,-8.2775105e37,-8.280502e37,-8.283494e37,-8.286485e37,-8.2894766e37,-8.292468e37,-8.2954594e37,-8.298451e37,-8.3014427e37,-8.3044344e37,-8.3074255e37,-8.310417e37,-8.313409e37,-8.3164005e37,-8.3193916e37,-8.3223833e37,-8.325375e37,-8.328366e37,-8.3313577e37,-8.3343494e37,-8.337341e37,-8.340332e37,-8.343324e37,-8.3463155e37,-8.3493066e37,-8.3522983e37,-8.35529e37,-8.3582816e37,-8.361273e37,-8.3642644e37,-8.367256e37,-8.370247e37,-8.373239e37,-8.3762305e37,-8.379222e37,-8.3822133e37,-8.385205e37,-8.3881966e37,-8.391188e37,-8.3941795e37,-8.397171e37,-8.400163e37,-8.403154e37,-8.4061456e37,-8.409137e37,-8.4121284e37,-8.41512e37,-8.4181117e37,-8.4211033e37,-8.4240945e37,-8.427086e37,-8.430078e37,-8.433069e37,-8.4360606e37,-8.4390523e37,-8.442044e37,-8.445035e37,-8.4480267e37,-8.4510184e37,-8.4540095e37,-8.457001e37,-8.459993e37,-8.4629845e37,-8.4659756e37,-8.4689673e37,-8.471959e37,-8.47495e37,-8.4779417e37,-8.4809334e37,-8.483925e37,-8.486916e37,-8.489908e37,-8.4928995e37,-8.4958907e37,-8.4988823e37,-8.501874e37,-8.5048656e37,-8.507857e37,-8.510848e37,-8.51384e37,-8.516831e37,-8.519823e37,-8.522815e37,-8.525806e37,-8.528798e37,-8.531789e37,-8.53478e37,-8.537772e37,-8.540763e37,-8.543755e37,-8.546747e37,-8.549738e37,-8.552729e37,-8.555721e37,-8.558712e37,-8.561704e37,-8.564696e37,-8.567687e37,-8.570679e37,-8.57367e37,-8.576661e37,-8.579653e37,-8.582645e37,-8.585636e37,-8.588628e37,-8.59162e37,-8.59461e37,-8.597602e37,-8.600594e37,-8.603585e37,-8.606577e37,-8.609568e37,-8.61256e37,-8.615551e37,-8.618542e37,-8.621534e37,-8.624526e37,-8.627517e37,-8.630509e37,-8.633501e37,-8.636491e37,-8.639483e37,-8.642475e37,-8.645466e37,-8.648458e37,-8.65145e37,-8.654441e37,-8.657433e37,-8.660424e37,-8.663415e37,-8.666407e37,-8.669399e37,-8.67239e37,-8.675382e37,-8.678374e37,-8.681364e37,-8.684356e37,-8.687347e37,-8.690339e37,-8.693331e37,-8.696322e37,-8.699314e37,-8.702305e37,-8.705296e37,-8.708288e37,-8.71128e37,-8.714271e37,-8.717263e37,-8.720255e37,-8.723245e37,-8.726237e37,-8.729229e37,-8.73222e37,-8.735212e37,-8.738204e37,-8.741195e37,-8.744186e37,-8.747178e37,-8.750169e37,-8.753161e37,-8.756153e37,-8.759144e37,-8.762136e37,-8.765126e37,-8.768118e37,-8.77111e37,-8.774101e37,-8.777093e37,-8.780085e37,-8.783076e37,-8.786067e37,-8.789059e37,-8.79205e37,-8.795042e37,-8.798034e37,-8.801025e37,-8.804017e37,-8.807008e37,-8.809999e37,-8.812991e37,-8.815983e37,-8.818974e37,-8.821966e37,-8.824958e37,-8.827948e37,-8.83094e37,-8.833932e37,-8.836923e37,-8.839915e37,-8.842906e37,-8.845898e37,-8.848889e37,-8.85188e37,-8.854872e37,-8.857864e37,-8.860855e37,-8.863847e37,-8.866839e37,-8.869829e37,-8.872821e37,-8.875813e37,-8.878804e37,-8.881796e37,-8.884788e37,-8.887779e37,-8.89077e37,-8.893762e37,-8.896753e37,-8.899745e37,-8.902737e37,-8.905728e37,-8.90872e37,-8.91171e37,-8.914702e37,-8.917694e37,-8.920685e37,-8.923677e37,-8.926669e37,-8.92966e37,-8.932651e37,-8.935643e37,-8.938634e37,-8.941626e37,-8.944618e37,-8.947609e37,-8.950601e37,-8.953592e37,-8.956583e37,-8.959575e37,-8.962567e37,-8.965558e37,-8.96855e37,-8.971542e37,-8.974532e37,-8.977524e37,-8.980516e37,-8.983507e37,-8.986499e37,-8.98949e37,-8.992482e37,-8.995473e37,-8.998464e37,-9.001456e37,-9.004448e37,-9.007439e37,-9.010431e37,-9.013423e37,-9.016413e37,-9.019405e37,-9.022397e37,-9.025388e37,-9.02838e37,-9.031372e37,-9.034363e37,-9.037354e37,-9.040346e37,-9.043337e37,-9.046329e37,-9.049321e37,-9.052312e37,-9.055304e37,-9.058295e37,-9.061286e37,-9.064278e37,-9.067269e37,-9.070261e37,-9.073253e37,-9.076244e37,-9.079235e37,-9.082227e37,-9.085218e37,-9.08821e37,-9.091202e37,-9.094193e37,-9.097185e37,-9.100176e37,-9.103167e37,-9.106159e37,-9.109151e37,-9.112142e37,-9.115134e37,-9.118126e37,-9.121116e37,-9.124108e37,-9.1271e37,-9.130091e37,-9.133083e37,-9.136074e37,-9.139066e37,-9.142057e37,-9.145048e37,-9.14804e37,-9.151032e37,-9.154023e37,-9.157015e37,-9.160007e37,-9.162997e37,-9.165989e37,-9.168981e37,-9.171972e37,-9.174964e37,-9.177956e37,-9.180947e37,-9.183938e37,-9.18693e37,-9.189921e37,-9.192913e37,-9.195905e37,-9.198896e37,-9.201888e37,-9.204879e37,-9.20787e37,-9.210862e37,-9.213853e37,-9.216845e37,-9.219837e37,-9.222828e37,-9.225819e37,-9.228811e37,-9.231802e37,-9.234794e37,-9.237786e37,-9.240777e37,-9.243769e37,-9.24676e37,-9.249751e37,-9.252743e37,-9.255735e37,-9.258726e37,-9.261718e37,-9.26471e37,-9.2677e37,-9.270692e37,-9.273684e37,-9.276675e37,-9.279667e37,-9.282659e37,-9.28565e37,-9.288641e37,-9.291632e37,-9.294624e37,-9.297616e37,-9.300607e37,-9.303599e37,-9.306591e37,-9.309581e37,-9.312573e37,-9.315565e37,-9.318556e37,-9.321548e37,-9.32454e37,-9.327531e37,-9.330522e37,-9.333514e37,-9.336505e37,-9.339497e37,-9.342489e37,-9.34548e37,-9.348472e37,-9.351463e37,-9.354454e37,-9.357446e37,-9.360438e37,-9.363429e37,-9.366421e37,-9.369412e37,-9.372403e37,-9.375395e37,-9.378386e37,-9.381378e37,-9.38437e37,-9.387361e37,-9.390353e37,-9.393344e37,-9.396335e37,-9.399327e37,-9.402319e37,-9.40531e37,-9.408302e37,-9.411294e37,-9.414284e37,-9.417276e37,-9.420268e37,-9.423259e37,-9.426251e37,-9.429243e37,-9.432234e37,-9.435225e37,-9.438216e37,-9.441208e37,-9.4442e37,-9.447191e37,-9.450183e37,-9.453175e37,-9.456165e37,-9.459157e37,-9.462149e37,-9.46514e37,-9.468132e37,-9.471124e37,-9.474115e37,-9.477106e37,-9.480098e37,-9.483089e37,-9.486081e37,-9.489073e37,-9.492064e37,-9.495056e37,-9.498047e37,-9.501038e37,-9.50403e37,-9.507022e37,-9.510013e37,-9.513005e37,-9.515996e37,-9.518987e37,-9.521979e37,-9.52497e37,-9.527962e37,-9.530954e37,-9.533945e37,-9.536937e37,-9.539928e37,-9.542919e37,-9.545911e37,-9.548903e37,-9.551894e37,-9.554886e37,-9.557878e37,-9.560868e37,-9.56386e37,-9.566852e37,-9.569843e37,-9.572835e37,-9.575827e37,-9.578818e37,-9.581809e37,-9.5848e37,-9.587792e37,-9.590784e37,-9.593775e37,-9.596767e37,-9.599759e37,-9.602749e37,-9.605741e37,-9.608733e37,-9.611724e37,-9.614716e37,-9.617708e37,-9.620699e37,-9.62369e37,-9.626682e37,-9.629673e37,-9.632665e37,-9.635657e37,-9.638648e37,-9.64164e37,-9.644631e37,-9.647622e37,-9.650614e37,-9.653606e37,-9.656597e37,-9.659589e37,-9.66258e37,-9.665571e37,-9.668563e37,-9.671554e37,-9.674546e37,-9.677538e37,-9.680529e37,-9.683521e37,-9.686512e37,-9.689503e37,-9.692495e37,-9.695487e37,-9.698478e37,-9.70147e37,-9.704462e37,-9.707452e37,-9.710444e37,-9.713436e37,-9.716427e37,-9.719419e37,-9.722411e37,-9.725402e37,-9.728393e37,-9.731385e37,-9.734376e37,-9.737368e37,-9.740359e37,-9.743351e37,-9.746343e37,-9.749333e37,-9.752325e37,-9.755317e37,-9.758308e37,-9.7613e37,-9.764292e37,-9.767283e37,-9.770274e37,-9.773266e37,-9.776257e37,-9.779249e37,-9.782241e37,-9.785232e37,-9.788224e37,-9.791215e37,-9.794206e37,-9.797198e37,-9.80019e37,-9.803181e37,-9.806173e37,-9.809165e37,-9.812155e37,-9.815147e37,-9.818138e37,-9.82113e37,-9.824122e37,-9.827113e37,-9.830105e37,-9.833096e37,-9.836087e37,-9.839079e37,-9.842071e37,-9.845062e37,-9.848054e37,-9.851046e37,-9.854036e37,-9.857028e37,-9.86002e37,-9.863011e37,-9.866003e37,-9.868995e37,-9.871986e37,-9.874977e37,-9.877969e37,-9.88096e37,-9.883952e37,-9.886944e37,-9.889935e37,-9.892927e37,-9.895917e37,-9.898909e37,-9.901901e37,-9.904892e37,-9.907884e37,-9.910876e37,-9.913867e37,-9.916858e37,-9.91985e37,-9.922841e37,-9.925833e37,-9.928825e37,-9.931816e37,-9.934808e37,-9.937799e37,-9.94079e37,-9.943782e37,-9.946774e37,-9.949765e37,-9.952757e37,-9.955749e37,-9.958739e37,-9.961731e37,-9.964722e37,-9.967714e37,-9.970706e37,-9.973697e37,-9.976689e37,-9.979681e37,-9.982671e37,-9.985663e37,-9.988655e37,-9.991646e37,-9.994638e37,-9.99763e37,-1.0000621e38,-1.0003612e38,-1.0006604e38,-1.0009595e38,-1.0012587e38,-1.0015579e38,-1.001857e38,-1.0021562e38,-1.0024553e38,-1.0027544e38,-1.0030536e38,-1.0033528e38,-1.0036519e38,-1.0039511e38,-1.0042502e38,-1.0045493e38,-1.0048485e38,-1.0051476e38,-1.0054468e38,-1.005746e38,-1.0060451e38,-1.0063443e38,-1.0066434e38,-1.0069425e38,-1.0072417e38,-1.0075409e38,-1.00784e38,-1.0081392e38,-1.0084384e38,-1.0087374e38,-1.0090366e38,-1.0093358e38,-1.0096349e38,-1.0099341e38,-1.0102333e38,-1.0105324e38,-1.0108315e38,-1.0111307e38,-1.0114298e38,-1.011729e38,-1.0120281e38,-1.0123273e38,-1.0126265e38,-1.0129255e38,-1.0132247e38,-1.0135239e38,-1.013823e38,-1.0141222e38,-1.0144214e38,-1.0147205e38,-1.0150196e38,-1.0153188e38,-1.0156179e38,-1.0159171e38,-1.0162163e38,-1.0165154e38,-1.0168146e38,-1.0171137e38,-1.0174128e38,-1.017712e38,-1.0180112e38,-1.0183103e38,-1.0186095e38,-1.0189087e38,-1.0192077e38,-1.0195069e38,-1.019806e38,-1.0201052e38,-1.0204044e38,-1.0207035e38,-1.0210027e38,-1.0213018e38,-1.0216009e38,-1.0219001e38,-1.0221993e38,-1.0224984e38,-1.0227976e38,-1.0230968e38,-1.0233958e38,-1.023695e38,-1.0239942e38,-1.0242933e38,-1.0245925e38,-1.0248917e38,-1.0251908e38,-1.0254899e38,-1.0257891e38,-1.0260882e38,-1.0263874e38,-1.0266865e38,-1.0269857e38,-1.0272849e38,-1.0275839e38,-1.0278831e38,-1.0281823e38,-1.0284814e38,-1.0287806e38,-1.0290798e38,-1.0293789e38,-1.029678e38,-1.0299772e38,-1.0302763e38,-1.0305755e38,-1.0308747e38,-1.0311738e38,-1.031473e38,-1.0317721e38,-1.0320712e38,-1.0323704e38,-1.0326696e38,-1.0329687e38,-1.0332679e38,-1.0335671e38,-1.0338661e38,-1.0341653e38,-1.0344644e38,-1.0347636e38,-1.0350628e38,-1.0353619e38,-1.0356611e38,-1.0359602e38,-1.0362593e38,-1.0365585e38,-1.0368577e38,-1.0371568e38,-1.037456e38,-1.0377552e38,-1.0380542e38,-1.0383534e38,-1.0386526e38,-1.0389517e38,-1.0392509e38,-1.0395501e38,-1.0398492e38,-1.0401483e38,-1.0404475e38,-1.0407466e38,-1.0410458e38,-1.041345e38,-1.0416441e38,-1.0419433e38,-1.0422423e38,-1.0425415e38,-1.0428407e38,-1.0431398e38,-1.043439e38,-1.0437382e38,-1.0440373e38,-1.0443364e38,-1.0446356e38,-1.0449347e38,-1.0452339e38,-1.0455331e38,-1.0458322e38,-1.0461314e38,-1.0464305e38,-1.0467296e38,-1.0470288e38,-1.047328e38,-1.0476271e38,-1.0479263e38,-1.0482255e38,-1.0485245e38,-1.0488237e38,-1.0491228e38,-1.049422e38,-1.0497212e38,-1.0500203e38,-1.0503195e38,-1.0506186e38,-1.0509177e38,-1.0512169e38,-1.0515161e38,-1.0518152e38,-1.0521144e38,-1.0524136e38,-1.0527126e38,-1.0530118e38,-1.053311e38,-1.0536101e38,-1.0539093e38,-1.0542085e38,-1.0545076e38,-1.0548067e38,-1.0551059e38,-1.055405e38,-1.0557042e38,-1.0560034e38,-1.0563025e38,-1.0566017e38,-1.0569007e38,-1.0571999e38,-1.0574991e38,-1.0577982e38,-1.0580974e38,-1.0583966e38,-1.0586957e38,-1.0589948e38,-1.059294e38,-1.0595931e38,-1.0598923e38,-1.0601915e38,-1.0604906e38,-1.0607898e38,-1.0610889e38,-1.061388e38,-1.0616872e38,-1.0619864e38,-1.0622855e38,-1.0625847e38,-1.0628839e38,-1.0631829e38,-1.0634821e38,-1.0637813e38,-1.0640804e38,-1.0643796e38,-1.0646787e38,-1.0649779e38,-1.065277e38,-1.0655761e38,-1.0658753e38,-1.0661745e38,-1.0664736e38,-1.0667728e38,-1.067072e38,-1.067371e38,-1.0676702e38,-1.0679694e38,-1.0682685e38,-1.0685677e38,-1.0688669e38,-1.069166e38,-1.0694651e38,-1.0697643e38,-1.0700634e38,-1.0703626e38,-1.0706618e38,-1.0709609e38,-1.0712601e38,-1.0715591e38,-1.0718583e38,-1.0721575e38,-1.0724566e38,-1.0727558e38,-1.073055e38,-1.0733541e38,-1.0736532e38,-1.0739524e38,-1.0742515e38,-1.0745507e38,-1.0748499e38,-1.075149e38,-1.0754482e38,-1.0757473e38,-1.0760464e38,-1.0763456e38,-1.0766448e38,-1.0769439e38,-1.0772431e38,-1.0775423e38,-1.0778413e38,-1.0781405e38,-1.0784397e38,-1.0787388e38,-1.079038e38,-1.0793371e38,-1.0796363e38,-1.0799354e38,-1.0802345e38,-1.0805337e38,-1.0808329e38,-1.081132e38,-1.0814312e38,-1.0817304e38,-1.0820294e38,-1.0823286e38,-1.0826278e38,-1.0829269e38,-1.0832261e38,-1.0835253e38,-1.0838244e38,-1.0841235e38,-1.0844227e38,-1.0847218e38,-1.085021e38,-1.0853202e38,-1.0856193e38,-1.0859185e38,-1.0862176e38,-1.0865167e38,-1.0868159e38,-1.087115e38,-1.0874142e38,-1.0877134e38,-1.0880125e38,-1.0883116e38,-1.0886108e38,-1.0889099e38,-1.0892091e38,-1.0895083e38,-1.0898074e38,-1.0901066e38,-1.0904057e38,-1.0907048e38,-1.091004e38,-1.0913032e38,-1.0916023e38,-1.0919015e38,-1.0922007e38,-1.0924997e38,-1.0927989e38,-1.0930981e38,-1.0933972e38,-1.0936964e38,-1.0939956e38,-1.0942947e38,-1.0945938e38,-1.0948929e38,-1.0951921e38,-1.0954913e38,-1.0957904e38,-1.0960896e38,-1.0963888e38,-1.0966878e38,-1.096987e38,-1.0972862e38,-1.0975853e38,-1.0978845e38,-1.0981837e38,-1.0984828e38,-1.0987819e38,-1.0990811e38,-1.0993802e38,-1.0996794e38,-1.0999786e38,-1.1002777e38,-1.1005769e38,-1.100876e38,-1.1011751e38,-1.1014743e38,-1.1017734e38,-1.1020726e38,-1.1023718e38,-1.1026709e38,-1.10297e38,-1.1032692e38,-1.1035683e38,-1.1038675e38,-1.1041667e38,-1.1044658e38,-1.104765e38,-1.1050641e38,-1.1053632e38,-1.1056624e38,-1.1059616e38,-1.1062607e38,-1.1065599e38,-1.1068591e38,-1.1071581e38,-1.1074573e38,-1.1077565e38,-1.1080556e38,-1.1083548e38,-1.108654e38,-1.1089531e38,-1.1092522e38,-1.1095513e38,-1.1098505e38,-1.1101497e38,-1.1104488e38,-1.110748e38,-1.1110472e38,-1.1113462e38,-1.1116454e38,-1.1119446e38,-1.1122437e38,-1.1125429e38,-1.1128421e38,-1.1131412e38,-1.1134403e38,-1.1137395e38,-1.1140386e38,-1.1143378e38,-1.114637e38,-1.1149361e38,-1.1152353e38,-1.1155344e38,-1.1158335e38,-1.1161327e38,-1.1164319e38,-1.116731e38,-1.1170302e38,-1.1173293e38,-1.1176284e38,-1.1179276e38,-1.1182267e38,-1.1185259e38,-1.1188251e38,-1.1191242e38,-1.1194234e38,-1.1197225e38,-1.1200216e38,-1.1203208e38,-1.12062e38,-1.1209191e38,-1.1212183e38,-1.1215175e38,-1.1218165e38,-1.1221157e38,-1.1224149e38,-1.122714e38,-1.1230132e38,-1.1233124e38,-1.1236115e38,-1.1239106e38,-1.1242097e38,-1.1245089e38,-1.1248081e38,-1.1251072e38,-1.1254064e38,-1.1257056e38,-1.1260046e38,-1.1263038e38,-1.126603e38,-1.1269021e38,-1.1272013e38,-1.1275005e38,-1.1277996e38,-1.1280987e38,-1.1283979e38,-1.128697e38,-1.1289962e38,-1.1292954e38,-1.1295945e38,-1.1298937e38,-1.1301929e38,-1.1304919e38,-1.1307911e38,-1.1310903e38,-1.1313894e38,-1.1316886e38,-1.1319877e38,-1.1322869e38,-1.132586e38,-1.1328851e38,-1.1331843e38,-1.1334835e38,-1.1337826e38,-1.1340818e38,-1.134381e38,-1.13468e38,-1.1349792e38,-1.1352784e38,-1.1355775e38,-1.1358767e38,-1.1361759e38,-1.136475e38,-1.1367741e38,-1.1370733e38,-1.1373724e38,-1.1376716e38,-1.1379708e38,-1.1382699e38,-1.1385691e38,-1.1388682e38,-1.1391673e38,-1.1394665e38,-1.1397656e38,-1.1400648e38,-1.140364e38,-1.1406631e38,-1.1409622e38,-1.1412614e38,-1.1415605e38,-1.1418597e38,-1.1421589e38,-1.142458e38,-1.1427572e38,-1.1430563e38,-1.1433554e38,-1.1436546e38,-1.1439538e38,-1.1442529e38,-1.1445521e38,-1.1448513e38,-1.1451503e38,-1.1454495e38,-1.1457487e38,-1.1460478e38,-1.146347e38,-1.1466462e38,-1.1469453e38,-1.1472444e38,-1.1475435e38,-1.1478427e38,-1.1481419e38,-1.148441e38,-1.1487402e38,-1.1490394e38,-1.1493384e38,-1.1496376e38,-1.1499368e38,-1.1502359e38,-1.1505351e38,-1.1508343e38,-1.1511334e38,-1.1514325e38,-1.1517317e38,-1.1520308e38,-1.15233e38,-1.1526292e38,-1.1529283e38,-1.1532275e38,-1.1535266e38,-1.1538257e38,-1.1541249e38,-1.154424e38,-1.1547232e38,-1.1550224e38,-1.1553215e38,-1.1556206e38,-1.1559198e38,-1.1562189e38,-1.1565181e38,-1.1568173e38,-1.1571164e38,-1.1574156e38,-1.1577147e38,-1.1580138e38,-1.158313e38,-1.1586122e38,-1.1589113e38,-1.1592105e38,-1.1595097e38,-1.1598087e38,-1.1601079e38,-1.1604071e38,-1.1607062e38,-1.1610054e38,-1.1613046e38,-1.1616037e38,-1.1619028e38,-1.1622019e38,-1.1625011e38,-1.1628003e38,-1.1630994e38,-1.1633986e38,-1.1636978e38,-1.1639968e38,-1.164296e38,-1.1645952e38,-1.1648943e38,-1.1651935e38,-1.1654927e38,-1.1657918e38,-1.1660909e38,-1.1663901e38,-1.1666892e38,-1.1669884e38,-1.1672876e38,-1.1675867e38,-1.1678859e38,-1.168185e38,-1.1684841e38,-1.1687833e38,-1.1690825e38,-1.1693816e38,-1.1696808e38,-1.1699799e38,-1.170279e38,-1.1705782e38,-1.1708773e38,-1.1711765e38,-1.1714757e38,-1.1717748e38,-1.172074e38,-1.1723731e38,-1.1726722e38,-1.1729714e38,-1.1732706e38,-1.1735697e38,-1.1738689e38,-1.1741681e38,-1.1744671e38,-1.1747663e38,-1.1750655e38,-1.1753646e38,-1.1756638e38,-1.175963e38,-1.1762621e38,-1.1765612e38,-1.1768603e38,-1.1771595e38,-1.1774587e38,-1.1777578e38,-1.178057e38,-1.1783562e38,-1.1786552e38,-1.1789544e38,-1.1792536e38,-1.1795527e38,-1.1798519e38,-1.1801511e38,-1.1804502e38,-1.1807493e38,-1.1810485e38,-1.1813476e38,-1.1816468e38,-1.181946e38,-1.1822451e38,-1.1825443e38,-1.1828434e38,-1.1831425e38,-1.1834417e38,-1.1837409e38,-1.18404e38,-1.1843392e38,-1.1846383e38,-1.1849374e38,-1.1852366e38,-1.1855357e38,-1.1858349e38,-1.1861341e38,-1.1864332e38,-1.1867324e38,-1.1870315e38,-1.1873306e38,-1.1876298e38,-1.187929e38,-1.1882281e38,-1.1885273e38,-1.1888265e38,-1.1891255e38,-1.1894247e38,-1.1897239e38,-1.190023e38,-1.1903222e38,-1.1906214e38,-1.1909205e38,-1.1912196e38,-1.1915188e38,-1.1918179e38,-1.1921171e38,-1.1924162e38,-1.1927154e38,-1.1930146e38,-1.1933136e38,-1.1936128e38,-1.193912e38,-1.1942111e38,-1.1945103e38,-1.1948095e38,-1.1951086e38,-1.1954077e38,-1.1957069e38,-1.196006e38,-1.1963052e38],"cosine":[1.0,0.034899496,-0.9975641,-0.104528464,0.99026805,0.17364818,-0.9781476,-0.2419219,0.9612617,0.309017,-0.9396926,-0.37460658,0.9135454,0.99026805,-0.88294756,-0.9975641,0.8480481,1.0,-0.809017,-0.9975641,0.76604444,0.99026805,-0.7193398,0.17364818,0.6691306,0.9612617,0.9612617,0.034899496,0.5591929,0.9135454,0.99026805,-0.104528464,0.43837115,0.8480481,1.0,-0.2419219,0.309017,0.76604444,0.99026805,-0.37460658,0.17364818,0.6691306,0.9612617,-0.5,0.034899496,-0.9781476,-0.9396926,-0.6156615,-0.104528464,0.43837115,0.8480481,1.0,0.8480481,0.43837115,-0.9975641,-0.809017,-0.37460658,0.17364818,0.6691306,0.9612617,0.9612617,0.6691306,-0.9781476,-0.9396926,-0.6156615,-0.104528464,0.43837115,0.8480481,1.0,0.8480481,-0.88294756,-0.9975641,-0.809017,-0.37460658,0.17364818,0.6691306,0.9612617,0.9612617,-0.7193398,-0.9781476,-0.9396926,-0.6156615,-0.104528464,0.43837115,0.8480481,1.0,-0.5,-0.88294756,-0.9975641,-0.809017,0.9135454,0.17364818,0.76604444,0.9612617,-0.2419219,0.6691306,-0.9781476,-0.37460658,-0.6156615,0.99026805,0.43837115,0.5591929,1.0,-0.5,0.43837115,-0.9975641,-0.6156615,-0.37460658,0.99026805,0.6691306,0.309017,0.9612617,-0.7193398,0.17364818,-0.9396926,0.76604444,-0.104528464,0.9135454,0.8480481,0.034899496,0.8480481,-0.88294756,-0.104528464,-0.809017,0.9135454,0.17364818,0.76604444,0.9612617,-0.2419219,0.6691306,-0.9781476,0.309017,-0.6156615,0.99026805,0.43837115,0.5591929,1.0,-0.5,0.43837115,-0.9975641,0.5591929,-0.37460658,0.99026805,0.6691306,0.309017,0.9612617,-0.7193398,0.17364818,-0.9396926,0.76604444,-0.104528464,0.9135454,0.8480481,0.034899496,0.8480481,-0.88294756,0.034899496,-0.809017,0.9135454,0.17364818,0.76604444,0.9612617,-0.2419219,0.6691306,-0.9781476,0.309017,-0.6156615,0.99026805,0.43837115,0.5591929,1.0,-0.5,-0.5,-0.9975641,0.5591929,-0.37460658,0.99026805,0.6691306,0.309017,0.9612617,0.6691306,-0.2419219,-0.9396926,-0.809017,0.17364818,0.9135454,0.8480481,0.034899496,-0.88294756,-0.88294756,-0.104528464,0.8480481,0.9135454,0.17364818,-0.7193398,-0.9396926,-0.2419219,0.6691306,0.9612617,0.309017,-0.6156615,-0.9975641,-0.37460658,0.5591929,1.0,0.43837115,-0.5,-0.9975641,-0.6156615,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9781476,-0.7193398,0.17364818,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.809017,0.034899496,0.8480481,0.8480481,0.034899496,-0.809017,-0.9396926,-0.104528464,0.76604444,0.9612617,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.6691306,0.99026805,0.43837115,-0.5,-0.9975641,-0.5,0.43837115,1.0,0.5591929,-0.37460658,-0.9781476,-0.6156615,0.309017,0.9612617,0.6691306,-0.2419219,-0.9396926,-0.809017,0.17364818,0.9135454,0.8480481,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.8480481,0.9135454,0.17364818,-0.809017,-0.9396926,-0.2419219,0.6691306,0.9612617,0.309017,-0.6156615,-0.9975641,-0.37460658,0.5591929,1.0,0.43837115,-0.5,-0.9975641,-0.6156615,0.43837115,0.99026805,0.6691306,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9612617,0.76604444,-0.104528464,-0.9396926,-0.809017,0.034899496,0.8480481,0.8480481,0.034899496,-0.809017,-0.9396926,-0.104528464,0.76604444,0.9612617,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.6691306,0.99026805,0.43837115,-0.6156615,-0.9975641,-0.5,0.43837115,1.0,0.5591929,-0.37460658,-0.9975641,-0.6156615,0.309017,0.9612617,0.6691306,-0.2419219,-0.9396926,-0.7193398,0.17364818,0.9135454,0.8480481,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.8480481,0.9135454,0.17364818,-0.809017,-0.9396926,-0.2419219,0.6691306,0.9612617,0.309017,-0.6156615,-0.9781476,-0.37460658,0.5591929,1.0,0.43837115,-0.5,-0.9975641,-0.5,0.43837115,0.99026805,0.6691306,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9612617,0.76604444,-0.104528464,-0.9396926,-0.809017,0.034899496,0.8480481,0.9135454,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.9612617,0.309017,-0.6156615,-0.9396926,-0.2419219,0.6691306,0.99026805,0.43837115,-0.5,-0.9975641,-0.37460658,0.5591929,1.0,0.5591929,-0.37460658,-0.9781476,-0.7193398,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.809017,0.034899496,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.8480481,0.034899496,-0.809017,-0.9396926,-0.2419219,0.6691306,0.99026805,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.5591929,1.0,0.5591929,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.6156615,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.88294756,0.17364818,0.9135454,0.8480481,0.034899496,-0.809017,-0.9396926,-0.2419219,0.8480481,0.9135454,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.5591929,0.9612617,0.309017,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.43837115,-0.5,-0.9975641,-0.6156615,0.309017,0.9612617,0.76604444,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9135454,0.8480481,0.034899496,-0.9396926,-0.809017,0.034899496,0.8480481,0.9135454,0.17364818,-0.7193398,-0.88294756,-0.104528464,0.76604444,0.9612617,0.309017,-0.6156615,-0.9975641,-0.5,0.6691306,0.99026805,0.43837115,-0.5,-0.9975641,-0.6156615,0.309017,1.0,0.5591929,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9135454,0.6691306,-0.2419219,-0.9396926,-0.809017,0.034899496,0.8480481,0.9135454,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.9612617,0.309017,-0.809017,-0.9396926,-0.2419219,0.6691306,0.99026805,0.43837115,-0.5,-0.9781476,-0.37460658,0.5591929,1.0,0.5591929,-0.37460658,-0.9781476,-0.5,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.809017,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.8480481,0.034899496,-0.809017,-0.9396926,-0.2419219,0.6691306,0.99026805,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.5591929,1.0,0.5591929,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9975641,-0.6156615,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.7193398,0.17364818,0.9135454,0.8480481,0.034899496,-0.809017,-0.9396926,0.034899496,0.8480481,0.9135454,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.76604444,0.9612617,0.309017,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.43837115,-0.5,-0.9975641,-0.6156615,0.309017,0.9612617,0.76604444,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9135454,0.8480481,0.034899496,-0.9396926,-0.809017,0.034899496,0.8480481,0.9135454,0.17364818,-0.7193398,-0.88294756,-0.104528464,0.76604444,0.9612617,0.309017,-0.6156615,-0.9975641,-0.2419219,0.6691306,0.99026805,0.43837115,-0.5,-0.9975641,-0.6156615,0.5591929,1.0,0.5591929,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.809017,0.034899496,0.8480481,0.76604444,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.9612617,0.034899496,-0.809017,-0.9396926,-0.2419219,0.6691306,0.99026805,0.43837115,-0.5,-0.9781476,-0.37460658,0.5591929,1.0,0.5591929,-0.37460658,-0.9781476,-0.5,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.809017,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.9135454,0.8480481,0.034899496,-0.809017,-0.9396926,-0.2419219,0.6691306,0.9135454,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.5591929,1.0,0.309017,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.6691306,-0.5,-0.9975641,-0.6156615,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.7193398,0.17364818,0.9135454,0.8480481,0.034899496,-0.809017,-0.9396926,0.034899496,0.8480481,0.9135454,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.76604444,1.0,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.99026805,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,0.17364818,0.76604444,0.8480481,0.309017,-0.809017,-0.9975641,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,-0.37460658,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.9612617,0.034899496,-0.9396926,-0.9396926,0.034899496,0.6691306,0.9135454,0.43837115,-0.7193398,-0.88294756,-0.37460658,0.76604444,1.0,0.309017,-0.37460658,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9396926,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.88294756,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.9396926,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,-0.37460658,0.76604444,0.8480481,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.17364818,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.9612617,0.034899496,-0.6156615,-0.9396926,0.034899496,0.6691306,0.9135454,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.76604444,1.0,0.309017,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.99026805,0.6691306,-0.5,-0.9396926,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.6691306,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.809017,0.309017,1.0,0.76604444,-0.37460658,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.6691306,0.034899496,-0.9396926,-0.9396926,0.034899496,0.6691306,0.9135454,-0.104528464,-0.7193398,-0.88294756,-0.37460658,0.76604444,1.0,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.809017,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.9135454,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.9135454,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.309017,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,-0.5,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,0.309017,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,-0.37460658,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.9612617,0.034899496,-0.9396926,-0.9396926,0.034899496,0.6691306,0.9135454,0.43837115,-0.7193398,-0.88294756,-0.37460658,0.76604444,1.0,0.309017,-0.37460658,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9396926,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.99026805,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,0.17364818,0.76604444,0.8480481,0.309017,-0.809017,-0.9975641,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.9612617,0.034899496,-0.6156615,-0.9396926,0.034899496,0.6691306,0.9135454,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.76604444,1.0,0.309017,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.99026805,0.6691306,-0.5,-0.9396926,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.88294756,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.9396926,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,-0.37460658,0.76604444,0.8480481,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.17364818,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.9135454,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.9135454,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.309017,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,-0.5,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,0.309017,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.6691306,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.809017,0.309017,1.0,0.76604444,-0.37460658,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.6691306,0.034899496,-0.9396926,-0.9396926,0.034899496,0.6691306,0.9135454,-0.104528464,-0.7193398,-0.88294756,-0.37460658,0.76604444,1.0,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.809017,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,1.0,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.5,0.17364818,0.76604444,1.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/huge_positive.json b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/huge_positive.json new file mode 100644 index 000000000000..c1a641f9509d --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/huge_positive.json @@ -0,0 +1 @@ +{"sine":[0.0,0.99939084,0.06975647,-0.9945219,-0.1391731,0.9848077,0.20791169,-0.9702957,-0.27563736,0.95105654,0.34202015,-0.92718387,-0.40673664,0.1391731,0.46947157,-0.06975647,-0.52991927,0.0,0.58778524,0.06975647,-0.64278764,-0.1391731,0.6946584,-0.9848077,-0.7431448,-0.27563736,0.27563736,-0.99939084,-0.82903755,-0.40673664,0.1391731,-0.9945219,-0.89879405,-0.52991927,0.0,-0.9702957,-0.95105654,-0.64278764,-0.1391731,-0.92718387,-0.9848077,-0.7431448,-0.27563736,-0.8660254,-0.99939084,0.20791169,-0.34202015,-0.7880108,-0.9945219,-0.89879405,-0.52991927,0.0,0.52991927,0.89879405,-0.06975647,-0.58778524,-0.92718387,-0.9848077,-0.7431448,-0.27563736,0.27563736,0.7431448,0.20791169,-0.34202015,-0.7880108,-0.9945219,-0.89879405,-0.52991927,0.0,0.52991927,0.46947157,-0.06975647,-0.58778524,-0.92718387,-0.9848077,-0.7431448,-0.27563736,0.27563736,0.6946584,0.20791169,-0.34202015,-0.7880108,-0.9945219,-0.89879405,-0.52991927,0.0,0.8660254,0.46947157,-0.06975647,-0.58778524,-0.40673664,-0.9848077,0.64278764,-0.27563736,0.9702957,0.7431448,0.20791169,0.92718387,-0.7880108,-0.1391731,-0.89879405,0.82903755,0.0,0.8660254,0.89879405,-0.06975647,0.7880108,-0.92718387,0.1391731,-0.7431448,0.95105654,0.27563736,0.6946584,0.9848077,-0.34202015,-0.64278764,-0.9945219,0.40673664,-0.52991927,0.99939084,0.52991927,0.46947157,0.9945219,-0.58778524,-0.40673664,-0.9848077,0.64278764,-0.27563736,0.9702957,0.7431448,0.20791169,-0.95105654,-0.7880108,-0.1391731,-0.89879405,0.82903755,0.0,0.8660254,0.89879405,-0.06975647,-0.82903755,-0.92718387,0.1391731,-0.7431448,0.95105654,0.27563736,0.6946584,0.9848077,-0.34202015,-0.64278764,-0.9945219,0.40673664,-0.52991927,0.99939084,0.52991927,0.46947157,-0.99939084,-0.58778524,-0.40673664,-0.9848077,0.64278764,-0.27563736,0.9702957,0.7431448,0.20791169,-0.95105654,-0.7880108,-0.1391731,-0.89879405,0.82903755,0.0,0.8660254,-0.8660254,-0.06975647,-0.82903755,-0.92718387,0.1391731,-0.7431448,0.95105654,0.27563736,-0.7431448,-0.9702957,-0.34202015,0.58778524,0.9848077,0.40673664,-0.52991927,-0.99939084,-0.46947157,0.46947157,0.9945219,0.52991927,-0.40673664,-0.9848077,-0.6946584,0.34202015,0.9702957,0.7431448,-0.27563736,-0.95105654,-0.7880108,0.06975647,0.92718387,0.82903755,0.0,-0.89879405,-0.8660254,-0.06975647,0.7880108,0.89879405,0.1391731,-0.7431448,-0.9702957,-0.20791169,0.6946584,0.9848077,0.27563736,-0.64278764,-0.9945219,-0.46947157,0.58778524,0.99939084,0.52991927,-0.52991927,-0.99939084,-0.58778524,0.34202015,0.9945219,0.64278764,-0.27563736,-0.9848077,-0.6946584,0.20791169,0.92718387,0.7431448,-0.1391731,-0.89879405,-0.8660254,0.06975647,0.8660254,0.89879405,0.0,-0.82903755,-0.92718387,-0.20791169,0.7880108,0.95105654,0.27563736,-0.7431448,-0.9702957,-0.34202015,0.58778524,0.9848077,0.40673664,-0.52991927,-0.9945219,-0.46947157,0.46947157,0.9945219,0.52991927,-0.40673664,-0.9848077,-0.58778524,0.34202015,0.9702957,0.7431448,-0.27563736,-0.95105654,-0.7880108,0.06975647,0.92718387,0.82903755,0.0,-0.89879405,-0.8660254,-0.06975647,0.7880108,0.89879405,0.1391731,-0.7431448,-0.92718387,-0.20791169,0.6946584,0.9848077,0.27563736,-0.64278764,-0.9945219,-0.34202015,0.58778524,0.99939084,0.52991927,-0.52991927,-0.99939084,-0.58778524,0.34202015,0.9945219,0.64278764,-0.27563736,-0.9848077,-0.6946584,0.20791169,0.92718387,0.7431448,-0.1391731,-0.89879405,-0.7880108,0.06975647,0.8660254,0.89879405,0.0,-0.82903755,-0.92718387,-0.06975647,0.7880108,0.95105654,0.27563736,-0.7431448,-0.9702957,-0.34202015,0.6946584,0.9848077,0.40673664,-0.52991927,-0.9945219,-0.46947157,0.46947157,0.9945219,0.52991927,-0.40673664,-0.9848077,-0.58778524,0.34202015,0.9702957,0.7431448,-0.27563736,-0.95105654,-0.7880108,0.20791169,0.92718387,0.82903755,0.0,-0.89879405,-0.8660254,-0.06975647,0.8660254,0.89879405,0.1391731,-0.7431448,-0.92718387,-0.20791169,0.6946584,0.9848077,0.27563736,-0.64278764,-0.9945219,-0.34202015,0.58778524,0.99939084,0.52991927,-0.40673664,-0.9945219,-0.46947157,0.46947157,0.9945219,0.64278764,-0.27563736,-0.95105654,-0.7880108,0.34202015,0.9702957,0.7431448,-0.1391731,-0.89879405,-0.8660254,-0.06975647,0.92718387,0.82903755,0.0,-0.82903755,-0.92718387,-0.20791169,0.6946584,0.89879405,0.1391731,-0.7431448,-0.9702957,-0.34202015,0.58778524,0.99939084,0.27563736,-0.64278764,-0.9945219,-0.46947157,0.46947157,0.9945219,0.64278764,-0.52991927,-0.99939084,-0.58778524,0.34202015,0.9702957,0.7431448,-0.1391731,-0.9848077,-0.6946584,0.20791169,0.92718387,0.82903755,0.0,-0.82903755,-0.7880108,0.06975647,0.8660254,0.89879405,0.1391731,-0.7431448,-0.9702957,-0.34202015,0.7880108,0.95105654,0.27563736,-0.64278764,-0.9945219,-0.46947157,0.46947157,0.9848077,0.40673664,-0.52991927,-0.99939084,-0.58778524,0.34202015,0.9702957,0.52991927,-0.40673664,-0.9848077,-0.6946584,0.20791169,0.92718387,0.82903755,-0.27563736,-0.95105654,-0.7880108,0.06975647,0.8660254,0.89879405,0.1391731,-0.89879405,-0.8660254,-0.06975647,0.7880108,0.95105654,0.27563736,-0.64278764,-0.92718387,-0.20791169,0.6946584,0.9848077,0.40673664,-0.52991927,-0.99939084,-0.34202015,0.58778524,0.99939084,0.52991927,-0.40673664,-0.9848077,-0.6946584,0.46947157,0.9945219,0.64278764,-0.27563736,-0.95105654,-0.7880108,0.06975647,0.8660254,0.7431448,-0.1391731,-0.89879405,-0.8660254,-0.06975647,0.7880108,0.95105654,0.0,-0.82903755,-0.92718387,-0.20791169,0.6946584,0.9848077,0.40673664,-0.7431448,-0.9702957,-0.34202015,0.58778524,0.99939084,0.52991927,-0.40673664,-0.9945219,-0.46947157,0.46947157,0.9945219,0.64278764,-0.27563736,-0.95105654,-0.58778524,0.34202015,0.9702957,0.7431448,-0.1391731,-0.89879405,-0.8660254,0.20791169,0.92718387,0.82903755,0.0,-0.82903755,-0.92718387,-0.20791169,0.8660254,0.89879405,0.1391731,-0.7431448,-0.9702957,-0.34202015,0.58778524,0.95105654,0.27563736,-0.64278764,-0.9945219,-0.46947157,0.46947157,0.9945219,0.64278764,-0.52991927,-0.99939084,-0.58778524,0.34202015,0.9702957,0.7431448,-0.1391731,-0.9848077,-0.6946584,0.20791169,0.92718387,0.82903755,0.0,-0.82903755,-0.7880108,0.06975647,0.8660254,0.89879405,0.1391731,-0.7431448,-0.9702957,-0.06975647,0.7880108,0.95105654,0.27563736,-0.64278764,-0.9945219,-0.46947157,0.6946584,0.9848077,0.40673664,-0.52991927,-0.99939084,-0.58778524,0.34202015,0.99939084,0.52991927,-0.40673664,-0.9848077,-0.6946584,0.20791169,0.92718387,0.64278764,-0.27563736,-0.95105654,-0.7880108,0.06975647,0.8660254,0.89879405,-0.1391731,-0.89879405,-0.8660254,-0.06975647,0.7880108,0.95105654,0.27563736,-0.64278764,-0.92718387,-0.20791169,0.6946584,0.9848077,0.40673664,-0.52991927,-0.99939084,-0.34202015,0.58778524,0.99939084,0.52991927,-0.40673664,-0.9848077,-0.6946584,0.46947157,0.9945219,0.64278764,-0.27563736,-0.95105654,-0.7880108,0.06975647,0.9702957,0.7431448,-0.1391731,-0.89879405,-0.8660254,-0.06975647,0.7880108,0.82903755,0.0,-0.82903755,-0.92718387,-0.20791169,0.6946584,0.9848077,0.1391731,-0.7431448,-0.9702957,-0.34202015,0.58778524,0.99939084,0.52991927,-0.64278764,-0.9945219,-0.46947157,0.46947157,0.9945219,0.64278764,-0.27563736,-0.99939084,-0.58778524,0.34202015,0.9702957,0.7431448,-0.1391731,-0.89879405,-0.8660254,0.20791169,0.92718387,0.82903755,0.0,-0.82903755,-0.92718387,-0.20791169,0.8660254,0.89879405,0.1391731,-0.7431448,-0.9702957,-0.34202015,0.58778524,0.95105654,0.27563736,-0.64278764,-0.9945219,-0.46947157,0.46947157,0.9945219,0.40673664,-0.52991927,-0.99939084,-0.58778524,0.34202015,0.9702957,0.7431448,-0.40673664,-0.9848077,-0.6946584,0.20791169,0.92718387,0.82903755,0.0,-0.95105654,-0.7880108,0.06975647,0.8660254,0.89879405,0.1391731,-0.7431448,-0.8660254,-0.06975647,0.7880108,0.95105654,0.27563736,-0.64278764,-0.9945219,-0.46947157,0.6946584,0.9848077,0.40673664,-0.52991927,-0.99939084,-0.58778524,0.34202015,0.99939084,0.52991927,-0.40673664,-0.9848077,-0.6946584,0.20791169,0.92718387,0.64278764,0.0,-0.95105654,-0.58778524,0.06975647,0.9702957,0.89879405,-0.1391731,-0.7431448,-0.8660254,0.20791169,0.7880108,0.82903755,0.27563736,-0.82903755,-0.9945219,-0.20791169,0.46947157,0.9848077,0.1391731,-0.52991927,-0.9702957,-0.58778524,0.58778524,0.9702957,0.52991927,-0.64278764,-0.9848077,-0.46947157,0.20791169,0.9945219,0.82903755,-0.27563736,-0.99939084,-0.7880108,0.34202015,0.8660254,0.7431448,0.1391731,-0.89879405,-0.6946584,-0.06975647,0.92718387,0.95105654,0.0,-0.64278764,-0.92718387,0.06975647,0.6946584,0.89879405,0.40673664,-0.7431448,-0.99939084,-0.34202015,0.7880108,0.99939084,0.27563736,-0.40673664,-0.9945219,-0.6946584,0.46947157,0.9848077,0.64278764,-0.52991927,-0.95105654,-0.58778524,0.06975647,0.9702957,0.52991927,-0.1391731,-0.9848077,-0.8660254,0.20791169,0.7880108,0.82903755,-0.27563736,-0.82903755,-0.7880108,-0.20791169,0.8660254,0.9848077,0.1391731,-0.89879405,-0.9702957,-0.06975647,0.58778524,0.95105654,0.52991927,-0.64278764,-0.92718387,-0.46947157,0.6946584,0.9945219,0.40673664,-0.27563736,-0.99939084,-0.34202015,0.34202015,0.99939084,0.7431448,-0.40673664,-0.89879405,-0.6946584,0.46947157,0.92718387,0.64278764,0.0,-0.95105654,-0.92718387,0.06975647,0.9702957,0.89879405,-0.1391731,-0.7431448,-0.8660254,-0.34202015,0.7880108,0.82903755,0.27563736,-0.82903755,-0.9945219,-0.20791169,0.46947157,0.9848077,0.64278764,-0.52991927,-0.9702957,-0.58778524,0.58778524,0.9702957,0.52991927,-0.1391731,-0.9848077,-0.46947157,0.20791169,0.9945219,0.82903755,-0.27563736,-0.82903755,-0.7880108,0.34202015,0.8660254,0.7431448,0.1391731,-0.89879405,-0.9702957,-0.06975647,0.92718387,0.95105654,0.0,-0.64278764,-0.92718387,-0.46947157,0.6946584,0.89879405,0.40673664,-0.7431448,-0.99939084,-0.34202015,0.34202015,0.99939084,0.27563736,-0.40673664,-0.9945219,-0.6946584,0.46947157,0.92718387,0.64278764,-0.52991927,-0.95105654,-0.58778524,0.06975647,0.9702957,0.89879405,-0.1391731,-0.9848077,-0.8660254,0.20791169,0.7880108,0.82903755,0.27563736,-0.82903755,-0.7880108,-0.20791169,0.8660254,0.9848077,0.1391731,-0.52991927,-0.9702957,-0.06975647,0.58778524,0.95105654,0.52991927,-0.64278764,-0.9848077,-0.46947157,0.6946584,0.9945219,0.40673664,-0.27563736,-0.99939084,-0.7880108,0.34202015,0.99939084,0.7431448,-0.40673664,-0.89879405,-0.6946584,-0.06975647,0.92718387,0.64278764,0.0,-0.95105654,-0.92718387,0.06975647,0.6946584,0.89879405,-0.1391731,-0.7431448,-0.8660254,-0.34202015,0.7880108,0.99939084,0.27563736,-0.82903755,-0.9945219,-0.20791169,0.46947157,0.9848077,0.64278764,-0.52991927,-0.9702957,-0.58778524,0.58778524,0.9702957,0.52991927,-0.1391731,-0.9848077,-0.8660254,0.20791169,0.9945219,0.82903755,-0.27563736,-0.82903755,-0.7880108,-0.20791169,0.8660254,0.7431448,0.1391731,-0.89879405,-0.9702957,-0.06975647,0.58778524,0.95105654,0.0,-0.64278764,-0.92718387,-0.46947157,0.6946584,0.9945219,0.40673664,-0.7431448,-0.99939084,-0.34202015,0.34202015,0.99939084,0.7431448,-0.40673664,-0.9945219,-0.6946584,0.46947157,0.92718387,0.64278764,0.0,-0.95105654,-0.58778524,0.06975647,0.9702957,0.89879405,-0.1391731,-0.7431448,-0.8660254,0.20791169,0.7880108,0.82903755,0.27563736,-0.82903755,-0.9945219,-0.20791169,0.8660254,0.9848077,0.1391731,-0.52991927,-0.9702957,-0.58778524,0.58778524,0.95105654,0.52991927,-0.64278764,-0.9848077,-0.46947157,0.20791169,0.9945219,0.40673664,-0.27563736,-0.99939084,-0.7880108,0.34202015,0.8660254,0.7431448,-0.40673664,-0.89879405,-0.6946584,-0.06975647,0.92718387,0.95105654,0.0,-0.95105654,-0.92718387,0.06975647,0.6946584,0.89879405,0.40673664,-0.7431448,-0.8660254,-0.34202015,0.7880108,0.99939084,0.27563736,-0.40673664,-0.9945219,-0.20791169,0.46947157,0.9848077,0.64278764,-0.52991927,-0.95105654,-0.58778524,0.58778524,0.9702957,0.52991927,-0.1391731,-0.9848077,-0.8660254,0.20791169,0.9945219,0.82903755,-0.27563736,-0.82903755,-0.7880108,-0.20791169,0.8660254,0.9848077,0.1391731,-0.89879405,-0.9702957,-0.06975647,0.58778524,0.95105654,0.52991927,-0.64278764,-0.92718387,-0.46947157,0.6946584,0.9945219,0.40673664,-0.27563736,-0.99939084,-0.34202015,0.34202015,0.99939084,0.7431448,-0.40673664,-0.89879405,-0.6946584,0.46947157,0.92718387,0.64278764,0.0,-0.95105654,-0.92718387,0.06975647,0.9702957,0.89879405,-0.1391731,-0.7431448,-0.8660254,-0.34202015,0.7880108,0.82903755,0.27563736,-0.82903755,-0.9945219,-0.20791169,0.46947157,0.9848077,0.1391731,-0.52991927,-0.9702957,-0.58778524,0.58778524,0.9702957,0.52991927,-0.64278764,-0.9848077,-0.46947157,0.20791169,0.9945219,0.82903755,-0.27563736,-0.99939084,-0.7880108,0.34202015,0.8660254,0.7431448,0.1391731,-0.89879405,-0.6946584,-0.06975647,0.92718387,0.95105654,0.0,-0.64278764,-0.92718387,0.06975647,0.6946584,0.89879405,0.40673664,-0.7431448,-0.99939084,-0.34202015,0.7880108,0.99939084,0.27563736,-0.40673664,-0.9945219,-0.6946584,0.46947157,0.9848077,0.64278764,-0.52991927,-0.95105654,-0.58778524,0.06975647,0.9702957,0.52991927,-0.1391731,-0.9848077,-0.8660254,0.20791169,0.7880108,0.82903755,-0.27563736,-0.82903755,-0.7880108,-0.20791169,0.8660254,0.9848077,0.1391731,-0.52991927,-0.9702957,-0.06975647,0.58778524,0.95105654,0.52991927,-0.64278764,-0.9848077,-0.46947157,0.6946584,0.9945219,0.40673664,-0.27563736,-0.99939084,-0.7880108,0.34202015,0.99939084,0.7431448,-0.40673664,-0.89879405,-0.6946584,-0.06975647,0.92718387,0.64278764,0.0,-0.95105654,-0.92718387,0.06975647,0.6946584,0.89879405,-0.1391731,-0.7431448,-0.8660254,-0.34202015,0.7880108,0.99939084,0.27563736,-0.82903755,-0.9945219,-0.20791169,0.46947157,0.9848077,0.64278764,-0.52991927,-0.9702957,-0.58778524,0.58778524,0.9702957,0.52991927,-0.1391731,-0.9848077,-0.46947157,0.20791169,0.9945219,0.82903755,-0.27563736,-0.82903755,-0.7880108,0.34202015,0.8660254,0.7431448,0.1391731,-0.89879405,-0.9702957,-0.06975647,0.92718387,0.95105654,0.0,-0.64278764,-0.92718387,-0.46947157,0.6946584,0.89879405,0.40673664,-0.7431448,-0.99939084,-0.34202015,0.34202015,0.99939084,0.27563736,-0.40673664,-0.9945219,-0.6946584,0.46947157,0.92718387,0.64278764,-0.52991927,-0.95105654,-0.58778524,0.06975647,0.9702957,0.89879405,-0.1391731,-0.9848077,-0.8660254,0.20791169,0.7880108,0.82903755,0.27563736,-0.82903755,-0.7880108,-0.20791169,0.8660254,0.9848077,0.1391731,-0.52991927,-0.9702957,-0.06975647,0.58778524,0.95105654,0.52991927,-0.64278764,-0.9848077,-0.46947157,0.20791169,0.9945219,0.40673664,-0.27563736,-0.99939084,-0.7880108,0.34202015,0.8660254,0.7431448,-0.40673664,-0.89879405,-0.6946584,-0.06975647,0.92718387,0.95105654,0.0,-0.95105654,-0.92718387,0.06975647,0.6946584,0.89879405,0.40673664,-0.7431448,-0.8660254,-0.34202015,0.7880108,0.99939084,0.27563736,-0.40673664,-0.9945219,-0.20791169,0.46947157,0.9848077,0.64278764,-0.52991927,-0.95105654,-0.58778524,0.58778524,0.9702957,0.52991927,-0.1391731,-0.9848077,-0.8660254,0.20791169,0.9945219,0.82903755,-0.27563736,-0.82903755,-0.7880108,-0.20791169,0.8660254,0.7431448,0.1391731,-0.89879405,-0.9702957,-0.06975647,0.58778524,0.95105654,0.0,-0.64278764,-0.92718387,-0.46947157,0.6946584,0.9945219,0.40673664,-0.7431448,-0.99939084,-0.34202015,0.34202015,0.99939084,0.7431448,-0.40673664,-0.9945219,-0.6946584,0.46947157,0.92718387,0.64278764,0.0,-0.95105654,-0.58778524,0.06975647,0.9702957,0.89879405,-0.1391731,-0.7431448,-0.8660254,0.20791169,0.7880108,0.82903755,0.27563736,-0.82903755,-0.9945219,-0.20791169,0.8660254,0.9848077,0.1391731,-0.52991927,-0.9702957,-0.58778524,0.58778524,0.95105654,0.52991927,-0.64278764,-0.9848077,-0.46947157,0.20791169,0.9945219,0.82903755,-0.27563736,-0.99939084,-0.7880108,0.34202015,0.8660254,0.7431448,0.1391731,-0.89879405,-0.6946584,-0.06975647,0.92718387,0.95105654,0.0,-0.64278764,-0.92718387,0.06975647,0.6946584,0.89879405,0.40673664,-0.7431448,-0.99939084,-0.34202015,0.7880108,0.99939084,0.27563736,-0.40673664,-0.9945219,-0.6946584,0.46947157,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.40673664,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.92718387,0.95105654,0.52991927,-0.1391731,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.34202015,0.34202015,0.8660254,0.27563736,-0.40673664,-0.89879405,-0.9702957,0.46947157,0.92718387,0.95105654,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.82903755,0.27563736,-0.40673664,-0.7880108,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.06975647,0.58778524,0.9702957,0.89879405,-0.64278764,-0.9848077,-0.8660254,0.6946584,0.9945219,0.82903755,0.27563736,-0.99939084,-0.7880108,-0.20791169,0.99939084,0.7431448,0.1391731,-0.52991927,-0.6946584,-0.06975647,0.58778524,0.64278764,0.0,-0.64278764,-0.9848077,0.06975647,0.6946584,0.9945219,-0.1391731,-0.7431448,-0.99939084,-0.7880108,0.7880108,0.99939084,0.7431448,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.6946584,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.99939084,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,0.64278764,-0.89879405,-0.9702957,-0.58778524,0.92718387,0.95105654,0.52991927,-0.1391731,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.34202015,0.34202015,0.8660254,0.27563736,-0.40673664,-0.89879405,-0.9702957,0.46947157,0.92718387,0.95105654,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.82903755,0.27563736,-0.40673664,-0.7880108,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.06975647,0.58778524,0.9702957,0.89879405,-0.64278764,-0.9848077,-0.8660254,0.6946584,0.9945219,0.82903755,0.27563736,-0.99939084,-0.7880108,-0.20791169,0.99939084,0.7431448,0.1391731,-0.52991927,-0.6946584,-0.06975647,0.58778524,0.64278764,0.0,-0.64278764,-0.9848077,0.06975647,0.6946584,0.9945219,-0.1391731,-0.7431448,-0.99939084,-0.7880108,0.7880108,0.99939084,0.7431448,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.6946584,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.99939084,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,0.64278764,-0.89879405,-0.9702957,-0.58778524,0.92718387,0.95105654,0.52991927,-0.1391731,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.34202015,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,0.46947157,0.92718387,0.95105654,0.52991927,-0.95105654,-0.92718387,-0.46947157,0.9702957,0.89879405,0.40673664,-0.27563736,-0.8660254,-0.34202015,0.34202015,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.58778524,0.9702957,0.89879405,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.9945219,0.82903755,0.27563736,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.7431448,0.1391731,-0.52991927,-0.6946584,-0.06975647,0.58778524,0.9702957,0.0,-0.64278764,-0.9848077,0.06975647,0.6946584,0.9945219,0.82903755,-0.7431448,-0.99939084,-0.7880108,0.7880108,0.99939084,0.7431448,0.1391731,-0.9945219,-0.6946584,-0.06975647,0.9848077,0.64278764,0.0,-0.64278764,-0.58778524,0.06975647,0.6946584,0.52991927,-0.1391731,-0.7431448,-0.99939084,0.20791169,0.7880108,0.99939084,-0.27563736,-0.82903755,-0.9945219,-0.6946584,0.8660254,0.9848077,0.64278764,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.95105654,0.52991927,-0.1391731,-0.92718387,-0.46947157,0.20791169,0.7880108,0.40673664,-0.27563736,-0.82903755,-0.34202015,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,0.46947157,0.92718387,0.95105654,0.52991927,-0.95105654,-0.92718387,-0.46947157,0.9702957,0.89879405,0.40673664,-0.27563736,-0.8660254,-0.34202015,0.34202015,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.58778524,0.9702957,0.89879405,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.9945219,0.82903755,0.27563736,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.7431448,0.1391731,-0.52991927,-0.6946584,-0.06975647,0.58778524,0.9702957,0.0,-0.64278764,-0.9848077,0.06975647,0.6946584,0.9945219,0.82903755,-0.7431448,-0.99939084,-0.7880108,0.7880108,0.99939084,0.7431448,0.1391731,-0.9945219,-0.6946584,-0.06975647,0.9848077,0.64278764,0.0,-0.64278764,-0.58778524,0.06975647,0.6946584,0.52991927,-0.1391731,-0.7431448,-0.99939084,0.20791169,0.7880108,0.99939084,-0.27563736,-0.82903755,-0.9945219,-0.6946584,0.8660254,0.9848077,0.64278764,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.95105654,0.52991927,-0.1391731,-0.92718387,-0.46947157,0.20791169,0.7880108,0.40673664,-0.27563736,-0.82903755,-0.34202015,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,0.46947157,0.92718387,0.95105654,0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.8660254,-0.34202015,0.34202015,0.8660254,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.95105654,-0.52991927,-0.95105654,-0.92718387,0.58778524,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.9945219,0.82903755,0.27563736,-0.40673664,-0.7880108,-0.20791169,0.46947157,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.06975647,0.58778524,0.9702957,0.0,-0.64278764,-0.9848077,-0.8660254,0.6946584,0.9945219,0.82903755,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.99939084,0.7431448,0.1391731,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.64278764,0.0,-0.64278764,-0.58778524,0.06975647,0.6946584,0.9945219,-0.1391731,-0.7431448,-0.99939084,0.20791169,0.7880108,0.99939084,0.7431448,-0.82903755,-0.9945219,-0.6946584,0.8660254,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.40673664,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.92718387,0.95105654,0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.8660254,-0.34202015,0.34202015,0.8660254,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.95105654,-0.52991927,-0.95105654,-0.92718387,0.58778524,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.9945219,0.82903755,0.27563736,-0.40673664,-0.7880108,-0.20791169,0.46947157,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.06975647,0.58778524,0.9702957,0.0,-0.64278764,-0.9848077,-0.8660254,0.6946584,0.9945219,0.82903755,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.99939084,0.7431448,0.1391731,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.64278764,0.0,-0.64278764,-0.58778524,0.06975647,0.6946584,0.9945219,-0.1391731,-0.7431448,-0.99939084,0.20791169,0.7880108,0.99939084,0.7431448,-0.82903755,-0.9945219,-0.6946584,0.8660254,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.40673664,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.92718387,0.95105654,0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.8660254,-0.34202015,0.34202015,0.8660254,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.95105654,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.82903755,0.27563736,-0.40673664,-0.7880108,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.06975647,0.58778524,0.9702957,0.89879405,-0.64278764,-0.9848077,-0.8660254,0.6946584,0.9945219,0.82903755,0.27563736,-0.99939084,-0.7880108,-0.20791169,0.99939084,0.7431448,0.1391731,-0.52991927,-0.6946584,-0.06975647,0.58778524,0.64278764,0.0,-0.64278764,-0.9848077,0.06975647,0.6946584,0.9945219,-0.1391731,-0.7431448,-0.99939084,-0.7880108,0.7880108,0.99939084,0.7431448,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.6946584,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.99939084,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,0.64278764,-0.89879405,-0.9702957,-0.58778524,0.92718387,0.95105654,0.52991927,-0.1391731,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.34202015,0.34202015,0.8660254,0.27563736,-0.40673664,-0.89879405,-0.9702957,0.46947157,0.92718387,0.95105654,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.82903755,0.27563736,-0.40673664,-0.7880108,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.06975647,0.58778524,0.9702957,0.89879405,-0.64278764,-0.9848077,-0.8660254,0.6946584,0.9945219,0.82903755,0.27563736,-0.99939084,-0.7880108,-0.20791169,0.99939084,0.7431448,0.1391731,-0.52991927,-0.6946584,-0.06975647,0.58778524,0.64278764,0.0,-0.64278764,-0.9848077,0.06975647,0.6946584,0.9945219,-0.1391731,-0.7431448,-0.99939084,-0.7880108,0.7880108,0.99939084,0.7431448,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.6946584,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.99939084,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,0.64278764,-0.89879405,-0.9702957,-0.58778524,0.92718387,0.95105654,0.52991927,-0.1391731,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.34202015,0.34202015,0.8660254,0.27563736,-0.40673664,-0.89879405,-0.9702957,0.46947157,0.92718387,0.95105654,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.58778524,0.9702957,0.89879405,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.9945219,0.82903755,0.27563736,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.7431448,0.1391731,-0.52991927,-0.6946584,-0.06975647,0.58778524,0.9702957,0.0,-0.64278764,-0.9848077,0.06975647,0.6946584,0.9945219,0.82903755,-0.7431448,-0.99939084,-0.7880108,0.7880108,0.99939084,0.7431448,0.1391731,-0.9945219,-0.6946584,-0.06975647,0.9848077,0.64278764,0.0,-0.64278764,-0.58778524,0.06975647,0.6946584,0.52991927,-0.1391731,-0.7431448,-0.99939084,0.20791169,0.7880108,0.99939084,-0.27563736,-0.82903755,-0.9945219,-0.6946584,0.8660254,0.9848077,0.64278764,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.95105654,0.52991927,-0.1391731,-0.92718387,-0.46947157,0.20791169,0.7880108,0.40673664,-0.27563736,-0.82903755,-0.34202015,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,0.46947157,0.92718387,0.95105654,0.52991927,-0.95105654,-0.92718387,-0.46947157,0.9702957,0.89879405,0.40673664,-0.27563736,-0.8660254,-0.34202015,0.34202015,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.58778524,0.9702957,0.89879405,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.9945219,0.82903755,0.27563736,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.7431448,0.1391731,-0.52991927,-0.6946584,-0.06975647,0.58778524,0.9702957,0.0,-0.64278764,-0.9848077,0.06975647,0.6946584,0.9945219,0.82903755,-0.7431448,-0.99939084,-0.7880108,0.7880108,0.99939084,0.7431448,0.1391731,-0.9945219,-0.6946584,-0.06975647,0.9848077,0.64278764,0.0,-0.64278764,-0.58778524,0.06975647,0.6946584,0.52991927,-0.1391731,-0.7431448,-0.99939084,0.20791169,0.7880108,0.99939084,-0.27563736,-0.82903755,-0.9945219,-0.6946584,0.8660254,0.9848077,0.64278764,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.95105654,0.52991927,-0.1391731,-0.92718387,-0.46947157,0.20791169,0.7880108,0.40673664,-0.27563736,-0.82903755,-0.34202015,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,0.46947157,0.92718387,0.95105654,0.52991927,-0.95105654,-0.92718387,-0.46947157,0.9702957,0.89879405,0.40673664,-0.27563736,-0.8660254,-0.34202015,0.34202015,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.58778524,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.9945219,0.82903755,0.27563736,-0.40673664,-0.7880108,-0.20791169,0.46947157,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.06975647,0.58778524,0.9702957,0.0,-0.64278764,-0.9848077,-0.8660254,0.6946584,0.9945219,0.82903755,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.99939084,0.7431448,0.1391731,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.64278764,0.0,-0.64278764,-0.58778524,0.06975647,0.6946584,0.9945219,-0.1391731,-0.7431448,-0.99939084,0.20791169,0.7880108,0.99939084,0.7431448,-0.82903755,-0.9945219,-0.6946584,0.8660254,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.40673664,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.92718387,0.95105654,0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.8660254,-0.34202015,0.34202015,0.8660254,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.95105654,-0.52991927,-0.95105654,-0.92718387,0.58778524,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.9945219,0.82903755,0.27563736,-0.40673664,-0.7880108,-0.20791169,0.46947157,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.06975647,0.58778524,0.9702957,0.0,-0.64278764,-0.9848077,-0.8660254,0.6946584,0.9945219,0.82903755,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.99939084,0.7431448,0.1391731,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.64278764,0.0,-0.64278764,-0.58778524,0.06975647,0.6946584,0.9945219,-0.1391731,-0.7431448,-0.99939084,0.20791169,0.7880108,0.99939084,0.7431448,-0.82903755,-0.9945219,-0.6946584,0.8660254,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.40673664,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.92718387,0.95105654,0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.8660254,-0.34202015,0.34202015,0.8660254,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.95105654,-0.52991927,-0.95105654,-0.92718387,0.58778524,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.9945219,0.82903755,0.27563736,-0.40673664,-0.7880108,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.06975647,0.58778524,0.9702957,0.89879405,-0.64278764,-0.9848077,-0.8660254,0.6946584,0.9945219,0.82903755,0.27563736,-0.99939084,-0.7880108,-0.20791169,0.99939084,0.7431448,0.1391731,-0.52991927,-0.6946584,-0.06975647,0.58778524,0.64278764,0.0,-0.64278764,-0.9848077,0.06975647,0.6946584,0.9945219,-0.1391731,-0.7431448,-0.99939084,-0.7880108,0.7880108,0.99939084,0.7431448,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.6946584,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.99939084,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,0.8660254,0.9848077,0.64278764,0.0],"x":[1.03762935e20,2.9915108e34,5.9830217e34,8.974532e34,1.1966043e35,1.4957554e35,1.7949065e35,2.0940576e35,2.3932087e35,2.6923597e35,2.9915108e35,3.290662e35,3.589813e35,3.8889643e35,4.188115e35,4.4872664e35,4.7864173e35,5.0855686e35,5.3847195e35,5.6838708e35,5.9830217e35,6.282173e35,6.581324e35,6.880475e35,7.179626e35,7.478777e35,7.7779285e35,8.077079e35,8.37623e35,8.6753816e35,8.974533e35,9.273683e35,9.572835e35,9.871986e35,1.0171137e36,1.0470288e36,1.0769439e36,1.106859e36,1.13677415e36,1.1666892e36,1.1966043e36,1.22651946e36,1.2564346e36,1.2863496e36,1.3162648e36,1.3461798e36,1.376095e36,1.40601e36,1.4359252e36,1.4658403e36,1.4957555e36,1.5256706e36,1.5555857e36,1.5855008e36,1.6154158e36,1.645331e36,1.675246e36,1.7051612e36,1.7350763e36,1.7649914e36,1.7949066e36,1.8248217e36,1.8547367e36,1.8846518e36,1.914567e36,1.944482e36,1.9743972e36,2.0043123e36,2.0342274e36,2.0641426e36,2.0940575e36,2.1239727e36,2.1538878e36,2.183803e36,2.213718e36,2.2436332e36,2.2735483e36,2.3034634e36,2.3333784e36,2.3632935e36,2.3932087e36,2.4231238e36,2.4530389e36,2.482954e36,2.5128692e36,2.5427843e36,2.5726993e36,2.6026144e36,2.6325295e36,2.6624447e36,2.6923596e36,2.722275e36,2.75219e36,2.7821052e36,2.81202e36,2.8419354e36,2.8718504e36,2.9017657e36,2.9316806e36,2.9615956e36,2.991511e36,3.021426e36,3.0513412e36,3.081256e36,3.1111714e36,3.1410864e36,3.1710017e36,3.2009166e36,3.2308316e36,3.260747e36,3.290662e36,3.320577e36,3.350492e36,3.3804074e36,3.4103224e36,3.4402373e36,3.4701526e36,3.5000676e36,3.529983e36,3.559898e36,3.589813e36,3.619728e36,3.6496434e36,3.6795584e36,3.7094733e36,3.7393886e36,3.7693036e36,3.799219e36,3.829134e36,3.859049e36,3.888964e36,3.918879e36,3.9487944e36,3.9787093e36,4.0086246e36,4.0385396e36,4.068455e36,4.09837e36,4.128285e36,4.1582e36,4.188115e36,4.2180304e36,4.2479453e36,4.2778606e36,4.3077756e36,4.337691e36,4.367606e36,4.397521e36,4.427436e36,4.457351e36,4.4872664e36,4.5171813e36,4.5470966e36,4.5770116e36,4.606927e36,4.6368418e36,4.6667568e36,4.696672e36,4.726587e36,4.7565024e36,4.7864173e36,4.8163326e36,4.8462476e36,4.876163e36,4.9060778e36,4.9359928e36,4.965908e36,4.995823e36,5.0257383e36,5.0556533e36,5.0855686e36,5.1154836e36,5.1453985e36,5.1753138e36,5.2052288e36,5.235144e36,5.265059e36,5.2949743e36,5.324889e36,5.3548046e36,5.384719e36,5.4146345e36,5.44455e36,5.474465e36,5.50438e36,5.534295e36,5.5642103e36,5.5941256e36,5.62404e36,5.6539556e36,5.683871e36,5.7137855e36,5.743701e36,5.773616e36,5.8035314e36,5.833446e36,5.863361e36,5.8932766e36,5.923191e36,5.9531065e36,5.983022e36,6.012937e36,6.042852e36,6.072767e36,6.1026823e36,6.132597e36,6.162512e36,6.1924275e36,6.222343e36,6.2522575e36,6.282173e36,6.312088e36,6.3420033e36,6.371918e36,6.401833e36,6.4317486e36,6.461663e36,6.4915785e36,6.521494e36,6.551409e36,6.581324e36,6.611239e36,6.641154e36,6.671069e36,6.700984e36,6.7308995e36,6.760815e36,6.7907295e36,6.820645e36,6.85056e36,6.880475e36,6.91039e36,6.940305e36,6.9702206e36,7.000135e36,7.0300505e36,7.059966e36,7.089881e36,7.119796e36,7.149711e36,7.179626e36,7.209541e36,7.239456e36,7.2693715e36,7.299287e36,7.3292015e36,7.359117e36,7.389032e36,7.418947e36,7.448862e36,7.478777e36,7.5086925e36,7.538607e36,7.5685225e36,7.598438e36,7.6283524e36,7.658268e36,7.688183e36,7.718098e36,7.748013e36,7.777928e36,7.8078435e36,7.837758e36,7.8676735e36,7.897589e36,7.927504e36,7.9574187e36,7.987334e36,8.017249e36,8.0471645e36,8.077079e36,8.1069945e36,8.13691e36,8.1668244e36,8.19674e36,8.226655e36,8.25657e36,8.286485e36,8.3164e36,8.3463155e36,8.37623e36,8.4061454e36,8.436061e36,8.465976e36,8.4958907e36,8.525806e36,8.555721e36,8.585636e36,8.615551e36,8.6454665e36,8.675382e36,8.7052964e36,8.735212e36,8.765127e36,8.795042e36,8.824957e36,8.854872e36,8.8847875e36,8.914702e36,8.9446174e36,8.974533e36,9.004448e36,9.0343627e36,9.064278e36,9.094193e36,9.124108e36,9.154023e36,9.1839385e36,9.213854e36,9.2437684e36,9.2736837e36,9.303599e36,9.3335136e36,9.363429e36,9.393344e36,9.4232595e36,9.453174e36,9.4830894e36,9.513005e36,9.5429194e36,9.5728346e36,9.60275e36,9.632665e36,9.66258e36,9.692495e36,9.7224104e36,9.752326e36,9.7822404e36,9.8121557e36,9.842071e36,9.8719856e36,9.901901e36,9.931816e36,9.9617315e36,9.991646e36,1.00215614e37,1.0051477e37,1.00813913e37,1.01113066e37,1.0141222e37,1.0171137e37,1.0201052e37,1.0230967e37,1.02608824e37,1.0290797e37,1.03207124e37,1.03506277e37,1.0380543e37,1.04104576e37,1.0440373e37,1.0470288e37,1.05002035e37,1.0530118e37,1.05600334e37,1.05899487e37,1.06198633e37,1.0649779e37,1.0679694e37,1.0709609e37,1.0739524e37,1.0769438e37,1.0799354e37,1.0829269e37,1.0859184e37,1.08891e37,1.0919015e37,1.094893e37,1.0978846e37,1.100876e37,1.1038675e37,1.106859e37,1.1098505e37,1.1128421e37,1.1158336e37,1.1188251e37,1.1218165e37,1.124808e37,1.1277996e37,1.1307911e37,1.1337826e37,1.1367742e37,1.1397657e37,1.1427571e37,1.1457486e37,1.1487402e37,1.1517317e37,1.1547232e37,1.1577147e37,1.1607063e37,1.1636977e37,1.1666892e37,1.1696807e37,1.1726723e37,1.1756638e37,1.1786553e37,1.1816468e37,1.1846382e37,1.1876298e37,1.1906213e37,1.1936128e37,1.1966044e37,1.1995959e37,1.2025874e37,1.2055788e37,1.2085703e37,1.2115619e37,1.2145534e37,1.2175449e37,1.2205365e37,1.223528e37,1.2265194e37,1.2295109e37,1.2325025e37,1.235494e37,1.2384855e37,1.241477e37,1.2444686e37,1.2474601e37,1.2504515e37,1.253443e37,1.2564346e37,1.2594261e37,1.2624176e37,1.2654091e37,1.2684007e37,1.2713921e37,1.2743836e37,1.2773751e37,1.2803667e37,1.2833582e37,1.2863497e37,1.2893412e37,1.2923326e37,1.2953242e37,1.2983157e37,1.3013072e37,1.3042988e37,1.3072903e37,1.3102818e37,1.3132732e37,1.3162647e37,1.3192563e37,1.3222478e37,1.3252393e37,1.3282309e37,1.3312224e37,1.3342138e37,1.3372053e37,1.3401968e37,1.3431884e37,1.3461799e37,1.3491714e37,1.352163e37,1.3551544e37,1.3581459e37,1.3611374e37,1.364129e37,1.3671205e37,1.370112e37,1.3731035e37,1.376095e37,1.3790865e37,1.382078e37,1.3850695e37,1.388061e37,1.3910526e37,1.3940441e37,1.3970355e37,1.400027e37,1.4030186e37,1.4060101e37,1.4090016e37,1.4119932e37,1.4149847e37,1.4179762e37,1.4209676e37,1.4239591e37,1.4269507e37,1.4299422e37,1.4329337e37,1.4359253e37,1.4389168e37,1.4419082e37,1.4448997e37,1.4478912e37,1.4508828e37,1.4538743e37,1.4568658e37,1.4598574e37,1.4628488e37,1.4658403e37,1.4688318e37,1.4718233e37,1.4748149e37,1.4778064e37,1.4807979e37,1.4837893e37,1.4867809e37,1.4897724e37,1.4927639e37,1.4957555e37,1.498747e37,1.5017385e37,1.5047299e37,1.5077214e37,1.510713e37,1.5137045e37,1.516696e37,1.5196876e37,1.5226791e37,1.5256705e37,1.528662e37,1.5316535e37,1.5346451e37,1.5376366e37,1.5406281e37,1.5436197e37,1.546611e37,1.5496026e37,1.5525941e37,1.5555856e37,1.5585772e37,1.5615687e37,1.5645602e37,1.5675516e37,1.5705432e37,1.5735347e37,1.5765262e37,1.5795177e37,1.5825093e37,1.5855008e37,1.5884923e37,1.5914837e37,1.5944753e37,1.5974668e37,1.6004583e37,1.6034498e37,1.6064414e37,1.6094329e37,1.6124243e37,1.6154158e37,1.6184074e37,1.6213989e37,1.6243904e37,1.627382e37,1.6303735e37,1.6333649e37,1.6363564e37,1.639348e37,1.6423395e37,1.645331e37,1.6483225e37,1.651314e37,1.6543055e37,1.657297e37,1.6602885e37,1.66328e37,1.6662716e37,1.6692631e37,1.6722546e37,1.675246e37,1.6782376e37,1.6812291e37,1.6842206e37,1.6872121e37,1.6902037e37,1.6931952e37,1.6961866e37,1.6991781e37,1.7021697e37,1.7051612e37,1.7081527e37,1.7111442e37,1.7141358e37,1.7171272e37,1.7201187e37,1.7231102e37,1.7261018e37,1.7290933e37,1.7320848e37,1.7350763e37,1.7380678e37,1.7410593e37,1.7440508e37,1.7470423e37,1.7500339e37,1.7530254e37,1.7560169e37,1.7590085e37,1.7619999e37,1.7649914e37,1.7679829e37,1.7709744e37,1.773966e37,1.7769575e37,1.779949e37,1.7829404e37,1.785932e37,1.7889235e37,1.791915e37,1.7949065e37,1.7978981e37,1.8008896e37,1.803881e37,1.8068725e37,1.809864e37,1.8128556e37,1.8158471e37,1.8188386e37,1.8218302e37,1.8248216e37,1.8278131e37,1.8308046e37,1.8337962e37,1.8367877e37,1.8397792e37,1.8427707e37,1.8457621e37,1.8487537e37,1.8517452e37,1.8547367e37,1.8577283e37,1.8607198e37,1.8637113e37,1.8667027e37,1.8696943e37,1.8726858e37,1.8756773e37,1.8786688e37,1.8816604e37,1.8846519e37,1.8876433e37,1.8906348e37,1.8936264e37,1.8966179e37,1.8996094e37,1.902601e37,1.9055925e37,1.9085839e37,1.9115754e37,1.9145669e37,1.9175585e37,1.92055e37,1.9235415e37,1.926533e37,1.9295246e37,1.932516e37,1.9355075e37,1.938499e37,1.9414906e37,1.9444821e37,1.9474736e37,1.9504651e37,1.9534565e37,1.9564481e37,1.9594396e37,1.9624311e37,1.9654227e37,1.9684142e37,1.9714057e37,1.9743971e37,1.9773886e37,1.9803802e37,1.9833717e37,1.9863632e37,1.9893548e37,1.9923463e37,1.9953377e37,1.9983292e37,2.0013208e37,2.0043123e37,2.0073038e37,2.0102953e37,2.0132869e37,2.0162783e37,2.0192698e37,2.0222613e37,2.0252529e37,2.0282444e37,2.0312359e37,2.0342274e37,2.0372188e37,2.0402104e37,2.0432019e37,2.0461934e37,2.049185e37,2.0521765e37,2.055168e37,2.0581594e37,2.061151e37,2.0641425e37,2.067134e37,2.0701255e37,2.073117e37,2.0761086e37,2.0791001e37,2.0820915e37,2.085083e37,2.0880746e37,2.0910661e37,2.0940576e37,2.0970492e37,2.1000407e37,2.1030321e37,2.1060236e37,2.1090151e37,2.1120067e37,2.1149982e37,2.1179897e37,2.1209813e37,2.1239727e37,2.1269643e37,2.1299557e37,2.132947e37,2.1359388e37,2.1389302e37,2.1419218e37,2.1449132e37,2.147905e37,2.1508963e37,2.1538877e37,2.1568794e37,2.1598708e37,2.1628624e37,2.1658538e37,2.1688455e37,2.1718369e37,2.1748285e37,2.17782e37,2.1808113e37,2.183803e37,2.1867944e37,2.189786e37,2.1927774e37,2.195769e37,2.1987605e37,2.201752e37,2.2047436e37,2.207735e37,2.2107266e37,2.213718e37,2.2167097e37,2.219701e37,2.2226925e37,2.2256841e37,2.2286755e37,2.2316672e37,2.2346586e37,2.2376502e37,2.2406416e37,2.243633e37,2.2466247e37,2.249616e37,2.2526078e37,2.2555992e37,2.2585908e37,2.2615822e37,2.2645736e37,2.2675653e37,2.2705567e37,2.2735483e37,2.2765397e37,2.2795314e37,2.2825228e37,2.2855142e37,2.2885059e37,2.2914973e37,2.294489e37,2.2974803e37,2.300472e37,2.3034634e37,2.3064548e37,2.3094464e37,2.3124378e37,2.3154295e37,2.318421e37,2.3214125e37,2.324404e37,2.3273953e37,2.330387e37,2.3333784e37,2.33637e37,2.3393615e37,2.342353e37,2.3453445e37,2.348336e37,2.3513276e37,2.354319e37,2.3573106e37,2.360302e37,2.3632937e37,2.366285e37,2.3692765e37,2.3722681e37,2.3752596e37,2.3782512e37,2.3812426e37,2.3842343e37,2.3872257e37,2.390217e37,2.3932087e37,2.3962e37,2.3991918e37,2.4021832e37,2.4051748e37,2.4081662e37,2.4111576e37,2.4141493e37,2.4171407e37,2.4201324e37,2.4231238e37,2.4261154e37,2.4291068e37,2.4320982e37,2.4350899e37,2.4380813e37,2.441073e37,2.4440643e37,2.447056e37,2.4500474e37,2.4530388e37,2.4560304e37,2.4590218e37,2.4620135e37,2.465005e37,2.4679966e37,2.470988e37,2.4739794e37,2.476971e37,2.4799624e37,2.482954e37,2.4859455e37,2.4889371e37,2.4919285e37,2.4949202e37,2.4979116e37,2.500903e37,2.5038946e37,2.506886e37,2.5098777e37,2.512869e37,2.5158608e37,2.5188522e37,2.5218436e37,2.5248352e37,2.5278266e37,2.5308183e37,2.5338097e37,2.5368013e37,2.5397927e37,2.5427841e37,2.5457758e37,2.5487672e37,2.5517589e37,2.5547503e37,2.557742e37,2.5607333e37,2.5637247e37,2.5667164e37,2.5697078e37,2.5726994e37,2.5756908e37,2.5786825e37,2.581674e37,2.5846653e37,2.587657e37,2.5906483e37,2.59364e37,2.5966314e37,2.599623e37,2.6026145e37,2.6056059e37,2.6085975e37,2.611589e37,2.6145806e37,2.617572e37,2.6205636e37,2.623555e37,2.6265464e37,2.629538e37,2.6325295e37,2.6355211e37,2.6385126e37,2.6415042e37,2.6444956e37,2.647487e37,2.6504787e37,2.65347e37,2.6564617e37,2.659453e37,2.6624448e37,2.6654362e37,2.6684276e37,2.6714192e37,2.6744106e37,2.6774023e37,2.6803937e37,2.6833854e37,2.6863768e37,2.6893682e37,2.6923598e37,2.6953512e37,2.6983429e37,2.7013343e37,2.704326e37,2.7073173e37,2.7103087e37,2.7133004e37,2.7162918e37,2.7192834e37,2.7222748e37,2.7252665e37,2.728258e37,2.7312493e37,2.734241e37,2.7372324e37,2.740224e37,2.7432154e37,2.746207e37,2.7491985e37,2.75219e37,2.7551815e37,2.758173e37,2.7611646e37,2.764156e37,2.7671476e37,2.770139e37,2.7731305e37,2.776122e37,2.7791135e37,2.7821052e37,2.7850966e37,2.7880882e37,2.7910796e37,2.794071e37,2.7970627e37,2.800054e37,2.8030457e37,2.8060371e37,2.8090288e37,2.8120202e37,2.8150116e37,2.8180033e37,2.8209947e37,2.8239863e37,2.8269777e37,2.8299694e37,2.8329608e37,2.8359524e37,2.8389438e37,2.8419352e37,2.844927e37,2.8479183e37,2.85091e37,2.8539013e37,2.856893e37,2.8598844e37,2.8628758e37,2.8658675e37,2.8688589e37,2.8718505e37,2.874842e37,2.8778336e37,2.880825e37,2.8838164e37,2.886808e37,2.8897994e37,2.892791e37,2.8957825e37,2.8987741e37,2.9017656e37,2.904757e37,2.9077486e37,2.91074e37,2.9137317e37,2.916723e37,2.9197147e37,2.922706e37,2.9256975e37,2.9286892e37,2.9316806e37,2.9346722e37,2.9376636e37,2.9406553e37,2.9436467e37,2.946638e37,2.9496298e37,2.9526212e37,2.9556128e37,2.9586042e37,2.9615959e37,2.9645873e37,2.9675787e37,2.9705703e37,2.9735617e37,2.9765534e37,2.9795448e37,2.9825364e37,2.9855278e37,2.9885192e37,2.991511e37,2.9945023e37,2.997494e37,3.0004854e37,3.003477e37,3.0064684e37,3.0094598e37,3.0124515e37,3.015443e37,3.0184345e37,3.021426e37,3.0244176e37,3.027409e37,3.0304004e37,3.033392e37,3.0363835e37,3.039375e37,3.0423665e37,3.0453582e37,3.0483496e37,3.051341e37,3.0543326e37,3.057324e37,3.0603157e37,3.063307e37,3.0662987e37,3.0692901e37,3.0722815e37,3.0752732e37,3.0782646e37,3.0812563e37,3.0842477e37,3.0872393e37,3.0902307e37,3.093222e37,3.0962138e37,3.0992052e37,3.1021968e37,3.1051882e37,3.10818e37,3.1111713e37,3.1141627e37,3.1171543e37,3.1201457e37,3.1231374e37,3.1261288e37,3.1291205e37,3.1321119e37,3.1351033e37,3.138095e37,3.1410863e37,3.144078e37,3.1470694e37,3.150061e37,3.1530524e37,3.1560438e37,3.1590355e37,3.162027e37,3.1650186e37,3.16801e37,3.1710016e37,3.173993e37,3.1769847e37,3.179976e37,3.1829675e37,3.185959e37,3.1889505e37,3.1919422e37,3.1949336e37,3.1979252e37,3.2009166e37,3.203908e37,3.2068997e37,3.209891e37,3.2128828e37,3.2158742e37,3.2188658e37,3.2218572e37,3.2248486e37,3.2278403e37,3.2308317e37,3.2338233e37,3.2368147e37,3.2398064e37,3.2427978e37,3.2457892e37,3.2487808e37,3.2517722e37,3.254764e37,3.2577553e37,3.260747e37,3.2637384e37,3.2667298e37,3.2697214e37,3.2727128e37,3.2757045e37,3.278696e37,3.2816875e37,3.284679e37,3.2876703e37,3.290662e37,3.2936534e37,3.296645e37,3.2996365e37,3.302628e37,3.3056195e37,3.308611e37,3.3116026e37,3.314594e37,3.3175856e37,3.320577e37,3.3235687e37,3.32656e37,3.3295515e37,3.3325431e37,3.3355345e37,3.3385262e37,3.3415176e37,3.3445093e37,3.3475007e37,3.350492e37,3.3534837e37,3.356475e37,3.3594668e37,3.3624582e37,3.3654498e37,3.3684412e37,3.3714326e37,3.3744243e37,3.3774157e37,3.3804073e37,3.3833987e37,3.3863904e37,3.3893818e37,3.3923732e37,3.3953649e37,3.3983563e37,3.401348e37,3.4043393e37,3.407331e37,3.4103224e37,3.4133138e37,3.4163054e37,3.4192968e37,3.4222885e37,3.42528e37,3.4282716e37,3.431263e37,3.4342544e37,3.437246e37,3.4402374e37,3.443229e37,3.4462205e37,3.449212e37,3.4522035e37,3.455195e37,3.4581866e37,3.461178e37,3.4641696e37,3.467161e37,3.4701527e37,3.473144e37,3.4761355e37,3.4791272e37,3.4821186e37,3.4851102e37,3.4881016e37,3.4910933e37,3.4940847e37,3.4970763e37,3.5000677e37,3.5030591e37,3.5060508e37,3.5090422e37,3.5120338e37,3.5150252e37,3.518017e37,3.5210083e37,3.5239997e37,3.5269914e37,3.5299828e37,3.5329744e37,3.5359658e37,3.5389575e37,3.541949e37,3.5449403e37,3.547932e37,3.5509233e37,3.553915e37,3.5569064e37,3.559898e37,3.5628895e37,3.5658809e37,3.5688725e37,3.571864e37,3.5748556e37,3.577847e37,3.5808386e37,3.58383e37,3.5868214e37,3.589813e37,3.5928045e37,3.5957961e37,3.5987875e37,3.6017792e37,3.6047706e37,3.607762e37,3.6107537e37,3.613745e37,3.6167367e37,3.619728e37,3.6227198e37,3.6257112e37,3.6287026e37,3.6316942e37,3.6346856e37,3.6376773e37,3.6406687e37,3.6436603e37,3.6466517e37,3.6496432e37,3.6526348e37,3.6556262e37,3.6586179e37,3.6616093e37,3.664601e37,3.6675923e37,3.6705837e37,3.6735754e37,3.6765668e37,3.6795584e37,3.6825498e37,3.6855415e37,3.688533e37,3.6915243e37,3.694516e37,3.6975074e37,3.700499e37,3.7034904e37,3.706482e37,3.7094735e37,3.7124649e37,3.7154565e37,3.718448e37,3.7214396e37,3.724431e37,3.7274226e37,3.730414e37,3.7334054e37,3.736397e37,3.7393885e37,3.7423802e37,3.7453716e37,3.7483632e37,3.7513546e37,3.754346e37,3.7573377e37,3.760329e37,3.7633207e37,3.7663121e37,3.7693038e37,3.7722952e37,3.7752866e37,3.7782782e37,3.7812697e37,3.7842613e37,3.7872527e37,3.7902444e37,3.7932358e37,3.7962272e37,3.7992188e37,3.8022102e37,3.805202e37,3.8081933e37,3.811185e37,3.8141763e37,3.8171677e37,3.8201594e37,3.8231508e37,3.8261425e37,3.8291339e37,3.8321255e37,3.835117e37,3.8381086e37,3.8411e37,3.8440914e37,3.847083e37,3.8500744e37,3.853066e37,3.8560575e37,3.8590491e37,3.8620405e37,3.865032e37,3.8680236e37,3.871015e37,3.8740067e37,3.876998e37,3.8799897e37,3.882981e37,3.8859725e37,3.8889642e37,3.8919556e37,3.8949472e37,3.8979386e37,3.9009303e37,3.9039217e37,3.906913e37,3.9099047e37,3.9128962e37,3.9158878e37,3.9188792e37,3.9218709e37,3.9248623e37,3.9278537e37,3.9308453e37,3.9338367e37,3.9368284e37,3.9398198e37,3.9428114e37,3.9458028e37,3.9487942e37,3.951786e37,3.9547773e37,3.957769e37,3.9607604e37,3.963752e37,3.9667434e37,3.9697348e37,3.9727265e37,3.9757179e37,3.9787095e37,3.981701e37,3.9846926e37,3.987684e37,3.9906754e37,3.993667e37,3.9966584e37,3.99965e37,4.0026415e37,4.0056332e37,4.0086246e37,4.011616e37,4.0146076e37,4.017599e37,4.0205907e37,4.023582e37,4.0265737e37,4.0295651e37,4.0325565e37,4.0355482e37,4.0385396e37,4.0415312e37,4.0445227e37,4.0475143e37,4.0505057e37,4.053497e37,4.0564888e37,4.0594802e37,4.0624718e37,4.0654632e37,4.068455e37,4.0714463e37,4.0744377e37,4.0774293e37,4.0804207e37,4.0834124e37,4.0864038e37,4.0893955e37,4.0923869e37,4.0953783e37,4.09837e37,4.1013613e37,4.104353e37,4.1073444e37,4.110336e37,4.1133274e37,4.1163188e37,4.1193105e37,4.122302e37,4.1252935e37,4.128285e37,4.1312766e37,4.134268e37,4.1372594e37,4.140251e37,4.1432425e37,4.146234e37,4.1492255e37,4.1522172e37,4.1552086e37,4.1582002e37,4.1611916e37,4.164183e37,4.1671747e37,4.170166e37,4.1731577e37,4.1761492e37,4.1791408e37,4.1821322e37,4.1851236e37,4.1881153e37,4.1911067e37,4.1940983e37,4.1970897e37,4.2000814e37,4.2030728e37,4.2060642e37,4.2090558e37,4.2120472e37,4.215039e37,4.2180303e37,4.221022e37,4.2240134e37,4.2270048e37,4.2299964e37,4.2329878e37,4.2359795e37,4.2389709e37,4.2419625e37,4.244954e37,4.2479453e37,4.250937e37,4.2539286e37,4.25692e37,4.2599114e37,4.262903e37,4.265894e37,4.268886e37,4.2718776e37,4.274869e37,4.2778604e37,4.280852e37,4.2838437e37,4.286835e37,4.2898265e37,4.292818e37,4.29581e37,4.298801e37,4.3017926e37,4.304784e37,4.3077754e37,4.310767e37,4.3137587e37,4.3167504e37,4.3197415e37,4.322733e37,4.325725e37,4.3287165e37,4.3317076e37,4.3346993e37,4.337691e37,4.340682e37,4.3436737e37,4.3466654e37,4.349657e37,4.352648e37,4.35564e37,4.3586315e37,4.3616227e37,4.3646143e37,4.367606e37,4.3705976e37,4.373589e37,4.3765804e37,4.379572e37,4.382563e37,4.385555e37,4.3885465e37,4.391538e37,4.3945293e37,4.397521e37,4.4005127e37,4.403504e37,4.4064955e37,4.409487e37,4.412479e37,4.41547e37,4.4184616e37,4.421453e37,4.4244444e37,4.427436e37,4.4304277e37,4.4334193e37,4.4364105e37,4.439402e37,4.442394e37,4.445385e37,4.4483766e37,4.4513683e37,4.45436e37,4.457351e37,4.4603427e37,4.4633344e37,4.4663255e37,4.469317e37,4.472309e37,4.4753005e37,4.4782916e37,4.4812833e37,4.484275e37,4.487266e37,4.490258e37,4.4932494e37,4.496241e37,4.499232e37,4.502224e37,4.5052155e37,4.5082067e37,4.5111983e37,4.51419e37,4.5171816e37,4.520173e37,4.5231644e37,4.526156e37,4.529147e37,4.532139e37,4.5351306e37,4.538122e37,4.5411134e37,4.544105e37,4.5470967e37,4.550088e37,4.5530795e37,4.556071e37,4.559063e37,4.562054e37,4.5650456e37,4.568037e37,4.5710284e37,4.57402e37,4.5770117e37,4.5800034e37,4.5829945e37,4.585986e37,4.588978e37,4.591969e37,4.5949606e37,4.5979523e37,4.600944e37,4.603935e37,4.6069267e37,4.6099184e37,4.6129095e37,4.615901e37,4.618893e37,4.6218845e37,4.6248757e37,4.6278673e37,4.630859e37,4.63385e37,4.636842e37,4.6398334e37,4.642825e37,4.645816e37,4.648808e37,4.6517995e37,4.6547907e37,4.6577823e37,4.660774e37,4.6637657e37,4.666757e37,4.6697485e37,4.67274e37,4.6757313e37,4.678723e37,4.6817146e37,4.684706e37,4.6876974e37,4.690689e37,4.6936807e37,4.696672e37,4.6996635e37,4.702655e37,4.705647e37,4.708638e37,4.7116296e37,4.7146213e37,4.7176124e37,4.720604e37,4.7235957e37,4.7265874e37,4.7295785e37,4.73257e37,4.735562e37,4.738553e37,4.7415446e37,4.7445363e37,4.747528e37,4.750519e37,4.753511e37,4.7565024e37,4.7594936e37,4.762485e37,4.765477e37,4.7684685e37,4.7714597e37,4.7744513e37,4.777443e37,4.780434e37,4.783426e37,4.7864174e37,4.789409e37,4.7924e37,4.795392e37,4.7983836e37,4.8013747e37,4.8043664e37,4.807358e37,4.8103497e37,4.813341e37,4.8163325e37,4.819324e37,4.8223153e37,4.825307e37,4.8282986e37,4.83129e37,4.8342814e37,4.837273e37,4.8402647e37,4.843256e37,4.8462475e37,4.849239e37,4.852231e37,4.855222e37,4.8582136e37,4.8612053e37,4.8641964e37,4.867188e37,4.8701797e37,4.8731714e37,4.8761625e37,4.879154e37,4.882146e37,4.885137e37,4.8881287e37,4.8911203e37,4.894112e37,4.897103e37,4.900095e37,4.9030864e37,4.9060776e37,4.909069e37,4.912061e37,4.9150525e37,4.9180437e37,4.9210353e37,4.924027e37,4.927018e37,4.93001e37,4.9330015e37,4.935993e37,4.9389843e37,4.941976e37,4.9449676e37,4.9479587e37,4.9509504e37,4.953942e37,4.9569337e37,4.959925e37,4.9629165e37,4.965908e37,4.9688993e37,4.971891e37,4.9748826e37,4.9778743e37,4.9808654e37,4.983857e37,4.9868487e37,4.9898404e37,4.9928315e37,4.995823e37,4.998815e37,5.001806e37,5.0047976e37,5.0077893e37,5.010781e37,5.013772e37,5.016764e37,5.0197554e37,5.0227466e37,5.025738e37,5.02873e37,5.0317215e37,5.0347127e37,5.0377043e37,5.040696e37,5.043687e37,5.046679e37,5.0496704e37,5.052662e37,5.055653e37,5.058645e37,5.0616366e37,5.0646277e37,5.0676194e37,5.070611e37,5.0736027e37,5.076594e37,5.0795855e37,5.082577e37,5.0855683e37,5.08856e37,5.0915516e37,5.094543e37,5.0975344e37,5.100526e37,5.1035177e37,5.106509e37,5.1095005e37,5.112492e37,5.115484e37,5.118475e37,5.1214666e37,5.1244583e37,5.1274494e37,5.130441e37,5.1334327e37,5.1364244e37,5.1394155e37,5.142407e37,5.145399e37,5.14839e37,5.1513817e37,5.1543733e37,5.157365e37,5.160356e37,5.163348e37,5.1663394e37,5.1693306e37,5.172322e37,5.175314e37,5.1783055e37,5.1812967e37,5.1842883e37,5.18728e37,5.190271e37,5.193263e37,5.1962545e37,5.199246e37,5.2022373e37,5.205229e37,5.2082206e37,5.2112117e37,5.2142034e37,5.217195e37,5.2201867e37,5.223178e37,5.2261695e37,5.229161e37,5.2321523e37,5.235144e37,5.2381356e37,5.2411273e37,5.2441184e37,5.24711e37,5.2501017e37,5.253093e37,5.2560845e37,5.259076e37,5.262068e37,5.265059e37,5.2680506e37,5.2710423e37,5.2740334e37,5.277025e37,5.280017e37,5.2830084e37,5.2859996e37,5.288991e37,5.291983e37,5.294974e37,5.2979657e37,5.3009573e37,5.303949e37,5.30694e37,5.309932e37,5.3129234e37,5.3159146e37,5.318906e37,5.321898e37,5.3248896e37,5.3278807e37,5.3308724e37,5.333864e37,5.336855e37,5.339847e37,5.3428385e37,5.34583e37,5.3488213e37,5.351813e37,5.3548046e37,5.3577957e37,5.3607874e37,5.363779e37,5.3667707e37,5.369762e37,5.3727535e37,5.375745e37,5.3787363e37,5.381728e37,5.3847196e37,5.3877113e37,5.3907024e37,5.393694e37,5.3966857e37,5.399677e37,5.4026685e37,5.40566e37,5.408652e37,5.411643e37,5.4146347e37,5.4176263e37,5.4206175e37,5.423609e37,5.426601e37,5.4295924e37,5.4325836e37,5.435575e37,5.438567e37,5.441558e37,5.4445497e37,5.4475413e37,5.450533e37,5.453524e37,5.456516e37,5.4595075e37,5.4624986e37,5.4654903e37,5.468482e37,5.4714736e37,5.4744647e37,5.4774564e37,5.480448e37,5.483439e37,5.486431e37,5.4894225e37,5.492414e37,5.4954053e37,5.498397e37,5.5013886e37,5.50438e37,5.5073714e37,5.510363e37,5.5133547e37,5.516346e37,5.5193375e37,5.522329e37,5.5253203e37,5.528312e37,5.5313036e37,5.5342953e37,5.5372864e37,5.540278e37,5.54327e37,5.546261e37,5.5492526e37,5.552244e37,5.555236e37,5.558227e37,5.5612187e37,5.5642103e37,5.5672015e37,5.570193e37,5.573185e37,5.5761764e37,5.5791676e37,5.582159e37,5.585151e37,5.588142e37,5.5911337e37,5.5941254e37,5.597117e37,5.600108e37,5.6031e37,5.6060915e37,5.6090826e37,5.6120743e37,5.615066e37,5.6180576e37,5.6210487e37,5.6240404e37,5.627032e37,5.630023e37,5.633015e37,5.6360065e37,5.638998e37,5.6419893e37,5.644981e37,5.6479726e37,5.6509643e37,5.6539554e37,5.656947e37,5.6599387e37,5.66293e37,5.6659215e37,5.668913e37,5.671905e37,5.674896e37,5.6778877e37,5.6808793e37,5.6838705e37,5.686862e37,5.689854e37,5.6928454e37,5.6958366e37,5.698828e37,5.70182e37,5.704811e37,5.7078027e37,5.7107943e37,5.713786e37,5.716777e37,5.719769e37,5.7227605e37,5.7257516e37,5.7287433e37,5.731735e37,5.7347266e37,5.7377177e37,5.7407094e37,5.743701e37,5.746692e37,5.749684e37,5.7526755e37,5.755667e37,5.7586583e37,5.76165e37,5.7646416e37,5.767633e37,5.7706244e37,5.773616e37,5.7766077e37,5.779599e37,5.7825905e37,5.785582e37,5.7885733e37,5.791565e37,5.7945566e37,5.7975483e37,5.8005394e37,5.803531e37,5.806523e37,5.809514e37,5.8125056e37,5.815497e37,5.818489e37,5.82148e37,5.8244717e37,5.8274633e37,5.8304545e37,5.833446e37,5.836438e37,5.8394294e37,5.8424206e37,5.845412e37,5.848404e37,5.851395e37,5.8543867e37,5.8573784e37,5.86037e37,5.863361e37,5.866353e37,5.8693445e37,5.8723356e37,5.8753273e37,5.878319e37,5.8813106e37,5.8843017e37,5.8872934e37,5.890285e37,5.893276e37,5.896268e37,5.8992595e37,5.902251e37,5.9052423e37,5.908234e37,5.9112256e37,5.914217e37,5.9172084e37,5.9202e37,5.9231917e37,5.926183e37,5.9291745e37,5.932166e37,5.9351574e37,5.938149e37,5.9411407e37,5.9441323e37,5.9471235e37,5.950115e37,5.953107e37,5.956098e37,5.9590896e37,5.962081e37,5.965073e37,5.968064e37,5.9710557e37,5.9740473e37,5.9770385e37,5.98003e37,5.983022e37,5.9860135e37,5.9890046e37,5.9919963e37,5.994988e37,5.997979e37,6.0009707e37,6.0039624e37,6.006954e37,6.009945e37,6.012937e37,6.0159285e37,6.0189196e37,6.0219113e37,6.024903e37,6.0278946e37,6.030886e37,6.0338774e37,6.036869e37,6.03986e37,6.042852e37,6.0458435e37,6.048835e37,6.0518263e37,6.054818e37,6.0578096e37,6.060801e37,6.0637924e37,6.066784e37,6.069776e37,6.072767e37,6.0757586e37,6.07875e37,6.0817414e37,6.084733e37,6.0877247e37,6.0907163e37,6.0937075e37,6.096699e37,6.099691e37,6.102682e37,6.1056736e37,6.108665e37,6.111657e37,6.114648e37,6.1176397e37,6.1206314e37,6.1236225e37,6.126614e37,6.129606e37,6.1325975e37,6.1355886e37,6.1385803e37,6.141572e37,6.144563e37,6.1475547e37,6.1505464e37,6.153538e37,6.156529e37,6.159521e37,6.1625125e37,6.1655037e37,6.1684953e37,6.171487e37,6.1744786e37,6.17747e37,6.1804614e37,6.183453e37,6.186444e37,6.189436e37,6.1924275e37,6.195419e37,6.1984104e37,6.201402e37,6.2043937e37,6.207385e37,6.2103765e37,6.213368e37,6.21636e37,6.219351e37,6.2223426e37,6.225334e37,6.2283254e37,6.231317e37,6.2343087e37,6.2373003e37,6.2402915e37,6.243283e37,6.246275e37,6.249266e37,6.2522576e37,6.2552493e37,6.258241e37,6.261232e37,6.2642237e37,6.2672154e37,6.2702065e37,6.273198e37,6.27619e37,6.2791815e37,6.2821726e37,6.2851643e37,6.288156e37,6.291147e37,6.294139e37,6.2971304e37,6.300122e37,6.303113e37,6.306105e37,6.3090965e37,6.3120877e37,6.3150793e37,6.318071e37,6.3210626e37,6.324054e37,6.3270454e37,6.330037e37,6.333029e37,6.33602e37,6.3390116e37,6.342003e37,6.3449944e37,6.347986e37,6.3509777e37,6.3539693e37,6.3569605e37,6.359952e37,6.362944e37,6.365935e37,6.3689266e37,6.371918e37,6.37491e37,6.377901e37,6.3808927e37,6.3838844e37,6.3868755e37,6.389867e37,6.392859e37,6.3958505e37,6.3988416e37,6.4018333e37,6.404825e37,6.407816e37,6.4108077e37,6.4137994e37,6.416791e37,6.419782e37,6.422774e37,6.4257655e37,6.4287567e37,6.4317483e37,6.43474e37,6.4377316e37,6.440723e37,6.4437144e37,6.446706e37,6.449697e37,6.452689e37,6.4556805e37,6.458672e37,6.4616634e37,6.464655e37,6.4676467e37,6.470638e37,6.4736295e37,6.476621e37,6.479613e37,6.482604e37,6.4855956e37,6.488587e37,6.4915784e37,6.49457e37,6.4975617e37,6.5005533e37,6.5035445e37,6.506536e37,6.509528e37,6.512519e37,6.5155106e37,6.5185023e37,6.521494e37,6.524485e37,6.5274767e37,6.5304684e37,6.5334595e37,6.536451e37,6.539443e37,6.5424345e37,6.5454256e37,6.5484173e37,6.551409e37,6.5544e37,6.557392e37,6.5603834e37,6.563375e37,6.566366e37,6.569358e37,6.5723495e37,6.5753407e37,6.5783323e37,6.581324e37,6.5843156e37,6.587307e37,6.5902984e37,6.59329e37,6.596281e37,6.599273e37,6.6022646e37,6.605256e37,6.6082474e37,6.611239e37,6.6142307e37,6.617222e37,6.6202135e37,6.623205e37,6.626197e37,6.629188e37,6.6321796e37,6.635171e37,6.6381624e37,6.641154e37,6.6441457e37,6.6471374e37,6.6501285e37,6.65312e37,6.656112e37,6.659103e37,6.6620946e37,6.6650863e37,6.668078e37,6.671069e37,6.6740607e37,6.6770524e37,6.6800435e37,6.683035e37,6.686027e37,6.6890185e37,6.6920097e37,6.6950013e37,6.697993e37,6.700984e37,6.703976e37,6.7069674e37,6.709959e37,6.71295e37,6.715942e37,6.7189335e37,6.7219247e37,6.7249164e37,6.727908e37,6.7308997e37,6.733891e37,6.7368825e37,6.739874e37,6.7428653e37,6.745857e37,6.7488486e37,6.75184e37,6.7548314e37,6.757823e37,6.7608147e37,6.763806e37,6.7667975e37,6.769789e37,6.772781e37,6.775772e37,6.7787636e37,6.7817553e37,6.7847464e37,6.787738e37,6.7907297e37,6.7937214e37,6.7967125e37,6.799704e37,6.802696e37,6.805687e37,6.8086786e37,6.8116703e37,6.814662e37,6.817653e37,6.820645e37,6.8236364e37,6.8266276e37,6.829619e37,6.832611e37,6.8356025e37,6.8385937e37,6.8415853e37,6.844577e37,6.847568e37,6.85056e37,6.8535514e37,6.856543e37,6.859534e37,6.862526e37,6.8655176e37,6.8685087e37,6.8715004e37,6.874492e37,6.8774837e37,6.880475e37,6.8834665e37,6.886458e37,6.8894493e37,6.892441e37,6.8954326e37,6.898424e37,6.9014154e37,6.904407e37,6.9073987e37,6.91039e37,6.9133815e37,6.916373e37,6.919365e37,6.922356e37,6.9253476e37,6.9283393e37,6.9313304e37,6.934322e37,6.9373137e37,6.9403054e37,6.9432965e37,6.946288e37,6.94928e37,6.952271e37,6.9552627e37,6.9582543e37,6.961246e37,6.964237e37,6.967229e37,6.9702204e37,6.9732116e37,6.976203e37,6.979195e37,6.9821865e37,6.9851777e37,6.9881694e37,6.991161e37,6.9941527e37,6.997144e37,7.0001355e37,7.003127e37,7.0061183e37,7.00911e37,7.0121016e37,7.015093e37,7.0180844e37,7.021076e37,7.0240677e37,7.027059e37,7.0300505e37,7.033042e37,7.036034e37,7.039025e37,7.0420166e37,7.0450083e37,7.0479994e37,7.050991e37,7.0539827e37,7.0569744e37,7.0599655e37,7.062957e37,7.065949e37,7.06894e37,7.0719316e37,7.0749233e37,7.077915e37,7.080906e37,7.083898e37,7.0868894e37,7.0898806e37,7.092872e37,7.095864e37,7.0988555e37,7.1018467e37,7.1048383e37,7.10783e37,7.110821e37,7.113813e37,7.1168044e37,7.119796e37,7.122787e37,7.125779e37,7.1287706e37,7.1317617e37,7.1347534e37,7.137745e37,7.1407367e37,7.143728e37,7.1467195e37,7.149711e37,7.1527023e37,7.155694e37,7.1586856e37,7.161677e37,7.1646684e37,7.16766e37,7.1706517e37,7.173643e37,7.1766345e37,7.179626e37,7.182618e37,7.185609e37,7.1886006e37,7.1915923e37,7.1945834e37,7.197575e37,7.2005667e37,7.2035584e37,7.2065495e37,7.209541e37,7.212533e37,7.215524e37,7.2185157e37,7.2215073e37,7.224499e37,7.22749e37,7.230482e37,7.2334734e37,7.2364646e37,7.239456e37,7.242448e37,7.2454395e37,7.2484307e37,7.2514224e37,7.254414e37,7.257405e37,7.260397e37,7.2633885e37,7.26638e37,7.2693713e37,7.272363e37,7.2753546e37,7.2783457e37,7.2813374e37,7.284329e37,7.2873207e37,7.290312e37,7.2933035e37,7.296295e37,7.2992863e37,7.302278e37,7.3052696e37,7.3082613e37,7.3112524e37,7.314244e37,7.3172357e37,7.320227e37,7.3232185e37,7.32621e37,7.329202e37,7.332193e37,7.3351846e37,7.3381763e37,7.3411675e37,7.344159e37,7.347151e37,7.3501424e37,7.3531336e37,7.356125e37,7.359117e37,7.362108e37,7.3650997e37,7.3680913e37,7.371083e37,7.374074e37,7.377066e37,7.3800574e37,7.3830486e37,7.38604e37,7.389032e37,7.3920236e37,7.3950147e37,7.3980064e37,7.400998e37,7.403989e37,7.406981e37,7.4099725e37,7.412964e37,7.4159553e37,7.418947e37,7.4219386e37,7.4249297e37,7.4279214e37,7.430913e37,7.4339047e37,7.436896e37,7.4398875e37,7.442879e37,7.4458703e37,7.448862e37,7.4518536e37,7.4548453e37,7.4578364e37,7.460828e37,7.4638197e37,7.466811e37,7.4698025e37,7.472794e37,7.475786e37,7.478777e37,7.4817687e37,7.4847603e37,7.4877515e37,7.490743e37,7.493735e37,7.4967264e37,7.4997176e37,7.502709e37,7.505701e37,7.508692e37,7.5116837e37,7.5146754e37,7.517667e37,7.520658e37,7.52365e37,7.5266415e37,7.5296326e37,7.5326243e37,7.535616e37,7.5386076e37,7.5415987e37,7.5445904e37,7.547582e37,7.550573e37,7.553565e37,7.5565565e37,7.559548e37,7.5625393e37,7.565531e37,7.5685226e37,7.571514e37,7.5745054e37,7.577497e37,7.5804887e37,7.58348e37,7.5864715e37,7.589463e37,7.5924543e37,7.595446e37,7.5984376e37,7.6014293e37,7.6044205e37,7.607412e37,7.610404e37,7.613395e37,7.6163866e37,7.619378e37,7.62237e37,7.625361e37,7.6283527e37,7.6313443e37,7.6343355e37,7.637327e37,7.640319e37,7.6433104e37,7.6463016e37,7.649293e37,7.652285e37,7.6552766e37,7.6582677e37,7.6612594e37,7.664251e37,7.667242e37,7.670234e37,7.6732255e37,7.676217e37,7.6792083e37,7.6822e37,7.6851916e37,7.6881827e37,7.6911744e37,7.694166e37,7.6971577e37,7.700149e37,7.7031405e37,7.706132e37,7.7091233e37,7.712115e37,7.7151066e37,7.7180983e37,7.7210894e37,7.724081e37,7.7270727e37,7.730064e37,7.7330555e37,7.736047e37,7.739039e37,7.74203e37,7.7450217e37,7.7480133e37,7.7510045e37,7.753996e37,7.756988e37,7.7599794e37,7.7629706e37,7.765962e37,7.768954e37,7.771945e37,7.7749367e37,7.7779284e37,7.78092e37,7.783911e37,7.786903e37,7.7898945e37,7.7928856e37,7.7958773e37,7.798869e37,7.8018606e37,7.8048517e37,7.8078434e37,7.810835e37,7.813826e37,7.816818e37,7.8198095e37,7.822801e37,7.8257923e37,7.828784e37,7.8317756e37,7.834767e37,7.8377584e37,7.84075e37,7.8437417e37,7.846733e37,7.8497245e37,7.852716e37,7.8557073e37,7.858699e37,7.8616906e37,7.8646823e37,7.8676735e37,7.870665e37,7.873657e37,7.876648e37,7.8796396e37,7.882631e37,7.885623e37,7.888614e37,7.8916057e37,7.8945973e37,7.8975885e37,7.90058e37,7.903572e37,7.9065634e37,7.9095546e37,7.912546e37,7.915538e37,7.918529e37,7.9215207e37,7.9245124e37,7.927504e37,7.930495e37,7.933487e37,7.9364785e37,7.9394696e37,7.9424613e37,7.945453e37,7.9484446e37,7.9514357e37,7.9544274e37,7.957419e37,7.96041e37,7.963402e37,7.9663935e37,7.969385e37,7.9723763e37,7.975368e37,7.9783596e37,7.981351e37,7.9843424e37,7.987334e37,7.9903257e37,7.993317e37,7.9963085e37,7.9993e37,8.0022914e37,8.005283e37,8.0082747e37,8.0112663e37,8.0142575e37,8.017249e37,8.020241e37,8.023232e37,8.0262236e37,8.029215e37,8.032207e37,8.035198e37,8.0381897e37,8.0411814e37,8.0441725e37,8.047164e37,8.050156e37,8.0531475e37,8.0561386e37,8.0591303e37,8.062122e37,8.065113e37,8.0681047e37,8.0710964e37,8.074088e37,8.077079e37,8.080071e37,8.0830625e37,8.0860536e37,8.0890453e37,8.092037e37,8.0950286e37,8.09802e37,8.1010114e37,8.104003e37,8.106994e37,8.109986e37,8.1129775e37,8.115969e37,8.1189603e37,8.121952e37,8.1249436e37,8.127935e37,8.1309265e37,8.133918e37,8.13691e37,8.139901e37,8.1428926e37,8.145884e37,8.1488754e37,8.151867e37,8.1548587e37,8.1578503e37,8.1608415e37,8.163833e37,8.166825e37,8.169816e37,8.1728076e37,8.175799e37,8.178791e37,8.181782e37,8.1847737e37,8.1877654e37,8.1907565e37,8.193748e37,8.19674e37,8.1997315e37,8.2027226e37,8.2057143e37,8.208706e37,8.211697e37,8.2146887e37,8.2176804e37,8.220672e37,8.223663e37,8.226655e37,8.2296465e37,8.2326377e37,8.2356293e37,8.238621e37,8.2416126e37,8.244604e37,8.2475954e37,8.250587e37,8.253578e37,8.25657e37,8.2595615e37,8.262553e37,8.2655444e37,8.268536e37,8.2715277e37,8.274519e37,8.2775105e37,8.280502e37,8.283494e37,8.286485e37,8.2894766e37,8.292468e37,8.2954594e37,8.298451e37,8.3014427e37,8.3044344e37,8.3074255e37,8.310417e37,8.313409e37,8.3164005e37,8.3193916e37,8.3223833e37,8.325375e37,8.328366e37,8.3313577e37,8.3343494e37,8.337341e37,8.340332e37,8.343324e37,8.3463155e37,8.3493066e37,8.3522983e37,8.35529e37,8.3582816e37,8.361273e37,8.3642644e37,8.367256e37,8.370247e37,8.373239e37,8.3762305e37,8.379222e37,8.3822133e37,8.385205e37,8.3881966e37,8.391188e37,8.3941795e37,8.397171e37,8.400163e37,8.403154e37,8.4061456e37,8.409137e37,8.4121284e37,8.41512e37,8.4181117e37,8.4211033e37,8.4240945e37,8.427086e37,8.430078e37,8.433069e37,8.4360606e37,8.4390523e37,8.442044e37,8.445035e37,8.4480267e37,8.4510184e37,8.4540095e37,8.457001e37,8.459993e37,8.4629845e37,8.4659756e37,8.4689673e37,8.471959e37,8.47495e37,8.4779417e37,8.4809334e37,8.483925e37,8.486916e37,8.489908e37,8.4928995e37,8.4958907e37,8.4988823e37,8.501874e37,8.5048656e37,8.507857e37,8.510848e37,8.51384e37,8.516831e37,8.519823e37,8.522815e37,8.525806e37,8.528798e37,8.531789e37,8.53478e37,8.537772e37,8.540763e37,8.543755e37,8.546747e37,8.549738e37,8.552729e37,8.555721e37,8.558712e37,8.561704e37,8.564696e37,8.567687e37,8.570679e37,8.57367e37,8.576661e37,8.579653e37,8.582645e37,8.585636e37,8.588628e37,8.59162e37,8.59461e37,8.597602e37,8.600594e37,8.603585e37,8.606577e37,8.609568e37,8.61256e37,8.615551e37,8.618542e37,8.621534e37,8.624526e37,8.627517e37,8.630509e37,8.633501e37,8.636491e37,8.639483e37,8.642475e37,8.645466e37,8.648458e37,8.65145e37,8.654441e37,8.657433e37,8.660424e37,8.663415e37,8.666407e37,8.669399e37,8.67239e37,8.675382e37,8.678374e37,8.681364e37,8.684356e37,8.687347e37,8.690339e37,8.693331e37,8.696322e37,8.699314e37,8.702305e37,8.705296e37,8.708288e37,8.71128e37,8.714271e37,8.717263e37,8.720255e37,8.723245e37,8.726237e37,8.729229e37,8.73222e37,8.735212e37,8.738204e37,8.741195e37,8.744186e37,8.747178e37,8.750169e37,8.753161e37,8.756153e37,8.759144e37,8.762136e37,8.765126e37,8.768118e37,8.77111e37,8.774101e37,8.777093e37,8.780085e37,8.783076e37,8.786067e37,8.789059e37,8.79205e37,8.795042e37,8.798034e37,8.801025e37,8.804017e37,8.807008e37,8.809999e37,8.812991e37,8.815983e37,8.818974e37,8.821966e37,8.824958e37,8.827948e37,8.83094e37,8.833932e37,8.836923e37,8.839915e37,8.842906e37,8.845898e37,8.848889e37,8.85188e37,8.854872e37,8.857864e37,8.860855e37,8.863847e37,8.866839e37,8.869829e37,8.872821e37,8.875813e37,8.878804e37,8.881796e37,8.884788e37,8.887779e37,8.89077e37,8.893762e37,8.896753e37,8.899745e37,8.902737e37,8.905728e37,8.90872e37,8.91171e37,8.914702e37,8.917694e37,8.920685e37,8.923677e37,8.926669e37,8.92966e37,8.932651e37,8.935643e37,8.938634e37,8.941626e37,8.944618e37,8.947609e37,8.950601e37,8.953592e37,8.956583e37,8.959575e37,8.962567e37,8.965558e37,8.96855e37,8.971542e37,8.974532e37,8.977524e37,8.980516e37,8.983507e37,8.986499e37,8.98949e37,8.992482e37,8.995473e37,8.998464e37,9.001456e37,9.004448e37,9.007439e37,9.010431e37,9.013423e37,9.016413e37,9.019405e37,9.022397e37,9.025388e37,9.02838e37,9.031372e37,9.034363e37,9.037354e37,9.040346e37,9.043337e37,9.046329e37,9.049321e37,9.052312e37,9.055304e37,9.058295e37,9.061286e37,9.064278e37,9.067269e37,9.070261e37,9.073253e37,9.076244e37,9.079235e37,9.082227e37,9.085218e37,9.08821e37,9.091202e37,9.094193e37,9.097185e37,9.100176e37,9.103167e37,9.106159e37,9.109151e37,9.112142e37,9.115134e37,9.118126e37,9.121116e37,9.124108e37,9.1271e37,9.130091e37,9.133083e37,9.136074e37,9.139066e37,9.142057e37,9.145048e37,9.14804e37,9.151032e37,9.154023e37,9.157015e37,9.160007e37,9.162997e37,9.165989e37,9.168981e37,9.171972e37,9.174964e37,9.177956e37,9.180947e37,9.183938e37,9.18693e37,9.189921e37,9.192913e37,9.195905e37,9.198896e37,9.201888e37,9.204879e37,9.20787e37,9.210862e37,9.213853e37,9.216845e37,9.219837e37,9.222828e37,9.225819e37,9.228811e37,9.231802e37,9.234794e37,9.237786e37,9.240777e37,9.243769e37,9.24676e37,9.249751e37,9.252743e37,9.255735e37,9.258726e37,9.261718e37,9.26471e37,9.2677e37,9.270692e37,9.273684e37,9.276675e37,9.279667e37,9.282659e37,9.28565e37,9.288641e37,9.291632e37,9.294624e37,9.297616e37,9.300607e37,9.303599e37,9.306591e37,9.309581e37,9.312573e37,9.315565e37,9.318556e37,9.321548e37,9.32454e37,9.327531e37,9.330522e37,9.333514e37,9.336505e37,9.339497e37,9.342489e37,9.34548e37,9.348472e37,9.351463e37,9.354454e37,9.357446e37,9.360438e37,9.363429e37,9.366421e37,9.369412e37,9.372403e37,9.375395e37,9.378386e37,9.381378e37,9.38437e37,9.387361e37,9.390353e37,9.393344e37,9.396335e37,9.399327e37,9.402319e37,9.40531e37,9.408302e37,9.411294e37,9.414284e37,9.417276e37,9.420268e37,9.423259e37,9.426251e37,9.429243e37,9.432234e37,9.435225e37,9.438216e37,9.441208e37,9.4442e37,9.447191e37,9.450183e37,9.453175e37,9.456165e37,9.459157e37,9.462149e37,9.46514e37,9.468132e37,9.471124e37,9.474115e37,9.477106e37,9.480098e37,9.483089e37,9.486081e37,9.489073e37,9.492064e37,9.495056e37,9.498047e37,9.501038e37,9.50403e37,9.507022e37,9.510013e37,9.513005e37,9.515996e37,9.518987e37,9.521979e37,9.52497e37,9.527962e37,9.530954e37,9.533945e37,9.536937e37,9.539928e37,9.542919e37,9.545911e37,9.548903e37,9.551894e37,9.554886e37,9.557878e37,9.560868e37,9.56386e37,9.566852e37,9.569843e37,9.572835e37,9.575827e37,9.578818e37,9.581809e37,9.5848e37,9.587792e37,9.590784e37,9.593775e37,9.596767e37,9.599759e37,9.602749e37,9.605741e37,9.608733e37,9.611724e37,9.614716e37,9.617708e37,9.620699e37,9.62369e37,9.626682e37,9.629673e37,9.632665e37,9.635657e37,9.638648e37,9.64164e37,9.644631e37,9.647622e37,9.650614e37,9.653606e37,9.656597e37,9.659589e37,9.66258e37,9.665571e37,9.668563e37,9.671554e37,9.674546e37,9.677538e37,9.680529e37,9.683521e37,9.686512e37,9.689503e37,9.692495e37,9.695487e37,9.698478e37,9.70147e37,9.704462e37,9.707452e37,9.710444e37,9.713436e37,9.716427e37,9.719419e37,9.722411e37,9.725402e37,9.728393e37,9.731385e37,9.734376e37,9.737368e37,9.740359e37,9.743351e37,9.746343e37,9.749333e37,9.752325e37,9.755317e37,9.758308e37,9.7613e37,9.764292e37,9.767283e37,9.770274e37,9.773266e37,9.776257e37,9.779249e37,9.782241e37,9.785232e37,9.788224e37,9.791215e37,9.794206e37,9.797198e37,9.80019e37,9.803181e37,9.806173e37,9.809165e37,9.812155e37,9.815147e37,9.818138e37,9.82113e37,9.824122e37,9.827113e37,9.830105e37,9.833096e37,9.836087e37,9.839079e37,9.842071e37,9.845062e37,9.848054e37,9.851046e37,9.854036e37,9.857028e37,9.86002e37,9.863011e37,9.866003e37,9.868995e37,9.871986e37,9.874977e37,9.877969e37,9.88096e37,9.883952e37,9.886944e37,9.889935e37,9.892927e37,9.895917e37,9.898909e37,9.901901e37,9.904892e37,9.907884e37,9.910876e37,9.913867e37,9.916858e37,9.91985e37,9.922841e37,9.925833e37,9.928825e37,9.931816e37,9.934808e37,9.937799e37,9.94079e37,9.943782e37,9.946774e37,9.949765e37,9.952757e37,9.955749e37,9.958739e37,9.961731e37,9.964722e37,9.967714e37,9.970706e37,9.973697e37,9.976689e37,9.979681e37,9.982671e37,9.985663e37,9.988655e37,9.991646e37,9.994638e37,9.99763e37,1.0000621e38,1.0003612e38,1.0006604e38,1.0009595e38,1.0012587e38,1.0015579e38,1.001857e38,1.0021562e38,1.0024553e38,1.0027544e38,1.0030536e38,1.0033528e38,1.0036519e38,1.0039511e38,1.0042502e38,1.0045493e38,1.0048485e38,1.0051476e38,1.0054468e38,1.005746e38,1.0060451e38,1.0063443e38,1.0066434e38,1.0069425e38,1.0072417e38,1.0075409e38,1.00784e38,1.0081392e38,1.0084384e38,1.0087374e38,1.0090366e38,1.0093358e38,1.0096349e38,1.0099341e38,1.0102333e38,1.0105324e38,1.0108315e38,1.0111307e38,1.0114298e38,1.011729e38,1.0120281e38,1.0123273e38,1.0126265e38,1.0129255e38,1.0132247e38,1.0135239e38,1.013823e38,1.0141222e38,1.0144214e38,1.0147205e38,1.0150196e38,1.0153188e38,1.0156179e38,1.0159171e38,1.0162163e38,1.0165154e38,1.0168146e38,1.0171137e38,1.0174128e38,1.017712e38,1.0180112e38,1.0183103e38,1.0186095e38,1.0189087e38,1.0192077e38,1.0195069e38,1.019806e38,1.0201052e38,1.0204044e38,1.0207035e38,1.0210027e38,1.0213018e38,1.0216009e38,1.0219001e38,1.0221993e38,1.0224984e38,1.0227976e38,1.0230968e38,1.0233958e38,1.023695e38,1.0239942e38,1.0242933e38,1.0245925e38,1.0248917e38,1.0251908e38,1.0254899e38,1.0257891e38,1.0260882e38,1.0263874e38,1.0266865e38,1.0269857e38,1.0272849e38,1.0275839e38,1.0278831e38,1.0281823e38,1.0284814e38,1.0287806e38,1.0290798e38,1.0293789e38,1.029678e38,1.0299772e38,1.0302763e38,1.0305755e38,1.0308747e38,1.0311738e38,1.031473e38,1.0317721e38,1.0320712e38,1.0323704e38,1.0326696e38,1.0329687e38,1.0332679e38,1.0335671e38,1.0338661e38,1.0341653e38,1.0344644e38,1.0347636e38,1.0350628e38,1.0353619e38,1.0356611e38,1.0359602e38,1.0362593e38,1.0365585e38,1.0368577e38,1.0371568e38,1.037456e38,1.0377552e38,1.0380542e38,1.0383534e38,1.0386526e38,1.0389517e38,1.0392509e38,1.0395501e38,1.0398492e38,1.0401483e38,1.0404475e38,1.0407466e38,1.0410458e38,1.041345e38,1.0416441e38,1.0419433e38,1.0422423e38,1.0425415e38,1.0428407e38,1.0431398e38,1.043439e38,1.0437382e38,1.0440373e38,1.0443364e38,1.0446356e38,1.0449347e38,1.0452339e38,1.0455331e38,1.0458322e38,1.0461314e38,1.0464305e38,1.0467296e38,1.0470288e38,1.047328e38,1.0476271e38,1.0479263e38,1.0482255e38,1.0485245e38,1.0488237e38,1.0491228e38,1.049422e38,1.0497212e38,1.0500203e38,1.0503195e38,1.0506186e38,1.0509177e38,1.0512169e38,1.0515161e38,1.0518152e38,1.0521144e38,1.0524136e38,1.0527126e38,1.0530118e38,1.053311e38,1.0536101e38,1.0539093e38,1.0542085e38,1.0545076e38,1.0548067e38,1.0551059e38,1.055405e38,1.0557042e38,1.0560034e38,1.0563025e38,1.0566017e38,1.0569007e38,1.0571999e38,1.0574991e38,1.0577982e38,1.0580974e38,1.0583966e38,1.0586957e38,1.0589948e38,1.059294e38,1.0595931e38,1.0598923e38,1.0601915e38,1.0604906e38,1.0607898e38,1.0610889e38,1.061388e38,1.0616872e38,1.0619864e38,1.0622855e38,1.0625847e38,1.0628839e38,1.0631829e38,1.0634821e38,1.0637813e38,1.0640804e38,1.0643796e38,1.0646787e38,1.0649779e38,1.065277e38,1.0655761e38,1.0658753e38,1.0661745e38,1.0664736e38,1.0667728e38,1.067072e38,1.067371e38,1.0676702e38,1.0679694e38,1.0682685e38,1.0685677e38,1.0688669e38,1.069166e38,1.0694651e38,1.0697643e38,1.0700634e38,1.0703626e38,1.0706618e38,1.0709609e38,1.0712601e38,1.0715591e38,1.0718583e38,1.0721575e38,1.0724566e38,1.0727558e38,1.073055e38,1.0733541e38,1.0736532e38,1.0739524e38,1.0742515e38,1.0745507e38,1.0748499e38,1.075149e38,1.0754482e38,1.0757473e38,1.0760464e38,1.0763456e38,1.0766448e38,1.0769439e38,1.0772431e38,1.0775423e38,1.0778413e38,1.0781405e38,1.0784397e38,1.0787388e38,1.079038e38,1.0793371e38,1.0796363e38,1.0799354e38,1.0802345e38,1.0805337e38,1.0808329e38,1.081132e38,1.0814312e38,1.0817304e38,1.0820294e38,1.0823286e38,1.0826278e38,1.0829269e38,1.0832261e38,1.0835253e38,1.0838244e38,1.0841235e38,1.0844227e38,1.0847218e38,1.085021e38,1.0853202e38,1.0856193e38,1.0859185e38,1.0862176e38,1.0865167e38,1.0868159e38,1.087115e38,1.0874142e38,1.0877134e38,1.0880125e38,1.0883116e38,1.0886108e38,1.0889099e38,1.0892091e38,1.0895083e38,1.0898074e38,1.0901066e38,1.0904057e38,1.0907048e38,1.091004e38,1.0913032e38,1.0916023e38,1.0919015e38,1.0922007e38,1.0924997e38,1.0927989e38,1.0930981e38,1.0933972e38,1.0936964e38,1.0939956e38,1.0942947e38,1.0945938e38,1.0948929e38,1.0951921e38,1.0954913e38,1.0957904e38,1.0960896e38,1.0963888e38,1.0966878e38,1.096987e38,1.0972862e38,1.0975853e38,1.0978845e38,1.0981837e38,1.0984828e38,1.0987819e38,1.0990811e38,1.0993802e38,1.0996794e38,1.0999786e38,1.1002777e38,1.1005769e38,1.100876e38,1.1011751e38,1.1014743e38,1.1017734e38,1.1020726e38,1.1023718e38,1.1026709e38,1.10297e38,1.1032692e38,1.1035683e38,1.1038675e38,1.1041667e38,1.1044658e38,1.104765e38,1.1050641e38,1.1053632e38,1.1056624e38,1.1059616e38,1.1062607e38,1.1065599e38,1.1068591e38,1.1071581e38,1.1074573e38,1.1077565e38,1.1080556e38,1.1083548e38,1.108654e38,1.1089531e38,1.1092522e38,1.1095513e38,1.1098505e38,1.1101497e38,1.1104488e38,1.110748e38,1.1110472e38,1.1113462e38,1.1116454e38,1.1119446e38,1.1122437e38,1.1125429e38,1.1128421e38,1.1131412e38,1.1134403e38,1.1137395e38,1.1140386e38,1.1143378e38,1.114637e38,1.1149361e38,1.1152353e38,1.1155344e38,1.1158335e38,1.1161327e38,1.1164319e38,1.116731e38,1.1170302e38,1.1173293e38,1.1176284e38,1.1179276e38,1.1182267e38,1.1185259e38,1.1188251e38,1.1191242e38,1.1194234e38,1.1197225e38,1.1200216e38,1.1203208e38,1.12062e38,1.1209191e38,1.1212183e38,1.1215175e38,1.1218165e38,1.1221157e38,1.1224149e38,1.122714e38,1.1230132e38,1.1233124e38,1.1236115e38,1.1239106e38,1.1242097e38,1.1245089e38,1.1248081e38,1.1251072e38,1.1254064e38,1.1257056e38,1.1260046e38,1.1263038e38,1.126603e38,1.1269021e38,1.1272013e38,1.1275005e38,1.1277996e38,1.1280987e38,1.1283979e38,1.128697e38,1.1289962e38,1.1292954e38,1.1295945e38,1.1298937e38,1.1301929e38,1.1304919e38,1.1307911e38,1.1310903e38,1.1313894e38,1.1316886e38,1.1319877e38,1.1322869e38,1.132586e38,1.1328851e38,1.1331843e38,1.1334835e38,1.1337826e38,1.1340818e38,1.134381e38,1.13468e38,1.1349792e38,1.1352784e38,1.1355775e38,1.1358767e38,1.1361759e38,1.136475e38,1.1367741e38,1.1370733e38,1.1373724e38,1.1376716e38,1.1379708e38,1.1382699e38,1.1385691e38,1.1388682e38,1.1391673e38,1.1394665e38,1.1397656e38,1.1400648e38,1.140364e38,1.1406631e38,1.1409622e38,1.1412614e38,1.1415605e38,1.1418597e38,1.1421589e38,1.142458e38,1.1427572e38,1.1430563e38,1.1433554e38,1.1436546e38,1.1439538e38,1.1442529e38,1.1445521e38,1.1448513e38,1.1451503e38,1.1454495e38,1.1457487e38,1.1460478e38,1.146347e38,1.1466462e38,1.1469453e38,1.1472444e38,1.1475435e38,1.1478427e38,1.1481419e38,1.148441e38,1.1487402e38,1.1490394e38,1.1493384e38,1.1496376e38,1.1499368e38,1.1502359e38,1.1505351e38,1.1508343e38,1.1511334e38,1.1514325e38,1.1517317e38,1.1520308e38,1.15233e38,1.1526292e38,1.1529283e38,1.1532275e38,1.1535266e38,1.1538257e38,1.1541249e38,1.154424e38,1.1547232e38,1.1550224e38,1.1553215e38,1.1556206e38,1.1559198e38,1.1562189e38,1.1565181e38,1.1568173e38,1.1571164e38,1.1574156e38,1.1577147e38,1.1580138e38,1.158313e38,1.1586122e38,1.1589113e38,1.1592105e38,1.1595097e38,1.1598087e38,1.1601079e38,1.1604071e38,1.1607062e38,1.1610054e38,1.1613046e38,1.1616037e38,1.1619028e38,1.1622019e38,1.1625011e38,1.1628003e38,1.1630994e38,1.1633986e38,1.1636978e38,1.1639968e38,1.164296e38,1.1645952e38,1.1648943e38,1.1651935e38,1.1654927e38,1.1657918e38,1.1660909e38,1.1663901e38,1.1666892e38,1.1669884e38,1.1672876e38,1.1675867e38,1.1678859e38,1.168185e38,1.1684841e38,1.1687833e38,1.1690825e38,1.1693816e38,1.1696808e38,1.1699799e38,1.170279e38,1.1705782e38,1.1708773e38,1.1711765e38,1.1714757e38,1.1717748e38,1.172074e38,1.1723731e38,1.1726722e38,1.1729714e38,1.1732706e38,1.1735697e38,1.1738689e38,1.1741681e38,1.1744671e38,1.1747663e38,1.1750655e38,1.1753646e38,1.1756638e38,1.175963e38,1.1762621e38,1.1765612e38,1.1768603e38,1.1771595e38,1.1774587e38,1.1777578e38,1.178057e38,1.1783562e38,1.1786552e38,1.1789544e38,1.1792536e38,1.1795527e38,1.1798519e38,1.1801511e38,1.1804502e38,1.1807493e38,1.1810485e38,1.1813476e38,1.1816468e38,1.181946e38,1.1822451e38,1.1825443e38,1.1828434e38,1.1831425e38,1.1834417e38,1.1837409e38,1.18404e38,1.1843392e38,1.1846383e38,1.1849374e38,1.1852366e38,1.1855357e38,1.1858349e38,1.1861341e38,1.1864332e38,1.1867324e38,1.1870315e38,1.1873306e38,1.1876298e38,1.187929e38,1.1882281e38,1.1885273e38,1.1888265e38,1.1891255e38,1.1894247e38,1.1897239e38,1.190023e38,1.1903222e38,1.1906214e38,1.1909205e38,1.1912196e38,1.1915188e38,1.1918179e38,1.1921171e38,1.1924162e38,1.1927154e38,1.1930146e38,1.1933136e38,1.1936128e38,1.193912e38,1.1942111e38,1.1945103e38,1.1948095e38,1.1951086e38,1.1954077e38,1.1957069e38,1.196006e38,1.1963052e38],"cosine":[1.0,0.034899496,-0.9975641,-0.104528464,0.99026805,0.17364818,-0.9781476,-0.2419219,0.9612617,0.309017,-0.9396926,-0.37460658,0.9135454,0.99026805,-0.88294756,-0.9975641,0.8480481,1.0,-0.809017,-0.9975641,0.76604444,0.99026805,-0.7193398,0.17364818,0.6691306,0.9612617,0.9612617,0.034899496,0.5591929,0.9135454,0.99026805,-0.104528464,0.43837115,0.8480481,1.0,-0.2419219,0.309017,0.76604444,0.99026805,-0.37460658,0.17364818,0.6691306,0.9612617,-0.5,0.034899496,-0.9781476,-0.9396926,-0.6156615,-0.104528464,0.43837115,0.8480481,1.0,0.8480481,0.43837115,-0.9975641,-0.809017,-0.37460658,0.17364818,0.6691306,0.9612617,0.9612617,0.6691306,-0.9781476,-0.9396926,-0.6156615,-0.104528464,0.43837115,0.8480481,1.0,0.8480481,-0.88294756,-0.9975641,-0.809017,-0.37460658,0.17364818,0.6691306,0.9612617,0.9612617,-0.7193398,-0.9781476,-0.9396926,-0.6156615,-0.104528464,0.43837115,0.8480481,1.0,-0.5,-0.88294756,-0.9975641,-0.809017,0.9135454,0.17364818,0.76604444,0.9612617,-0.2419219,0.6691306,-0.9781476,-0.37460658,-0.6156615,0.99026805,0.43837115,0.5591929,1.0,-0.5,0.43837115,-0.9975641,-0.6156615,-0.37460658,0.99026805,0.6691306,0.309017,0.9612617,-0.7193398,0.17364818,-0.9396926,0.76604444,-0.104528464,0.9135454,0.8480481,0.034899496,0.8480481,-0.88294756,-0.104528464,-0.809017,0.9135454,0.17364818,0.76604444,0.9612617,-0.2419219,0.6691306,-0.9781476,0.309017,-0.6156615,0.99026805,0.43837115,0.5591929,1.0,-0.5,0.43837115,-0.9975641,0.5591929,-0.37460658,0.99026805,0.6691306,0.309017,0.9612617,-0.7193398,0.17364818,-0.9396926,0.76604444,-0.104528464,0.9135454,0.8480481,0.034899496,0.8480481,-0.88294756,0.034899496,-0.809017,0.9135454,0.17364818,0.76604444,0.9612617,-0.2419219,0.6691306,-0.9781476,0.309017,-0.6156615,0.99026805,0.43837115,0.5591929,1.0,-0.5,-0.5,-0.9975641,0.5591929,-0.37460658,0.99026805,0.6691306,0.309017,0.9612617,0.6691306,-0.2419219,-0.9396926,-0.809017,0.17364818,0.9135454,0.8480481,0.034899496,-0.88294756,-0.88294756,-0.104528464,0.8480481,0.9135454,0.17364818,-0.7193398,-0.9396926,-0.2419219,0.6691306,0.9612617,0.309017,-0.6156615,-0.9975641,-0.37460658,0.5591929,1.0,0.43837115,-0.5,-0.9975641,-0.6156615,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9781476,-0.7193398,0.17364818,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.809017,0.034899496,0.8480481,0.8480481,0.034899496,-0.809017,-0.9396926,-0.104528464,0.76604444,0.9612617,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.6691306,0.99026805,0.43837115,-0.5,-0.9975641,-0.5,0.43837115,1.0,0.5591929,-0.37460658,-0.9781476,-0.6156615,0.309017,0.9612617,0.6691306,-0.2419219,-0.9396926,-0.809017,0.17364818,0.9135454,0.8480481,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.8480481,0.9135454,0.17364818,-0.809017,-0.9396926,-0.2419219,0.6691306,0.9612617,0.309017,-0.6156615,-0.9975641,-0.37460658,0.5591929,1.0,0.43837115,-0.5,-0.9975641,-0.6156615,0.43837115,0.99026805,0.6691306,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9612617,0.76604444,-0.104528464,-0.9396926,-0.809017,0.034899496,0.8480481,0.8480481,0.034899496,-0.809017,-0.9396926,-0.104528464,0.76604444,0.9612617,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.6691306,0.99026805,0.43837115,-0.6156615,-0.9975641,-0.5,0.43837115,1.0,0.5591929,-0.37460658,-0.9975641,-0.6156615,0.309017,0.9612617,0.6691306,-0.2419219,-0.9396926,-0.7193398,0.17364818,0.9135454,0.8480481,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.8480481,0.9135454,0.17364818,-0.809017,-0.9396926,-0.2419219,0.6691306,0.9612617,0.309017,-0.6156615,-0.9781476,-0.37460658,0.5591929,1.0,0.43837115,-0.5,-0.9975641,-0.5,0.43837115,0.99026805,0.6691306,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9612617,0.76604444,-0.104528464,-0.9396926,-0.809017,0.034899496,0.8480481,0.9135454,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.9612617,0.309017,-0.6156615,-0.9396926,-0.2419219,0.6691306,0.99026805,0.43837115,-0.5,-0.9975641,-0.37460658,0.5591929,1.0,0.5591929,-0.37460658,-0.9781476,-0.7193398,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.809017,0.034899496,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.8480481,0.034899496,-0.809017,-0.9396926,-0.2419219,0.6691306,0.99026805,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.5591929,1.0,0.5591929,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.6156615,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.88294756,0.17364818,0.9135454,0.8480481,0.034899496,-0.809017,-0.9396926,-0.2419219,0.8480481,0.9135454,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.5591929,0.9612617,0.309017,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.43837115,-0.5,-0.9975641,-0.6156615,0.309017,0.9612617,0.76604444,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9135454,0.8480481,0.034899496,-0.9396926,-0.809017,0.034899496,0.8480481,0.9135454,0.17364818,-0.7193398,-0.88294756,-0.104528464,0.76604444,0.9612617,0.309017,-0.6156615,-0.9975641,-0.5,0.6691306,0.99026805,0.43837115,-0.5,-0.9975641,-0.6156615,0.309017,1.0,0.5591929,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9135454,0.6691306,-0.2419219,-0.9396926,-0.809017,0.034899496,0.8480481,0.9135454,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.9612617,0.309017,-0.809017,-0.9396926,-0.2419219,0.6691306,0.99026805,0.43837115,-0.5,-0.9781476,-0.37460658,0.5591929,1.0,0.5591929,-0.37460658,-0.9781476,-0.5,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.809017,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.8480481,0.034899496,-0.809017,-0.9396926,-0.2419219,0.6691306,0.99026805,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.5591929,1.0,0.5591929,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9975641,-0.6156615,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.7193398,0.17364818,0.9135454,0.8480481,0.034899496,-0.809017,-0.9396926,0.034899496,0.8480481,0.9135454,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.76604444,0.9612617,0.309017,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.43837115,-0.5,-0.9975641,-0.6156615,0.309017,0.9612617,0.76604444,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9135454,0.8480481,0.034899496,-0.9396926,-0.809017,0.034899496,0.8480481,0.9135454,0.17364818,-0.7193398,-0.88294756,-0.104528464,0.76604444,0.9612617,0.309017,-0.6156615,-0.9975641,-0.2419219,0.6691306,0.99026805,0.43837115,-0.5,-0.9975641,-0.6156615,0.5591929,1.0,0.5591929,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.809017,0.034899496,0.8480481,0.76604444,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.9612617,0.034899496,-0.809017,-0.9396926,-0.2419219,0.6691306,0.99026805,0.43837115,-0.5,-0.9781476,-0.37460658,0.5591929,1.0,0.5591929,-0.37460658,-0.9781476,-0.5,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.809017,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.9135454,0.8480481,0.034899496,-0.809017,-0.9396926,-0.2419219,0.6691306,0.9135454,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.5591929,1.0,0.309017,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.6691306,-0.5,-0.9975641,-0.6156615,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.7193398,0.17364818,0.9135454,0.8480481,0.034899496,-0.809017,-0.9396926,0.034899496,0.8480481,0.9135454,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.76604444,1.0,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.99026805,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,0.17364818,0.76604444,0.8480481,0.309017,-0.809017,-0.9975641,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,-0.37460658,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.9612617,0.034899496,-0.9396926,-0.9396926,0.034899496,0.6691306,0.9135454,0.43837115,-0.7193398,-0.88294756,-0.37460658,0.76604444,1.0,0.309017,-0.37460658,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9396926,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.88294756,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.9396926,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,-0.37460658,0.76604444,0.8480481,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.17364818,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.9612617,0.034899496,-0.6156615,-0.9396926,0.034899496,0.6691306,0.9135454,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.76604444,1.0,0.309017,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.99026805,0.6691306,-0.5,-0.9396926,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.6691306,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.809017,0.309017,1.0,0.76604444,-0.37460658,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.6691306,0.034899496,-0.9396926,-0.9396926,0.034899496,0.6691306,0.9135454,-0.104528464,-0.7193398,-0.88294756,-0.37460658,0.76604444,1.0,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.809017,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.9135454,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.9135454,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.309017,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,-0.5,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,0.309017,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,-0.37460658,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.9612617,0.034899496,-0.9396926,-0.9396926,0.034899496,0.6691306,0.9135454,0.43837115,-0.7193398,-0.88294756,-0.37460658,0.76604444,1.0,0.309017,-0.37460658,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9396926,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.99026805,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,0.17364818,0.76604444,0.8480481,0.309017,-0.809017,-0.9975641,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.9612617,0.034899496,-0.6156615,-0.9396926,0.034899496,0.6691306,0.9135454,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.76604444,1.0,0.309017,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.99026805,0.6691306,-0.5,-0.9396926,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.88294756,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.9396926,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,-0.37460658,0.76604444,0.8480481,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.17364818,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.9135454,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.9135454,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.309017,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,-0.5,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,0.309017,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.6691306,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.809017,0.309017,1.0,0.76604444,-0.37460658,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.6691306,0.034899496,-0.9396926,-0.9396926,0.034899496,0.6691306,0.9135454,-0.104528464,-0.7193398,-0.88294756,-0.37460658,0.76604444,1.0,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.809017,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,1.0,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.5,0.17364818,0.76604444,1.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/large_negative.json new file mode 100644 index 000000000000..ac82aa04b093 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/large_negative.json @@ -0,0 +1 @@ +{"sine":[-0.0,-0.99939084,-0.06975647,0.9945219,0.1391731,-0.9848077,-0.20791169,0.9702957,0.27563736,-0.95105654,-0.34202015,0.92718387,0.40673664,-0.1391731,-0.46947157,0.06975647,0.52991927,-0.0,-0.58778524,-0.06975647,0.64278764,0.1391731,-0.6946584,0.9848077,0.7431448,0.27563736,-0.27563736,0.99939084,0.82903755,0.40673664,-0.1391731,0.9945219,0.89879405,0.52991927,-0.0,0.9702957,0.95105654,0.64278764,0.1391731,0.92718387,0.9848077,0.7431448,0.27563736,0.8660254,0.99939084,-0.20791169,0.34202015,0.7880108,0.9945219,0.89879405,0.52991927,-0.0,-0.52991927,-0.89879405,0.06975647,0.58778524,0.92718387,0.9848077,0.7431448,0.27563736,-0.27563736,-0.7431448,-0.20791169,0.34202015,0.7880108,0.9945219,0.89879405,0.52991927,-0.0,-0.52991927,-0.46947157,0.06975647,0.58778524,0.92718387,0.9848077,0.7431448,0.27563736,-0.27563736,-0.6946584,-0.20791169,0.34202015,0.7880108,0.9945219,0.89879405,0.52991927,-0.0,-0.8660254,-0.46947157,0.06975647,0.58778524,0.40673664,0.9848077,-0.64278764,0.27563736,-0.9702957,-0.7431448,-0.20791169,-0.92718387,0.7880108,0.1391731,0.89879405,-0.82903755,-0.0,-0.8660254,-0.89879405,0.06975647,-0.7880108,0.92718387,-0.1391731,0.7431448,-0.95105654,-0.27563736,-0.6946584,-0.9848077,0.34202015,0.64278764,0.9945219,-0.40673664,0.52991927,-0.99939084,-0.52991927,-0.46947157,-0.9945219,0.58778524,0.40673664,0.9848077,-0.64278764,0.27563736,-0.9702957,-0.7431448,-0.20791169,0.95105654,0.7880108,0.1391731,0.89879405,-0.82903755,-0.0,-0.8660254,-0.89879405,0.06975647,0.82903755,0.92718387,-0.1391731,0.7431448,-0.95105654,-0.27563736,-0.6946584,-0.9848077,0.34202015,0.64278764,0.9945219,-0.40673664,0.52991927,-0.99939084,-0.52991927,-0.46947157,0.99939084,0.58778524,0.40673664,0.9848077,-0.64278764,0.27563736,-0.9702957,-0.7431448,-0.20791169,0.95105654,0.7880108,0.1391731,0.89879405,-0.82903755,-0.0,-0.8660254,0.8660254,0.06975647,0.82903755,0.92718387,-0.1391731,0.7431448,-0.95105654,-0.27563736,0.7431448,0.9702957,0.34202015,-0.58778524,-0.9848077,-0.40673664,0.52991927,0.99939084,0.46947157,-0.46947157,-0.9945219,-0.52991927,0.40673664,0.9848077,0.6946584,-0.34202015,-0.9702957,-0.7431448,0.27563736,0.95105654,0.7880108,-0.06975647,-0.92718387,-0.82903755,-0.0,0.89879405,0.8660254,0.06975647,-0.7880108,-0.89879405,-0.1391731,0.7431448,0.9702957,0.20791169,-0.6946584,-0.9848077,-0.27563736,0.64278764,0.9945219,0.46947157,-0.58778524,-0.99939084,-0.52991927,0.52991927,0.99939084,0.58778524,-0.34202015,-0.9945219,-0.64278764,0.27563736,0.9848077,0.6946584,-0.20791169,-0.92718387,-0.7431448,0.1391731,0.89879405,0.8660254,-0.06975647,-0.8660254,-0.89879405,-0.0,0.82903755,0.92718387,0.20791169,-0.7880108,-0.95105654,-0.27563736,0.7431448,0.9702957,0.34202015,-0.58778524,-0.9848077,-0.40673664,0.52991927,0.9945219,0.46947157,-0.46947157,-0.9945219,-0.52991927,0.40673664,0.9848077,0.58778524,-0.34202015,-0.9702957,-0.7431448,0.27563736,0.95105654,0.7880108,-0.06975647,-0.92718387,-0.82903755,-0.0,0.89879405,0.8660254,0.06975647,-0.7880108,-0.89879405,-0.1391731,0.7431448,0.92718387,0.20791169,-0.6946584,-0.9848077,-0.27563736,0.64278764,0.9945219,0.34202015,-0.58778524,-0.99939084,-0.52991927,0.52991927,0.99939084,0.58778524,-0.34202015,-0.9945219,-0.64278764,0.27563736,0.9848077,0.6946584,-0.20791169,-0.92718387,-0.7431448,0.1391731,0.89879405,0.7880108,-0.06975647,-0.8660254,-0.89879405,-0.0,0.82903755,0.92718387,0.06975647,-0.7880108,-0.95105654,-0.27563736,0.7431448,0.9702957,0.34202015,-0.6946584,-0.9848077,-0.40673664,0.52991927,0.9945219,0.46947157,-0.46947157,-0.9945219,-0.52991927,0.40673664,0.9848077,0.58778524,-0.34202015,-0.9702957,-0.7431448,0.27563736,0.95105654,0.7880108,-0.20791169,-0.92718387,-0.82903755,-0.0,0.89879405,0.8660254,0.06975647,-0.8660254,-0.89879405,-0.1391731,0.7431448,0.92718387,0.20791169,-0.6946584,-0.9848077,-0.27563736,0.64278764,0.9945219,0.34202015,-0.58778524,-0.99939084,-0.52991927,0.40673664,0.9945219,0.46947157,-0.46947157,-0.9945219,-0.64278764,0.27563736,0.95105654,0.7880108,-0.34202015,-0.9702957,-0.7431448,0.1391731,0.89879405,0.8660254,0.06975647,-0.92718387,-0.82903755,-0.0,0.82903755,0.92718387,0.20791169,-0.6946584,-0.89879405,-0.1391731,0.7431448,0.9702957,0.34202015,-0.58778524,-0.99939084,-0.27563736,0.64278764,0.9945219,0.46947157,-0.46947157,-0.9945219,-0.64278764,0.52991927,0.99939084,0.58778524,-0.34202015,-0.9702957,-0.7431448,0.1391731,0.9848077,0.6946584,-0.20791169,-0.92718387,-0.82903755,-0.0,0.82903755,0.7880108,-0.06975647,-0.8660254,-0.89879405,-0.1391731,0.7431448,0.9702957,0.34202015,-0.7880108,-0.95105654,-0.27563736,0.64278764,0.9945219,0.46947157,-0.46947157,-0.9848077,-0.40673664,0.52991927,0.99939084,0.58778524,-0.34202015,-0.9702957,-0.52991927,0.40673664,0.9848077,0.6946584,-0.20791169,-0.92718387,-0.82903755,0.27563736,0.95105654,0.7880108,-0.06975647,-0.8660254,-0.89879405,-0.1391731,0.89879405,0.8660254,0.06975647,-0.7880108,-0.95105654,-0.27563736,0.64278764,0.92718387,0.20791169,-0.6946584,-0.9848077,-0.40673664,0.52991927,0.99939084,0.34202015,-0.58778524,-0.99939084,-0.52991927,0.40673664,0.9848077,0.6946584,-0.46947157,-0.9945219,-0.64278764,0.27563736,0.95105654,0.7880108,-0.06975647,-0.8660254,-0.7431448,0.1391731,0.89879405,0.8660254,0.06975647,-0.7880108,-0.95105654,-0.0,0.82903755,0.92718387,0.20791169,-0.6946584,-0.9848077,-0.40673664,0.7431448,0.9702957,0.34202015,-0.58778524,-0.99939084,-0.52991927,0.40673664,0.9945219,0.46947157,-0.46947157,-0.9945219,-0.64278764,0.27563736,0.95105654,0.58778524,-0.34202015,-0.9702957,-0.7431448,0.1391731,0.89879405,0.8660254,-0.20791169,-0.92718387,-0.82903755,-0.0,0.82903755,0.92718387,0.20791169,-0.8660254,-0.89879405,-0.1391731,0.7431448,0.9702957,0.34202015,-0.58778524,-0.95105654,-0.27563736,0.64278764,0.9945219,0.46947157,-0.46947157,-0.9945219,-0.64278764,0.52991927,0.99939084,0.58778524,-0.34202015,-0.9702957,-0.7431448,0.1391731,0.9848077,0.6946584,-0.20791169,-0.92718387,-0.82903755,-0.0,0.82903755,0.7880108,-0.06975647,-0.8660254,-0.89879405,-0.1391731,0.7431448,0.9702957,0.06975647,-0.7880108,-0.95105654,-0.27563736,0.64278764,0.9945219,0.46947157,-0.6946584,-0.9848077,-0.40673664,0.52991927,0.99939084,0.58778524,-0.34202015,-0.99939084,-0.52991927,0.40673664,0.9848077,0.6946584,-0.20791169,-0.92718387,-0.64278764,0.27563736,0.95105654,0.7880108,-0.06975647,-0.8660254,-0.89879405,0.1391731,0.89879405,0.8660254,0.06975647,-0.7880108,-0.95105654,-0.27563736,0.64278764,0.92718387,0.20791169,-0.6946584,-0.9848077,-0.40673664,0.52991927,0.99939084,0.34202015,-0.58778524,-0.99939084,-0.52991927,0.40673664,0.9848077,0.6946584,-0.46947157,-0.9945219,-0.64278764,0.27563736,0.95105654,0.7880108,-0.06975647,-0.9702957,-0.7431448,0.1391731,0.89879405,0.8660254,0.06975647,-0.7880108,-0.82903755,-0.0,0.82903755,0.92718387,0.20791169,-0.6946584,-0.9848077,-0.1391731,0.7431448,0.9702957,0.34202015,-0.58778524,-0.99939084,-0.52991927,0.64278764,0.9945219,0.46947157,-0.46947157,-0.9945219,-0.64278764,0.27563736,0.99939084,0.58778524,-0.34202015,-0.9702957,-0.7431448,0.1391731,0.89879405,0.8660254,-0.20791169,-0.92718387,-0.82903755,-0.0,0.82903755,0.92718387,0.20791169,-0.8660254,-0.89879405,-0.1391731,0.7431448,0.9702957,0.34202015,-0.58778524,-0.95105654,-0.27563736,0.64278764,0.9945219,0.46947157,-0.46947157,-0.9945219,-0.40673664,0.52991927,0.99939084,0.58778524,-0.34202015,-0.9702957,-0.7431448,0.40673664,0.9848077,0.6946584,-0.20791169,-0.92718387,-0.82903755,-0.0,0.95105654,0.7880108,-0.06975647,-0.8660254,-0.89879405,-0.1391731,0.7431448,0.8660254,0.06975647,-0.7880108,-0.95105654,-0.27563736,0.64278764,0.9945219,0.46947157,-0.6946584,-0.9848077,-0.40673664,0.52991927,0.99939084,0.58778524,-0.34202015,-0.99939084,-0.52991927,0.40673664,0.9848077,0.6946584,-0.20791169,-0.92718387,-0.64278764,-0.0,0.95105654,0.58778524,-0.06975647,-0.9702957,-0.89879405,0.1391731,0.7431448,0.8660254,-0.20791169,-0.7880108,-0.82903755,-0.27563736,0.82903755,0.9945219,0.20791169,-0.46947157,-0.9848077,-0.1391731,0.52991927,0.9702957,0.58778524,-0.58778524,-0.9702957,-0.52991927,0.64278764,0.9848077,0.46947157,-0.20791169,-0.9945219,-0.82903755,0.27563736,0.99939084,0.7880108,-0.34202015,-0.8660254,-0.7431448,-0.1391731,0.89879405,0.6946584,0.06975647,-0.92718387,-0.95105654,-0.0,0.64278764,0.92718387,-0.06975647,-0.6946584,-0.89879405,-0.40673664,0.7431448,0.99939084,0.34202015,-0.7880108,-0.99939084,-0.27563736,0.40673664,0.9945219,0.6946584,-0.46947157,-0.9848077,-0.64278764,0.52991927,0.95105654,0.58778524,-0.06975647,-0.9702957,-0.52991927,0.1391731,0.9848077,0.8660254,-0.20791169,-0.7880108,-0.82903755,0.27563736,0.82903755,0.7880108,0.20791169,-0.8660254,-0.9848077,-0.1391731,0.89879405,0.9702957,0.06975647,-0.58778524,-0.95105654,-0.52991927,0.64278764,0.92718387,0.46947157,-0.6946584,-0.9945219,-0.40673664,0.27563736,0.99939084,0.34202015,-0.34202015,-0.99939084,-0.7431448,0.40673664,0.89879405,0.6946584,-0.46947157,-0.92718387,-0.64278764,-0.0,0.95105654,0.92718387,-0.06975647,-0.9702957,-0.89879405,0.1391731,0.7431448,0.8660254,0.34202015,-0.7880108,-0.82903755,-0.27563736,0.82903755,0.9945219,0.20791169,-0.46947157,-0.9848077,-0.64278764,0.52991927,0.9702957,0.58778524,-0.58778524,-0.9702957,-0.52991927,0.1391731,0.9848077,0.46947157,-0.20791169,-0.9945219,-0.82903755,0.27563736,0.82903755,0.7880108,-0.34202015,-0.8660254,-0.7431448,-0.1391731,0.89879405,0.9702957,0.06975647,-0.92718387,-0.95105654,-0.0,0.64278764,0.92718387,0.46947157,-0.6946584,-0.89879405,-0.40673664,0.7431448,0.99939084,0.34202015,-0.34202015,-0.99939084,-0.27563736,0.40673664,0.9945219,0.6946584,-0.46947157,-0.92718387,-0.64278764,0.52991927,0.95105654,0.58778524,-0.06975647,-0.9702957,-0.89879405,0.1391731,0.9848077,0.8660254,-0.20791169,-0.7880108,-0.82903755,-0.27563736,0.82903755,0.7880108,0.20791169,-0.8660254,-0.9848077,-0.1391731,0.52991927,0.9702957,0.06975647,-0.58778524,-0.95105654,-0.52991927,0.64278764,0.9848077,0.46947157,-0.6946584,-0.9945219,-0.40673664,0.27563736,0.99939084,0.7880108,-0.34202015,-0.99939084,-0.7431448,0.40673664,0.89879405,0.6946584,0.06975647,-0.92718387,-0.64278764,-0.0,0.95105654,0.92718387,-0.06975647,-0.6946584,-0.89879405,0.1391731,0.7431448,0.8660254,0.34202015,-0.7880108,-0.99939084,-0.27563736,0.82903755,0.9945219,0.20791169,-0.46947157,-0.9848077,-0.64278764,0.52991927,0.9702957,0.58778524,-0.58778524,-0.9702957,-0.52991927,0.1391731,0.9848077,0.8660254,-0.20791169,-0.9945219,-0.82903755,0.27563736,0.82903755,0.7880108,0.20791169,-0.8660254,-0.7431448,-0.1391731,0.89879405,0.9702957,0.06975647,-0.58778524,-0.95105654,-0.0,0.64278764,0.92718387,0.46947157,-0.6946584,-0.9945219,-0.40673664,0.7431448,0.99939084,0.34202015,-0.34202015,-0.99939084,-0.7431448,0.40673664,0.9945219,0.6946584,-0.46947157,-0.92718387,-0.64278764,-0.0,0.95105654,0.58778524,-0.06975647,-0.9702957,-0.89879405,0.1391731,0.7431448,0.8660254,-0.20791169,-0.7880108,-0.82903755,-0.27563736,0.82903755,0.9945219,0.20791169,-0.8660254,-0.9848077,-0.1391731,0.52991927,0.9702957,0.58778524,-0.58778524,-0.95105654,-0.52991927,0.64278764,0.9848077,0.46947157,-0.20791169,-0.9945219,-0.40673664,0.27563736,0.99939084,0.7880108,-0.34202015,-0.8660254,-0.7431448,0.40673664,0.89879405,0.6946584,0.06975647,-0.92718387,-0.95105654,-0.0,0.95105654,0.92718387,-0.06975647,-0.6946584,-0.89879405,-0.40673664,0.7431448,0.8660254,0.34202015,-0.7880108,-0.99939084,-0.27563736,0.40673664,0.9945219,0.20791169,-0.46947157,-0.9848077,-0.64278764,0.52991927,0.95105654,0.58778524,-0.58778524,-0.9702957,-0.52991927,0.1391731,0.9848077,0.8660254,-0.20791169,-0.9945219,-0.82903755,0.27563736,0.82903755,0.7880108,0.20791169,-0.8660254,-0.9848077,-0.1391731,0.89879405,0.9702957,0.06975647,-0.58778524,-0.95105654,-0.52991927,0.64278764,0.92718387,0.46947157,-0.6946584,-0.9945219,-0.40673664,0.27563736,0.99939084,0.34202015,-0.34202015,-0.99939084,-0.7431448,0.40673664,0.89879405,0.6946584,-0.46947157,-0.92718387,-0.64278764,-0.0,0.95105654,0.92718387,-0.06975647,-0.9702957,-0.89879405,0.1391731,0.7431448,0.8660254,0.34202015,-0.7880108,-0.82903755,-0.27563736,0.82903755,0.9945219,0.20791169,-0.46947157,-0.9848077,-0.1391731,0.52991927,0.9702957,0.58778524,-0.58778524,-0.9702957,-0.52991927,0.64278764,0.9848077,0.46947157,-0.20791169,-0.9945219,-0.82903755,0.27563736,0.99939084,0.7880108,-0.34202015,-0.8660254,-0.7431448,-0.1391731,0.89879405,0.6946584,0.06975647,-0.92718387,-0.95105654,-0.0,0.64278764,0.92718387,-0.06975647,-0.6946584,-0.89879405,-0.40673664,0.7431448,0.99939084,0.34202015,-0.7880108,-0.99939084,-0.27563736,0.40673664,0.9945219,0.6946584,-0.46947157,-0.9848077,-0.64278764,0.52991927,0.95105654,0.58778524,-0.06975647,-0.9702957,-0.52991927,0.1391731,0.9848077,0.8660254,-0.20791169,-0.7880108,-0.82903755,0.27563736,0.82903755,0.7880108,0.20791169,-0.8660254,-0.9848077,-0.1391731,0.52991927,0.9702957,0.06975647,-0.58778524,-0.95105654,-0.52991927,0.64278764,0.9848077,0.46947157,-0.6946584,-0.9945219,-0.40673664,0.27563736,0.99939084,0.7880108,-0.34202015,-0.99939084,-0.7431448,0.40673664,0.89879405,0.6946584,0.06975647,-0.92718387,-0.64278764,-0.0,0.95105654,0.92718387,-0.06975647,-0.6946584,-0.89879405,0.1391731,0.7431448,0.8660254,0.34202015,-0.7880108,-0.99939084,-0.27563736,0.82903755,0.9945219,0.20791169,-0.46947157,-0.9848077,-0.64278764,0.52991927,0.9702957,0.58778524,-0.58778524,-0.9702957,-0.52991927,0.1391731,0.9848077,0.46947157,-0.20791169,-0.9945219,-0.82903755,0.27563736,0.82903755,0.7880108,-0.34202015,-0.8660254,-0.7431448,-0.1391731,0.89879405,0.9702957,0.06975647,-0.92718387,-0.95105654,-0.0,0.64278764,0.92718387,0.46947157,-0.6946584,-0.89879405,-0.40673664,0.7431448,0.99939084,0.34202015,-0.34202015,-0.99939084,-0.27563736,0.40673664,0.9945219,0.6946584,-0.46947157,-0.92718387,-0.64278764,0.52991927,0.95105654,0.58778524,-0.06975647,-0.9702957,-0.89879405,0.1391731,0.9848077,0.8660254,-0.20791169,-0.7880108,-0.82903755,-0.27563736,0.82903755,0.7880108,0.20791169,-0.8660254,-0.9848077,-0.1391731,0.52991927,0.9702957,0.06975647,-0.58778524,-0.95105654,-0.52991927,0.64278764,0.9848077,0.46947157,-0.20791169,-0.9945219,-0.40673664,0.27563736,0.99939084,0.7880108,-0.34202015,-0.8660254,-0.7431448,0.40673664,0.89879405,0.6946584,0.06975647,-0.92718387,-0.95105654,-0.0,0.95105654,0.92718387,-0.06975647,-0.6946584,-0.89879405,-0.40673664,0.7431448,0.8660254,0.34202015,-0.7880108,-0.99939084,-0.27563736,0.40673664,0.9945219,0.20791169,-0.46947157,-0.9848077,-0.64278764,0.52991927,0.95105654,0.58778524,-0.58778524,-0.9702957,-0.52991927,0.1391731,0.9848077,0.8660254,-0.20791169,-0.9945219,-0.82903755,0.27563736,0.82903755,0.7880108,0.20791169,-0.8660254,-0.7431448,-0.1391731,0.89879405,0.9702957,0.06975647,-0.58778524,-0.95105654,-0.0,0.64278764,0.92718387,0.46947157,-0.6946584,-0.9945219,-0.40673664,0.7431448,0.99939084,0.34202015,-0.34202015,-0.99939084,-0.7431448,0.40673664,0.9945219,0.6946584,-0.46947157,-0.92718387,-0.64278764,-0.0,0.95105654,0.58778524,-0.06975647,-0.9702957,-0.89879405,0.1391731,0.7431448,0.8660254,-0.20791169,-0.7880108,-0.82903755,-0.27563736,0.82903755,0.9945219,0.20791169,-0.8660254,-0.9848077,-0.1391731,0.52991927,0.9702957,0.58778524,-0.58778524,-0.95105654,-0.52991927,0.64278764,0.9848077,0.46947157,-0.20791169,-0.9945219,-0.82903755,0.27563736,0.99939084,0.7880108,-0.34202015,-0.8660254,-0.7431448,-0.1391731,0.89879405,0.6946584,0.06975647,-0.92718387,-0.95105654,-0.0,0.64278764,0.92718387,-0.06975647,-0.6946584,-0.89879405,-0.40673664,0.7431448,0.99939084,0.34202015,-0.7880108,-0.99939084,-0.27563736,0.40673664,0.9945219,0.6946584,-0.46947157,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.95105654,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.40673664,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,0.58778524,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.82903755,0.34202015,-0.34202015,-0.8660254,-0.27563736,0.40673664,0.89879405,0.9702957,-0.46947157,-0.92718387,-0.95105654,0.52991927,0.95105654,0.92718387,0.46947157,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.34202015,-0.82903755,-0.27563736,0.40673664,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.64278764,0.9848077,0.8660254,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.99939084,0.7880108,0.20791169,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.6946584,0.06975647,-0.58778524,-0.64278764,-0.0,0.64278764,0.9848077,-0.06975647,-0.6946584,-0.9945219,0.1391731,0.7431448,0.99939084,0.7880108,-0.7880108,-0.99939084,-0.7431448,0.82903755,0.9945219,0.6946584,0.06975647,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.99939084,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,-0.64278764,0.89879405,0.9702957,0.58778524,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.82903755,0.34202015,-0.34202015,-0.8660254,-0.27563736,0.40673664,0.89879405,0.9702957,-0.46947157,-0.92718387,-0.95105654,0.52991927,0.95105654,0.92718387,0.46947157,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.34202015,-0.82903755,-0.27563736,0.40673664,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.64278764,0.9848077,0.8660254,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.99939084,0.7880108,0.20791169,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.6946584,0.06975647,-0.58778524,-0.64278764,-0.0,0.64278764,0.9848077,-0.06975647,-0.6946584,-0.9945219,0.1391731,0.7431448,0.99939084,0.7880108,-0.7880108,-0.99939084,-0.7431448,0.82903755,0.9945219,0.6946584,0.06975647,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.99939084,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,-0.64278764,0.89879405,0.9702957,0.58778524,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.82903755,0.34202015,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.95105654,0.92718387,0.46947157,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.8660254,0.34202015,-0.34202015,-0.82903755,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.92718387,-0.58778524,-0.9702957,-0.89879405,0.64278764,0.9848077,0.8660254,0.34202015,-0.9945219,-0.82903755,-0.27563736,0.99939084,0.7880108,0.20791169,-0.46947157,-0.7431448,-0.1391731,0.52991927,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.0,0.64278764,0.9848077,-0.06975647,-0.6946584,-0.9945219,-0.82903755,0.7431448,0.99939084,0.7880108,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.9945219,0.6946584,0.06975647,-0.9848077,-0.64278764,-0.0,0.64278764,0.58778524,-0.06975647,-0.6946584,-0.52991927,0.1391731,0.7431448,0.99939084,-0.20791169,-0.7880108,-0.99939084,0.27563736,0.82903755,0.9945219,0.6946584,-0.8660254,-0.9848077,-0.64278764,0.89879405,0.9702957,0.58778524,-0.06975647,-0.95105654,-0.52991927,0.1391731,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.40673664,0.27563736,0.82903755,0.34202015,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.95105654,0.92718387,0.46947157,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.8660254,0.34202015,-0.34202015,-0.82903755,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.92718387,-0.58778524,-0.9702957,-0.89879405,0.64278764,0.9848077,0.8660254,0.34202015,-0.9945219,-0.82903755,-0.27563736,0.99939084,0.7880108,0.20791169,-0.46947157,-0.7431448,-0.1391731,0.52991927,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.0,0.64278764,0.9848077,-0.06975647,-0.6946584,-0.9945219,-0.82903755,0.7431448,0.99939084,0.7880108,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.9945219,0.6946584,0.06975647,-0.9848077,-0.64278764,-0.0,0.64278764,0.58778524,-0.06975647,-0.6946584,-0.52991927,0.1391731,0.7431448,0.99939084,-0.20791169,-0.7880108,-0.99939084,0.27563736,0.82903755,0.9945219,0.6946584,-0.8660254,-0.9848077,-0.64278764,0.89879405,0.9702957,0.58778524,-0.06975647,-0.95105654,-0.52991927,0.1391731,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.40673664,0.27563736,0.82903755,0.34202015,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.95105654,0.52991927,0.95105654,0.92718387,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.7880108,0.20791169,-0.46947157,-0.7431448,-0.1391731,0.52991927,0.95105654,0.06975647,-0.58778524,-0.9702957,-0.0,0.64278764,0.9848077,0.8660254,-0.6946584,-0.9945219,-0.82903755,0.7431448,0.99939084,0.7880108,0.20791169,-0.99939084,-0.7431448,-0.1391731,0.9945219,0.6946584,0.06975647,-0.58778524,-0.64278764,-0.0,0.64278764,0.58778524,-0.06975647,-0.6946584,-0.9945219,0.1391731,0.7431448,0.99939084,-0.20791169,-0.7880108,-0.99939084,-0.7431448,0.82903755,0.9945219,0.6946584,-0.8660254,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.95105654,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.40673664,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,0.58778524,-0.92718387,-0.95105654,-0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.95105654,0.52991927,0.95105654,0.92718387,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.7880108,0.20791169,-0.46947157,-0.7431448,-0.1391731,0.52991927,0.95105654,0.06975647,-0.58778524,-0.9702957,-0.0,0.64278764,0.9848077,0.8660254,-0.6946584,-0.9945219,-0.82903755,0.7431448,0.99939084,0.7880108,0.20791169,-0.99939084,-0.7431448,-0.1391731,0.9945219,0.6946584,0.06975647,-0.58778524,-0.64278764,-0.0,0.64278764,0.58778524,-0.06975647,-0.6946584,-0.9945219,0.1391731,0.7431448,0.99939084,-0.20791169,-0.7880108,-0.99939084,-0.7431448,0.82903755,0.9945219,0.6946584,-0.8660254,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.95105654,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.40673664,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,0.58778524,-0.92718387,-0.95105654,-0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.95105654,0.52991927,0.95105654,0.92718387,0.46947157,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.34202015,-0.82903755,-0.27563736,0.40673664,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.64278764,0.9848077,0.8660254,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.99939084,0.7880108,0.20791169,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.6946584,0.06975647,-0.58778524,-0.64278764,-0.0,0.64278764,0.9848077,-0.06975647,-0.6946584,-0.9945219,0.1391731,0.7431448,0.99939084,0.7880108,-0.7880108,-0.99939084,-0.7431448,0.82903755,0.9945219,0.6946584,0.06975647,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.99939084,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,-0.64278764,0.89879405,0.9702957,0.58778524,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.82903755,0.34202015,-0.34202015,-0.8660254,-0.27563736,0.40673664,0.89879405,0.9702957,-0.46947157,-0.92718387,-0.95105654,0.52991927,0.95105654,0.92718387,0.46947157,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.34202015,-0.82903755,-0.27563736,0.40673664,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.64278764,0.9848077,0.8660254,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.99939084,0.7880108,0.20791169,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.6946584,0.06975647,-0.58778524,-0.64278764,-0.0,0.64278764,0.9848077,-0.06975647,-0.6946584,-0.9945219,0.1391731,0.7431448,0.99939084,0.7880108,-0.7880108,-0.99939084,-0.7431448,0.82903755,0.9945219,0.6946584,0.06975647,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.99939084,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,-0.64278764,0.89879405,0.9702957,0.58778524,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.82903755,0.34202015,-0.34202015,-0.8660254,-0.27563736,0.40673664,0.89879405,0.9702957,-0.46947157,-0.92718387,-0.95105654,0.52991927,0.95105654,0.92718387,0.46947157,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.34202015,-0.82903755,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.92718387,-0.58778524,-0.9702957,-0.89879405,0.64278764,0.9848077,0.8660254,0.34202015,-0.9945219,-0.82903755,-0.27563736,0.99939084,0.7880108,0.20791169,-0.46947157,-0.7431448,-0.1391731,0.52991927,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.0,0.64278764,0.9848077,-0.06975647,-0.6946584,-0.9945219,-0.82903755,0.7431448,0.99939084,0.7880108,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.9945219,0.6946584,0.06975647,-0.9848077,-0.64278764,-0.0,0.64278764,0.58778524,-0.06975647,-0.6946584,-0.52991927,0.1391731,0.7431448,0.99939084,-0.20791169,-0.7880108,-0.99939084,0.27563736,0.82903755,0.9945219,0.6946584,-0.8660254,-0.9848077,-0.64278764,0.89879405,0.9702957,0.58778524,-0.06975647,-0.95105654,-0.52991927,0.1391731,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.40673664,0.27563736,0.82903755,0.34202015,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.95105654,0.92718387,0.46947157,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.8660254,0.34202015,-0.34202015,-0.82903755,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.92718387,-0.58778524,-0.9702957,-0.89879405,0.64278764,0.9848077,0.8660254,0.34202015,-0.9945219,-0.82903755,-0.27563736,0.99939084,0.7880108,0.20791169,-0.46947157,-0.7431448,-0.1391731,0.52991927,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.0,0.64278764,0.9848077,-0.06975647,-0.6946584,-0.9945219,-0.82903755,0.7431448,0.99939084,0.7880108,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.9945219,0.6946584,0.06975647,-0.9848077,-0.64278764,-0.0,0.64278764,0.58778524,-0.06975647,-0.6946584,-0.52991927,0.1391731,0.7431448,0.99939084,-0.20791169,-0.7880108,-0.99939084,0.27563736,0.82903755,0.9945219,0.6946584,-0.8660254,-0.9848077,-0.64278764,0.89879405,0.9702957,0.58778524,-0.06975647,-0.95105654,-0.52991927,0.1391731,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.40673664,0.27563736,0.82903755,0.34202015,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.95105654,0.92718387,0.46947157,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.8660254,0.34202015,-0.34202015,-0.82903755,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.92718387,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.7880108,0.20791169,-0.46947157,-0.7431448,-0.1391731,0.52991927,0.95105654,0.06975647,-0.58778524,-0.9702957,-0.0,0.64278764,0.9848077,0.8660254,-0.6946584,-0.9945219,-0.82903755,0.7431448,0.99939084,0.7880108,0.20791169,-0.99939084,-0.7431448,-0.1391731,0.9945219,0.6946584,0.06975647,-0.58778524,-0.64278764,-0.0,0.64278764,0.58778524,-0.06975647,-0.6946584,-0.9945219,0.1391731,0.7431448,0.99939084,-0.20791169,-0.7880108,-0.99939084,-0.7431448,0.82903755,0.9945219,0.6946584,-0.8660254,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.95105654,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.40673664,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,0.58778524,-0.92718387,-0.95105654,-0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.95105654,0.52991927,0.95105654,0.92718387,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.7880108,0.20791169,-0.46947157,-0.7431448,-0.1391731,0.52991927,0.95105654,0.06975647,-0.58778524,-0.9702957,-0.0,0.64278764,0.9848077,0.8660254,-0.6946584,-0.9945219,-0.82903755,0.7431448,0.99939084,0.7880108,0.20791169,-0.99939084,-0.7431448,-0.1391731,0.9945219,0.6946584,0.06975647,-0.58778524,-0.64278764,-0.0,0.64278764,0.58778524,-0.06975647,-0.6946584,-0.9945219,0.1391731,0.7431448,0.99939084,-0.20791169,-0.7880108,-0.99939084,-0.7431448,0.82903755,0.9945219,0.6946584,-0.8660254,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.95105654,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.40673664,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,0.40673664,0.89879405,0.9702957,0.58778524,-0.92718387,-0.95105654,-0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.89879405,-0.40673664,0.27563736,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.27563736,0.40673664,0.89879405,0.20791169,-0.46947157,-0.92718387,-0.95105654,0.52991927,0.95105654,0.92718387,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.9848077,0.8660254,0.34202015,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.1391731,0.52991927,0.95105654,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.64278764,0.9848077,0.8660254,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.99939084,0.7880108,0.20791169,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.6946584,0.06975647,-0.58778524,-0.64278764,-0.0,0.64278764,0.9848077,-0.06975647,-0.6946584,-0.9945219,0.1391731,0.7431448,0.99939084,0.7880108,-0.7880108,-0.99939084,-0.7431448,0.82903755,0.9945219,0.6946584,0.06975647,-0.9848077,-0.64278764,-0.0,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.52991927,0.1391731,0.7431448,0.46947157,-0.20791169,-0.7880108,-0.99939084,0.27563736,0.82903755,0.9945219,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,-0.8660254,-0.9848077,-0.64278764,-0.0,0.64278764,0.9848077,0.8660254,-0.95105654,-0.52991927,0.1391731,0.7431448,0.99939084,0.7880108,0.20791169,-0.40673664,0.27563736,0.82903755,0.9945219,0.6946584,0.06975647,-0.58778524,0.40673664,0.89879405,0.9702957,0.58778524,-0.06975647,-0.6946584,-0.9945219,0.95105654,0.92718387,0.46947157,-0.20791169,-0.7880108,-0.99939084,-0.7431448,0.8660254,0.34202015,-0.34202015,-0.8660254,-0.9848077,-0.64278764,-0.0,0.20791169,-0.46947157,-0.92718387,-0.95105654,-0.52991927,0.1391731,0.7431448,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.27563736,0.82903755,0.9945219,-0.9945219,-0.82903755,-0.27563736,0.40673664,0.89879405,0.9702957,0.58778524,-0.7431448,-0.1391731,0.52991927,0.95105654,0.92718387,0.46947157,-0.20791169,-0.0,0.64278764,0.9848077,0.8660254,0.34202015,-0.34202015,-0.8660254,0.7431448,0.99939084,0.7880108,0.20791169,-0.46947157,-0.92718387,-0.95105654,0.9945219,0.6946584,0.06975647,-0.58778524,-0.9702957,-0.89879405,-0.40673664,0.58778524,-0.06975647,-0.6946584,-0.9945219,-0.82903755,-0.27563736,0.40673664,-0.20791169,-0.7880108,-0.99939084,-0.7431448,-0.1391731,0.52991927,0.95105654,-0.8660254,-0.9848077,-0.64278764,-0.0],"x":[-9.437184e7,-2.594722e16,-5.189444e16,-7.784166e16,-1.0378888e17,-1.297361e17,-1.5568332e17,-1.8163054e17,-2.0757776e17,-2.3352498e17,-2.594722e17,-2.8541942e17,-3.1136664e17,-3.3731388e17,-3.632611e17,-3.8920832e17,-4.1515552e17,-4.4110276e17,-4.6704997e17,-4.929972e17,-5.189444e17,-5.4489164e17,-5.7083885e17,-5.9678605e17,-6.227333e17,-6.486805e17,-6.7462776e17,-7.005749e17,-7.265222e17,-7.524694e17,-7.7841664e17,-8.043638e17,-8.3031105e17,-8.562583e17,-8.822055e17,-9.081527e17,-9.340999e17,-9.600472e17,-9.859944e17,-1.0119416e18,-1.0378888e18,-1.06383605e18,-1.0897833e18,-1.11573046e18,-1.1416777e18,-1.1676249e18,-1.1935721e18,-1.2195193e18,-1.2454666e18,-1.2714138e18,-1.297361e18,-1.3233083e18,-1.3492555e18,-1.3752028e18,-1.4011499e18,-1.4270971e18,-1.4530443e18,-1.4789916e18,-1.5049388e18,-1.530886e18,-1.5568333e18,-1.5827805e18,-1.6087276e18,-1.6346749e18,-1.6606221e18,-1.6865693e18,-1.7125166e18,-1.7384638e18,-1.764411e18,-1.7903583e18,-1.8163054e18,-1.8422526e18,-1.8681999e18,-1.8941471e18,-1.9200943e18,-1.9460416e18,-1.9719888e18,-1.997936e18,-2.0238831e18,-2.0498304e18,-2.0757776e18,-2.1017249e18,-2.1276721e18,-2.1536193e18,-2.1795666e18,-2.2055138e18,-2.2314609e18,-2.2574081e18,-2.2833554e18,-2.3093026e18,-2.3352497e18,-2.361197e18,-2.3871442e18,-2.4130916e18,-2.4390387e18,-2.464986e18,-2.4909331e18,-2.5168805e18,-2.5428276e18,-2.5687747e18,-2.594722e18,-2.6206692e18,-2.6466166e18,-2.6725637e18,-2.698511e18,-2.7244581e18,-2.7504055e18,-2.7763526e18,-2.8022997e18,-2.828247e18,-2.8541942e18,-2.8801416e18,-2.9060887e18,-2.932036e18,-2.9579831e18,-2.9839302e18,-3.0098776e18,-3.0358247e18,-3.061772e18,-3.0877192e18,-3.1136666e18,-3.1396137e18,-3.165561e18,-3.1915081e18,-3.2174552e18,-3.2434026e18,-3.2693497e18,-3.295297e18,-3.3212442e18,-3.3471916e18,-3.3731387e18,-3.3990858e18,-3.4250331e18,-3.4509802e18,-3.4769276e18,-3.5028747e18,-3.528822e18,-3.5547692e18,-3.5807166e18,-3.6066637e18,-3.6326108e18,-3.6585581e18,-3.6845052e18,-3.7104526e18,-3.7363997e18,-3.762347e18,-3.7882942e18,-3.8142416e18,-3.8401887e18,-3.8661358e18,-3.8920831e18,-3.9180302e18,-3.9439776e18,-3.9699247e18,-3.995872e18,-4.0218192e18,-4.0477663e18,-4.0737137e18,-4.0996608e18,-4.1256081e18,-4.1515552e18,-4.1775026e18,-4.2034497e18,-4.229397e18,-4.2553442e18,-4.2812913e18,-4.3072387e18,-4.3331858e18,-4.3591331e18,-4.3850802e18,-4.4110276e18,-4.4369747e18,-4.4629218e18,-4.4888692e18,-4.5148163e18,-4.5407637e18,-4.5667108e18,-4.5926581e18,-4.618605e18,-4.6445526e18,-4.6704994e18,-4.696447e18,-4.722394e18,-4.7483416e18,-4.7742884e18,-4.800236e18,-4.826183e18,-4.8521305e18,-4.8780773e18,-4.9040247e18,-4.929972e18,-4.955919e18,-4.9818663e18,-5.0078137e18,-5.033761e18,-5.059708e18,-5.085655e18,-5.1116026e18,-5.1375494e18,-5.163497e18,-5.189444e18,-5.2153916e18,-5.2413384e18,-5.267286e18,-5.293233e18,-5.31918e18,-5.3451273e18,-5.3710747e18,-5.397022e18,-5.422969e18,-5.4489163e18,-5.4748637e18,-5.500811e18,-5.526758e18,-5.552705e18,-5.5786526e18,-5.6045994e18,-5.630547e18,-5.656494e18,-5.6824416e18,-5.7083884e18,-5.734336e18,-5.760283e18,-5.78623e18,-5.8121773e18,-5.8381247e18,-5.864072e18,-5.890019e18,-5.9159663e18,-5.9419137e18,-5.9678605e18,-5.993808e18,-6.019755e18,-6.0457026e18,-6.0716494e18,-6.097597e18,-6.123544e18,-6.1494916e18,-6.1754384e18,-6.201386e18,-6.227333e18,-6.25328e18,-6.2792273e18,-6.3051747e18,-6.331122e18,-6.357069e18,-6.3830163e18,-6.4089637e18,-6.4349105e18,-6.460858e18,-6.486805e18,-6.5127526e18,-6.5386994e18,-6.564647e18,-6.590594e18,-6.616541e18,-6.6424884e18,-6.668436e18,-6.694383e18,-6.72033e18,-6.7462773e18,-6.7722247e18,-6.7981715e18,-6.824119e18,-6.8500663e18,-6.8760137e18,-6.9019605e18,-6.927908e18,-6.953855e18,-6.9798026e18,-7.0057494e18,-7.031697e18,-7.057644e18,-7.083591e18,-7.1095384e18,-7.135486e18,-7.161433e18,-7.18738e18,-7.2133273e18,-7.2392747e18,-7.2652215e18,-7.291169e18,-7.3171163e18,-7.3430637e18,-7.3690105e18,-7.394958e18,-7.420905e18,-7.446852e18,-7.4727994e18,-7.498747e18,-7.524694e18,-7.550641e18,-7.5765884e18,-7.602536e18,-7.628483e18,-7.65443e18,-7.6803773e18,-7.7063247e18,-7.7322715e18,-7.758219e18,-7.7841663e18,-7.8101137e18,-7.8360605e18,-7.862008e18,-7.887955e18,-7.913902e18,-7.9398494e18,-7.965797e18,-7.991744e18,-8.017691e18,-8.0436384e18,-8.069586e18,-8.0955326e18,-8.12148e18,-8.1474273e18,-8.1733747e18,-8.1993215e18,-8.225269e18,-8.2512163e18,-8.277163e18,-8.3031105e18,-8.329058e18,-8.355005e18,-8.380952e18,-8.4068994e18,-8.432847e18,-8.458794e18,-8.484741e18,-8.5106884e18,-8.536636e18,-8.5625826e18,-8.58853e18,-8.6144773e18,-8.6404247e18,-8.6663715e18,-8.692319e18,-8.7182663e18,-8.744213e18,-8.7701605e18,-8.796108e18,-8.822055e18,-8.848002e18,-8.8739494e18,-8.899897e18,-8.9258436e18,-8.951791e18,-8.9777384e18,-9.003686e18,-9.0296326e18,-9.05558e18,-9.0815273e18,-9.1074747e18,-9.1334215e18,-9.159369e18,-9.1853163e18,-9.211263e18,-9.23721e18,-9.263158e18,-9.289105e18,-9.315053e18,-9.340999e18,-9.366946e18,-9.392894e18,-9.418841e18,-9.444788e18,-9.470736e18,-9.496683e18,-9.52263e18,-9.548577e18,-9.574524e18,-9.600472e18,-9.626419e18,-9.652366e18,-9.678314e18,-9.704261e18,-9.730207e18,-9.756155e18,-9.782102e18,-9.808049e18,-9.833997e18,-9.859944e18,-9.885892e18,-9.911838e18,-9.937785e18,-9.963733e18,-9.98968e18,-1.0015627e19,-1.0041575e19,-1.0067522e19,-1.0093468e19,-1.0119416e19,-1.0145363e19,-1.017131e19,-1.0197258e19,-1.0223205e19,-1.0249153e19,-1.0275099e19,-1.0301046e19,-1.0326994e19,-1.0352941e19,-1.0378888e19,-1.0404836e19,-1.0430783e19,-1.0456729e19,-1.0482677e19,-1.0508624e19,-1.0534572e19,-1.0560519e19,-1.0586466e19,-1.0612414e19,-1.063836e19,-1.0664307e19,-1.0690255e19,-1.0716202e19,-1.0742149e19,-1.0768097e19,-1.0794044e19,-1.0819992e19,-1.0845938e19,-1.0871885e19,-1.0897833e19,-1.092378e19,-1.0949727e19,-1.0975675e19,-1.1001622e19,-1.1027568e19,-1.1053516e19,-1.1079463e19,-1.110541e19,-1.1131358e19,-1.1157305e19,-1.1183253e19,-1.1209199e19,-1.1235146e19,-1.1261094e19,-1.1287041e19,-1.1312988e19,-1.1338936e19,-1.1364883e19,-1.1390829e19,-1.1416777e19,-1.1442724e19,-1.1468672e19,-1.1494619e19,-1.1520566e19,-1.1546514e19,-1.157246e19,-1.1598407e19,-1.1624355e19,-1.1650302e19,-1.1676249e19,-1.1702197e19,-1.1728144e19,-1.175409e19,-1.1780038e19,-1.1805985e19,-1.1831933e19,-1.185788e19,-1.1883827e19,-1.1909775e19,-1.1935721e19,-1.1961668e19,-1.1987616e19,-1.2013563e19,-1.203951e19,-1.2065458e19,-1.2091405e19,-1.2117352e19,-1.2143299e19,-1.2169246e19,-1.2195194e19,-1.2221141e19,-1.2247088e19,-1.2273036e19,-1.2298983e19,-1.2324929e19,-1.2350877e19,-1.2376824e19,-1.2402772e19,-1.2428719e19,-1.2454666e19,-1.2480614e19,-1.250656e19,-1.2532507e19,-1.2558455e19,-1.2584402e19,-1.2610349e19,-1.2636297e19,-1.2662244e19,-1.268819e19,-1.2714138e19,-1.2740085e19,-1.2766033e19,-1.279198e19,-1.2817927e19,-1.2843875e19,-1.2869821e19,-1.2895768e19,-1.2921716e19,-1.2947663e19,-1.297361e19,-1.2999558e19,-1.3025505e19,-1.3051452e19,-1.3077399e19,-1.3103346e19,-1.3129294e19,-1.3155241e19,-1.3181188e19,-1.3207136e19,-1.3233082e19,-1.3259029e19,-1.3284977e19,-1.3310924e19,-1.3336872e19,-1.3362819e19,-1.3388766e19,-1.3414713e19,-1.344066e19,-1.3466607e19,-1.3492555e19,-1.3518502e19,-1.3544449e19,-1.3570397e19,-1.3596343e19,-1.362229e19,-1.3648238e19,-1.3674185e19,-1.3700133e19,-1.372608e19,-1.3752027e19,-1.3777975e19,-1.3803921e19,-1.3829868e19,-1.3855816e19,-1.3881763e19,-1.390771e19,-1.3933658e19,-1.3959605e19,-1.3985552e19,-1.4011499e19,-1.4037446e19,-1.4063394e19,-1.4089341e19,-1.4115288e19,-1.4141236e19,-1.4167182e19,-1.4193129e19,-1.4219077e19,-1.4245024e19,-1.4270972e19,-1.4296919e19,-1.4322866e19,-1.4348813e19,-1.437476e19,-1.4400707e19,-1.4426655e19,-1.4452602e19,-1.4478549e19,-1.4504497e19,-1.4530443e19,-1.455639e19,-1.4582338e19,-1.4608285e19,-1.4634233e19,-1.466018e19,-1.4686127e19,-1.4712074e19,-1.4738021e19,-1.4763968e19,-1.4789916e19,-1.4815863e19,-1.484181e19,-1.4867758e19,-1.4893704e19,-1.4919652e19,-1.4945599e19,-1.4971546e19,-1.4997494e19,-1.5023441e19,-1.5049388e19,-1.5075335e19,-1.5101282e19,-1.5127229e19,-1.5153177e19,-1.5179124e19,-1.5205072e19,-1.5231019e19,-1.5256966e19,-1.5282913e19,-1.530886e19,-1.5334807e19,-1.5360755e19,-1.5386702e19,-1.5412649e19,-1.5438597e19,-1.5464543e19,-1.549049e19,-1.5516438e19,-1.5542385e19,-1.5568333e19,-1.559428e19,-1.5620227e19,-1.5646174e19,-1.5672121e19,-1.5698068e19,-1.5724016e19,-1.5749963e19,-1.577591e19,-1.5801858e19,-1.5827804e19,-1.5853752e19,-1.5879699e19,-1.5905646e19,-1.5931594e19,-1.5957541e19,-1.5983488e19,-1.6009435e19,-1.6035382e19,-1.6061329e19,-1.6087277e19,-1.6113224e19,-1.6139172e19,-1.6165119e19,-1.6191065e19,-1.6217013e19,-1.624296e19,-1.6268907e19,-1.6294855e19,-1.6320802e19,-1.6346749e19,-1.6372696e19,-1.6398643e19,-1.642459e19,-1.6450538e19,-1.6476485e19,-1.6502433e19,-1.652838e19,-1.6554326e19,-1.6580274e19,-1.6606221e19,-1.6632168e19,-1.6658116e19,-1.6684063e19,-1.671001e19,-1.6735958e19,-1.6761904e19,-1.6787852e19,-1.6813799e19,-1.6839746e19,-1.6865694e19,-1.6891641e19,-1.6917588e19,-1.6943535e19,-1.6969482e19,-1.6995429e19,-1.7021377e19,-1.7047324e19,-1.7073272e19,-1.7099219e19,-1.7125165e19,-1.7151113e19,-1.717706e19,-1.7203007e19,-1.7228955e19,-1.7254902e19,-1.7280849e19,-1.7306796e19,-1.7332743e19,-1.735869e19,-1.7384638e19,-1.7410585e19,-1.7436533e19,-1.746248e19,-1.7488426e19,-1.7514374e19,-1.7540321e19,-1.7566268e19,-1.7592216e19,-1.7618163e19,-1.764411e19,-1.7670057e19,-1.7696004e19,-1.7721952e19,-1.7747899e19,-1.7773846e19,-1.7799794e19,-1.7825741e19,-1.7851687e19,-1.7877635e19,-1.7903582e19,-1.7929529e19,-1.7955477e19,-1.7981424e19,-1.8007372e19,-1.8033319e19,-1.8059265e19,-1.8085213e19,-1.811116e19,-1.8137107e19,-1.8163055e19,-1.8189002e19,-1.8214949e19,-1.8240896e19,-1.8266843e19,-1.829279e19,-1.8318738e19,-1.8344685e19,-1.8370633e19,-1.839658e19,-1.8422526e19,-1.8448475e19,-1.847442e19,-1.8500367e19,-1.8526316e19,-1.8552262e19,-1.857821e19,-1.8604157e19,-1.8630105e19,-1.8656052e19,-1.8681998e19,-1.8707946e19,-1.8733893e19,-1.875984e19,-1.8785787e19,-1.8811736e19,-1.8837682e19,-1.886363e19,-1.8889577e19,-1.8915523e19,-1.8941472e19,-1.8967418e19,-1.8993366e19,-1.9019313e19,-1.904526e19,-1.9071207e19,-1.9097154e19,-1.9123102e19,-1.9149048e19,-1.9174997e19,-1.9200943e19,-1.9226892e19,-1.9252838e19,-1.9278784e19,-1.9304733e19,-1.9330679e19,-1.9356627e19,-1.9382574e19,-1.9408522e19,-1.9434468e19,-1.9460415e19,-1.9486363e19,-1.951231e19,-1.9538258e19,-1.9564204e19,-1.9590153e19,-1.9616099e19,-1.9642045e19,-1.9667994e19,-1.969394e19,-1.9719888e19,-1.9745835e19,-1.9771783e19,-1.979773e19,-1.9823676e19,-1.9849624e19,-1.987557e19,-1.990152e19,-1.9927465e19,-1.9953414e19,-1.997936e19,-2.0005306e19,-2.0031255e19,-2.00572e19,-2.008315e19,-2.0109096e19,-2.0135044e19,-2.016099e19,-2.0186937e19,-2.0212885e19,-2.0238831e19,-2.026478e19,-2.0290726e19,-2.0316675e19,-2.034262e19,-2.0368567e19,-2.0394516e19,-2.0420462e19,-2.044641e19,-2.0472357e19,-2.0498305e19,-2.0524252e19,-2.0550198e19,-2.0576146e19,-2.0602093e19,-2.062804e19,-2.0653987e19,-2.0679936e19,-2.0705882e19,-2.0731828e19,-2.0757777e19,-2.0783723e19,-2.0809672e19,-2.0835618e19,-2.0861566e19,-2.0887513e19,-2.0913459e19,-2.0939407e19,-2.0965354e19,-2.0991302e19,-2.1017248e19,-2.1043197e19,-2.1069143e19,-2.109509e19,-2.1121038e19,-2.1146984e19,-2.1172933e19,-2.1198879e19,-2.1224827e19,-2.1250774e19,-2.127672e19,-2.1302668e19,-2.1328615e19,-2.1354563e19,-2.138051e19,-2.1406458e19,-2.1432404e19,-2.145835e19,-2.1484299e19,-2.1510245e19,-2.1536194e19,-2.156214e19,-2.1588088e19,-2.1614035e19,-2.1639983e19,-2.166593e19,-2.1691876e19,-2.1717824e19,-2.174377e19,-2.176972e19,-2.1795665e19,-2.1821614e19,-2.184756e19,-2.1873506e19,-2.1899455e19,-2.19254e19,-2.195135e19,-2.1977296e19,-2.2003244e19,-2.202919e19,-2.2055137e19,-2.2081085e19,-2.2107031e19,-2.213298e19,-2.2158926e19,-2.2184875e19,-2.221082e19,-2.2236767e19,-2.2262716e19,-2.2288662e19,-2.231461e19,-2.2340557e19,-2.2366505e19,-2.2392452e19,-2.2418398e19,-2.2444346e19,-2.2470293e19,-2.249624e19,-2.2522187e19,-2.2548136e19,-2.2574082e19,-2.2600028e19,-2.2625977e19,-2.2651923e19,-2.2677872e19,-2.2703818e19,-2.2729766e19,-2.2755713e19,-2.2781659e19,-2.2807607e19,-2.2833554e19,-2.2859502e19,-2.2885448e19,-2.2911397e19,-2.2937343e19,-2.296329e19,-2.2989238e19,-2.3015184e19,-2.3041133e19,-2.3067079e19,-2.3093027e19,-2.3118974e19,-2.314492e19,-2.3170868e19,-2.3196815e19,-2.3222763e19,-2.324871e19,-2.3274658e19,-2.3300604e19,-2.332655e19,-2.3352499e19,-2.3378445e19,-2.3404394e19,-2.343034e19,-2.3456288e19,-2.3482235e19,-2.350818e19,-2.353413e19,-2.3560076e19,-2.3586024e19,-2.361197e19,-2.3637919e19,-2.3663865e19,-2.3689811e19,-2.371576e19,-2.3741706e19,-2.3767655e19,-2.37936e19,-2.381955e19,-2.3845496e19,-2.3871442e19,-2.389739e19,-2.3923337e19,-2.3949285e19,-2.3975231e19,-2.400118e19,-2.4027126e19,-2.4053072e19,-2.407902e19,-2.4104967e19,-2.4130916e19,-2.4156862e19,-2.418281e19,-2.4208757e19,-2.4234703e19,-2.4260651e19,-2.4286598e19,-2.4312546e19,-2.4338493e19,-2.436444e19,-2.4390387e19,-2.4416334e19,-2.4442282e19,-2.4468228e19,-2.4494177e19,-2.4520123e19,-2.4546072e19,-2.4572018e19,-2.4597966e19,-2.4623913e19,-2.4649859e19,-2.4675807e19,-2.4701754e19,-2.4727702e19,-2.4753648e19,-2.4779597e19,-2.4805543e19,-2.483149e19,-2.4857438e19,-2.4883384e19,-2.4909333e19,-2.4935279e19,-2.4961227e19,-2.4987174e19,-2.501312e19,-2.5039068e19,-2.5065015e19,-2.5090963e19,-2.511691e19,-2.5142858e19,-2.5168804e19,-2.519475e19,-2.5220699e19,-2.5246645e19,-2.5272594e19,-2.529854e19,-2.5324488e19,-2.5350435e19,-2.537638e19,-2.540233e19,-2.5428276e19,-2.5454224e19,-2.548017e19,-2.5506119e19,-2.5532065e19,-2.5558011e19,-2.558396e19,-2.5609906e19,-2.5635855e19,-2.56618e19,-2.568775e19,-2.5713696e19,-2.5739642e19,-2.576559e19,-2.5791537e19,-2.5817485e19,-2.5843431e19,-2.586938e19,-2.5895326e19,-2.5921272e19,-2.594722e19,-2.5973167e19,-2.5999116e19,-2.6025062e19,-2.605101e19,-2.6076957e19,-2.6102903e19,-2.6128851e19,-2.6154798e19,-2.6180746e19,-2.6206693e19,-2.623264e19,-2.6258587e19,-2.6284534e19,-2.6310482e19,-2.6336428e19,-2.6362377e19,-2.6388323e19,-2.6414272e19,-2.6440218e19,-2.6466164e19,-2.6492113e19,-2.6518059e19,-2.6544007e19,-2.6569954e19,-2.6595902e19,-2.6621848e19,-2.6647795e19,-2.6673743e19,-2.669969e19,-2.6725638e19,-2.6751584e19,-2.6777533e19,-2.6803479e19,-2.6829425e19,-2.6855374e19,-2.688132e19,-2.6907268e19,-2.6933215e19,-2.6959163e19,-2.698511e19,-2.7011056e19,-2.7037004e19,-2.706295e19,-2.7088899e19,-2.7114845e19,-2.7140794e19,-2.716674e19,-2.7192686e19,-2.7218635e19,-2.724458e19,-2.727053e19,-2.7296476e19,-2.7322424e19,-2.734837e19,-2.7374317e19,-2.7400265e19,-2.7426211e19,-2.745216e19,-2.7478106e19,-2.7504055e19,-2.753e19,-2.755595e19,-2.7581896e19,-2.7607842e19,-2.763379e19,-2.7659737e19,-2.7685685e19,-2.7711631e19,-2.773758e19,-2.7763526e19,-2.7789472e19,-2.781542e19,-2.7841367e19,-2.7867316e19,-2.7893262e19,-2.791921e19,-2.7945157e19,-2.7971103e19,-2.7997051e19,-2.8022998e19,-2.8048946e19,-2.8074893e19,-2.810084e19,-2.8126787e19,-2.8152734e19,-2.8178682e19,-2.8204628e19,-2.8230577e19,-2.8256523e19,-2.8282472e19,-2.8308418e19,-2.8334364e19,-2.8360313e19,-2.8386259e19,-2.8412207e19,-2.8438154e19,-2.8464102e19,-2.8490048e19,-2.8515995e19,-2.8541943e19,-2.856789e19,-2.8593838e19,-2.8619784e19,-2.8645733e19,-2.8671679e19,-2.8697625e19,-2.8723574e19,-2.874952e19,-2.8775468e19,-2.8801415e19,-2.8827363e19,-2.885331e19,-2.8879256e19,-2.8905204e19,-2.893115e19,-2.8957099e19,-2.8983045e19,-2.9008994e19,-2.903494e19,-2.9060886e19,-2.9086835e19,-2.911278e19,-2.913873e19,-2.9164676e19,-2.9190624e19,-2.921657e19,-2.9242517e19,-2.9268465e19,-2.9294411e19,-2.932036e19,-2.9346306e19,-2.9372255e19,-2.93982e19,-2.9424147e19,-2.9450096e19,-2.9476042e19,-2.950199e19,-2.9527937e19,-2.9553885e19,-2.9579831e19,-2.9605778e19,-2.9631726e19,-2.9657672e19,-2.968362e19,-2.9709567e19,-2.9735516e19,-2.9761462e19,-2.9787408e19,-2.9813357e19,-2.9839303e19,-2.9865251e19,-2.9891198e19,-2.9917146e19,-2.9943093e19,-2.9969039e19,-2.9994987e19,-3.0020934e19,-3.0046882e19,-3.0072828e19,-3.0098777e19,-3.0124723e19,-3.015067e19,-3.0176618e19,-3.0202564e19,-3.0228513e19,-3.0254459e19,-3.0280407e19,-3.0306354e19,-3.0332302e19,-3.0358248e19,-3.0384195e19,-3.0410143e19,-3.043609e19,-3.0462038e19,-3.0487984e19,-3.0513933e19,-3.0539879e19,-3.0565825e19,-3.0591774e19,-3.061772e19,-3.0643668e19,-3.0669615e19,-3.0695563e19,-3.072151e19,-3.0747456e19,-3.0773404e19,-3.079935e19,-3.0825299e19,-3.0851245e19,-3.0877194e19,-3.090314e19,-3.0929086e19,-3.0955035e19,-3.098098e19,-3.100693e19,-3.1032876e19,-3.1058824e19,-3.108477e19,-3.1110717e19,-3.1136665e19,-3.1162611e19,-3.118856e19,-3.1214506e19,-3.1240455e19,-3.12664e19,-3.1292347e19,-3.1318296e19,-3.1344242e19,-3.137019e19,-3.1396137e19,-3.1422085e19,-3.1448031e19,-3.1473978e19,-3.1499926e19,-3.1525872e19,-3.155182e19,-3.1577767e19,-3.1603716e19,-3.1629662e19,-3.1655608e19,-3.1681557e19,-3.1707503e19,-3.1733451e19,-3.1759398e19,-3.1785346e19,-3.1811293e19,-3.1837239e19,-3.1863187e19,-3.1889134e19,-3.1915082e19,-3.1941028e19,-3.1966977e19,-3.1992923e19,-3.201887e19,-3.2044818e19,-3.2070764e19,-3.2096713e19,-3.2122659e19,-3.2148607e19,-3.2174554e19,-3.22005e19,-3.2226448e19,-3.2252395e19,-3.2278343e19,-3.230429e19,-3.2330238e19,-3.2356184e19,-3.238213e19,-3.2408079e19,-3.2434025e19,-3.2459974e19,-3.248592e19,-3.2511868e19,-3.2537815e19,-3.256376e19,-3.258971e19,-3.2615656e19,-3.2641604e19,-3.266755e19,-3.2693499e19,-3.2719445e19,-3.2745391e19,-3.277134e19,-3.2797286e19,-3.2823235e19,-3.284918e19,-3.287513e19,-3.2901076e19,-3.2927022e19,-3.295297e19,-3.2978917e19,-3.3004865e19,-3.3030811e19,-3.305676e19,-3.3082706e19,-3.3108652e19,-3.31346e19,-3.3160547e19,-3.3186496e19,-3.3212442e19,-3.323839e19,-3.3264337e19,-3.3290285e19,-3.3316231e19,-3.3342178e19,-3.3368126e19,-3.3394072e19,-3.342002e19,-3.3445967e19,-3.3471916e19,-3.3497862e19,-3.3523808e19,-3.3549757e19,-3.3575703e19,-3.3601651e19,-3.3627598e19,-3.3653546e19,-3.3679493e19,-3.3705439e19,-3.3731387e19,-3.3757334e19,-3.3783282e19,-3.3809228e19,-3.3835177e19,-3.3861123e19,-3.388707e19,-3.3913018e19,-3.3938964e19,-3.3964913e19,-3.3990859e19,-3.4016807e19,-3.4042754e19,-3.40687e19,-3.4094648e19,-3.4120595e19,-3.4146543e19,-3.417249e19,-3.4198438e19,-3.4224384e19,-3.425033e19,-3.4276279e19,-3.4302225e19,-3.4328174e19,-3.435412e19,-3.4380068e19,-3.4406015e19,-3.443196e19,-3.445791e19,-3.4483856e19,-3.4509804e19,-3.453575e19,-3.4561699e19,-3.4587645e19,-3.4613591e19,-3.463954e19,-3.4665486e19,-3.4691435e19,-3.471738e19,-3.474333e19,-3.4769276e19,-3.4795222e19,-3.482117e19,-3.4847117e19,-3.4873065e19,-3.4899011e19,-3.492496e19,-3.4950906e19,-3.4976852e19,-3.50028e19,-3.5028747e19,-3.5054696e19,-3.5080642e19,-3.510659e19,-3.5132537e19,-3.5158483e19,-3.5184431e19,-3.5210378e19,-3.5236326e19,-3.5262272e19,-3.528822e19,-3.5314167e19,-3.5340114e19,-3.5366062e19,-3.5392008e19,-3.5417957e19,-3.5443903e19,-3.5469851e19,-3.5495798e19,-3.5521744e19,-3.5547693e19,-3.5573639e19,-3.5599587e19,-3.5625534e19,-3.5651482e19,-3.5677428e19,-3.5703375e19,-3.5729323e19,-3.575527e19,-3.5781218e19,-3.5807164e19,-3.5833113e19,-3.5859059e19,-3.5885005e19,-3.5910954e19,-3.59369e19,-3.5962848e19,-3.5988795e19,-3.6014743e19,-3.604069e19,-3.6066638e19,-3.6092584e19,-3.611853e19,-3.6144479e19,-3.6170425e19,-3.6196374e19,-3.622232e19,-3.6248268e19,-3.6274215e19,-3.630016e19,-3.632611e19,-3.6352056e19,-3.6378004e19,-3.640395e19,-3.6429899e19,-3.6455845e19,-3.6481791e19,-3.650774e19,-3.6533686e19,-3.6559635e19,-3.658558e19,-3.661153e19,-3.6637476e19,-3.6663422e19,-3.668937e19,-3.6715317e19,-3.6741265e19,-3.6767211e19,-3.679316e19,-3.6819106e19,-3.6845052e19,-3.6871e19,-3.689695e19,-3.6922893e19,-3.694884e19,-3.697479e19,-3.7000735e19,-3.7026683e19,-3.705263e19,-3.707858e19,-3.7104524e19,-3.7130472e19,-3.715642e19,-3.7182365e19,-3.7208314e19,-3.723426e19,-3.726021e19,-3.7286155e19,-3.7312103e19,-3.733805e19,-3.7363996e19,-3.7389944e19,-3.7415893e19,-3.744184e19,-3.7467785e19,-3.7493734e19,-3.751968e19,-3.754563e19,-3.7571575e19,-3.7597523e19,-3.762347e19,-3.7649416e19,-3.7675364e19,-3.7701313e19,-3.772726e19,-3.7753205e19,-3.7779154e19,-3.78051e19,-3.7831046e19,-3.7856995e19,-3.7882943e19,-3.790889e19,-3.7934836e19,-3.7960784e19,-3.7986733e19,-3.8012677e19,-3.8038625e19,-3.8064574e19,-3.809052e19,-3.8116466e19,-3.8142415e19,-3.8168363e19,-3.8194307e19,-3.8220256e19,-3.8246204e19,-3.8272153e19,-3.8298097e19,-3.8324045e19,-3.8349994e19,-3.8375938e19,-3.8401886e19,-3.8427835e19,-3.8453783e19,-3.8479727e19,-3.8505676e19,-3.8531624e19,-3.855757e19,-3.8583517e19,-3.8609465e19,-3.8635414e19,-3.8661358e19,-3.8687306e19,-3.8713255e19,-3.87392e19,-3.8765147e19,-3.8791096e19,-3.8817044e19,-3.884299e19,-3.8868937e19,-3.8894885e19,-3.892083e19,-3.8946778e19,-3.8972726e19,-3.8998675e19,-3.902462e19,-3.9050567e19,-3.9076516e19,-3.910246e19,-3.912841e19,-3.9154357e19,-3.9180305e19,-3.920625e19,-3.9232198e19,-3.9258146e19,-3.928409e19,-3.931004e19,-3.9335987e19,-3.9361936e19,-3.938788e19,-3.941383e19,-3.9439777e19,-3.946572e19,-3.949167e19,-3.9517618e19,-3.9543566e19,-3.956951e19,-3.959546e19,-3.9621407e19,-3.964735e19,-3.96733e19,-3.969925e19,-3.9725197e19,-3.975114e19,-3.977709e19,-3.980304e19,-3.982898e19,-3.985493e19,-3.988088e19,-3.9906827e19,-3.993277e19,-3.995872e19,-3.998467e19,-4.0010612e19,-4.003656e19,-4.006251e19,-4.008846e19,-4.01144e19,-4.014035e19,-4.01663e19,-4.0192243e19,-4.021819e19,-4.024414e19,-4.027009e19,-4.0296032e19,-4.032198e19,-4.034793e19,-4.0373873e19,-4.039982e19,-4.042577e19,-4.045172e19,-4.0477663e19,-4.050361e19,-4.052956e19,-4.0555504e19,-4.0581452e19,-4.06074e19,-4.063335e19,-4.0659293e19,-4.068524e19,-4.071119e19,-4.0737135e19,-4.0763083e19,-4.078903e19,-4.081498e19,-4.0840924e19,-4.0866872e19,-4.089282e19,-4.0918765e19,-4.0944714e19,-4.097066e19,-4.099661e19,-4.1022555e19,-4.1048503e19,-4.107445e19,-4.1100396e19,-4.1126344e19,-4.1152293e19,-4.117824e19,-4.1204185e19,-4.1230134e19,-4.125608e19,-4.1282026e19,-4.1307975e19,-4.1333923e19,-4.135987e19,-4.1385816e19,-4.1411764e19,-4.1437713e19,-4.1463657e19,-4.1489605e19,-4.1515554e19,-4.15415e19,-4.1567446e19,-4.1593395e19,-4.1619343e19,-4.1645287e19,-4.1671236e19,-4.1697184e19,-4.1723133e19,-4.1749077e19,-4.1775025e19,-4.1800974e19,-4.1826918e19,-4.1852866e19,-4.1878815e19,-4.1904763e19,-4.1930707e19,-4.1956656e19,-4.1982604e19,-4.200855e19,-4.2034497e19,-4.2060445e19,-4.2086394e19,-4.2112338e19,-4.2138286e19,-4.2164235e19,-4.219018e19,-4.2216127e19,-4.2242076e19,-4.2268024e19,-4.229397e19,-4.2319917e19,-4.2345865e19,-4.237181e19,-4.2397758e19,-4.2423706e19,-4.2449655e19,-4.24756e19,-4.2501547e19,-4.2527496e19,-4.255344e19,-4.257939e19,-4.2605337e19,-4.2631285e19,-4.265723e19,-4.2683178e19,-4.2709126e19,-4.273507e19,-4.276102e19,-4.2786967e19,-4.2812916e19,-4.283886e19,-4.286481e19,-4.2890757e19,-4.29167e19,-4.294265e19,-4.2968598e19,-4.2994546e19,-4.302049e19,-4.304644e19,-4.3072387e19,-4.309833e19,-4.312428e19,-4.315023e19,-4.3176177e19,-4.320212e19,-4.322807e19,-4.3254018e19,-4.3279966e19,-4.330591e19,-4.333186e19,-4.3357807e19,-4.338375e19,-4.34097e19,-4.343565e19,-4.3461597e19,-4.348754e19,-4.351349e19,-4.353944e19,-4.356538e19,-4.359133e19,-4.361728e19,-4.3643227e19,-4.366917e19,-4.369512e19,-4.372107e19,-4.3747012e19,-4.377296e19,-4.379891e19,-4.382486e19,-4.38508e19,-4.387675e19,-4.39027e19,-4.3928643e19,-4.395459e19,-4.398054e19,-4.400649e19,-4.4032432e19,-4.405838e19,-4.408433e19,-4.4110273e19,-4.413622e19,-4.416217e19,-4.418812e19,-4.4214063e19,-4.424001e19,-4.426596e19,-4.4291904e19,-4.4317852e19,-4.43438e19,-4.436975e19,-4.4395693e19,-4.442164e19,-4.444759e19,-4.4473535e19,-4.4499483e19,-4.452543e19,-4.455138e19,-4.4577324e19,-4.4603272e19,-4.462922e19,-4.4655165e19,-4.4681114e19,-4.470706e19,-4.473301e19,-4.4758955e19,-4.4784903e19,-4.481085e19,-4.4836796e19,-4.4862744e19,-4.4888693e19,-4.491464e19,-4.4940585e19,-4.4966534e19,-4.499248e19,-4.5018426e19,-4.5044375e19,-4.5070323e19,-4.509627e19,-4.5122216e19,-4.5148164e19,-4.5174113e19,-4.5200057e19,-4.5226005e19,-4.5251954e19,-4.52779e19,-4.5303846e19,-4.5329795e19,-4.5355743e19,-4.5381687e19,-4.5407636e19,-4.5433584e19,-4.5459533e19,-4.5485477e19,-4.5511425e19,-4.5537374e19,-4.5563318e19,-4.5589266e19,-4.5615215e19,-4.5641163e19,-4.5667107e19,-4.5693056e19,-4.5719004e19,-4.574495e19,-4.5770897e19,-4.5796845e19,-4.5822794e19,-4.5848738e19,-4.5874686e19,-4.5900635e19,-4.592658e19,-4.5952527e19,-4.5978476e19,-4.6004424e19,-4.603037e19,-4.6056317e19,-4.6082265e19,-4.610821e19,-4.6134158e19,-4.6160106e19,-4.6186055e19,-4.6212e19,-4.6237947e19,-4.6263896e19,-4.628984e19,-4.631579e19,-4.6341737e19,-4.6367685e19,-4.639363e19,-4.6419578e19,-4.6445526e19,-4.647147e19,-4.649742e19,-4.6523367e19,-4.6549316e19,-4.657526e19,-4.660121e19,-4.6627157e19,-4.66531e19,-4.667905e19,-4.6704998e19,-4.6730946e19,-4.675689e19,-4.678284e19,-4.6808787e19,-4.683473e19,-4.686068e19,-4.688663e19,-4.6912577e19,-4.693852e19,-4.696447e19,-4.6990418e19,-4.701636e19,-4.704231e19,-4.706826e19,-4.7094207e19,-4.712015e19,-4.71461e19,-4.717205e19,-4.7197992e19,-4.722394e19,-4.724989e19,-4.7275838e19,-4.730178e19,-4.732773e19,-4.735368e19,-4.7379623e19,-4.740557e19,-4.743152e19,-4.745747e19,-4.7483412e19,-4.750936e19,-4.753531e19,-4.7561253e19,-4.75872e19,-4.761315e19,-4.76391e19,-4.7665043e19,-4.769099e19,-4.771694e19,-4.7742884e19,-4.7768832e19,-4.779478e19,-4.782073e19,-4.7846673e19,-4.787262e19,-4.789857e19,-4.7924514e19,-4.7950463e19,-4.797641e19,-4.800236e19,-4.8028304e19,-4.8054252e19,-4.80802e19,-4.8106145e19,-4.8132093e19,-4.815804e19,-4.818399e19,-4.8209934e19,-4.8235883e19,-4.826183e19,-4.8287776e19,-4.8313724e19,-4.8339672e19,-4.836562e19,-4.8391565e19,-4.8417513e19,-4.844346e19,-4.8469406e19,-4.8495355e19,-4.8521303e19,-4.854725e19,-4.8573196e19,-4.8599144e19,-4.8625092e19,-4.8651037e19,-4.8676985e19,-4.8702934e19,-4.872888e19,-4.8754826e19,-4.8780775e19,-4.8806723e19,-4.8832667e19,-4.8858616e19,-4.8884564e19,-4.8910513e19,-4.8936457e19,-4.8962405e19,-4.8988354e19,-4.90143e19,-4.9040246e19,-4.9066195e19,-4.9092143e19,-4.9118087e19,-4.9144036e19,-4.9169984e19,-4.9195933e19,-4.9221877e19,-4.9247825e19,-4.9273774e19,-4.9299718e19,-4.9325666e19,-4.9351615e19,-4.9377563e19,-4.9403507e19,-4.9429456e19,-4.9455404e19,-4.948135e19,-4.9507297e19,-4.9533245e19,-4.9559194e19,-4.9585138e19,-4.9611086e19,-4.9637035e19,-4.966298e19,-4.9688927e19,-4.9714876e19,-4.9740824e19,-4.976677e19,-4.9792717e19,-4.9818665e19,-4.984461e19,-4.9870558e19,-4.9896506e19,-4.9922455e19,-4.99484e19,-4.9974347e19,-5.0000296e19,-5.002624e19,-5.005219e19,-5.0078137e19,-5.0104085e19,-5.013003e19,-5.0155978e19,-5.0181926e19,-5.020787e19,-5.023382e19,-5.0259767e19,-5.0285716e19,-5.031166e19,-5.033761e19,-5.0363557e19,-5.03895e19,-5.041545e19,-5.0441398e19,-5.0467346e19,-5.049329e19,-5.051924e19,-5.0545187e19,-5.057113e19,-5.059708e19,-5.062303e19,-5.0648977e19,-5.067492e19,-5.070087e19,-5.0726818e19,-5.075276e19,-5.077871e19,-5.080466e19,-5.0830607e19,-5.085655e19,-5.08825e19,-5.090845e19,-5.0934392e19,-5.096034e19,-5.098629e19,-5.1012238e19,-5.103818e19,-5.106413e19,-5.109008e19,-5.1116023e19,-5.114197e19,-5.116792e19,-5.119387e19,-5.1219812e19,-5.124576e19,-5.127171e19,-5.1297653e19,-5.13236e19,-5.134955e19,-5.13755e19,-5.1401443e19,-5.142739e19,-5.145334e19,-5.1479284e19,-5.1505232e19,-5.153118e19,-5.155713e19,-5.1583073e19,-5.160902e19,-5.163497e19,-5.1660914e19,-5.1686863e19,-5.171281e19,-5.173876e19,-5.1764704e19,-5.1790652e19,-5.18166e19,-5.1842545e19,-5.1868493e19,-5.189444e19,-5.192039e19,-5.1946334e19,-5.1972283e19,-5.199823e19,-5.2024176e19,-5.2050124e19,-5.2076072e19,-5.210202e19,-5.2127965e19,-5.2153913e19,-5.217986e19,-5.2205806e19,-5.2231755e19,-5.2257703e19,-5.228365e19,-5.2309596e19,-5.2335544e19,-5.2361492e19,-5.2387437e19,-5.2413385e19,-5.2439334e19,-5.246528e19,-5.2491226e19,-5.2517175e19,-5.2543123e19,-5.2569067e19,-5.2595016e19,-5.2620964e19,-5.2646913e19,-5.2672857e19,-5.2698805e19,-5.2724754e19,-5.2750698e19,-5.2776646e19,-5.2802595e19,-5.2828543e19,-5.2854487e19,-5.2880436e19,-5.2906384e19,-5.293233e19,-5.2958277e19,-5.2984225e19,-5.3010174e19,-5.3036118e19,-5.3062066e19,-5.3088015e19,-5.311396e19,-5.3139907e19,-5.3165856e19,-5.3191804e19,-5.321775e19,-5.3243697e19,-5.3269645e19,-5.329559e19,-5.3321538e19,-5.3347486e19,-5.3373435e19,-5.339938e19,-5.3425327e19,-5.3451276e19,-5.347722e19,-5.350317e19,-5.3529117e19,-5.3555065e19,-5.358101e19,-5.3606958e19,-5.3632906e19,-5.365885e19,-5.36848e19,-5.3710747e19,-5.3736696e19,-5.376264e19,-5.378859e19,-5.3814537e19,-5.384048e19,-5.386643e19,-5.3892378e19,-5.3918326e19,-5.394427e19,-5.397022e19,-5.3996167e19,-5.402211e19,-5.404806e19,-5.407401e19,-5.4099957e19,-5.41259e19,-5.415185e19,-5.4177798e19,-5.420374e19,-5.422969e19,-5.425564e19,-5.4281587e19,-5.430753e19,-5.433348e19,-5.435943e19,-5.4385372e19,-5.441132e19,-5.443727e19,-5.4463218e19,-5.448916e19,-5.451511e19,-5.454106e19,-5.4567003e19,-5.459295e19,-5.46189e19,-5.464485e19,-5.4670792e19,-5.469674e19,-5.472269e19,-5.4748633e19,-5.477458e19,-5.480053e19,-5.482648e19,-5.4852423e19,-5.487837e19,-5.490432e19,-5.493027e19,-5.4956212e19,-5.498216e19,-5.500811e19,-5.5034053e19,-5.506e19,-5.508595e19,-5.51119e19,-5.5137843e19,-5.516379e19,-5.518974e19,-5.5215684e19,-5.5241632e19,-5.526758e19,-5.529353e19,-5.5319473e19,-5.534542e19,-5.537137e19,-5.5397314e19,-5.5423263e19,-5.544921e19,-5.547516e19,-5.5501104e19,-5.5527052e19,-5.5553e19,-5.5578945e19,-5.5604893e19,-5.563084e19,-5.565679e19,-5.5682734e19,-5.5708683e19,-5.573463e19,-5.5760576e19,-5.5786524e19,-5.5812472e19,-5.583842e19,-5.5864365e19,-5.5890313e19,-5.591626e19,-5.5942206e19,-5.5968155e19,-5.5994103e19,-5.602005e19,-5.6045996e19,-5.6071944e19,-5.6097892e19,-5.6123837e19,-5.6149785e19,-5.6175734e19,-5.620168e19,-5.6227626e19,-5.6253575e19,-5.6279523e19,-5.6305467e19,-5.6331416e19,-5.6357364e19,-5.6383313e19,-5.6409257e19,-5.6435205e19,-5.6461154e19,-5.6487098e19,-5.6513046e19,-5.6538995e19,-5.6564943e19,-5.6590887e19,-5.6616836e19,-5.6642784e19,-5.666873e19,-5.6694677e19,-5.6720625e19,-5.6746574e19,-5.6772518e19,-5.6798466e19,-5.6824415e19,-5.685036e19,-5.6876307e19,-5.6902256e19,-5.6928204e19,-5.695415e19,-5.6980097e19,-5.7006045e19,-5.703199e19,-5.7057938e19,-5.7083886e19,-5.7109835e19,-5.713578e19,-5.7161727e19,-5.7187676e19,-5.721362e19,-5.723957e19,-5.7265517e19,-5.7291465e19,-5.731741e19,-5.7343358e19,-5.7369306e19,-5.739525e19,-5.74212e19,-5.7447147e19,-5.7473096e19,-5.749904e19,-5.752499e19,-5.7550937e19,-5.757688e19,-5.760283e19,-5.7628778e19,-5.7654726e19,-5.768067e19,-5.770662e19,-5.7732567e19,-5.775851e19,-5.778446e19,-5.781041e19,-5.7836357e19,-5.78623e19,-5.788825e19,-5.7914198e19,-5.794014e19,-5.796609e19,-5.799204e19,-5.8017987e19,-5.804393e19,-5.806988e19,-5.809583e19,-5.8121772e19,-5.814772e19,-5.817367e19,-5.8199618e19,-5.822556e19,-5.825151e19,-5.827746e19,-5.8303403e19,-5.832935e19,-5.83553e19,-5.838125e19,-5.8407192e19,-5.843314e19,-5.845909e19,-5.8485033e19,-5.851098e19,-5.853693e19,-5.856288e19,-5.8588823e19,-5.861477e19,-5.864072e19,-5.8666664e19,-5.8692612e19,-5.871856e19,-5.874451e19,-5.8770453e19,-5.87964e19,-5.882235e19,-5.8848294e19,-5.8874243e19,-5.890019e19,-5.892614e19,-5.8952084e19,-5.8978032e19,-5.900398e19,-5.9029925e19,-5.9055873e19,-5.908182e19,-5.910777e19,-5.9133714e19,-5.9159663e19,-5.918561e19,-5.9211555e19,-5.9237504e19,-5.9263452e19,-5.92894e19,-5.9315345e19,-5.9341293e19,-5.936724e19,-5.9393186e19,-5.9419134e19,-5.9445083e19,-5.947103e19,-5.9496976e19,-5.9522924e19,-5.9548872e19,-5.9574817e19,-5.9600765e19,-5.9626713e19,-5.965266e19,-5.9678606e19,-5.9704555e19,-5.9730503e19,-5.9756447e19,-5.9782396e19,-5.9808344e19,-5.9834292e19,-5.9860237e19,-5.9886185e19,-5.9912134e19,-5.9938078e19,-5.9964026e19,-5.9989975e19,-6.0015923e19,-6.0041867e19,-6.0067816e19,-6.0093764e19,-6.011971e19,-6.0145657e19,-6.0171605e19,-6.0197554e19,-6.0223498e19,-6.0249446e19,-6.0275395e19,-6.030134e19,-6.0327287e19,-6.0353236e19,-6.0379184e19,-6.040513e19,-6.0431077e19,-6.0457025e19,-6.048297e19,-6.0508918e19,-6.0534866e19,-6.0560815e19,-6.058676e19,-6.0612707e19,-6.0638656e19,-6.0664604e19,-6.069055e19,-6.0716497e19,-6.0742445e19,-6.076839e19,-6.0794338e19,-6.0820286e19,-6.0846235e19,-6.087218e19,-6.0898127e19,-6.0924076e19,-6.095002e19,-6.097597e19,-6.1001917e19,-6.1027865e19,-6.105381e19,-6.1079758e19,-6.1105706e19,-6.113165e19,-6.11576e19,-6.1183547e19,-6.1209496e19,-6.123544e19,-6.126139e19,-6.1287337e19,-6.131328e19,-6.133923e19,-6.1365178e19,-6.1391126e19,-6.141707e19,-6.144302e19,-6.1468967e19,-6.149491e19,-6.152086e19,-6.154681e19,-6.1572757e19,-6.15987e19,-6.162465e19,-6.1650598e19,-6.167654e19,-6.170249e19,-6.172844e19,-6.1754387e19,-6.178033e19,-6.180628e19,-6.183223e19,-6.1858172e19,-6.188412e19,-6.191007e19,-6.1936018e19,-6.196196e19,-6.198791e19,-6.201386e19,-6.2039803e19,-6.206575e19,-6.20917e19,-6.211765e19,-6.2143592e19,-6.216954e19,-6.219549e19,-6.2221433e19,-6.224738e19,-6.227333e19,-6.229928e19,-6.2325223e19,-6.235117e19,-6.237712e19,-6.2403064e19,-6.2429012e19,-6.245496e19,-6.248091e19,-6.2506853e19,-6.25328e19,-6.255875e19,-6.2584694e19,-6.2610643e19,-6.263659e19,-6.266254e19,-6.2688484e19,-6.2714432e19,-6.274038e19,-6.2766325e19,-6.2792273e19,-6.281822e19,-6.284417e19,-6.2870114e19,-6.2896063e19,-6.292201e19,-6.2947955e19,-6.2973904e19,-6.2999852e19,-6.30258e19,-6.3051745e19,-6.3077693e19,-6.310364e19,-6.3129586e19,-6.3155534e19,-6.3181483e19,-6.320743e19,-6.3233376e19,-6.3259324e19,-6.3285272e19,-6.3311217e19,-6.3337165e19,-6.3363113e19,-6.338906e19,-6.3415006e19,-6.3440955e19,-6.3466903e19,-6.3492847e19,-6.3518796e19,-6.3544744e19,-6.3570692e19,-6.3596637e19,-6.3622585e19,-6.3648534e19,-6.3674478e19,-6.3700426e19,-6.3726375e19,-6.3752323e19,-6.3778267e19,-6.3804216e19,-6.3830164e19,-6.385611e19,-6.3882057e19,-6.3908005e19,-6.3933954e19,-6.3959898e19,-6.3985846e19,-6.4011795e19,-6.403774e19,-6.4063687e19,-6.4089636e19,-6.4115584e19,-6.414153e19,-6.4167477e19,-6.4193425e19,-6.421937e19,-6.4245318e19,-6.4271266e19,-6.4297215e19,-6.432316e19,-6.4349107e19,-6.4375056e19,-6.4401e19,-6.442695e19,-6.4452897e19,-6.4478845e19,-6.450479e19,-6.4530738e19,-6.4556686e19,-6.458263e19,-6.460858e19,-6.4634527e19,-6.4660476e19,-6.468642e19,-6.471237e19,-6.4738317e19,-6.476426e19,-6.479021e19,-6.4816158e19,-6.4842106e19,-6.486805e19,-6.4894e19,-6.4919947e19,-6.494589e19,-6.497184e19,-6.499779e19,-6.5023737e19,-6.504968e19,-6.507563e19,-6.5101578e19,-6.512752e19,-6.515347e19,-6.517942e19,-6.5205367e19,-6.523131e19,-6.525726e19,-6.528321e19,-6.5309152e19,-6.53351e19,-6.536105e19,-6.5386998e19,-6.541294e19,-6.543889e19,-6.546484e19,-6.5490783e19,-6.551673e19,-6.554268e19,-6.556863e19,-6.5594572e19,-6.562052e19,-6.564647e19,-6.5672413e19,-6.569836e19,-6.572431e19,-6.575026e19,-6.5776203e19,-6.580215e19,-6.58281e19,-6.5854044e19,-6.5879992e19,-6.590594e19,-6.593189e19,-6.5957833e19,-6.598378e19,-6.600973e19,-6.6035674e19,-6.6061623e19,-6.608757e19,-6.611352e19,-6.6139464e19,-6.6165412e19,-6.619136e19,-6.6217305e19,-6.6243253e19,-6.62692e19,-6.629515e19,-6.6321094e19,-6.6347043e19,-6.637299e19,-6.639894e19,-6.6424884e19,-6.6450832e19,-6.647678e19,-6.6502725e19,-6.6528673e19,-6.655462e19,-6.658057e19,-6.6606514e19,-6.6632463e19,-6.665841e19,-6.6684355e19,-6.6710304e19,-6.6736252e19,-6.67622e19,-6.6788145e19,-6.6814093e19,-6.684004e19,-6.6865986e19,-6.6891934e19,-6.6917883e19,-6.694383e19,-6.6969776e19,-6.6995724e19,-6.7021672e19,-6.7047617e19,-6.7073565e19,-6.7099513e19,-6.712546e19,-6.7151406e19,-6.7177355e19,-6.7203303e19,-6.7229247e19,-6.7255196e19,-6.7281144e19,-6.7307092e19,-6.7333037e19,-6.7358985e19,-6.7384934e19,-6.7410878e19,-6.7436826e19,-6.7462775e19,-6.7488723e19,-6.7514667e19,-6.7540616e19,-6.7566564e19,-6.759251e19,-6.7618457e19,-6.7644405e19,-6.7670354e19,-6.7696298e19,-6.7722246e19,-6.7748195e19,-6.777414e19,-6.7800087e19,-6.7826036e19,-6.7851984e19,-6.787793e19,-6.7903877e19,-6.7929825e19,-6.795577e19,-6.7981718e19,-6.8007666e19,-6.8033615e19,-6.805956e19,-6.8085507e19,-6.8111456e19,-6.81374e19,-6.816335e19,-6.8189297e19,-6.8215245e19,-6.824119e19,-6.8267138e19,-6.8293086e19,-6.831903e19,-6.834498e19,-6.8370927e19,-6.8396876e19,-6.842282e19,-6.844877e19,-6.8474717e19,-6.850066e19,-6.852661e19,-6.8552558e19,-6.8578506e19,-6.860445e19,-6.86304e19,-6.8656347e19,-6.868229e19,-6.870824e19,-6.873419e19,-6.8760137e19,-6.878608e19,-6.881203e19,-6.8837978e19,-6.886392e19,-6.888987e19,-6.891582e19,-6.8941767e19,-6.896771e19,-6.899366e19,-6.901961e19,-6.9045552e19,-6.90715e19,-6.909745e19,-6.9123398e19,-6.914934e19,-6.917529e19,-6.920124e19,-6.9227183e19,-6.925313e19,-6.927908e19,-6.930503e19,-6.9330972e19,-6.935692e19,-6.938287e19,-6.9408813e19,-6.943476e19,-6.946071e19,-6.948666e19,-6.9512603e19,-6.953855e19,-6.95645e19,-6.9590444e19,-6.9616392e19,-6.964234e19,-6.966829e19,-6.9694233e19,-6.972018e19,-6.974613e19,-6.9772074e19,-6.9798023e19,-6.982397e19,-6.984992e19,-6.9875864e19,-6.9901812e19,-6.992776e19,-6.9953705e19,-6.9979653e19,-7.00056e19,-7.003155e19,-7.0057494e19,-7.0083443e19,-7.010939e19,-7.0135335e19,-7.0161284e19,-7.0187232e19,-7.021318e19,-7.0239125e19,-7.0265073e19,-7.029102e19,-7.0316966e19,-7.0342914e19,-7.0368863e19,-7.039481e19,-7.0420755e19,-7.0446704e19,-7.0472652e19,-7.0498597e19,-7.0524545e19,-7.0550493e19,-7.057644e19,-7.0602386e19,-7.0628334e19,-7.0654283e19,-7.0680227e19,-7.0706176e19,-7.0732124e19,-7.0758072e19,-7.0784017e19,-7.0809965e19,-7.0835913e19,-7.0861858e19,-7.0887806e19,-7.0913754e19,-7.0939703e19,-7.0965647e19,-7.0991596e19,-7.1017544e19,-7.104349e19,-7.1069437e19,-7.1095385e19,-7.1121333e19,-7.1147278e19,-7.1173226e19,-7.1199175e19,-7.122512e19,-7.1251067e19,-7.1277016e19,-7.1302964e19,-7.132891e19,-7.1354857e19,-7.1380805e19,-7.140675e19,-7.1432698e19,-7.1458646e19,-7.1484595e19,-7.151054e19,-7.1536487e19,-7.1562436e19,-7.158838e19,-7.161433e19,-7.1640277e19,-7.1666225e19,-7.169217e19,-7.1718118e19,-7.1744066e19,-7.177001e19,-7.179596e19,-7.1821907e19,-7.1847856e19,-7.18738e19,-7.189975e19,-7.1925697e19,-7.195164e19,-7.197759e19,-7.2003538e19,-7.2029486e19,-7.205543e19,-7.208138e19,-7.2107327e19,-7.2133276e19,-7.215922e19,-7.218517e19,-7.2211117e19,-7.223706e19,-7.226301e19,-7.2288958e19,-7.2314906e19,-7.234085e19,-7.23668e19,-7.2392747e19,-7.241869e19,-7.244464e19,-7.247059e19,-7.2496537e19,-7.252248e19,-7.254843e19,-7.2574378e19,-7.260032e19,-7.262627e19,-7.265222e19,-7.2678167e19,-7.270411e19,-7.273006e19,-7.275601e19,-7.2781952e19,-7.28079e19,-7.283385e19,-7.2859798e19,-7.288574e19,-7.291169e19,-7.293764e19,-7.2963583e19,-7.298953e19,-7.301548e19,-7.304143e19,-7.3067372e19,-7.309332e19,-7.311927e19,-7.3145213e19,-7.317116e19,-7.319711e19,-7.322306e19,-7.3249003e19,-7.327495e19,-7.33009e19,-7.3326844e19,-7.3352792e19,-7.337874e19,-7.340469e19,-7.3430633e19,-7.345658e19,-7.348253e19,-7.3508474e19,-7.3534423e19,-7.356037e19,-7.358632e19,-7.3612264e19,-7.3638212e19,-7.366416e19,-7.3690105e19,-7.3716053e19,-7.3742e19,-7.376795e19,-7.37939e19,-7.381984e19,-7.384579e19,-7.3871735e19,-7.389768e19,-7.392363e19,-7.394958e19,-7.397553e19,-7.400147e19,-7.402742e19,-7.405337e19,-7.4079314e19,-7.410526e19,-7.413121e19,-7.415716e19,-7.41831e19,-7.420905e19,-7.4235e19,-7.4260945e19,-7.428689e19,-7.431284e19,-7.433879e19,-7.436473e19,-7.439068e19,-7.441663e19,-7.4442575e19,-7.446852e19,-7.449447e19,-7.452042e19,-7.454636e19,-7.457231e19,-7.459826e19,-7.462421e19,-7.4650154e19,-7.46761e19,-7.470205e19,-7.472799e19,-7.475394e19,-7.477989e19,-7.480584e19,-7.4831785e19,-7.485773e19,-7.488368e19,-7.490962e19,-7.493557e19,-7.496152e19,-7.498747e19,-7.5013416e19,-7.503936e19,-7.506531e19,-7.509126e19,-7.51172e19,-7.514315e19,-7.51691e19,-7.519505e19,-7.5220995e19,-7.524694e19,-7.527289e19,-7.529883e19,-7.532478e19,-7.535073e19,-7.537668e19,-7.5402625e19,-7.542857e19,-7.545452e19,-7.548046e19,-7.550641e19,-7.553236e19,-7.555831e19,-7.5584256e19,-7.56102e19,-7.563615e19,-7.566209e19,-7.568804e19,-7.571399e19,-7.573994e19,-7.576589e19,-7.5791835e19,-7.581778e19,-7.584372e19,-7.586967e19,-7.589562e19,-7.592157e19,-7.594752e19,-7.5973465e19,-7.599941e19,-7.602535e19,-7.60513e19,-7.607725e19,-7.61032e19,-7.612915e19,-7.61551e19,-7.618104e19,-7.620698e19,-7.623293e19,-7.625888e19,-7.628483e19,-7.631078e19,-7.633673e19,-7.6362675e19,-7.638861e19,-7.641456e19,-7.644051e19,-7.646646e19,-7.649241e19,-7.651836e19,-7.6544305e19,-7.6570245e19,-7.659619e19,-7.662214e19,-7.664809e19,-7.667404e19,-7.669999e19,-7.672594e19,-7.6751875e19,-7.677782e19,-7.680377e19,-7.682972e19,-7.685567e19,-7.688162e19,-7.690757e19,-7.693351e19,-7.695945e19,-7.69854e19,-7.701135e19,-7.70373e19,-7.706325e19,-7.70892e19,-7.711514e19,-7.7141085e19,-7.716703e19,-7.719298e19,-7.721893e19,-7.724488e19,-7.727083e19,-7.729677e19,-7.7322715e19,-7.734866e19,-7.737461e19,-7.740056e19,-7.742651e19,-7.745246e19,-7.74784e19,-7.750435e19,-7.7530294e19,-7.755624e19,-7.758219e19,-7.760814e19,-7.763409e19,-7.766003e19,-7.768598e19,-7.7711925e19,-7.773787e19,-7.776382e19,-7.778977e19,-7.781572e19,-7.784166e19,-7.786761e19,-7.7893555e19,-7.79195e19,-7.794545e19,-7.79714e19,-7.799735e19,-7.802329e19,-7.804924e19,-7.807519e19,-7.8101134e19,-7.812708e19,-7.815303e19,-7.817898e19,-7.820492e19,-7.823087e19,-7.825682e19,-7.8282765e19,-7.830871e19,-7.833466e19,-7.836061e19,-7.838655e19,-7.84125e19,-7.843845e19,-7.8464396e19,-7.849034e19,-7.851629e19,-7.854224e19,-7.856818e19,-7.859413e19,-7.862008e19,-7.864603e19,-7.8671975e19,-7.869792e19,-7.872387e19,-7.874981e19,-7.877576e19,-7.880171e19,-7.882766e19,-7.8853605e19,-7.887955e19,-7.89055e19,-7.893144e19,-7.895739e19,-7.898334e19,-7.900929e19,-7.9035236e19,-7.906118e19,-7.908713e19,-7.911307e19,-7.913902e19,-7.916497e19,-7.919092e19,-7.921687e19,-7.9242815e19,-7.926876e19,-7.92947e19,-7.932065e19,-7.93466e19,-7.937255e19,-7.93985e19,-7.9424445e19,-7.945039e19,-7.947633e19,-7.950228e19,-7.952823e19,-7.955418e19,-7.958013e19,-7.960608e19,-7.963202e19,-7.965796e19,-7.968391e19,-7.970986e19,-7.973581e19,-7.976176e19,-7.978771e19,-7.9813655e19,-7.983959e19,-7.986554e19,-7.989149e19,-7.991744e19,-7.994339e19,-7.996934e19,-7.9995285e19,-8.0021225e19,-8.004717e19,-8.007312e19,-8.009907e19,-8.012502e19,-8.015097e19,-8.017692e19,-8.0202855e19,-8.02288e19,-8.025475e19,-8.02807e19,-8.030665e19,-8.03326e19,-8.035855e19,-8.038449e19,-8.041043e19,-8.043638e19,-8.046233e19,-8.048828e19,-8.051423e19,-8.054018e19,-8.056612e19,-8.0592065e19,-8.061801e19,-8.064396e19,-8.066991e19,-8.069586e19,-8.072181e19,-8.074775e19,-8.0773695e19,-8.079964e19,-8.082559e19,-8.085154e19,-8.087749e19,-8.090344e19,-8.092938e19,-8.095533e19,-8.098127e19,-8.100722e19,-8.103317e19,-8.105912e19,-8.108507e19,-8.111101e19,-8.113696e19,-8.1162905e19,-8.118885e19,-8.12148e19,-8.124075e19,-8.12667e19,-8.129264e19,-8.131859e19,-8.1344535e19,-8.137048e19,-8.139643e19,-8.142238e19,-8.144833e19,-8.147427e19,-8.150022e19,-8.152617e19,-8.1552114e19,-8.157806e19,-8.160401e19,-8.162996e19,-8.16559e19,-8.168185e19,-8.17078e19,-8.1733745e19,-8.175969e19,-8.178564e19,-8.181159e19,-8.183753e19,-8.186348e19,-8.188943e19,-8.1915375e19,-8.194132e19,-8.196727e19,-8.199322e19,-8.201916e19,-8.204511e19,-8.207106e19,-8.209701e19,-8.2122954e19,-8.21489e19,-8.217485e19,-8.220079e19,-8.222674e19,-8.225269e19,-8.227864e19,-8.2304585e19,-8.233053e19,-8.235648e19,-8.238242e19,-8.240837e19,-8.243432e19,-8.246027e19,-8.2486216e19,-8.251216e19,-8.253811e19,-8.256405e19,-8.259e19,-8.261595e19,-8.26419e19,-8.266785e19,-8.2693795e19,-8.271974e19,-8.274568e19,-8.277163e19,-8.279758e19,-8.282353e19,-8.284948e19,-8.2875425e19,-8.290137e19,-8.292731e19,-8.295326e19,-8.297921e19,-8.300516e19,-8.303111e19,-8.3057056e19,-8.3083e19,-8.310894e19,-8.313489e19,-8.316084e19,-8.318679e19,-8.321274e19,-8.323869e19,-8.3264635e19,-8.329057e19,-8.331652e19,-8.334247e19,-8.336842e19,-8.339437e19,-8.342032e19,-8.3446265e19,-8.3472205e19,-8.349815e19,-8.35241e19,-8.355005e19,-8.3576e19,-8.360195e19,-8.36279e19,-8.3653835e19,-8.367978e19,-8.370573e19,-8.373168e19,-8.375763e19,-8.378358e19,-8.380953e19,-8.383547e19,-8.386141e19,-8.388736e19,-8.391331e19,-8.393926e19,-8.396521e19,-8.399116e19,-8.40171e19,-8.4043045e19,-8.406899e19,-8.409494e19,-8.412089e19,-8.414684e19,-8.417279e19,-8.419873e19,-8.4224675e19,-8.425062e19,-8.427657e19,-8.430252e19,-8.432847e19,-8.435442e19,-8.438036e19,-8.440631e19,-8.443225e19,-8.44582e19,-8.448415e19,-8.45101e19,-8.453605e19,-8.456199e19,-8.458794e19,-8.4613885e19,-8.463983e19,-8.466578e19,-8.469173e19,-8.471768e19,-8.474362e19,-8.476957e19,-8.4795515e19,-8.482146e19,-8.484741e19,-8.487336e19,-8.489931e19,-8.492525e19,-8.49512e19,-8.497715e19,-8.5003094e19,-8.502904e19,-8.505499e19,-8.508094e19,-8.510688e19,-8.513283e19,-8.515878e19,-8.5184725e19,-8.521067e19,-8.523662e19,-8.526257e19,-8.528851e19,-8.531446e19,-8.534041e19,-8.5366355e19,-8.53923e19,-8.541825e19,-8.54442e19,-8.547014e19,-8.549609e19,-8.552204e19,-8.554799e19,-8.5573934e19,-8.559988e19,-8.562583e19,-8.565177e19,-8.567772e19,-8.570367e19,-8.572962e19,-8.5755565e19,-8.578151e19,-8.580746e19,-8.58334e19,-8.585935e19,-8.58853e19,-8.591125e19,-8.5937196e19,-8.596314e19,-8.598909e19,-8.601503e19,-8.604098e19,-8.606693e19,-8.609288e19,-8.611883e19,-8.6144775e19,-8.617072e19,-8.619666e19,-8.622261e19,-8.624856e19,-8.627451e19,-8.630046e19,-8.6326405e19,-8.635235e19,-8.637829e19,-8.640424e19,-8.643019e19,-8.645614e19,-8.648209e19,-8.6508036e19,-8.653398e19,-8.655993e19,-8.658587e19,-8.661182e19,-8.663777e19,-8.666372e19,-8.668967e19,-8.6715615e19,-8.674156e19,-8.67675e19,-8.679345e19,-8.68194e19,-8.684535e19,-8.68713e19,-8.6897245e19,-8.692319e19,-8.694913e19,-8.697508e19,-8.700103e19,-8.702698e19,-8.705293e19,-8.707888e19,-8.710482e19,-8.713076e19,-8.715671e19,-8.718266e19,-8.720861e19,-8.723456e19,-8.726051e19,-8.7286455e19,-8.731239e19,-8.733834e19,-8.736429e19,-8.739024e19,-8.741619e19,-8.744214e19,-8.7468085e19,-8.7494025e19,-8.751997e19,-8.754592e19,-8.757187e19,-8.759782e19,-8.762377e19,-8.764972e19,-8.7675655e19,-8.77016e19,-8.772755e19,-8.77535e19,-8.777945e19,-8.78054e19,-8.783135e19,-8.785729e19,-8.788323e19,-8.790918e19,-8.793513e19,-8.796108e19,-8.798703e19,-8.801298e19,-8.803892e19,-8.8064865e19,-8.809081e19,-8.811676e19,-8.814271e19,-8.816866e19,-8.819461e19,-8.822055e19,-8.8246495e19,-8.827244e19,-8.829839e19,-8.832434e19,-8.835029e19,-8.837624e19,-8.840218e19,-8.842813e19,-8.845407e19,-8.848002e19,-8.850597e19,-8.853192e19,-8.855787e19,-8.858381e19,-8.860976e19,-8.8635705e19,-8.866165e19,-8.86876e19,-8.871355e19,-8.87395e19,-8.876544e19,-8.879139e19,-8.8817335e19,-8.884328e19,-8.886923e19,-8.889518e19,-8.892113e19,-8.894707e19,-8.897302e19,-8.899897e19,-8.9024914e19,-8.905086e19,-8.907681e19,-8.910276e19,-8.91287e19,-8.915465e19,-8.91806e19,-8.9206545e19,-8.923249e19,-8.925844e19,-8.928439e19,-8.931033e19,-8.933628e19,-8.936223e19,-8.9388175e19,-8.941412e19,-8.944007e19,-8.946602e19,-8.949196e19,-8.951791e19,-8.954386e19,-8.956981e19,-8.9595754e19,-8.96217e19,-8.964765e19,-8.967359e19,-8.969954e19,-8.972549e19,-8.975144e19,-8.9777385e19,-8.980333e19,-8.982928e19,-8.985522e19,-8.988117e19,-8.990712e19,-8.993307e19,-8.9959016e19,-8.998496e19,-9.001091e19,-9.003685e19,-9.00628e19,-9.008875e19,-9.01147e19,-9.014065e19,-9.0166595e19,-9.019254e19,-9.021848e19,-9.024443e19,-9.027038e19,-9.029633e19,-9.032228e19,-9.0348225e19,-9.037417e19,-9.040011e19,-9.042606e19,-9.045201e19,-9.047796e19,-9.050391e19,-9.0529856e19,-9.05558e19,-9.058174e19,-9.060769e19,-9.063364e19,-9.065959e19,-9.068554e19,-9.071149e19,-9.0737435e19,-9.076337e19,-9.078932e19,-9.081527e19,-9.084122e19,-9.086717e19,-9.089312e19,-9.0919065e19,-9.0945005e19,-9.097095e19,-9.09969e19,-9.102285e19,-9.10488e19,-9.107475e19,-9.11007e19,-9.1126635e19,-9.115258e19,-9.117853e19,-9.120448e19,-9.123043e19,-9.125638e19,-9.128233e19,-9.130827e19,-9.133421e19,-9.136016e19,-9.138611e19,-9.141206e19,-9.143801e19,-9.146396e19,-9.14899e19,-9.1515845e19,-9.154179e19,-9.156774e19,-9.159369e19,-9.161964e19,-9.164559e19,-9.167153e19,-9.1697475e19,-9.172342e19,-9.174937e19,-9.177532e19,-9.180127e19,-9.182722e19,-9.185316e19,-9.187911e19,-9.190505e19,-9.1931e19,-9.195695e19,-9.19829e19,-9.200885e19,-9.203479e19,-9.206074e19,-9.2086685e19,-9.211263e19,-9.213858e19,-9.216453e19,-9.219048e19,-9.221642e19,-9.224237e19,-9.2268315e19,-9.229426e19,-9.232021e19,-9.234616e19,-9.237211e19,-9.239805e19,-9.2424e19,-9.244995e19,-9.2475894e19,-9.250184e19,-9.252779e19,-9.255374e19,-9.257968e19,-9.260563e19,-9.263158e19,-9.2657525e19,-9.268347e19,-9.270942e19,-9.273537e19,-9.276131e19,-9.278726e19,-9.281321e19,-9.2839155e19,-9.28651e19,-9.289105e19,-9.2917e19,-9.294294e19,-9.296889e19,-9.299484e19,-9.302079e19,-9.3046734e19,-9.307268e19,-9.309863e19,-9.312457e19,-9.315052e19,-9.317647e19,-9.320242e19,-9.3228365e19,-9.325431e19,-9.328026e19,-9.33062e19,-9.333215e19,-9.33581e19,-9.338405e19,-9.3409996e19,-9.343594e19,-9.346189e19,-9.348783e19,-9.351378e19,-9.353973e19,-9.356568e19,-9.359163e19,-9.3617574e19,-9.364352e19,-9.366946e19,-9.369541e19,-9.372136e19,-9.374731e19,-9.377326e19,-9.3799205e19,-9.382515e19,-9.385109e19,-9.387704e19,-9.390299e19,-9.392894e19,-9.395489e19,-9.3980836e19,-9.400678e19,-9.403272e19,-9.405867e19,-9.408462e19,-9.411057e19,-9.413652e19,-9.416247e19,-9.4188415e19,-9.421435e19,-9.42403e19,-9.426625e19,-9.42922e19,-9.431815e19,-9.43441e19,-9.4370045e19,-9.4395985e19,-9.442193e19,-9.444788e19,-9.447383e19,-9.449978e19,-9.452573e19,-9.4551676e19,-9.4577615e19,-9.460356e19,-9.462951e19,-9.465546e19,-9.468141e19,-9.470736e19,-9.473331e19,-9.475925e19,-9.478519e19,-9.481114e19,-9.483709e19,-9.486304e19,-9.488899e19,-9.491494e19,-9.494088e19,-9.4966825e19,-9.499277e19,-9.501872e19,-9.504467e19,-9.507062e19,-9.509657e19,-9.512251e19,-9.5148455e19,-9.51744e19,-9.520035e19,-9.52263e19,-9.525225e19,-9.52782e19,-9.530414e19,-9.533009e19,-9.535603e19,-9.538198e19,-9.540793e19,-9.543388e19,-9.545983e19,-9.548577e19,-9.551172e19,-9.5537665e19,-9.556361e19,-9.558956e19,-9.561551e19,-9.564146e19,-9.56674e19,-9.569335e19,-9.5719295e19,-9.574524e19,-9.577119e19,-9.579714e19,-9.582309e19,-9.584903e19,-9.587498e19,-9.590093e19,-9.592687e19,-9.595282e19,-9.597877e19,-9.600472e19,-9.603066e19,-9.605661e19,-9.608256e19,-9.6108505e19,-9.613445e19,-9.61604e19,-9.618635e19,-9.621229e19,-9.623824e19,-9.626419e19,-9.6290135e19,-9.631608e19,-9.634203e19,-9.636798e19,-9.639392e19,-9.641987e19,-9.644582e19,-9.647177e19,-9.6497714e19,-9.652366e19,-9.654961e19,-9.657555e19,-9.66015e19,-9.662745e19,-9.66534e19,-9.6679345e19,-9.670529e19,-9.673124e19,-9.675718e19,-9.678313e19,-9.680908e19,-9.683503e19,-9.6860975e19,-9.688692e19,-9.691287e19,-9.693881e19,-9.696476e19,-9.699071e19,-9.701666e19,-9.704261e19,-9.7068554e19,-9.70945e19,-9.712044e19,-9.714639e19,-9.717234e19,-9.719829e19,-9.722424e19,-9.7250185e19,-9.727613e19,-9.730207e19,-9.732802e19,-9.735397e19,-9.737992e19,-9.740587e19,-9.7431816e19,-9.745776e19,-9.74837e19,-9.750965e19,-9.75356e19,-9.756155e19,-9.75875e19,-9.761345e19,-9.7639395e19,-9.766533e19,-9.769128e19,-9.771723e19,-9.774318e19,-9.776913e19,-9.779508e19,-9.7821025e19,-9.7846965e19,-9.787291e19,-9.789886e19,-9.792481e19,-9.795076e19,-9.797671e19,-9.8002656e19,-9.80286e19,-9.805454e19,-9.808049e19,-9.810644e19,-9.813239e19,-9.815834e19,-9.818429e19,-9.8210235e19,-9.823617e19,-9.826212e19,-9.828807e19,-9.831402e19,-9.833997e19,-9.836592e19,-9.8391865e19,-9.8417805e19,-9.844375e19,-9.84697e19,-9.849565e19,-9.85216e19,-9.854755e19,-9.85735e19,-9.8599435e19,-9.862538e19,-9.865133e19,-9.867728e19,-9.870323e19,-9.872918e19,-9.875513e19,-9.878107e19,-9.880701e19,-9.883296e19,-9.885891e19,-9.888486e19,-9.891081e19,-9.893676e19,-9.89627e19,-9.8988645e19,-9.901459e19,-9.904054e19,-9.906649e19,-9.909244e19,-9.911839e19,-9.914433e19,-9.9170275e19,-9.919622e19,-9.922217e19,-9.924812e19,-9.927407e19,-9.930002e19,-9.932596e19,-9.935191e19,-9.937785e19,-9.94038e19,-9.942975e19,-9.94557e19,-9.948165e19,-9.950759e19,-9.953354e19,-9.9559485e19,-9.958543e19,-9.961138e19,-9.963733e19,-9.966328e19,-9.968922e19,-9.971517e19,-9.9741115e19,-9.976706e19,-9.979301e19,-9.981896e19,-9.984491e19,-9.987085e19,-9.98968e19,-9.992275e19,-9.994869e19,-9.997464e19,-1.0000059e20,-1.0002654e20,-1.0005248e20,-1.0007843e20,-1.0010438e20,-1.00130325e20,-1.0015627e20,-1.0018222e20,-1.0020817e20,-1.0023411e20,-1.0026006e20,-1.0028601e20,-1.00311955e20,-1.003379e20,-1.0036385e20,-1.003898e20,-1.0041574e20,-1.0044169e20,-1.0046764e20,-1.0049359e20,-1.00519534e20,-1.0054548e20,-1.0057143e20,-1.0059737e20,-1.0062332e20,-1.0064927e20,-1.0067522e20,-1.00701165e20,-1.0072711e20,-1.0075306e20,-1.00779e20,-1.0080495e20,-1.008309e20,-1.0085685e20,-1.00882795e20,-1.0090874e20,-1.0093469e20,-1.0096063e20,-1.0098658e20,-1.0101253e20,-1.0103848e20,-1.0106443e20,-1.01090374e20,-1.0111632e20,-1.0114226e20,-1.0116821e20,-1.0119416e20,-1.0122011e20,-1.0124606e20,-1.01272005e20,-1.0129795e20,-1.0132389e20,-1.0134984e20,-1.0137579e20,-1.0140174e20,-1.0142769e20,-1.01453636e20,-1.0147958e20,-1.0150552e20,-1.0153147e20,-1.0155742e20,-1.0158337e20,-1.0160932e20,-1.0163527e20,-1.01661215e20,-1.0168715e20,-1.017131e20,-1.0173905e20,-1.01765e20,-1.0179095e20,-1.018169e20,-1.01842845e20,-1.01868785e20,-1.0189473e20,-1.0192068e20,-1.0194663e20,-1.0197258e20,-1.0199853e20,-1.02024476e20,-1.02050415e20,-1.0207636e20,-1.0210231e20,-1.0212826e20,-1.0215421e20,-1.0218016e20,-1.0220611e20,-1.0223205e20,-1.0225799e20,-1.0228394e20,-1.0230989e20,-1.0233584e20,-1.0236179e20,-1.0238774e20,-1.0241368e20,-1.02439625e20,-1.0246557e20,-1.0249152e20,-1.0251747e20,-1.0254342e20,-1.0256937e20,-1.0259531e20,-1.02621255e20,-1.026472e20,-1.0267315e20,-1.026991e20,-1.0272505e20,-1.02751e20,-1.0277694e20,-1.0280289e20,-1.0282883e20,-1.0285478e20,-1.0288073e20,-1.0290668e20,-1.0293263e20,-1.0295857e20,-1.0298452e20,-1.03010465e20,-1.0303641e20,-1.0306236e20,-1.0308831e20,-1.0311426e20,-1.031402e20,-1.0316615e20,-1.03192095e20,-1.0321804e20,-1.0324399e20,-1.0326994e20,-1.0329589e20,-1.0332183e20,-1.0334778e20,-1.0337373e20,-1.0339967e20,-1.0342562e20,-1.0345157e20,-1.0347752e20,-1.0350346e20,-1.0352941e20,-1.0355536e20,-1.03581305e20,-1.0360725e20,-1.036332e20,-1.0365915e20,-1.0368509e20,-1.0371104e20,-1.0373699e20,-1.03762935e20],"cosine":[1.0,0.034899496,-0.9975641,-0.104528464,0.99026805,0.17364818,-0.9781476,-0.2419219,0.9612617,0.309017,-0.9396926,-0.37460658,0.9135454,0.99026805,-0.88294756,-0.9975641,0.8480481,1.0,-0.809017,-0.9975641,0.76604444,0.99026805,-0.7193398,0.17364818,0.6691306,0.9612617,0.9612617,0.034899496,0.5591929,0.9135454,0.99026805,-0.104528464,0.43837115,0.8480481,1.0,-0.2419219,0.309017,0.76604444,0.99026805,-0.37460658,0.17364818,0.6691306,0.9612617,-0.5,0.034899496,-0.9781476,-0.9396926,-0.6156615,-0.104528464,0.43837115,0.8480481,1.0,0.8480481,0.43837115,-0.9975641,-0.809017,-0.37460658,0.17364818,0.6691306,0.9612617,0.9612617,0.6691306,-0.9781476,-0.9396926,-0.6156615,-0.104528464,0.43837115,0.8480481,1.0,0.8480481,-0.88294756,-0.9975641,-0.809017,-0.37460658,0.17364818,0.6691306,0.9612617,0.9612617,-0.7193398,-0.9781476,-0.9396926,-0.6156615,-0.104528464,0.43837115,0.8480481,1.0,-0.5,-0.88294756,-0.9975641,-0.809017,0.9135454,0.17364818,0.76604444,0.9612617,-0.2419219,0.6691306,-0.9781476,-0.37460658,-0.6156615,0.99026805,0.43837115,0.5591929,1.0,-0.5,0.43837115,-0.9975641,-0.6156615,-0.37460658,0.99026805,0.6691306,0.309017,0.9612617,-0.7193398,0.17364818,-0.9396926,0.76604444,-0.104528464,0.9135454,0.8480481,0.034899496,0.8480481,-0.88294756,-0.104528464,-0.809017,0.9135454,0.17364818,0.76604444,0.9612617,-0.2419219,0.6691306,-0.9781476,0.309017,-0.6156615,0.99026805,0.43837115,0.5591929,1.0,-0.5,0.43837115,-0.9975641,0.5591929,-0.37460658,0.99026805,0.6691306,0.309017,0.9612617,-0.7193398,0.17364818,-0.9396926,0.76604444,-0.104528464,0.9135454,0.8480481,0.034899496,0.8480481,-0.88294756,0.034899496,-0.809017,0.9135454,0.17364818,0.76604444,0.9612617,-0.2419219,0.6691306,-0.9781476,0.309017,-0.6156615,0.99026805,0.43837115,0.5591929,1.0,-0.5,-0.5,-0.9975641,0.5591929,-0.37460658,0.99026805,0.6691306,0.309017,0.9612617,0.6691306,-0.2419219,-0.9396926,-0.809017,0.17364818,0.9135454,0.8480481,0.034899496,-0.88294756,-0.88294756,-0.104528464,0.8480481,0.9135454,0.17364818,-0.7193398,-0.9396926,-0.2419219,0.6691306,0.9612617,0.309017,-0.6156615,-0.9975641,-0.37460658,0.5591929,1.0,0.43837115,-0.5,-0.9975641,-0.6156615,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9781476,-0.7193398,0.17364818,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.809017,0.034899496,0.8480481,0.8480481,0.034899496,-0.809017,-0.9396926,-0.104528464,0.76604444,0.9612617,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.6691306,0.99026805,0.43837115,-0.5,-0.9975641,-0.5,0.43837115,1.0,0.5591929,-0.37460658,-0.9781476,-0.6156615,0.309017,0.9612617,0.6691306,-0.2419219,-0.9396926,-0.809017,0.17364818,0.9135454,0.8480481,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.8480481,0.9135454,0.17364818,-0.809017,-0.9396926,-0.2419219,0.6691306,0.9612617,0.309017,-0.6156615,-0.9975641,-0.37460658,0.5591929,1.0,0.43837115,-0.5,-0.9975641,-0.6156615,0.43837115,0.99026805,0.6691306,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9612617,0.76604444,-0.104528464,-0.9396926,-0.809017,0.034899496,0.8480481,0.8480481,0.034899496,-0.809017,-0.9396926,-0.104528464,0.76604444,0.9612617,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.6691306,0.99026805,0.43837115,-0.6156615,-0.9975641,-0.5,0.43837115,1.0,0.5591929,-0.37460658,-0.9975641,-0.6156615,0.309017,0.9612617,0.6691306,-0.2419219,-0.9396926,-0.7193398,0.17364818,0.9135454,0.8480481,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.8480481,0.9135454,0.17364818,-0.809017,-0.9396926,-0.2419219,0.6691306,0.9612617,0.309017,-0.6156615,-0.9781476,-0.37460658,0.5591929,1.0,0.43837115,-0.5,-0.9975641,-0.5,0.43837115,0.99026805,0.6691306,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9612617,0.76604444,-0.104528464,-0.9396926,-0.809017,0.034899496,0.8480481,0.9135454,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.9612617,0.309017,-0.6156615,-0.9396926,-0.2419219,0.6691306,0.99026805,0.43837115,-0.5,-0.9975641,-0.37460658,0.5591929,1.0,0.5591929,-0.37460658,-0.9781476,-0.7193398,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.809017,0.034899496,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.8480481,0.034899496,-0.809017,-0.9396926,-0.2419219,0.6691306,0.99026805,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.5591929,1.0,0.5591929,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.6156615,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.88294756,0.17364818,0.9135454,0.8480481,0.034899496,-0.809017,-0.9396926,-0.2419219,0.8480481,0.9135454,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.5591929,0.9612617,0.309017,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.43837115,-0.5,-0.9975641,-0.6156615,0.309017,0.9612617,0.76604444,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9135454,0.8480481,0.034899496,-0.9396926,-0.809017,0.034899496,0.8480481,0.9135454,0.17364818,-0.7193398,-0.88294756,-0.104528464,0.76604444,0.9612617,0.309017,-0.6156615,-0.9975641,-0.5,0.6691306,0.99026805,0.43837115,-0.5,-0.9975641,-0.6156615,0.309017,1.0,0.5591929,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9135454,0.6691306,-0.2419219,-0.9396926,-0.809017,0.034899496,0.8480481,0.9135454,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.9612617,0.309017,-0.809017,-0.9396926,-0.2419219,0.6691306,0.99026805,0.43837115,-0.5,-0.9781476,-0.37460658,0.5591929,1.0,0.5591929,-0.37460658,-0.9781476,-0.5,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.809017,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.8480481,0.034899496,-0.809017,-0.9396926,-0.2419219,0.6691306,0.99026805,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.5591929,1.0,0.5591929,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9975641,-0.6156615,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.7193398,0.17364818,0.9135454,0.8480481,0.034899496,-0.809017,-0.9396926,0.034899496,0.8480481,0.9135454,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.76604444,0.9612617,0.309017,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.43837115,-0.5,-0.9975641,-0.6156615,0.309017,0.9612617,0.76604444,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9135454,0.8480481,0.034899496,-0.9396926,-0.809017,0.034899496,0.8480481,0.9135454,0.17364818,-0.7193398,-0.88294756,-0.104528464,0.76604444,0.9612617,0.309017,-0.6156615,-0.9975641,-0.2419219,0.6691306,0.99026805,0.43837115,-0.5,-0.9975641,-0.6156615,0.5591929,1.0,0.5591929,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.809017,0.034899496,0.8480481,0.76604444,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.9612617,0.034899496,-0.809017,-0.9396926,-0.2419219,0.6691306,0.99026805,0.43837115,-0.5,-0.9781476,-0.37460658,0.5591929,1.0,0.5591929,-0.37460658,-0.9781476,-0.5,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.809017,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.9135454,0.8480481,0.034899496,-0.809017,-0.9396926,-0.2419219,0.6691306,0.9135454,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.5591929,1.0,0.309017,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.6691306,-0.5,-0.9975641,-0.6156615,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.7193398,0.17364818,0.9135454,0.8480481,0.034899496,-0.809017,-0.9396926,0.034899496,0.8480481,0.9135454,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.76604444,1.0,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.99026805,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,0.17364818,0.76604444,0.8480481,0.309017,-0.809017,-0.9975641,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,-0.37460658,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.9612617,0.034899496,-0.9396926,-0.9396926,0.034899496,0.6691306,0.9135454,0.43837115,-0.7193398,-0.88294756,-0.37460658,0.76604444,1.0,0.309017,-0.37460658,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9396926,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.88294756,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.9396926,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,-0.37460658,0.76604444,0.8480481,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.17364818,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.9612617,0.034899496,-0.6156615,-0.9396926,0.034899496,0.6691306,0.9135454,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.76604444,1.0,0.309017,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.99026805,0.6691306,-0.5,-0.9396926,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.6691306,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.809017,0.309017,1.0,0.76604444,-0.37460658,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.6691306,0.034899496,-0.9396926,-0.9396926,0.034899496,0.6691306,0.9135454,-0.104528464,-0.7193398,-0.88294756,-0.37460658,0.76604444,1.0,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.809017,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.9135454,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.9135454,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.309017,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,-0.5,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,0.309017,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,-0.37460658,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.9612617,0.034899496,-0.9396926,-0.9396926,0.034899496,0.6691306,0.9135454,0.43837115,-0.7193398,-0.88294756,-0.37460658,0.76604444,1.0,0.309017,-0.37460658,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9396926,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.99026805,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,0.17364818,0.76604444,0.8480481,0.309017,-0.809017,-0.9975641,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.9612617,0.034899496,-0.6156615,-0.9396926,0.034899496,0.6691306,0.9135454,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.76604444,1.0,0.309017,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.99026805,0.6691306,-0.5,-0.9396926,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.88294756,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.9396926,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,-0.37460658,0.76604444,0.8480481,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.17364818,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.9135454,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.9135454,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.309017,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,-0.5,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,0.309017,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.6691306,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.809017,0.309017,1.0,0.76604444,-0.37460658,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.6691306,0.034899496,-0.9396926,-0.9396926,0.034899496,0.6691306,0.9135454,-0.104528464,-0.7193398,-0.88294756,-0.37460658,0.76604444,1.0,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.809017,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,1.0,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.5,0.17364818,0.76604444,1.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/large_positive.json new file mode 100644 index 000000000000..64400b21294d --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/large_positive.json @@ -0,0 +1 @@ +{"sine":[0.0,0.99939084,0.06975647,-0.9945219,-0.1391731,0.9848077,0.20791169,-0.9702957,-0.27563736,0.95105654,0.34202015,-0.92718387,-0.40673664,0.1391731,0.46947157,-0.06975647,-0.52991927,0.0,0.58778524,0.06975647,-0.64278764,-0.1391731,0.6946584,-0.9848077,-0.7431448,-0.27563736,0.27563736,-0.99939084,-0.82903755,-0.40673664,0.1391731,-0.9945219,-0.89879405,-0.52991927,0.0,-0.9702957,-0.95105654,-0.64278764,-0.1391731,-0.92718387,-0.9848077,-0.7431448,-0.27563736,-0.8660254,-0.99939084,0.20791169,-0.34202015,-0.7880108,-0.9945219,-0.89879405,-0.52991927,0.0,0.52991927,0.89879405,-0.06975647,-0.58778524,-0.92718387,-0.9848077,-0.7431448,-0.27563736,0.27563736,0.7431448,0.20791169,-0.34202015,-0.7880108,-0.9945219,-0.89879405,-0.52991927,0.0,0.52991927,0.46947157,-0.06975647,-0.58778524,-0.92718387,-0.9848077,-0.7431448,-0.27563736,0.27563736,0.6946584,0.20791169,-0.34202015,-0.7880108,-0.9945219,-0.89879405,-0.52991927,0.0,0.8660254,0.46947157,-0.06975647,-0.58778524,-0.40673664,-0.9848077,0.64278764,-0.27563736,0.9702957,0.7431448,0.20791169,0.92718387,-0.7880108,-0.1391731,-0.89879405,0.82903755,0.0,0.8660254,0.89879405,-0.06975647,0.7880108,-0.92718387,0.1391731,-0.7431448,0.95105654,0.27563736,0.6946584,0.9848077,-0.34202015,-0.64278764,-0.9945219,0.40673664,-0.52991927,0.99939084,0.52991927,0.46947157,0.9945219,-0.58778524,-0.40673664,-0.9848077,0.64278764,-0.27563736,0.9702957,0.7431448,0.20791169,-0.95105654,-0.7880108,-0.1391731,-0.89879405,0.82903755,0.0,0.8660254,0.89879405,-0.06975647,-0.82903755,-0.92718387,0.1391731,-0.7431448,0.95105654,0.27563736,0.6946584,0.9848077,-0.34202015,-0.64278764,-0.9945219,0.40673664,-0.52991927,0.99939084,0.52991927,0.46947157,-0.99939084,-0.58778524,-0.40673664,-0.9848077,0.64278764,-0.27563736,0.9702957,0.7431448,0.20791169,-0.95105654,-0.7880108,-0.1391731,-0.89879405,0.82903755,0.0,0.8660254,-0.8660254,-0.06975647,-0.82903755,-0.92718387,0.1391731,-0.7431448,0.95105654,0.27563736,-0.7431448,-0.9702957,-0.34202015,0.58778524,0.9848077,0.40673664,-0.52991927,-0.99939084,-0.46947157,0.46947157,0.9945219,0.52991927,-0.40673664,-0.9848077,-0.6946584,0.34202015,0.9702957,0.7431448,-0.27563736,-0.95105654,-0.7880108,0.06975647,0.92718387,0.82903755,0.0,-0.89879405,-0.8660254,-0.06975647,0.7880108,0.89879405,0.1391731,-0.7431448,-0.9702957,-0.20791169,0.6946584,0.9848077,0.27563736,-0.64278764,-0.9945219,-0.46947157,0.58778524,0.99939084,0.52991927,-0.52991927,-0.99939084,-0.58778524,0.34202015,0.9945219,0.64278764,-0.27563736,-0.9848077,-0.6946584,0.20791169,0.92718387,0.7431448,-0.1391731,-0.89879405,-0.8660254,0.06975647,0.8660254,0.89879405,0.0,-0.82903755,-0.92718387,-0.20791169,0.7880108,0.95105654,0.27563736,-0.7431448,-0.9702957,-0.34202015,0.58778524,0.9848077,0.40673664,-0.52991927,-0.9945219,-0.46947157,0.46947157,0.9945219,0.52991927,-0.40673664,-0.9848077,-0.58778524,0.34202015,0.9702957,0.7431448,-0.27563736,-0.95105654,-0.7880108,0.06975647,0.92718387,0.82903755,0.0,-0.89879405,-0.8660254,-0.06975647,0.7880108,0.89879405,0.1391731,-0.7431448,-0.92718387,-0.20791169,0.6946584,0.9848077,0.27563736,-0.64278764,-0.9945219,-0.34202015,0.58778524,0.99939084,0.52991927,-0.52991927,-0.99939084,-0.58778524,0.34202015,0.9945219,0.64278764,-0.27563736,-0.9848077,-0.6946584,0.20791169,0.92718387,0.7431448,-0.1391731,-0.89879405,-0.7880108,0.06975647,0.8660254,0.89879405,0.0,-0.82903755,-0.92718387,-0.06975647,0.7880108,0.95105654,0.27563736,-0.7431448,-0.9702957,-0.34202015,0.6946584,0.9848077,0.40673664,-0.52991927,-0.9945219,-0.46947157,0.46947157,0.9945219,0.52991927,-0.40673664,-0.9848077,-0.58778524,0.34202015,0.9702957,0.7431448,-0.27563736,-0.95105654,-0.7880108,0.20791169,0.92718387,0.82903755,0.0,-0.89879405,-0.8660254,-0.06975647,0.8660254,0.89879405,0.1391731,-0.7431448,-0.92718387,-0.20791169,0.6946584,0.9848077,0.27563736,-0.64278764,-0.9945219,-0.34202015,0.58778524,0.99939084,0.52991927,-0.40673664,-0.9945219,-0.46947157,0.46947157,0.9945219,0.64278764,-0.27563736,-0.95105654,-0.7880108,0.34202015,0.9702957,0.7431448,-0.1391731,-0.89879405,-0.8660254,-0.06975647,0.92718387,0.82903755,0.0,-0.82903755,-0.92718387,-0.20791169,0.6946584,0.89879405,0.1391731,-0.7431448,-0.9702957,-0.34202015,0.58778524,0.99939084,0.27563736,-0.64278764,-0.9945219,-0.46947157,0.46947157,0.9945219,0.64278764,-0.52991927,-0.99939084,-0.58778524,0.34202015,0.9702957,0.7431448,-0.1391731,-0.9848077,-0.6946584,0.20791169,0.92718387,0.82903755,0.0,-0.82903755,-0.7880108,0.06975647,0.8660254,0.89879405,0.1391731,-0.7431448,-0.9702957,-0.34202015,0.7880108,0.95105654,0.27563736,-0.64278764,-0.9945219,-0.46947157,0.46947157,0.9848077,0.40673664,-0.52991927,-0.99939084,-0.58778524,0.34202015,0.9702957,0.52991927,-0.40673664,-0.9848077,-0.6946584,0.20791169,0.92718387,0.82903755,-0.27563736,-0.95105654,-0.7880108,0.06975647,0.8660254,0.89879405,0.1391731,-0.89879405,-0.8660254,-0.06975647,0.7880108,0.95105654,0.27563736,-0.64278764,-0.92718387,-0.20791169,0.6946584,0.9848077,0.40673664,-0.52991927,-0.99939084,-0.34202015,0.58778524,0.99939084,0.52991927,-0.40673664,-0.9848077,-0.6946584,0.46947157,0.9945219,0.64278764,-0.27563736,-0.95105654,-0.7880108,0.06975647,0.8660254,0.7431448,-0.1391731,-0.89879405,-0.8660254,-0.06975647,0.7880108,0.95105654,0.0,-0.82903755,-0.92718387,-0.20791169,0.6946584,0.9848077,0.40673664,-0.7431448,-0.9702957,-0.34202015,0.58778524,0.99939084,0.52991927,-0.40673664,-0.9945219,-0.46947157,0.46947157,0.9945219,0.64278764,-0.27563736,-0.95105654,-0.58778524,0.34202015,0.9702957,0.7431448,-0.1391731,-0.89879405,-0.8660254,0.20791169,0.92718387,0.82903755,0.0,-0.82903755,-0.92718387,-0.20791169,0.8660254,0.89879405,0.1391731,-0.7431448,-0.9702957,-0.34202015,0.58778524,0.95105654,0.27563736,-0.64278764,-0.9945219,-0.46947157,0.46947157,0.9945219,0.64278764,-0.52991927,-0.99939084,-0.58778524,0.34202015,0.9702957,0.7431448,-0.1391731,-0.9848077,-0.6946584,0.20791169,0.92718387,0.82903755,0.0,-0.82903755,-0.7880108,0.06975647,0.8660254,0.89879405,0.1391731,-0.7431448,-0.9702957,-0.06975647,0.7880108,0.95105654,0.27563736,-0.64278764,-0.9945219,-0.46947157,0.6946584,0.9848077,0.40673664,-0.52991927,-0.99939084,-0.58778524,0.34202015,0.99939084,0.52991927,-0.40673664,-0.9848077,-0.6946584,0.20791169,0.92718387,0.64278764,-0.27563736,-0.95105654,-0.7880108,0.06975647,0.8660254,0.89879405,-0.1391731,-0.89879405,-0.8660254,-0.06975647,0.7880108,0.95105654,0.27563736,-0.64278764,-0.92718387,-0.20791169,0.6946584,0.9848077,0.40673664,-0.52991927,-0.99939084,-0.34202015,0.58778524,0.99939084,0.52991927,-0.40673664,-0.9848077,-0.6946584,0.46947157,0.9945219,0.64278764,-0.27563736,-0.95105654,-0.7880108,0.06975647,0.9702957,0.7431448,-0.1391731,-0.89879405,-0.8660254,-0.06975647,0.7880108,0.82903755,0.0,-0.82903755,-0.92718387,-0.20791169,0.6946584,0.9848077,0.1391731,-0.7431448,-0.9702957,-0.34202015,0.58778524,0.99939084,0.52991927,-0.64278764,-0.9945219,-0.46947157,0.46947157,0.9945219,0.64278764,-0.27563736,-0.99939084,-0.58778524,0.34202015,0.9702957,0.7431448,-0.1391731,-0.89879405,-0.8660254,0.20791169,0.92718387,0.82903755,0.0,-0.82903755,-0.92718387,-0.20791169,0.8660254,0.89879405,0.1391731,-0.7431448,-0.9702957,-0.34202015,0.58778524,0.95105654,0.27563736,-0.64278764,-0.9945219,-0.46947157,0.46947157,0.9945219,0.40673664,-0.52991927,-0.99939084,-0.58778524,0.34202015,0.9702957,0.7431448,-0.40673664,-0.9848077,-0.6946584,0.20791169,0.92718387,0.82903755,0.0,-0.95105654,-0.7880108,0.06975647,0.8660254,0.89879405,0.1391731,-0.7431448,-0.8660254,-0.06975647,0.7880108,0.95105654,0.27563736,-0.64278764,-0.9945219,-0.46947157,0.6946584,0.9848077,0.40673664,-0.52991927,-0.99939084,-0.58778524,0.34202015,0.99939084,0.52991927,-0.40673664,-0.9848077,-0.6946584,0.20791169,0.92718387,0.64278764,0.0,-0.95105654,-0.58778524,0.06975647,0.9702957,0.89879405,-0.1391731,-0.7431448,-0.8660254,0.20791169,0.7880108,0.82903755,0.27563736,-0.82903755,-0.9945219,-0.20791169,0.46947157,0.9848077,0.1391731,-0.52991927,-0.9702957,-0.58778524,0.58778524,0.9702957,0.52991927,-0.64278764,-0.9848077,-0.46947157,0.20791169,0.9945219,0.82903755,-0.27563736,-0.99939084,-0.7880108,0.34202015,0.8660254,0.7431448,0.1391731,-0.89879405,-0.6946584,-0.06975647,0.92718387,0.95105654,0.0,-0.64278764,-0.92718387,0.06975647,0.6946584,0.89879405,0.40673664,-0.7431448,-0.99939084,-0.34202015,0.7880108,0.99939084,0.27563736,-0.40673664,-0.9945219,-0.6946584,0.46947157,0.9848077,0.64278764,-0.52991927,-0.95105654,-0.58778524,0.06975647,0.9702957,0.52991927,-0.1391731,-0.9848077,-0.8660254,0.20791169,0.7880108,0.82903755,-0.27563736,-0.82903755,-0.7880108,-0.20791169,0.8660254,0.9848077,0.1391731,-0.89879405,-0.9702957,-0.06975647,0.58778524,0.95105654,0.52991927,-0.64278764,-0.92718387,-0.46947157,0.6946584,0.9945219,0.40673664,-0.27563736,-0.99939084,-0.34202015,0.34202015,0.99939084,0.7431448,-0.40673664,-0.89879405,-0.6946584,0.46947157,0.92718387,0.64278764,0.0,-0.95105654,-0.92718387,0.06975647,0.9702957,0.89879405,-0.1391731,-0.7431448,-0.8660254,-0.34202015,0.7880108,0.82903755,0.27563736,-0.82903755,-0.9945219,-0.20791169,0.46947157,0.9848077,0.64278764,-0.52991927,-0.9702957,-0.58778524,0.58778524,0.9702957,0.52991927,-0.1391731,-0.9848077,-0.46947157,0.20791169,0.9945219,0.82903755,-0.27563736,-0.82903755,-0.7880108,0.34202015,0.8660254,0.7431448,0.1391731,-0.89879405,-0.9702957,-0.06975647,0.92718387,0.95105654,0.0,-0.64278764,-0.92718387,-0.46947157,0.6946584,0.89879405,0.40673664,-0.7431448,-0.99939084,-0.34202015,0.34202015,0.99939084,0.27563736,-0.40673664,-0.9945219,-0.6946584,0.46947157,0.92718387,0.64278764,-0.52991927,-0.95105654,-0.58778524,0.06975647,0.9702957,0.89879405,-0.1391731,-0.9848077,-0.8660254,0.20791169,0.7880108,0.82903755,0.27563736,-0.82903755,-0.7880108,-0.20791169,0.8660254,0.9848077,0.1391731,-0.52991927,-0.9702957,-0.06975647,0.58778524,0.95105654,0.52991927,-0.64278764,-0.9848077,-0.46947157,0.6946584,0.9945219,0.40673664,-0.27563736,-0.99939084,-0.7880108,0.34202015,0.99939084,0.7431448,-0.40673664,-0.89879405,-0.6946584,-0.06975647,0.92718387,0.64278764,0.0,-0.95105654,-0.92718387,0.06975647,0.6946584,0.89879405,-0.1391731,-0.7431448,-0.8660254,-0.34202015,0.7880108,0.99939084,0.27563736,-0.82903755,-0.9945219,-0.20791169,0.46947157,0.9848077,0.64278764,-0.52991927,-0.9702957,-0.58778524,0.58778524,0.9702957,0.52991927,-0.1391731,-0.9848077,-0.8660254,0.20791169,0.9945219,0.82903755,-0.27563736,-0.82903755,-0.7880108,-0.20791169,0.8660254,0.7431448,0.1391731,-0.89879405,-0.9702957,-0.06975647,0.58778524,0.95105654,0.0,-0.64278764,-0.92718387,-0.46947157,0.6946584,0.9945219,0.40673664,-0.7431448,-0.99939084,-0.34202015,0.34202015,0.99939084,0.7431448,-0.40673664,-0.9945219,-0.6946584,0.46947157,0.92718387,0.64278764,0.0,-0.95105654,-0.58778524,0.06975647,0.9702957,0.89879405,-0.1391731,-0.7431448,-0.8660254,0.20791169,0.7880108,0.82903755,0.27563736,-0.82903755,-0.9945219,-0.20791169,0.8660254,0.9848077,0.1391731,-0.52991927,-0.9702957,-0.58778524,0.58778524,0.95105654,0.52991927,-0.64278764,-0.9848077,-0.46947157,0.20791169,0.9945219,0.40673664,-0.27563736,-0.99939084,-0.7880108,0.34202015,0.8660254,0.7431448,-0.40673664,-0.89879405,-0.6946584,-0.06975647,0.92718387,0.95105654,0.0,-0.95105654,-0.92718387,0.06975647,0.6946584,0.89879405,0.40673664,-0.7431448,-0.8660254,-0.34202015,0.7880108,0.99939084,0.27563736,-0.40673664,-0.9945219,-0.20791169,0.46947157,0.9848077,0.64278764,-0.52991927,-0.95105654,-0.58778524,0.58778524,0.9702957,0.52991927,-0.1391731,-0.9848077,-0.8660254,0.20791169,0.9945219,0.82903755,-0.27563736,-0.82903755,-0.7880108,-0.20791169,0.8660254,0.9848077,0.1391731,-0.89879405,-0.9702957,-0.06975647,0.58778524,0.95105654,0.52991927,-0.64278764,-0.92718387,-0.46947157,0.6946584,0.9945219,0.40673664,-0.27563736,-0.99939084,-0.34202015,0.34202015,0.99939084,0.7431448,-0.40673664,-0.89879405,-0.6946584,0.46947157,0.92718387,0.64278764,0.0,-0.95105654,-0.92718387,0.06975647,0.9702957,0.89879405,-0.1391731,-0.7431448,-0.8660254,-0.34202015,0.7880108,0.82903755,0.27563736,-0.82903755,-0.9945219,-0.20791169,0.46947157,0.9848077,0.1391731,-0.52991927,-0.9702957,-0.58778524,0.58778524,0.9702957,0.52991927,-0.64278764,-0.9848077,-0.46947157,0.20791169,0.9945219,0.82903755,-0.27563736,-0.99939084,-0.7880108,0.34202015,0.8660254,0.7431448,0.1391731,-0.89879405,-0.6946584,-0.06975647,0.92718387,0.95105654,0.0,-0.64278764,-0.92718387,0.06975647,0.6946584,0.89879405,0.40673664,-0.7431448,-0.99939084,-0.34202015,0.7880108,0.99939084,0.27563736,-0.40673664,-0.9945219,-0.6946584,0.46947157,0.9848077,0.64278764,-0.52991927,-0.95105654,-0.58778524,0.06975647,0.9702957,0.52991927,-0.1391731,-0.9848077,-0.8660254,0.20791169,0.7880108,0.82903755,-0.27563736,-0.82903755,-0.7880108,-0.20791169,0.8660254,0.9848077,0.1391731,-0.52991927,-0.9702957,-0.06975647,0.58778524,0.95105654,0.52991927,-0.64278764,-0.9848077,-0.46947157,0.6946584,0.9945219,0.40673664,-0.27563736,-0.99939084,-0.7880108,0.34202015,0.99939084,0.7431448,-0.40673664,-0.89879405,-0.6946584,-0.06975647,0.92718387,0.64278764,0.0,-0.95105654,-0.92718387,0.06975647,0.6946584,0.89879405,-0.1391731,-0.7431448,-0.8660254,-0.34202015,0.7880108,0.99939084,0.27563736,-0.82903755,-0.9945219,-0.20791169,0.46947157,0.9848077,0.64278764,-0.52991927,-0.9702957,-0.58778524,0.58778524,0.9702957,0.52991927,-0.1391731,-0.9848077,-0.46947157,0.20791169,0.9945219,0.82903755,-0.27563736,-0.82903755,-0.7880108,0.34202015,0.8660254,0.7431448,0.1391731,-0.89879405,-0.9702957,-0.06975647,0.92718387,0.95105654,0.0,-0.64278764,-0.92718387,-0.46947157,0.6946584,0.89879405,0.40673664,-0.7431448,-0.99939084,-0.34202015,0.34202015,0.99939084,0.27563736,-0.40673664,-0.9945219,-0.6946584,0.46947157,0.92718387,0.64278764,-0.52991927,-0.95105654,-0.58778524,0.06975647,0.9702957,0.89879405,-0.1391731,-0.9848077,-0.8660254,0.20791169,0.7880108,0.82903755,0.27563736,-0.82903755,-0.7880108,-0.20791169,0.8660254,0.9848077,0.1391731,-0.52991927,-0.9702957,-0.06975647,0.58778524,0.95105654,0.52991927,-0.64278764,-0.9848077,-0.46947157,0.20791169,0.9945219,0.40673664,-0.27563736,-0.99939084,-0.7880108,0.34202015,0.8660254,0.7431448,-0.40673664,-0.89879405,-0.6946584,-0.06975647,0.92718387,0.95105654,0.0,-0.95105654,-0.92718387,0.06975647,0.6946584,0.89879405,0.40673664,-0.7431448,-0.8660254,-0.34202015,0.7880108,0.99939084,0.27563736,-0.40673664,-0.9945219,-0.20791169,0.46947157,0.9848077,0.64278764,-0.52991927,-0.95105654,-0.58778524,0.58778524,0.9702957,0.52991927,-0.1391731,-0.9848077,-0.8660254,0.20791169,0.9945219,0.82903755,-0.27563736,-0.82903755,-0.7880108,-0.20791169,0.8660254,0.7431448,0.1391731,-0.89879405,-0.9702957,-0.06975647,0.58778524,0.95105654,0.0,-0.64278764,-0.92718387,-0.46947157,0.6946584,0.9945219,0.40673664,-0.7431448,-0.99939084,-0.34202015,0.34202015,0.99939084,0.7431448,-0.40673664,-0.9945219,-0.6946584,0.46947157,0.92718387,0.64278764,0.0,-0.95105654,-0.58778524,0.06975647,0.9702957,0.89879405,-0.1391731,-0.7431448,-0.8660254,0.20791169,0.7880108,0.82903755,0.27563736,-0.82903755,-0.9945219,-0.20791169,0.8660254,0.9848077,0.1391731,-0.52991927,-0.9702957,-0.58778524,0.58778524,0.95105654,0.52991927,-0.64278764,-0.9848077,-0.46947157,0.20791169,0.9945219,0.82903755,-0.27563736,-0.99939084,-0.7880108,0.34202015,0.8660254,0.7431448,0.1391731,-0.89879405,-0.6946584,-0.06975647,0.92718387,0.95105654,0.0,-0.64278764,-0.92718387,0.06975647,0.6946584,0.89879405,0.40673664,-0.7431448,-0.99939084,-0.34202015,0.7880108,0.99939084,0.27563736,-0.40673664,-0.9945219,-0.6946584,0.46947157,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.40673664,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.92718387,0.95105654,0.52991927,-0.1391731,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.34202015,0.34202015,0.8660254,0.27563736,-0.40673664,-0.89879405,-0.9702957,0.46947157,0.92718387,0.95105654,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.82903755,0.27563736,-0.40673664,-0.7880108,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.06975647,0.58778524,0.9702957,0.89879405,-0.64278764,-0.9848077,-0.8660254,0.6946584,0.9945219,0.82903755,0.27563736,-0.99939084,-0.7880108,-0.20791169,0.99939084,0.7431448,0.1391731,-0.52991927,-0.6946584,-0.06975647,0.58778524,0.64278764,0.0,-0.64278764,-0.9848077,0.06975647,0.6946584,0.9945219,-0.1391731,-0.7431448,-0.99939084,-0.7880108,0.7880108,0.99939084,0.7431448,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.6946584,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.99939084,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,0.64278764,-0.89879405,-0.9702957,-0.58778524,0.92718387,0.95105654,0.52991927,-0.1391731,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.34202015,0.34202015,0.8660254,0.27563736,-0.40673664,-0.89879405,-0.9702957,0.46947157,0.92718387,0.95105654,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.82903755,0.27563736,-0.40673664,-0.7880108,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.06975647,0.58778524,0.9702957,0.89879405,-0.64278764,-0.9848077,-0.8660254,0.6946584,0.9945219,0.82903755,0.27563736,-0.99939084,-0.7880108,-0.20791169,0.99939084,0.7431448,0.1391731,-0.52991927,-0.6946584,-0.06975647,0.58778524,0.64278764,0.0,-0.64278764,-0.9848077,0.06975647,0.6946584,0.9945219,-0.1391731,-0.7431448,-0.99939084,-0.7880108,0.7880108,0.99939084,0.7431448,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.6946584,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.99939084,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,0.64278764,-0.89879405,-0.9702957,-0.58778524,0.92718387,0.95105654,0.52991927,-0.1391731,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.34202015,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,0.46947157,0.92718387,0.95105654,0.52991927,-0.95105654,-0.92718387,-0.46947157,0.9702957,0.89879405,0.40673664,-0.27563736,-0.8660254,-0.34202015,0.34202015,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.58778524,0.9702957,0.89879405,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.9945219,0.82903755,0.27563736,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.7431448,0.1391731,-0.52991927,-0.6946584,-0.06975647,0.58778524,0.9702957,0.0,-0.64278764,-0.9848077,0.06975647,0.6946584,0.9945219,0.82903755,-0.7431448,-0.99939084,-0.7880108,0.7880108,0.99939084,0.7431448,0.1391731,-0.9945219,-0.6946584,-0.06975647,0.9848077,0.64278764,0.0,-0.64278764,-0.58778524,0.06975647,0.6946584,0.52991927,-0.1391731,-0.7431448,-0.99939084,0.20791169,0.7880108,0.99939084,-0.27563736,-0.82903755,-0.9945219,-0.6946584,0.8660254,0.9848077,0.64278764,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.95105654,0.52991927,-0.1391731,-0.92718387,-0.46947157,0.20791169,0.7880108,0.40673664,-0.27563736,-0.82903755,-0.34202015,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,0.46947157,0.92718387,0.95105654,0.52991927,-0.95105654,-0.92718387,-0.46947157,0.9702957,0.89879405,0.40673664,-0.27563736,-0.8660254,-0.34202015,0.34202015,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.58778524,0.9702957,0.89879405,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.9945219,0.82903755,0.27563736,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.7431448,0.1391731,-0.52991927,-0.6946584,-0.06975647,0.58778524,0.9702957,0.0,-0.64278764,-0.9848077,0.06975647,0.6946584,0.9945219,0.82903755,-0.7431448,-0.99939084,-0.7880108,0.7880108,0.99939084,0.7431448,0.1391731,-0.9945219,-0.6946584,-0.06975647,0.9848077,0.64278764,0.0,-0.64278764,-0.58778524,0.06975647,0.6946584,0.52991927,-0.1391731,-0.7431448,-0.99939084,0.20791169,0.7880108,0.99939084,-0.27563736,-0.82903755,-0.9945219,-0.6946584,0.8660254,0.9848077,0.64278764,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.95105654,0.52991927,-0.1391731,-0.92718387,-0.46947157,0.20791169,0.7880108,0.40673664,-0.27563736,-0.82903755,-0.34202015,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,0.46947157,0.92718387,0.95105654,0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.8660254,-0.34202015,0.34202015,0.8660254,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.95105654,-0.52991927,-0.95105654,-0.92718387,0.58778524,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.9945219,0.82903755,0.27563736,-0.40673664,-0.7880108,-0.20791169,0.46947157,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.06975647,0.58778524,0.9702957,0.0,-0.64278764,-0.9848077,-0.8660254,0.6946584,0.9945219,0.82903755,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.99939084,0.7431448,0.1391731,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.64278764,0.0,-0.64278764,-0.58778524,0.06975647,0.6946584,0.9945219,-0.1391731,-0.7431448,-0.99939084,0.20791169,0.7880108,0.99939084,0.7431448,-0.82903755,-0.9945219,-0.6946584,0.8660254,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.40673664,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.92718387,0.95105654,0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.8660254,-0.34202015,0.34202015,0.8660254,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.95105654,-0.52991927,-0.95105654,-0.92718387,0.58778524,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.9945219,0.82903755,0.27563736,-0.40673664,-0.7880108,-0.20791169,0.46947157,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.06975647,0.58778524,0.9702957,0.0,-0.64278764,-0.9848077,-0.8660254,0.6946584,0.9945219,0.82903755,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.99939084,0.7431448,0.1391731,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.64278764,0.0,-0.64278764,-0.58778524,0.06975647,0.6946584,0.9945219,-0.1391731,-0.7431448,-0.99939084,0.20791169,0.7880108,0.99939084,0.7431448,-0.82903755,-0.9945219,-0.6946584,0.8660254,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.40673664,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.92718387,0.95105654,0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.8660254,-0.34202015,0.34202015,0.8660254,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.95105654,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.82903755,0.27563736,-0.40673664,-0.7880108,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.06975647,0.58778524,0.9702957,0.89879405,-0.64278764,-0.9848077,-0.8660254,0.6946584,0.9945219,0.82903755,0.27563736,-0.99939084,-0.7880108,-0.20791169,0.99939084,0.7431448,0.1391731,-0.52991927,-0.6946584,-0.06975647,0.58778524,0.64278764,0.0,-0.64278764,-0.9848077,0.06975647,0.6946584,0.9945219,-0.1391731,-0.7431448,-0.99939084,-0.7880108,0.7880108,0.99939084,0.7431448,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.6946584,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.99939084,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,0.64278764,-0.89879405,-0.9702957,-0.58778524,0.92718387,0.95105654,0.52991927,-0.1391731,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.34202015,0.34202015,0.8660254,0.27563736,-0.40673664,-0.89879405,-0.9702957,0.46947157,0.92718387,0.95105654,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.82903755,0.27563736,-0.40673664,-0.7880108,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.06975647,0.58778524,0.9702957,0.89879405,-0.64278764,-0.9848077,-0.8660254,0.6946584,0.9945219,0.82903755,0.27563736,-0.99939084,-0.7880108,-0.20791169,0.99939084,0.7431448,0.1391731,-0.52991927,-0.6946584,-0.06975647,0.58778524,0.64278764,0.0,-0.64278764,-0.9848077,0.06975647,0.6946584,0.9945219,-0.1391731,-0.7431448,-0.99939084,-0.7880108,0.7880108,0.99939084,0.7431448,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.6946584,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.99939084,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,0.64278764,-0.89879405,-0.9702957,-0.58778524,0.92718387,0.95105654,0.52991927,-0.1391731,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.34202015,0.34202015,0.8660254,0.27563736,-0.40673664,-0.89879405,-0.9702957,0.46947157,0.92718387,0.95105654,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.58778524,0.9702957,0.89879405,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.9945219,0.82903755,0.27563736,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.7431448,0.1391731,-0.52991927,-0.6946584,-0.06975647,0.58778524,0.9702957,0.0,-0.64278764,-0.9848077,0.06975647,0.6946584,0.9945219,0.82903755,-0.7431448,-0.99939084,-0.7880108,0.7880108,0.99939084,0.7431448,0.1391731,-0.9945219,-0.6946584,-0.06975647,0.9848077,0.64278764,0.0,-0.64278764,-0.58778524,0.06975647,0.6946584,0.52991927,-0.1391731,-0.7431448,-0.99939084,0.20791169,0.7880108,0.99939084,-0.27563736,-0.82903755,-0.9945219,-0.6946584,0.8660254,0.9848077,0.64278764,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.95105654,0.52991927,-0.1391731,-0.92718387,-0.46947157,0.20791169,0.7880108,0.40673664,-0.27563736,-0.82903755,-0.34202015,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,0.46947157,0.92718387,0.95105654,0.52991927,-0.95105654,-0.92718387,-0.46947157,0.9702957,0.89879405,0.40673664,-0.27563736,-0.8660254,-0.34202015,0.34202015,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.58778524,0.9702957,0.89879405,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.9945219,0.82903755,0.27563736,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.7431448,0.1391731,-0.52991927,-0.6946584,-0.06975647,0.58778524,0.9702957,0.0,-0.64278764,-0.9848077,0.06975647,0.6946584,0.9945219,0.82903755,-0.7431448,-0.99939084,-0.7880108,0.7880108,0.99939084,0.7431448,0.1391731,-0.9945219,-0.6946584,-0.06975647,0.9848077,0.64278764,0.0,-0.64278764,-0.58778524,0.06975647,0.6946584,0.52991927,-0.1391731,-0.7431448,-0.99939084,0.20791169,0.7880108,0.99939084,-0.27563736,-0.82903755,-0.9945219,-0.6946584,0.8660254,0.9848077,0.64278764,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.95105654,0.52991927,-0.1391731,-0.92718387,-0.46947157,0.20791169,0.7880108,0.40673664,-0.27563736,-0.82903755,-0.34202015,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,0.46947157,0.92718387,0.95105654,0.52991927,-0.95105654,-0.92718387,-0.46947157,0.9702957,0.89879405,0.40673664,-0.27563736,-0.8660254,-0.34202015,0.34202015,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.58778524,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.9945219,0.82903755,0.27563736,-0.40673664,-0.7880108,-0.20791169,0.46947157,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.06975647,0.58778524,0.9702957,0.0,-0.64278764,-0.9848077,-0.8660254,0.6946584,0.9945219,0.82903755,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.99939084,0.7431448,0.1391731,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.64278764,0.0,-0.64278764,-0.58778524,0.06975647,0.6946584,0.9945219,-0.1391731,-0.7431448,-0.99939084,0.20791169,0.7880108,0.99939084,0.7431448,-0.82903755,-0.9945219,-0.6946584,0.8660254,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.40673664,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.92718387,0.95105654,0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.8660254,-0.34202015,0.34202015,0.8660254,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.95105654,-0.52991927,-0.95105654,-0.92718387,0.58778524,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.9945219,0.82903755,0.27563736,-0.40673664,-0.7880108,-0.20791169,0.46947157,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.06975647,0.58778524,0.9702957,0.0,-0.64278764,-0.9848077,-0.8660254,0.6946584,0.9945219,0.82903755,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.99939084,0.7431448,0.1391731,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.64278764,0.0,-0.64278764,-0.58778524,0.06975647,0.6946584,0.9945219,-0.1391731,-0.7431448,-0.99939084,0.20791169,0.7880108,0.99939084,0.7431448,-0.82903755,-0.9945219,-0.6946584,0.8660254,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.40673664,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.92718387,0.95105654,0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.89879405,0.40673664,-0.27563736,-0.8660254,-0.34202015,0.34202015,0.8660254,0.27563736,-0.40673664,-0.89879405,-0.20791169,0.46947157,0.92718387,0.95105654,-0.52991927,-0.95105654,-0.92718387,0.58778524,0.9702957,0.89879405,0.40673664,-0.9848077,-0.8660254,-0.34202015,0.9945219,0.82903755,0.27563736,-0.40673664,-0.7880108,-0.20791169,0.46947157,0.92718387,0.1391731,-0.52991927,-0.95105654,-0.06975647,0.58778524,0.9702957,0.89879405,-0.64278764,-0.9848077,-0.8660254,0.6946584,0.9945219,0.82903755,0.27563736,-0.99939084,-0.7880108,-0.20791169,0.99939084,0.7431448,0.1391731,-0.52991927,-0.6946584,-0.06975647,0.58778524,0.64278764,0.0,-0.64278764,-0.9848077,0.06975647,0.6946584,0.9945219,-0.1391731,-0.7431448,-0.99939084,-0.7880108,0.7880108,0.99939084,0.7431448,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.9848077,0.64278764,0.0,-0.9702957,-0.58778524,0.06975647,0.6946584,0.52991927,-0.1391731,-0.7431448,-0.46947157,0.20791169,0.7880108,0.99939084,-0.27563736,-0.82903755,-0.9945219,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,0.8660254,0.9848077,0.64278764,0.0,-0.64278764,-0.9848077,-0.8660254,0.95105654,0.52991927,-0.1391731,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.40673664,-0.27563736,-0.82903755,-0.9945219,-0.6946584,-0.06975647,0.58778524,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.06975647,0.6946584,0.9945219,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.7880108,0.99939084,0.7431448,-0.8660254,-0.34202015,0.34202015,0.8660254,0.9848077,0.64278764,0.0,-0.20791169,0.46947157,0.92718387,0.95105654,0.52991927,-0.1391731,-0.7431448,0.58778524,0.9702957,0.89879405,0.40673664,-0.27563736,-0.82903755,-0.9945219,0.9945219,0.82903755,0.27563736,-0.40673664,-0.89879405,-0.9702957,-0.58778524,0.7431448,0.1391731,-0.52991927,-0.95105654,-0.92718387,-0.46947157,0.20791169,0.0,-0.64278764,-0.9848077,-0.8660254,-0.34202015,0.34202015,0.8660254,-0.7431448,-0.99939084,-0.7880108,-0.20791169,0.46947157,0.92718387,0.95105654,-0.9945219,-0.6946584,-0.06975647,0.58778524,0.9702957,0.89879405,0.40673664,-0.58778524,0.06975647,0.6946584,0.9945219,0.82903755,0.27563736,-0.40673664,0.20791169,0.7880108,0.99939084,0.7431448,0.1391731,-0.52991927,-0.95105654,0.8660254,0.9848077,0.64278764,0.0],"x":[9.437184e7,2.594722e16,5.189444e16,7.784166e16,1.0378888e17,1.297361e17,1.5568332e17,1.8163054e17,2.0757776e17,2.3352498e17,2.594722e17,2.8541942e17,3.1136664e17,3.3731388e17,3.632611e17,3.8920832e17,4.1515552e17,4.4110276e17,4.6704997e17,4.929972e17,5.189444e17,5.4489164e17,5.7083885e17,5.9678605e17,6.227333e17,6.486805e17,6.7462776e17,7.005749e17,7.265222e17,7.524694e17,7.7841664e17,8.043638e17,8.3031105e17,8.562583e17,8.822055e17,9.081527e17,9.340999e17,9.600472e17,9.859944e17,1.0119416e18,1.0378888e18,1.06383605e18,1.0897833e18,1.11573046e18,1.1416777e18,1.1676249e18,1.1935721e18,1.2195193e18,1.2454666e18,1.2714138e18,1.297361e18,1.3233083e18,1.3492555e18,1.3752028e18,1.4011499e18,1.4270971e18,1.4530443e18,1.4789916e18,1.5049388e18,1.530886e18,1.5568333e18,1.5827805e18,1.6087276e18,1.6346749e18,1.6606221e18,1.6865693e18,1.7125166e18,1.7384638e18,1.764411e18,1.7903583e18,1.8163054e18,1.8422526e18,1.8681999e18,1.8941471e18,1.9200943e18,1.9460416e18,1.9719888e18,1.997936e18,2.0238831e18,2.0498304e18,2.0757776e18,2.1017249e18,2.1276721e18,2.1536193e18,2.1795666e18,2.2055138e18,2.2314609e18,2.2574081e18,2.2833554e18,2.3093026e18,2.3352497e18,2.361197e18,2.3871442e18,2.4130916e18,2.4390387e18,2.464986e18,2.4909331e18,2.5168805e18,2.5428276e18,2.5687747e18,2.594722e18,2.6206692e18,2.6466166e18,2.6725637e18,2.698511e18,2.7244581e18,2.7504055e18,2.7763526e18,2.8022997e18,2.828247e18,2.8541942e18,2.8801416e18,2.9060887e18,2.932036e18,2.9579831e18,2.9839302e18,3.0098776e18,3.0358247e18,3.061772e18,3.0877192e18,3.1136666e18,3.1396137e18,3.165561e18,3.1915081e18,3.2174552e18,3.2434026e18,3.2693497e18,3.295297e18,3.3212442e18,3.3471916e18,3.3731387e18,3.3990858e18,3.4250331e18,3.4509802e18,3.4769276e18,3.5028747e18,3.528822e18,3.5547692e18,3.5807166e18,3.6066637e18,3.6326108e18,3.6585581e18,3.6845052e18,3.7104526e18,3.7363997e18,3.762347e18,3.7882942e18,3.8142416e18,3.8401887e18,3.8661358e18,3.8920831e18,3.9180302e18,3.9439776e18,3.9699247e18,3.995872e18,4.0218192e18,4.0477663e18,4.0737137e18,4.0996608e18,4.1256081e18,4.1515552e18,4.1775026e18,4.2034497e18,4.229397e18,4.2553442e18,4.2812913e18,4.3072387e18,4.3331858e18,4.3591331e18,4.3850802e18,4.4110276e18,4.4369747e18,4.4629218e18,4.4888692e18,4.5148163e18,4.5407637e18,4.5667108e18,4.5926581e18,4.618605e18,4.6445526e18,4.6704994e18,4.696447e18,4.722394e18,4.7483416e18,4.7742884e18,4.800236e18,4.826183e18,4.8521305e18,4.8780773e18,4.9040247e18,4.929972e18,4.955919e18,4.9818663e18,5.0078137e18,5.033761e18,5.059708e18,5.085655e18,5.1116026e18,5.1375494e18,5.163497e18,5.189444e18,5.2153916e18,5.2413384e18,5.267286e18,5.293233e18,5.31918e18,5.3451273e18,5.3710747e18,5.397022e18,5.422969e18,5.4489163e18,5.4748637e18,5.500811e18,5.526758e18,5.552705e18,5.5786526e18,5.6045994e18,5.630547e18,5.656494e18,5.6824416e18,5.7083884e18,5.734336e18,5.760283e18,5.78623e18,5.8121773e18,5.8381247e18,5.864072e18,5.890019e18,5.9159663e18,5.9419137e18,5.9678605e18,5.993808e18,6.019755e18,6.0457026e18,6.0716494e18,6.097597e18,6.123544e18,6.1494916e18,6.1754384e18,6.201386e18,6.227333e18,6.25328e18,6.2792273e18,6.3051747e18,6.331122e18,6.357069e18,6.3830163e18,6.4089637e18,6.4349105e18,6.460858e18,6.486805e18,6.5127526e18,6.5386994e18,6.564647e18,6.590594e18,6.616541e18,6.6424884e18,6.668436e18,6.694383e18,6.72033e18,6.7462773e18,6.7722247e18,6.7981715e18,6.824119e18,6.8500663e18,6.8760137e18,6.9019605e18,6.927908e18,6.953855e18,6.9798026e18,7.0057494e18,7.031697e18,7.057644e18,7.083591e18,7.1095384e18,7.135486e18,7.161433e18,7.18738e18,7.2133273e18,7.2392747e18,7.2652215e18,7.291169e18,7.3171163e18,7.3430637e18,7.3690105e18,7.394958e18,7.420905e18,7.446852e18,7.4727994e18,7.498747e18,7.524694e18,7.550641e18,7.5765884e18,7.602536e18,7.628483e18,7.65443e18,7.6803773e18,7.7063247e18,7.7322715e18,7.758219e18,7.7841663e18,7.8101137e18,7.8360605e18,7.862008e18,7.887955e18,7.913902e18,7.9398494e18,7.965797e18,7.991744e18,8.017691e18,8.0436384e18,8.069586e18,8.0955326e18,8.12148e18,8.1474273e18,8.1733747e18,8.1993215e18,8.225269e18,8.2512163e18,8.277163e18,8.3031105e18,8.329058e18,8.355005e18,8.380952e18,8.4068994e18,8.432847e18,8.458794e18,8.484741e18,8.5106884e18,8.536636e18,8.5625826e18,8.58853e18,8.6144773e18,8.6404247e18,8.6663715e18,8.692319e18,8.7182663e18,8.744213e18,8.7701605e18,8.796108e18,8.822055e18,8.848002e18,8.8739494e18,8.899897e18,8.9258436e18,8.951791e18,8.9777384e18,9.003686e18,9.0296326e18,9.05558e18,9.0815273e18,9.1074747e18,9.1334215e18,9.159369e18,9.1853163e18,9.211263e18,9.23721e18,9.263158e18,9.289105e18,9.315053e18,9.340999e18,9.366946e18,9.392894e18,9.418841e18,9.444788e18,9.470736e18,9.496683e18,9.52263e18,9.548577e18,9.574524e18,9.600472e18,9.626419e18,9.652366e18,9.678314e18,9.704261e18,9.730207e18,9.756155e18,9.782102e18,9.808049e18,9.833997e18,9.859944e18,9.885892e18,9.911838e18,9.937785e18,9.963733e18,9.98968e18,1.0015627e19,1.0041575e19,1.0067522e19,1.0093468e19,1.0119416e19,1.0145363e19,1.017131e19,1.0197258e19,1.0223205e19,1.0249153e19,1.0275099e19,1.0301046e19,1.0326994e19,1.0352941e19,1.0378888e19,1.0404836e19,1.0430783e19,1.0456729e19,1.0482677e19,1.0508624e19,1.0534572e19,1.0560519e19,1.0586466e19,1.0612414e19,1.063836e19,1.0664307e19,1.0690255e19,1.0716202e19,1.0742149e19,1.0768097e19,1.0794044e19,1.0819992e19,1.0845938e19,1.0871885e19,1.0897833e19,1.092378e19,1.0949727e19,1.0975675e19,1.1001622e19,1.1027568e19,1.1053516e19,1.1079463e19,1.110541e19,1.1131358e19,1.1157305e19,1.1183253e19,1.1209199e19,1.1235146e19,1.1261094e19,1.1287041e19,1.1312988e19,1.1338936e19,1.1364883e19,1.1390829e19,1.1416777e19,1.1442724e19,1.1468672e19,1.1494619e19,1.1520566e19,1.1546514e19,1.157246e19,1.1598407e19,1.1624355e19,1.1650302e19,1.1676249e19,1.1702197e19,1.1728144e19,1.175409e19,1.1780038e19,1.1805985e19,1.1831933e19,1.185788e19,1.1883827e19,1.1909775e19,1.1935721e19,1.1961668e19,1.1987616e19,1.2013563e19,1.203951e19,1.2065458e19,1.2091405e19,1.2117352e19,1.2143299e19,1.2169246e19,1.2195194e19,1.2221141e19,1.2247088e19,1.2273036e19,1.2298983e19,1.2324929e19,1.2350877e19,1.2376824e19,1.2402772e19,1.2428719e19,1.2454666e19,1.2480614e19,1.250656e19,1.2532507e19,1.2558455e19,1.2584402e19,1.2610349e19,1.2636297e19,1.2662244e19,1.268819e19,1.2714138e19,1.2740085e19,1.2766033e19,1.279198e19,1.2817927e19,1.2843875e19,1.2869821e19,1.2895768e19,1.2921716e19,1.2947663e19,1.297361e19,1.2999558e19,1.3025505e19,1.3051452e19,1.3077399e19,1.3103346e19,1.3129294e19,1.3155241e19,1.3181188e19,1.3207136e19,1.3233082e19,1.3259029e19,1.3284977e19,1.3310924e19,1.3336872e19,1.3362819e19,1.3388766e19,1.3414713e19,1.344066e19,1.3466607e19,1.3492555e19,1.3518502e19,1.3544449e19,1.3570397e19,1.3596343e19,1.362229e19,1.3648238e19,1.3674185e19,1.3700133e19,1.372608e19,1.3752027e19,1.3777975e19,1.3803921e19,1.3829868e19,1.3855816e19,1.3881763e19,1.390771e19,1.3933658e19,1.3959605e19,1.3985552e19,1.4011499e19,1.4037446e19,1.4063394e19,1.4089341e19,1.4115288e19,1.4141236e19,1.4167182e19,1.4193129e19,1.4219077e19,1.4245024e19,1.4270972e19,1.4296919e19,1.4322866e19,1.4348813e19,1.437476e19,1.4400707e19,1.4426655e19,1.4452602e19,1.4478549e19,1.4504497e19,1.4530443e19,1.455639e19,1.4582338e19,1.4608285e19,1.4634233e19,1.466018e19,1.4686127e19,1.4712074e19,1.4738021e19,1.4763968e19,1.4789916e19,1.4815863e19,1.484181e19,1.4867758e19,1.4893704e19,1.4919652e19,1.4945599e19,1.4971546e19,1.4997494e19,1.5023441e19,1.5049388e19,1.5075335e19,1.5101282e19,1.5127229e19,1.5153177e19,1.5179124e19,1.5205072e19,1.5231019e19,1.5256966e19,1.5282913e19,1.530886e19,1.5334807e19,1.5360755e19,1.5386702e19,1.5412649e19,1.5438597e19,1.5464543e19,1.549049e19,1.5516438e19,1.5542385e19,1.5568333e19,1.559428e19,1.5620227e19,1.5646174e19,1.5672121e19,1.5698068e19,1.5724016e19,1.5749963e19,1.577591e19,1.5801858e19,1.5827804e19,1.5853752e19,1.5879699e19,1.5905646e19,1.5931594e19,1.5957541e19,1.5983488e19,1.6009435e19,1.6035382e19,1.6061329e19,1.6087277e19,1.6113224e19,1.6139172e19,1.6165119e19,1.6191065e19,1.6217013e19,1.624296e19,1.6268907e19,1.6294855e19,1.6320802e19,1.6346749e19,1.6372696e19,1.6398643e19,1.642459e19,1.6450538e19,1.6476485e19,1.6502433e19,1.652838e19,1.6554326e19,1.6580274e19,1.6606221e19,1.6632168e19,1.6658116e19,1.6684063e19,1.671001e19,1.6735958e19,1.6761904e19,1.6787852e19,1.6813799e19,1.6839746e19,1.6865694e19,1.6891641e19,1.6917588e19,1.6943535e19,1.6969482e19,1.6995429e19,1.7021377e19,1.7047324e19,1.7073272e19,1.7099219e19,1.7125165e19,1.7151113e19,1.717706e19,1.7203007e19,1.7228955e19,1.7254902e19,1.7280849e19,1.7306796e19,1.7332743e19,1.735869e19,1.7384638e19,1.7410585e19,1.7436533e19,1.746248e19,1.7488426e19,1.7514374e19,1.7540321e19,1.7566268e19,1.7592216e19,1.7618163e19,1.764411e19,1.7670057e19,1.7696004e19,1.7721952e19,1.7747899e19,1.7773846e19,1.7799794e19,1.7825741e19,1.7851687e19,1.7877635e19,1.7903582e19,1.7929529e19,1.7955477e19,1.7981424e19,1.8007372e19,1.8033319e19,1.8059265e19,1.8085213e19,1.811116e19,1.8137107e19,1.8163055e19,1.8189002e19,1.8214949e19,1.8240896e19,1.8266843e19,1.829279e19,1.8318738e19,1.8344685e19,1.8370633e19,1.839658e19,1.8422526e19,1.8448475e19,1.847442e19,1.8500367e19,1.8526316e19,1.8552262e19,1.857821e19,1.8604157e19,1.8630105e19,1.8656052e19,1.8681998e19,1.8707946e19,1.8733893e19,1.875984e19,1.8785787e19,1.8811736e19,1.8837682e19,1.886363e19,1.8889577e19,1.8915523e19,1.8941472e19,1.8967418e19,1.8993366e19,1.9019313e19,1.904526e19,1.9071207e19,1.9097154e19,1.9123102e19,1.9149048e19,1.9174997e19,1.9200943e19,1.9226892e19,1.9252838e19,1.9278784e19,1.9304733e19,1.9330679e19,1.9356627e19,1.9382574e19,1.9408522e19,1.9434468e19,1.9460415e19,1.9486363e19,1.951231e19,1.9538258e19,1.9564204e19,1.9590153e19,1.9616099e19,1.9642045e19,1.9667994e19,1.969394e19,1.9719888e19,1.9745835e19,1.9771783e19,1.979773e19,1.9823676e19,1.9849624e19,1.987557e19,1.990152e19,1.9927465e19,1.9953414e19,1.997936e19,2.0005306e19,2.0031255e19,2.00572e19,2.008315e19,2.0109096e19,2.0135044e19,2.016099e19,2.0186937e19,2.0212885e19,2.0238831e19,2.026478e19,2.0290726e19,2.0316675e19,2.034262e19,2.0368567e19,2.0394516e19,2.0420462e19,2.044641e19,2.0472357e19,2.0498305e19,2.0524252e19,2.0550198e19,2.0576146e19,2.0602093e19,2.062804e19,2.0653987e19,2.0679936e19,2.0705882e19,2.0731828e19,2.0757777e19,2.0783723e19,2.0809672e19,2.0835618e19,2.0861566e19,2.0887513e19,2.0913459e19,2.0939407e19,2.0965354e19,2.0991302e19,2.1017248e19,2.1043197e19,2.1069143e19,2.109509e19,2.1121038e19,2.1146984e19,2.1172933e19,2.1198879e19,2.1224827e19,2.1250774e19,2.127672e19,2.1302668e19,2.1328615e19,2.1354563e19,2.138051e19,2.1406458e19,2.1432404e19,2.145835e19,2.1484299e19,2.1510245e19,2.1536194e19,2.156214e19,2.1588088e19,2.1614035e19,2.1639983e19,2.166593e19,2.1691876e19,2.1717824e19,2.174377e19,2.176972e19,2.1795665e19,2.1821614e19,2.184756e19,2.1873506e19,2.1899455e19,2.19254e19,2.195135e19,2.1977296e19,2.2003244e19,2.202919e19,2.2055137e19,2.2081085e19,2.2107031e19,2.213298e19,2.2158926e19,2.2184875e19,2.221082e19,2.2236767e19,2.2262716e19,2.2288662e19,2.231461e19,2.2340557e19,2.2366505e19,2.2392452e19,2.2418398e19,2.2444346e19,2.2470293e19,2.249624e19,2.2522187e19,2.2548136e19,2.2574082e19,2.2600028e19,2.2625977e19,2.2651923e19,2.2677872e19,2.2703818e19,2.2729766e19,2.2755713e19,2.2781659e19,2.2807607e19,2.2833554e19,2.2859502e19,2.2885448e19,2.2911397e19,2.2937343e19,2.296329e19,2.2989238e19,2.3015184e19,2.3041133e19,2.3067079e19,2.3093027e19,2.3118974e19,2.314492e19,2.3170868e19,2.3196815e19,2.3222763e19,2.324871e19,2.3274658e19,2.3300604e19,2.332655e19,2.3352499e19,2.3378445e19,2.3404394e19,2.343034e19,2.3456288e19,2.3482235e19,2.350818e19,2.353413e19,2.3560076e19,2.3586024e19,2.361197e19,2.3637919e19,2.3663865e19,2.3689811e19,2.371576e19,2.3741706e19,2.3767655e19,2.37936e19,2.381955e19,2.3845496e19,2.3871442e19,2.389739e19,2.3923337e19,2.3949285e19,2.3975231e19,2.400118e19,2.4027126e19,2.4053072e19,2.407902e19,2.4104967e19,2.4130916e19,2.4156862e19,2.418281e19,2.4208757e19,2.4234703e19,2.4260651e19,2.4286598e19,2.4312546e19,2.4338493e19,2.436444e19,2.4390387e19,2.4416334e19,2.4442282e19,2.4468228e19,2.4494177e19,2.4520123e19,2.4546072e19,2.4572018e19,2.4597966e19,2.4623913e19,2.4649859e19,2.4675807e19,2.4701754e19,2.4727702e19,2.4753648e19,2.4779597e19,2.4805543e19,2.483149e19,2.4857438e19,2.4883384e19,2.4909333e19,2.4935279e19,2.4961227e19,2.4987174e19,2.501312e19,2.5039068e19,2.5065015e19,2.5090963e19,2.511691e19,2.5142858e19,2.5168804e19,2.519475e19,2.5220699e19,2.5246645e19,2.5272594e19,2.529854e19,2.5324488e19,2.5350435e19,2.537638e19,2.540233e19,2.5428276e19,2.5454224e19,2.548017e19,2.5506119e19,2.5532065e19,2.5558011e19,2.558396e19,2.5609906e19,2.5635855e19,2.56618e19,2.568775e19,2.5713696e19,2.5739642e19,2.576559e19,2.5791537e19,2.5817485e19,2.5843431e19,2.586938e19,2.5895326e19,2.5921272e19,2.594722e19,2.5973167e19,2.5999116e19,2.6025062e19,2.605101e19,2.6076957e19,2.6102903e19,2.6128851e19,2.6154798e19,2.6180746e19,2.6206693e19,2.623264e19,2.6258587e19,2.6284534e19,2.6310482e19,2.6336428e19,2.6362377e19,2.6388323e19,2.6414272e19,2.6440218e19,2.6466164e19,2.6492113e19,2.6518059e19,2.6544007e19,2.6569954e19,2.6595902e19,2.6621848e19,2.6647795e19,2.6673743e19,2.669969e19,2.6725638e19,2.6751584e19,2.6777533e19,2.6803479e19,2.6829425e19,2.6855374e19,2.688132e19,2.6907268e19,2.6933215e19,2.6959163e19,2.698511e19,2.7011056e19,2.7037004e19,2.706295e19,2.7088899e19,2.7114845e19,2.7140794e19,2.716674e19,2.7192686e19,2.7218635e19,2.724458e19,2.727053e19,2.7296476e19,2.7322424e19,2.734837e19,2.7374317e19,2.7400265e19,2.7426211e19,2.745216e19,2.7478106e19,2.7504055e19,2.753e19,2.755595e19,2.7581896e19,2.7607842e19,2.763379e19,2.7659737e19,2.7685685e19,2.7711631e19,2.773758e19,2.7763526e19,2.7789472e19,2.781542e19,2.7841367e19,2.7867316e19,2.7893262e19,2.791921e19,2.7945157e19,2.7971103e19,2.7997051e19,2.8022998e19,2.8048946e19,2.8074893e19,2.810084e19,2.8126787e19,2.8152734e19,2.8178682e19,2.8204628e19,2.8230577e19,2.8256523e19,2.8282472e19,2.8308418e19,2.8334364e19,2.8360313e19,2.8386259e19,2.8412207e19,2.8438154e19,2.8464102e19,2.8490048e19,2.8515995e19,2.8541943e19,2.856789e19,2.8593838e19,2.8619784e19,2.8645733e19,2.8671679e19,2.8697625e19,2.8723574e19,2.874952e19,2.8775468e19,2.8801415e19,2.8827363e19,2.885331e19,2.8879256e19,2.8905204e19,2.893115e19,2.8957099e19,2.8983045e19,2.9008994e19,2.903494e19,2.9060886e19,2.9086835e19,2.911278e19,2.913873e19,2.9164676e19,2.9190624e19,2.921657e19,2.9242517e19,2.9268465e19,2.9294411e19,2.932036e19,2.9346306e19,2.9372255e19,2.93982e19,2.9424147e19,2.9450096e19,2.9476042e19,2.950199e19,2.9527937e19,2.9553885e19,2.9579831e19,2.9605778e19,2.9631726e19,2.9657672e19,2.968362e19,2.9709567e19,2.9735516e19,2.9761462e19,2.9787408e19,2.9813357e19,2.9839303e19,2.9865251e19,2.9891198e19,2.9917146e19,2.9943093e19,2.9969039e19,2.9994987e19,3.0020934e19,3.0046882e19,3.0072828e19,3.0098777e19,3.0124723e19,3.015067e19,3.0176618e19,3.0202564e19,3.0228513e19,3.0254459e19,3.0280407e19,3.0306354e19,3.0332302e19,3.0358248e19,3.0384195e19,3.0410143e19,3.043609e19,3.0462038e19,3.0487984e19,3.0513933e19,3.0539879e19,3.0565825e19,3.0591774e19,3.061772e19,3.0643668e19,3.0669615e19,3.0695563e19,3.072151e19,3.0747456e19,3.0773404e19,3.079935e19,3.0825299e19,3.0851245e19,3.0877194e19,3.090314e19,3.0929086e19,3.0955035e19,3.098098e19,3.100693e19,3.1032876e19,3.1058824e19,3.108477e19,3.1110717e19,3.1136665e19,3.1162611e19,3.118856e19,3.1214506e19,3.1240455e19,3.12664e19,3.1292347e19,3.1318296e19,3.1344242e19,3.137019e19,3.1396137e19,3.1422085e19,3.1448031e19,3.1473978e19,3.1499926e19,3.1525872e19,3.155182e19,3.1577767e19,3.1603716e19,3.1629662e19,3.1655608e19,3.1681557e19,3.1707503e19,3.1733451e19,3.1759398e19,3.1785346e19,3.1811293e19,3.1837239e19,3.1863187e19,3.1889134e19,3.1915082e19,3.1941028e19,3.1966977e19,3.1992923e19,3.201887e19,3.2044818e19,3.2070764e19,3.2096713e19,3.2122659e19,3.2148607e19,3.2174554e19,3.22005e19,3.2226448e19,3.2252395e19,3.2278343e19,3.230429e19,3.2330238e19,3.2356184e19,3.238213e19,3.2408079e19,3.2434025e19,3.2459974e19,3.248592e19,3.2511868e19,3.2537815e19,3.256376e19,3.258971e19,3.2615656e19,3.2641604e19,3.266755e19,3.2693499e19,3.2719445e19,3.2745391e19,3.277134e19,3.2797286e19,3.2823235e19,3.284918e19,3.287513e19,3.2901076e19,3.2927022e19,3.295297e19,3.2978917e19,3.3004865e19,3.3030811e19,3.305676e19,3.3082706e19,3.3108652e19,3.31346e19,3.3160547e19,3.3186496e19,3.3212442e19,3.323839e19,3.3264337e19,3.3290285e19,3.3316231e19,3.3342178e19,3.3368126e19,3.3394072e19,3.342002e19,3.3445967e19,3.3471916e19,3.3497862e19,3.3523808e19,3.3549757e19,3.3575703e19,3.3601651e19,3.3627598e19,3.3653546e19,3.3679493e19,3.3705439e19,3.3731387e19,3.3757334e19,3.3783282e19,3.3809228e19,3.3835177e19,3.3861123e19,3.388707e19,3.3913018e19,3.3938964e19,3.3964913e19,3.3990859e19,3.4016807e19,3.4042754e19,3.40687e19,3.4094648e19,3.4120595e19,3.4146543e19,3.417249e19,3.4198438e19,3.4224384e19,3.425033e19,3.4276279e19,3.4302225e19,3.4328174e19,3.435412e19,3.4380068e19,3.4406015e19,3.443196e19,3.445791e19,3.4483856e19,3.4509804e19,3.453575e19,3.4561699e19,3.4587645e19,3.4613591e19,3.463954e19,3.4665486e19,3.4691435e19,3.471738e19,3.474333e19,3.4769276e19,3.4795222e19,3.482117e19,3.4847117e19,3.4873065e19,3.4899011e19,3.492496e19,3.4950906e19,3.4976852e19,3.50028e19,3.5028747e19,3.5054696e19,3.5080642e19,3.510659e19,3.5132537e19,3.5158483e19,3.5184431e19,3.5210378e19,3.5236326e19,3.5262272e19,3.528822e19,3.5314167e19,3.5340114e19,3.5366062e19,3.5392008e19,3.5417957e19,3.5443903e19,3.5469851e19,3.5495798e19,3.5521744e19,3.5547693e19,3.5573639e19,3.5599587e19,3.5625534e19,3.5651482e19,3.5677428e19,3.5703375e19,3.5729323e19,3.575527e19,3.5781218e19,3.5807164e19,3.5833113e19,3.5859059e19,3.5885005e19,3.5910954e19,3.59369e19,3.5962848e19,3.5988795e19,3.6014743e19,3.604069e19,3.6066638e19,3.6092584e19,3.611853e19,3.6144479e19,3.6170425e19,3.6196374e19,3.622232e19,3.6248268e19,3.6274215e19,3.630016e19,3.632611e19,3.6352056e19,3.6378004e19,3.640395e19,3.6429899e19,3.6455845e19,3.6481791e19,3.650774e19,3.6533686e19,3.6559635e19,3.658558e19,3.661153e19,3.6637476e19,3.6663422e19,3.668937e19,3.6715317e19,3.6741265e19,3.6767211e19,3.679316e19,3.6819106e19,3.6845052e19,3.6871e19,3.689695e19,3.6922893e19,3.694884e19,3.697479e19,3.7000735e19,3.7026683e19,3.705263e19,3.707858e19,3.7104524e19,3.7130472e19,3.715642e19,3.7182365e19,3.7208314e19,3.723426e19,3.726021e19,3.7286155e19,3.7312103e19,3.733805e19,3.7363996e19,3.7389944e19,3.7415893e19,3.744184e19,3.7467785e19,3.7493734e19,3.751968e19,3.754563e19,3.7571575e19,3.7597523e19,3.762347e19,3.7649416e19,3.7675364e19,3.7701313e19,3.772726e19,3.7753205e19,3.7779154e19,3.78051e19,3.7831046e19,3.7856995e19,3.7882943e19,3.790889e19,3.7934836e19,3.7960784e19,3.7986733e19,3.8012677e19,3.8038625e19,3.8064574e19,3.809052e19,3.8116466e19,3.8142415e19,3.8168363e19,3.8194307e19,3.8220256e19,3.8246204e19,3.8272153e19,3.8298097e19,3.8324045e19,3.8349994e19,3.8375938e19,3.8401886e19,3.8427835e19,3.8453783e19,3.8479727e19,3.8505676e19,3.8531624e19,3.855757e19,3.8583517e19,3.8609465e19,3.8635414e19,3.8661358e19,3.8687306e19,3.8713255e19,3.87392e19,3.8765147e19,3.8791096e19,3.8817044e19,3.884299e19,3.8868937e19,3.8894885e19,3.892083e19,3.8946778e19,3.8972726e19,3.8998675e19,3.902462e19,3.9050567e19,3.9076516e19,3.910246e19,3.912841e19,3.9154357e19,3.9180305e19,3.920625e19,3.9232198e19,3.9258146e19,3.928409e19,3.931004e19,3.9335987e19,3.9361936e19,3.938788e19,3.941383e19,3.9439777e19,3.946572e19,3.949167e19,3.9517618e19,3.9543566e19,3.956951e19,3.959546e19,3.9621407e19,3.964735e19,3.96733e19,3.969925e19,3.9725197e19,3.975114e19,3.977709e19,3.980304e19,3.982898e19,3.985493e19,3.988088e19,3.9906827e19,3.993277e19,3.995872e19,3.998467e19,4.0010612e19,4.003656e19,4.006251e19,4.008846e19,4.01144e19,4.014035e19,4.01663e19,4.0192243e19,4.021819e19,4.024414e19,4.027009e19,4.0296032e19,4.032198e19,4.034793e19,4.0373873e19,4.039982e19,4.042577e19,4.045172e19,4.0477663e19,4.050361e19,4.052956e19,4.0555504e19,4.0581452e19,4.06074e19,4.063335e19,4.0659293e19,4.068524e19,4.071119e19,4.0737135e19,4.0763083e19,4.078903e19,4.081498e19,4.0840924e19,4.0866872e19,4.089282e19,4.0918765e19,4.0944714e19,4.097066e19,4.099661e19,4.1022555e19,4.1048503e19,4.107445e19,4.1100396e19,4.1126344e19,4.1152293e19,4.117824e19,4.1204185e19,4.1230134e19,4.125608e19,4.1282026e19,4.1307975e19,4.1333923e19,4.135987e19,4.1385816e19,4.1411764e19,4.1437713e19,4.1463657e19,4.1489605e19,4.1515554e19,4.15415e19,4.1567446e19,4.1593395e19,4.1619343e19,4.1645287e19,4.1671236e19,4.1697184e19,4.1723133e19,4.1749077e19,4.1775025e19,4.1800974e19,4.1826918e19,4.1852866e19,4.1878815e19,4.1904763e19,4.1930707e19,4.1956656e19,4.1982604e19,4.200855e19,4.2034497e19,4.2060445e19,4.2086394e19,4.2112338e19,4.2138286e19,4.2164235e19,4.219018e19,4.2216127e19,4.2242076e19,4.2268024e19,4.229397e19,4.2319917e19,4.2345865e19,4.237181e19,4.2397758e19,4.2423706e19,4.2449655e19,4.24756e19,4.2501547e19,4.2527496e19,4.255344e19,4.257939e19,4.2605337e19,4.2631285e19,4.265723e19,4.2683178e19,4.2709126e19,4.273507e19,4.276102e19,4.2786967e19,4.2812916e19,4.283886e19,4.286481e19,4.2890757e19,4.29167e19,4.294265e19,4.2968598e19,4.2994546e19,4.302049e19,4.304644e19,4.3072387e19,4.309833e19,4.312428e19,4.315023e19,4.3176177e19,4.320212e19,4.322807e19,4.3254018e19,4.3279966e19,4.330591e19,4.333186e19,4.3357807e19,4.338375e19,4.34097e19,4.343565e19,4.3461597e19,4.348754e19,4.351349e19,4.353944e19,4.356538e19,4.359133e19,4.361728e19,4.3643227e19,4.366917e19,4.369512e19,4.372107e19,4.3747012e19,4.377296e19,4.379891e19,4.382486e19,4.38508e19,4.387675e19,4.39027e19,4.3928643e19,4.395459e19,4.398054e19,4.400649e19,4.4032432e19,4.405838e19,4.408433e19,4.4110273e19,4.413622e19,4.416217e19,4.418812e19,4.4214063e19,4.424001e19,4.426596e19,4.4291904e19,4.4317852e19,4.43438e19,4.436975e19,4.4395693e19,4.442164e19,4.444759e19,4.4473535e19,4.4499483e19,4.452543e19,4.455138e19,4.4577324e19,4.4603272e19,4.462922e19,4.4655165e19,4.4681114e19,4.470706e19,4.473301e19,4.4758955e19,4.4784903e19,4.481085e19,4.4836796e19,4.4862744e19,4.4888693e19,4.491464e19,4.4940585e19,4.4966534e19,4.499248e19,4.5018426e19,4.5044375e19,4.5070323e19,4.509627e19,4.5122216e19,4.5148164e19,4.5174113e19,4.5200057e19,4.5226005e19,4.5251954e19,4.52779e19,4.5303846e19,4.5329795e19,4.5355743e19,4.5381687e19,4.5407636e19,4.5433584e19,4.5459533e19,4.5485477e19,4.5511425e19,4.5537374e19,4.5563318e19,4.5589266e19,4.5615215e19,4.5641163e19,4.5667107e19,4.5693056e19,4.5719004e19,4.574495e19,4.5770897e19,4.5796845e19,4.5822794e19,4.5848738e19,4.5874686e19,4.5900635e19,4.592658e19,4.5952527e19,4.5978476e19,4.6004424e19,4.603037e19,4.6056317e19,4.6082265e19,4.610821e19,4.6134158e19,4.6160106e19,4.6186055e19,4.6212e19,4.6237947e19,4.6263896e19,4.628984e19,4.631579e19,4.6341737e19,4.6367685e19,4.639363e19,4.6419578e19,4.6445526e19,4.647147e19,4.649742e19,4.6523367e19,4.6549316e19,4.657526e19,4.660121e19,4.6627157e19,4.66531e19,4.667905e19,4.6704998e19,4.6730946e19,4.675689e19,4.678284e19,4.6808787e19,4.683473e19,4.686068e19,4.688663e19,4.6912577e19,4.693852e19,4.696447e19,4.6990418e19,4.701636e19,4.704231e19,4.706826e19,4.7094207e19,4.712015e19,4.71461e19,4.717205e19,4.7197992e19,4.722394e19,4.724989e19,4.7275838e19,4.730178e19,4.732773e19,4.735368e19,4.7379623e19,4.740557e19,4.743152e19,4.745747e19,4.7483412e19,4.750936e19,4.753531e19,4.7561253e19,4.75872e19,4.761315e19,4.76391e19,4.7665043e19,4.769099e19,4.771694e19,4.7742884e19,4.7768832e19,4.779478e19,4.782073e19,4.7846673e19,4.787262e19,4.789857e19,4.7924514e19,4.7950463e19,4.797641e19,4.800236e19,4.8028304e19,4.8054252e19,4.80802e19,4.8106145e19,4.8132093e19,4.815804e19,4.818399e19,4.8209934e19,4.8235883e19,4.826183e19,4.8287776e19,4.8313724e19,4.8339672e19,4.836562e19,4.8391565e19,4.8417513e19,4.844346e19,4.8469406e19,4.8495355e19,4.8521303e19,4.854725e19,4.8573196e19,4.8599144e19,4.8625092e19,4.8651037e19,4.8676985e19,4.8702934e19,4.872888e19,4.8754826e19,4.8780775e19,4.8806723e19,4.8832667e19,4.8858616e19,4.8884564e19,4.8910513e19,4.8936457e19,4.8962405e19,4.8988354e19,4.90143e19,4.9040246e19,4.9066195e19,4.9092143e19,4.9118087e19,4.9144036e19,4.9169984e19,4.9195933e19,4.9221877e19,4.9247825e19,4.9273774e19,4.9299718e19,4.9325666e19,4.9351615e19,4.9377563e19,4.9403507e19,4.9429456e19,4.9455404e19,4.948135e19,4.9507297e19,4.9533245e19,4.9559194e19,4.9585138e19,4.9611086e19,4.9637035e19,4.966298e19,4.9688927e19,4.9714876e19,4.9740824e19,4.976677e19,4.9792717e19,4.9818665e19,4.984461e19,4.9870558e19,4.9896506e19,4.9922455e19,4.99484e19,4.9974347e19,5.0000296e19,5.002624e19,5.005219e19,5.0078137e19,5.0104085e19,5.013003e19,5.0155978e19,5.0181926e19,5.020787e19,5.023382e19,5.0259767e19,5.0285716e19,5.031166e19,5.033761e19,5.0363557e19,5.03895e19,5.041545e19,5.0441398e19,5.0467346e19,5.049329e19,5.051924e19,5.0545187e19,5.057113e19,5.059708e19,5.062303e19,5.0648977e19,5.067492e19,5.070087e19,5.0726818e19,5.075276e19,5.077871e19,5.080466e19,5.0830607e19,5.085655e19,5.08825e19,5.090845e19,5.0934392e19,5.096034e19,5.098629e19,5.1012238e19,5.103818e19,5.106413e19,5.109008e19,5.1116023e19,5.114197e19,5.116792e19,5.119387e19,5.1219812e19,5.124576e19,5.127171e19,5.1297653e19,5.13236e19,5.134955e19,5.13755e19,5.1401443e19,5.142739e19,5.145334e19,5.1479284e19,5.1505232e19,5.153118e19,5.155713e19,5.1583073e19,5.160902e19,5.163497e19,5.1660914e19,5.1686863e19,5.171281e19,5.173876e19,5.1764704e19,5.1790652e19,5.18166e19,5.1842545e19,5.1868493e19,5.189444e19,5.192039e19,5.1946334e19,5.1972283e19,5.199823e19,5.2024176e19,5.2050124e19,5.2076072e19,5.210202e19,5.2127965e19,5.2153913e19,5.217986e19,5.2205806e19,5.2231755e19,5.2257703e19,5.228365e19,5.2309596e19,5.2335544e19,5.2361492e19,5.2387437e19,5.2413385e19,5.2439334e19,5.246528e19,5.2491226e19,5.2517175e19,5.2543123e19,5.2569067e19,5.2595016e19,5.2620964e19,5.2646913e19,5.2672857e19,5.2698805e19,5.2724754e19,5.2750698e19,5.2776646e19,5.2802595e19,5.2828543e19,5.2854487e19,5.2880436e19,5.2906384e19,5.293233e19,5.2958277e19,5.2984225e19,5.3010174e19,5.3036118e19,5.3062066e19,5.3088015e19,5.311396e19,5.3139907e19,5.3165856e19,5.3191804e19,5.321775e19,5.3243697e19,5.3269645e19,5.329559e19,5.3321538e19,5.3347486e19,5.3373435e19,5.339938e19,5.3425327e19,5.3451276e19,5.347722e19,5.350317e19,5.3529117e19,5.3555065e19,5.358101e19,5.3606958e19,5.3632906e19,5.365885e19,5.36848e19,5.3710747e19,5.3736696e19,5.376264e19,5.378859e19,5.3814537e19,5.384048e19,5.386643e19,5.3892378e19,5.3918326e19,5.394427e19,5.397022e19,5.3996167e19,5.402211e19,5.404806e19,5.407401e19,5.4099957e19,5.41259e19,5.415185e19,5.4177798e19,5.420374e19,5.422969e19,5.425564e19,5.4281587e19,5.430753e19,5.433348e19,5.435943e19,5.4385372e19,5.441132e19,5.443727e19,5.4463218e19,5.448916e19,5.451511e19,5.454106e19,5.4567003e19,5.459295e19,5.46189e19,5.464485e19,5.4670792e19,5.469674e19,5.472269e19,5.4748633e19,5.477458e19,5.480053e19,5.482648e19,5.4852423e19,5.487837e19,5.490432e19,5.493027e19,5.4956212e19,5.498216e19,5.500811e19,5.5034053e19,5.506e19,5.508595e19,5.51119e19,5.5137843e19,5.516379e19,5.518974e19,5.5215684e19,5.5241632e19,5.526758e19,5.529353e19,5.5319473e19,5.534542e19,5.537137e19,5.5397314e19,5.5423263e19,5.544921e19,5.547516e19,5.5501104e19,5.5527052e19,5.5553e19,5.5578945e19,5.5604893e19,5.563084e19,5.565679e19,5.5682734e19,5.5708683e19,5.573463e19,5.5760576e19,5.5786524e19,5.5812472e19,5.583842e19,5.5864365e19,5.5890313e19,5.591626e19,5.5942206e19,5.5968155e19,5.5994103e19,5.602005e19,5.6045996e19,5.6071944e19,5.6097892e19,5.6123837e19,5.6149785e19,5.6175734e19,5.620168e19,5.6227626e19,5.6253575e19,5.6279523e19,5.6305467e19,5.6331416e19,5.6357364e19,5.6383313e19,5.6409257e19,5.6435205e19,5.6461154e19,5.6487098e19,5.6513046e19,5.6538995e19,5.6564943e19,5.6590887e19,5.6616836e19,5.6642784e19,5.666873e19,5.6694677e19,5.6720625e19,5.6746574e19,5.6772518e19,5.6798466e19,5.6824415e19,5.685036e19,5.6876307e19,5.6902256e19,5.6928204e19,5.695415e19,5.6980097e19,5.7006045e19,5.703199e19,5.7057938e19,5.7083886e19,5.7109835e19,5.713578e19,5.7161727e19,5.7187676e19,5.721362e19,5.723957e19,5.7265517e19,5.7291465e19,5.731741e19,5.7343358e19,5.7369306e19,5.739525e19,5.74212e19,5.7447147e19,5.7473096e19,5.749904e19,5.752499e19,5.7550937e19,5.757688e19,5.760283e19,5.7628778e19,5.7654726e19,5.768067e19,5.770662e19,5.7732567e19,5.775851e19,5.778446e19,5.781041e19,5.7836357e19,5.78623e19,5.788825e19,5.7914198e19,5.794014e19,5.796609e19,5.799204e19,5.8017987e19,5.804393e19,5.806988e19,5.809583e19,5.8121772e19,5.814772e19,5.817367e19,5.8199618e19,5.822556e19,5.825151e19,5.827746e19,5.8303403e19,5.832935e19,5.83553e19,5.838125e19,5.8407192e19,5.843314e19,5.845909e19,5.8485033e19,5.851098e19,5.853693e19,5.856288e19,5.8588823e19,5.861477e19,5.864072e19,5.8666664e19,5.8692612e19,5.871856e19,5.874451e19,5.8770453e19,5.87964e19,5.882235e19,5.8848294e19,5.8874243e19,5.890019e19,5.892614e19,5.8952084e19,5.8978032e19,5.900398e19,5.9029925e19,5.9055873e19,5.908182e19,5.910777e19,5.9133714e19,5.9159663e19,5.918561e19,5.9211555e19,5.9237504e19,5.9263452e19,5.92894e19,5.9315345e19,5.9341293e19,5.936724e19,5.9393186e19,5.9419134e19,5.9445083e19,5.947103e19,5.9496976e19,5.9522924e19,5.9548872e19,5.9574817e19,5.9600765e19,5.9626713e19,5.965266e19,5.9678606e19,5.9704555e19,5.9730503e19,5.9756447e19,5.9782396e19,5.9808344e19,5.9834292e19,5.9860237e19,5.9886185e19,5.9912134e19,5.9938078e19,5.9964026e19,5.9989975e19,6.0015923e19,6.0041867e19,6.0067816e19,6.0093764e19,6.011971e19,6.0145657e19,6.0171605e19,6.0197554e19,6.0223498e19,6.0249446e19,6.0275395e19,6.030134e19,6.0327287e19,6.0353236e19,6.0379184e19,6.040513e19,6.0431077e19,6.0457025e19,6.048297e19,6.0508918e19,6.0534866e19,6.0560815e19,6.058676e19,6.0612707e19,6.0638656e19,6.0664604e19,6.069055e19,6.0716497e19,6.0742445e19,6.076839e19,6.0794338e19,6.0820286e19,6.0846235e19,6.087218e19,6.0898127e19,6.0924076e19,6.095002e19,6.097597e19,6.1001917e19,6.1027865e19,6.105381e19,6.1079758e19,6.1105706e19,6.113165e19,6.11576e19,6.1183547e19,6.1209496e19,6.123544e19,6.126139e19,6.1287337e19,6.131328e19,6.133923e19,6.1365178e19,6.1391126e19,6.141707e19,6.144302e19,6.1468967e19,6.149491e19,6.152086e19,6.154681e19,6.1572757e19,6.15987e19,6.162465e19,6.1650598e19,6.167654e19,6.170249e19,6.172844e19,6.1754387e19,6.178033e19,6.180628e19,6.183223e19,6.1858172e19,6.188412e19,6.191007e19,6.1936018e19,6.196196e19,6.198791e19,6.201386e19,6.2039803e19,6.206575e19,6.20917e19,6.211765e19,6.2143592e19,6.216954e19,6.219549e19,6.2221433e19,6.224738e19,6.227333e19,6.229928e19,6.2325223e19,6.235117e19,6.237712e19,6.2403064e19,6.2429012e19,6.245496e19,6.248091e19,6.2506853e19,6.25328e19,6.255875e19,6.2584694e19,6.2610643e19,6.263659e19,6.266254e19,6.2688484e19,6.2714432e19,6.274038e19,6.2766325e19,6.2792273e19,6.281822e19,6.284417e19,6.2870114e19,6.2896063e19,6.292201e19,6.2947955e19,6.2973904e19,6.2999852e19,6.30258e19,6.3051745e19,6.3077693e19,6.310364e19,6.3129586e19,6.3155534e19,6.3181483e19,6.320743e19,6.3233376e19,6.3259324e19,6.3285272e19,6.3311217e19,6.3337165e19,6.3363113e19,6.338906e19,6.3415006e19,6.3440955e19,6.3466903e19,6.3492847e19,6.3518796e19,6.3544744e19,6.3570692e19,6.3596637e19,6.3622585e19,6.3648534e19,6.3674478e19,6.3700426e19,6.3726375e19,6.3752323e19,6.3778267e19,6.3804216e19,6.3830164e19,6.385611e19,6.3882057e19,6.3908005e19,6.3933954e19,6.3959898e19,6.3985846e19,6.4011795e19,6.403774e19,6.4063687e19,6.4089636e19,6.4115584e19,6.414153e19,6.4167477e19,6.4193425e19,6.421937e19,6.4245318e19,6.4271266e19,6.4297215e19,6.432316e19,6.4349107e19,6.4375056e19,6.4401e19,6.442695e19,6.4452897e19,6.4478845e19,6.450479e19,6.4530738e19,6.4556686e19,6.458263e19,6.460858e19,6.4634527e19,6.4660476e19,6.468642e19,6.471237e19,6.4738317e19,6.476426e19,6.479021e19,6.4816158e19,6.4842106e19,6.486805e19,6.4894e19,6.4919947e19,6.494589e19,6.497184e19,6.499779e19,6.5023737e19,6.504968e19,6.507563e19,6.5101578e19,6.512752e19,6.515347e19,6.517942e19,6.5205367e19,6.523131e19,6.525726e19,6.528321e19,6.5309152e19,6.53351e19,6.536105e19,6.5386998e19,6.541294e19,6.543889e19,6.546484e19,6.5490783e19,6.551673e19,6.554268e19,6.556863e19,6.5594572e19,6.562052e19,6.564647e19,6.5672413e19,6.569836e19,6.572431e19,6.575026e19,6.5776203e19,6.580215e19,6.58281e19,6.5854044e19,6.5879992e19,6.590594e19,6.593189e19,6.5957833e19,6.598378e19,6.600973e19,6.6035674e19,6.6061623e19,6.608757e19,6.611352e19,6.6139464e19,6.6165412e19,6.619136e19,6.6217305e19,6.6243253e19,6.62692e19,6.629515e19,6.6321094e19,6.6347043e19,6.637299e19,6.639894e19,6.6424884e19,6.6450832e19,6.647678e19,6.6502725e19,6.6528673e19,6.655462e19,6.658057e19,6.6606514e19,6.6632463e19,6.665841e19,6.6684355e19,6.6710304e19,6.6736252e19,6.67622e19,6.6788145e19,6.6814093e19,6.684004e19,6.6865986e19,6.6891934e19,6.6917883e19,6.694383e19,6.6969776e19,6.6995724e19,6.7021672e19,6.7047617e19,6.7073565e19,6.7099513e19,6.712546e19,6.7151406e19,6.7177355e19,6.7203303e19,6.7229247e19,6.7255196e19,6.7281144e19,6.7307092e19,6.7333037e19,6.7358985e19,6.7384934e19,6.7410878e19,6.7436826e19,6.7462775e19,6.7488723e19,6.7514667e19,6.7540616e19,6.7566564e19,6.759251e19,6.7618457e19,6.7644405e19,6.7670354e19,6.7696298e19,6.7722246e19,6.7748195e19,6.777414e19,6.7800087e19,6.7826036e19,6.7851984e19,6.787793e19,6.7903877e19,6.7929825e19,6.795577e19,6.7981718e19,6.8007666e19,6.8033615e19,6.805956e19,6.8085507e19,6.8111456e19,6.81374e19,6.816335e19,6.8189297e19,6.8215245e19,6.824119e19,6.8267138e19,6.8293086e19,6.831903e19,6.834498e19,6.8370927e19,6.8396876e19,6.842282e19,6.844877e19,6.8474717e19,6.850066e19,6.852661e19,6.8552558e19,6.8578506e19,6.860445e19,6.86304e19,6.8656347e19,6.868229e19,6.870824e19,6.873419e19,6.8760137e19,6.878608e19,6.881203e19,6.8837978e19,6.886392e19,6.888987e19,6.891582e19,6.8941767e19,6.896771e19,6.899366e19,6.901961e19,6.9045552e19,6.90715e19,6.909745e19,6.9123398e19,6.914934e19,6.917529e19,6.920124e19,6.9227183e19,6.925313e19,6.927908e19,6.930503e19,6.9330972e19,6.935692e19,6.938287e19,6.9408813e19,6.943476e19,6.946071e19,6.948666e19,6.9512603e19,6.953855e19,6.95645e19,6.9590444e19,6.9616392e19,6.964234e19,6.966829e19,6.9694233e19,6.972018e19,6.974613e19,6.9772074e19,6.9798023e19,6.982397e19,6.984992e19,6.9875864e19,6.9901812e19,6.992776e19,6.9953705e19,6.9979653e19,7.00056e19,7.003155e19,7.0057494e19,7.0083443e19,7.010939e19,7.0135335e19,7.0161284e19,7.0187232e19,7.021318e19,7.0239125e19,7.0265073e19,7.029102e19,7.0316966e19,7.0342914e19,7.0368863e19,7.039481e19,7.0420755e19,7.0446704e19,7.0472652e19,7.0498597e19,7.0524545e19,7.0550493e19,7.057644e19,7.0602386e19,7.0628334e19,7.0654283e19,7.0680227e19,7.0706176e19,7.0732124e19,7.0758072e19,7.0784017e19,7.0809965e19,7.0835913e19,7.0861858e19,7.0887806e19,7.0913754e19,7.0939703e19,7.0965647e19,7.0991596e19,7.1017544e19,7.104349e19,7.1069437e19,7.1095385e19,7.1121333e19,7.1147278e19,7.1173226e19,7.1199175e19,7.122512e19,7.1251067e19,7.1277016e19,7.1302964e19,7.132891e19,7.1354857e19,7.1380805e19,7.140675e19,7.1432698e19,7.1458646e19,7.1484595e19,7.151054e19,7.1536487e19,7.1562436e19,7.158838e19,7.161433e19,7.1640277e19,7.1666225e19,7.169217e19,7.1718118e19,7.1744066e19,7.177001e19,7.179596e19,7.1821907e19,7.1847856e19,7.18738e19,7.189975e19,7.1925697e19,7.195164e19,7.197759e19,7.2003538e19,7.2029486e19,7.205543e19,7.208138e19,7.2107327e19,7.2133276e19,7.215922e19,7.218517e19,7.2211117e19,7.223706e19,7.226301e19,7.2288958e19,7.2314906e19,7.234085e19,7.23668e19,7.2392747e19,7.241869e19,7.244464e19,7.247059e19,7.2496537e19,7.252248e19,7.254843e19,7.2574378e19,7.260032e19,7.262627e19,7.265222e19,7.2678167e19,7.270411e19,7.273006e19,7.275601e19,7.2781952e19,7.28079e19,7.283385e19,7.2859798e19,7.288574e19,7.291169e19,7.293764e19,7.2963583e19,7.298953e19,7.301548e19,7.304143e19,7.3067372e19,7.309332e19,7.311927e19,7.3145213e19,7.317116e19,7.319711e19,7.322306e19,7.3249003e19,7.327495e19,7.33009e19,7.3326844e19,7.3352792e19,7.337874e19,7.340469e19,7.3430633e19,7.345658e19,7.348253e19,7.3508474e19,7.3534423e19,7.356037e19,7.358632e19,7.3612264e19,7.3638212e19,7.366416e19,7.3690105e19,7.3716053e19,7.3742e19,7.376795e19,7.37939e19,7.381984e19,7.384579e19,7.3871735e19,7.389768e19,7.392363e19,7.394958e19,7.397553e19,7.400147e19,7.402742e19,7.405337e19,7.4079314e19,7.410526e19,7.413121e19,7.415716e19,7.41831e19,7.420905e19,7.4235e19,7.4260945e19,7.428689e19,7.431284e19,7.433879e19,7.436473e19,7.439068e19,7.441663e19,7.4442575e19,7.446852e19,7.449447e19,7.452042e19,7.454636e19,7.457231e19,7.459826e19,7.462421e19,7.4650154e19,7.46761e19,7.470205e19,7.472799e19,7.475394e19,7.477989e19,7.480584e19,7.4831785e19,7.485773e19,7.488368e19,7.490962e19,7.493557e19,7.496152e19,7.498747e19,7.5013416e19,7.503936e19,7.506531e19,7.509126e19,7.51172e19,7.514315e19,7.51691e19,7.519505e19,7.5220995e19,7.524694e19,7.527289e19,7.529883e19,7.532478e19,7.535073e19,7.537668e19,7.5402625e19,7.542857e19,7.545452e19,7.548046e19,7.550641e19,7.553236e19,7.555831e19,7.5584256e19,7.56102e19,7.563615e19,7.566209e19,7.568804e19,7.571399e19,7.573994e19,7.576589e19,7.5791835e19,7.581778e19,7.584372e19,7.586967e19,7.589562e19,7.592157e19,7.594752e19,7.5973465e19,7.599941e19,7.602535e19,7.60513e19,7.607725e19,7.61032e19,7.612915e19,7.61551e19,7.618104e19,7.620698e19,7.623293e19,7.625888e19,7.628483e19,7.631078e19,7.633673e19,7.6362675e19,7.638861e19,7.641456e19,7.644051e19,7.646646e19,7.649241e19,7.651836e19,7.6544305e19,7.6570245e19,7.659619e19,7.662214e19,7.664809e19,7.667404e19,7.669999e19,7.672594e19,7.6751875e19,7.677782e19,7.680377e19,7.682972e19,7.685567e19,7.688162e19,7.690757e19,7.693351e19,7.695945e19,7.69854e19,7.701135e19,7.70373e19,7.706325e19,7.70892e19,7.711514e19,7.7141085e19,7.716703e19,7.719298e19,7.721893e19,7.724488e19,7.727083e19,7.729677e19,7.7322715e19,7.734866e19,7.737461e19,7.740056e19,7.742651e19,7.745246e19,7.74784e19,7.750435e19,7.7530294e19,7.755624e19,7.758219e19,7.760814e19,7.763409e19,7.766003e19,7.768598e19,7.7711925e19,7.773787e19,7.776382e19,7.778977e19,7.781572e19,7.784166e19,7.786761e19,7.7893555e19,7.79195e19,7.794545e19,7.79714e19,7.799735e19,7.802329e19,7.804924e19,7.807519e19,7.8101134e19,7.812708e19,7.815303e19,7.817898e19,7.820492e19,7.823087e19,7.825682e19,7.8282765e19,7.830871e19,7.833466e19,7.836061e19,7.838655e19,7.84125e19,7.843845e19,7.8464396e19,7.849034e19,7.851629e19,7.854224e19,7.856818e19,7.859413e19,7.862008e19,7.864603e19,7.8671975e19,7.869792e19,7.872387e19,7.874981e19,7.877576e19,7.880171e19,7.882766e19,7.8853605e19,7.887955e19,7.89055e19,7.893144e19,7.895739e19,7.898334e19,7.900929e19,7.9035236e19,7.906118e19,7.908713e19,7.911307e19,7.913902e19,7.916497e19,7.919092e19,7.921687e19,7.9242815e19,7.926876e19,7.92947e19,7.932065e19,7.93466e19,7.937255e19,7.93985e19,7.9424445e19,7.945039e19,7.947633e19,7.950228e19,7.952823e19,7.955418e19,7.958013e19,7.960608e19,7.963202e19,7.965796e19,7.968391e19,7.970986e19,7.973581e19,7.976176e19,7.978771e19,7.9813655e19,7.983959e19,7.986554e19,7.989149e19,7.991744e19,7.994339e19,7.996934e19,7.9995285e19,8.0021225e19,8.004717e19,8.007312e19,8.009907e19,8.012502e19,8.015097e19,8.017692e19,8.0202855e19,8.02288e19,8.025475e19,8.02807e19,8.030665e19,8.03326e19,8.035855e19,8.038449e19,8.041043e19,8.043638e19,8.046233e19,8.048828e19,8.051423e19,8.054018e19,8.056612e19,8.0592065e19,8.061801e19,8.064396e19,8.066991e19,8.069586e19,8.072181e19,8.074775e19,8.0773695e19,8.079964e19,8.082559e19,8.085154e19,8.087749e19,8.090344e19,8.092938e19,8.095533e19,8.098127e19,8.100722e19,8.103317e19,8.105912e19,8.108507e19,8.111101e19,8.113696e19,8.1162905e19,8.118885e19,8.12148e19,8.124075e19,8.12667e19,8.129264e19,8.131859e19,8.1344535e19,8.137048e19,8.139643e19,8.142238e19,8.144833e19,8.147427e19,8.150022e19,8.152617e19,8.1552114e19,8.157806e19,8.160401e19,8.162996e19,8.16559e19,8.168185e19,8.17078e19,8.1733745e19,8.175969e19,8.178564e19,8.181159e19,8.183753e19,8.186348e19,8.188943e19,8.1915375e19,8.194132e19,8.196727e19,8.199322e19,8.201916e19,8.204511e19,8.207106e19,8.209701e19,8.2122954e19,8.21489e19,8.217485e19,8.220079e19,8.222674e19,8.225269e19,8.227864e19,8.2304585e19,8.233053e19,8.235648e19,8.238242e19,8.240837e19,8.243432e19,8.246027e19,8.2486216e19,8.251216e19,8.253811e19,8.256405e19,8.259e19,8.261595e19,8.26419e19,8.266785e19,8.2693795e19,8.271974e19,8.274568e19,8.277163e19,8.279758e19,8.282353e19,8.284948e19,8.2875425e19,8.290137e19,8.292731e19,8.295326e19,8.297921e19,8.300516e19,8.303111e19,8.3057056e19,8.3083e19,8.310894e19,8.313489e19,8.316084e19,8.318679e19,8.321274e19,8.323869e19,8.3264635e19,8.329057e19,8.331652e19,8.334247e19,8.336842e19,8.339437e19,8.342032e19,8.3446265e19,8.3472205e19,8.349815e19,8.35241e19,8.355005e19,8.3576e19,8.360195e19,8.36279e19,8.3653835e19,8.367978e19,8.370573e19,8.373168e19,8.375763e19,8.378358e19,8.380953e19,8.383547e19,8.386141e19,8.388736e19,8.391331e19,8.393926e19,8.396521e19,8.399116e19,8.40171e19,8.4043045e19,8.406899e19,8.409494e19,8.412089e19,8.414684e19,8.417279e19,8.419873e19,8.4224675e19,8.425062e19,8.427657e19,8.430252e19,8.432847e19,8.435442e19,8.438036e19,8.440631e19,8.443225e19,8.44582e19,8.448415e19,8.45101e19,8.453605e19,8.456199e19,8.458794e19,8.4613885e19,8.463983e19,8.466578e19,8.469173e19,8.471768e19,8.474362e19,8.476957e19,8.4795515e19,8.482146e19,8.484741e19,8.487336e19,8.489931e19,8.492525e19,8.49512e19,8.497715e19,8.5003094e19,8.502904e19,8.505499e19,8.508094e19,8.510688e19,8.513283e19,8.515878e19,8.5184725e19,8.521067e19,8.523662e19,8.526257e19,8.528851e19,8.531446e19,8.534041e19,8.5366355e19,8.53923e19,8.541825e19,8.54442e19,8.547014e19,8.549609e19,8.552204e19,8.554799e19,8.5573934e19,8.559988e19,8.562583e19,8.565177e19,8.567772e19,8.570367e19,8.572962e19,8.5755565e19,8.578151e19,8.580746e19,8.58334e19,8.585935e19,8.58853e19,8.591125e19,8.5937196e19,8.596314e19,8.598909e19,8.601503e19,8.604098e19,8.606693e19,8.609288e19,8.611883e19,8.6144775e19,8.617072e19,8.619666e19,8.622261e19,8.624856e19,8.627451e19,8.630046e19,8.6326405e19,8.635235e19,8.637829e19,8.640424e19,8.643019e19,8.645614e19,8.648209e19,8.6508036e19,8.653398e19,8.655993e19,8.658587e19,8.661182e19,8.663777e19,8.666372e19,8.668967e19,8.6715615e19,8.674156e19,8.67675e19,8.679345e19,8.68194e19,8.684535e19,8.68713e19,8.6897245e19,8.692319e19,8.694913e19,8.697508e19,8.700103e19,8.702698e19,8.705293e19,8.707888e19,8.710482e19,8.713076e19,8.715671e19,8.718266e19,8.720861e19,8.723456e19,8.726051e19,8.7286455e19,8.731239e19,8.733834e19,8.736429e19,8.739024e19,8.741619e19,8.744214e19,8.7468085e19,8.7494025e19,8.751997e19,8.754592e19,8.757187e19,8.759782e19,8.762377e19,8.764972e19,8.7675655e19,8.77016e19,8.772755e19,8.77535e19,8.777945e19,8.78054e19,8.783135e19,8.785729e19,8.788323e19,8.790918e19,8.793513e19,8.796108e19,8.798703e19,8.801298e19,8.803892e19,8.8064865e19,8.809081e19,8.811676e19,8.814271e19,8.816866e19,8.819461e19,8.822055e19,8.8246495e19,8.827244e19,8.829839e19,8.832434e19,8.835029e19,8.837624e19,8.840218e19,8.842813e19,8.845407e19,8.848002e19,8.850597e19,8.853192e19,8.855787e19,8.858381e19,8.860976e19,8.8635705e19,8.866165e19,8.86876e19,8.871355e19,8.87395e19,8.876544e19,8.879139e19,8.8817335e19,8.884328e19,8.886923e19,8.889518e19,8.892113e19,8.894707e19,8.897302e19,8.899897e19,8.9024914e19,8.905086e19,8.907681e19,8.910276e19,8.91287e19,8.915465e19,8.91806e19,8.9206545e19,8.923249e19,8.925844e19,8.928439e19,8.931033e19,8.933628e19,8.936223e19,8.9388175e19,8.941412e19,8.944007e19,8.946602e19,8.949196e19,8.951791e19,8.954386e19,8.956981e19,8.9595754e19,8.96217e19,8.964765e19,8.967359e19,8.969954e19,8.972549e19,8.975144e19,8.9777385e19,8.980333e19,8.982928e19,8.985522e19,8.988117e19,8.990712e19,8.993307e19,8.9959016e19,8.998496e19,9.001091e19,9.003685e19,9.00628e19,9.008875e19,9.01147e19,9.014065e19,9.0166595e19,9.019254e19,9.021848e19,9.024443e19,9.027038e19,9.029633e19,9.032228e19,9.0348225e19,9.037417e19,9.040011e19,9.042606e19,9.045201e19,9.047796e19,9.050391e19,9.0529856e19,9.05558e19,9.058174e19,9.060769e19,9.063364e19,9.065959e19,9.068554e19,9.071149e19,9.0737435e19,9.076337e19,9.078932e19,9.081527e19,9.084122e19,9.086717e19,9.089312e19,9.0919065e19,9.0945005e19,9.097095e19,9.09969e19,9.102285e19,9.10488e19,9.107475e19,9.11007e19,9.1126635e19,9.115258e19,9.117853e19,9.120448e19,9.123043e19,9.125638e19,9.128233e19,9.130827e19,9.133421e19,9.136016e19,9.138611e19,9.141206e19,9.143801e19,9.146396e19,9.14899e19,9.1515845e19,9.154179e19,9.156774e19,9.159369e19,9.161964e19,9.164559e19,9.167153e19,9.1697475e19,9.172342e19,9.174937e19,9.177532e19,9.180127e19,9.182722e19,9.185316e19,9.187911e19,9.190505e19,9.1931e19,9.195695e19,9.19829e19,9.200885e19,9.203479e19,9.206074e19,9.2086685e19,9.211263e19,9.213858e19,9.216453e19,9.219048e19,9.221642e19,9.224237e19,9.2268315e19,9.229426e19,9.232021e19,9.234616e19,9.237211e19,9.239805e19,9.2424e19,9.244995e19,9.2475894e19,9.250184e19,9.252779e19,9.255374e19,9.257968e19,9.260563e19,9.263158e19,9.2657525e19,9.268347e19,9.270942e19,9.273537e19,9.276131e19,9.278726e19,9.281321e19,9.2839155e19,9.28651e19,9.289105e19,9.2917e19,9.294294e19,9.296889e19,9.299484e19,9.302079e19,9.3046734e19,9.307268e19,9.309863e19,9.312457e19,9.315052e19,9.317647e19,9.320242e19,9.3228365e19,9.325431e19,9.328026e19,9.33062e19,9.333215e19,9.33581e19,9.338405e19,9.3409996e19,9.343594e19,9.346189e19,9.348783e19,9.351378e19,9.353973e19,9.356568e19,9.359163e19,9.3617574e19,9.364352e19,9.366946e19,9.369541e19,9.372136e19,9.374731e19,9.377326e19,9.3799205e19,9.382515e19,9.385109e19,9.387704e19,9.390299e19,9.392894e19,9.395489e19,9.3980836e19,9.400678e19,9.403272e19,9.405867e19,9.408462e19,9.411057e19,9.413652e19,9.416247e19,9.4188415e19,9.421435e19,9.42403e19,9.426625e19,9.42922e19,9.431815e19,9.43441e19,9.4370045e19,9.4395985e19,9.442193e19,9.444788e19,9.447383e19,9.449978e19,9.452573e19,9.4551676e19,9.4577615e19,9.460356e19,9.462951e19,9.465546e19,9.468141e19,9.470736e19,9.473331e19,9.475925e19,9.478519e19,9.481114e19,9.483709e19,9.486304e19,9.488899e19,9.491494e19,9.494088e19,9.4966825e19,9.499277e19,9.501872e19,9.504467e19,9.507062e19,9.509657e19,9.512251e19,9.5148455e19,9.51744e19,9.520035e19,9.52263e19,9.525225e19,9.52782e19,9.530414e19,9.533009e19,9.535603e19,9.538198e19,9.540793e19,9.543388e19,9.545983e19,9.548577e19,9.551172e19,9.5537665e19,9.556361e19,9.558956e19,9.561551e19,9.564146e19,9.56674e19,9.569335e19,9.5719295e19,9.574524e19,9.577119e19,9.579714e19,9.582309e19,9.584903e19,9.587498e19,9.590093e19,9.592687e19,9.595282e19,9.597877e19,9.600472e19,9.603066e19,9.605661e19,9.608256e19,9.6108505e19,9.613445e19,9.61604e19,9.618635e19,9.621229e19,9.623824e19,9.626419e19,9.6290135e19,9.631608e19,9.634203e19,9.636798e19,9.639392e19,9.641987e19,9.644582e19,9.647177e19,9.6497714e19,9.652366e19,9.654961e19,9.657555e19,9.66015e19,9.662745e19,9.66534e19,9.6679345e19,9.670529e19,9.673124e19,9.675718e19,9.678313e19,9.680908e19,9.683503e19,9.6860975e19,9.688692e19,9.691287e19,9.693881e19,9.696476e19,9.699071e19,9.701666e19,9.704261e19,9.7068554e19,9.70945e19,9.712044e19,9.714639e19,9.717234e19,9.719829e19,9.722424e19,9.7250185e19,9.727613e19,9.730207e19,9.732802e19,9.735397e19,9.737992e19,9.740587e19,9.7431816e19,9.745776e19,9.74837e19,9.750965e19,9.75356e19,9.756155e19,9.75875e19,9.761345e19,9.7639395e19,9.766533e19,9.769128e19,9.771723e19,9.774318e19,9.776913e19,9.779508e19,9.7821025e19,9.7846965e19,9.787291e19,9.789886e19,9.792481e19,9.795076e19,9.797671e19,9.8002656e19,9.80286e19,9.805454e19,9.808049e19,9.810644e19,9.813239e19,9.815834e19,9.818429e19,9.8210235e19,9.823617e19,9.826212e19,9.828807e19,9.831402e19,9.833997e19,9.836592e19,9.8391865e19,9.8417805e19,9.844375e19,9.84697e19,9.849565e19,9.85216e19,9.854755e19,9.85735e19,9.8599435e19,9.862538e19,9.865133e19,9.867728e19,9.870323e19,9.872918e19,9.875513e19,9.878107e19,9.880701e19,9.883296e19,9.885891e19,9.888486e19,9.891081e19,9.893676e19,9.89627e19,9.8988645e19,9.901459e19,9.904054e19,9.906649e19,9.909244e19,9.911839e19,9.914433e19,9.9170275e19,9.919622e19,9.922217e19,9.924812e19,9.927407e19,9.930002e19,9.932596e19,9.935191e19,9.937785e19,9.94038e19,9.942975e19,9.94557e19,9.948165e19,9.950759e19,9.953354e19,9.9559485e19,9.958543e19,9.961138e19,9.963733e19,9.966328e19,9.968922e19,9.971517e19,9.9741115e19,9.976706e19,9.979301e19,9.981896e19,9.984491e19,9.987085e19,9.98968e19,9.992275e19,9.994869e19,9.997464e19,1.0000059e20,1.0002654e20,1.0005248e20,1.0007843e20,1.0010438e20,1.00130325e20,1.0015627e20,1.0018222e20,1.0020817e20,1.0023411e20,1.0026006e20,1.0028601e20,1.00311955e20,1.003379e20,1.0036385e20,1.003898e20,1.0041574e20,1.0044169e20,1.0046764e20,1.0049359e20,1.00519534e20,1.0054548e20,1.0057143e20,1.0059737e20,1.0062332e20,1.0064927e20,1.0067522e20,1.00701165e20,1.0072711e20,1.0075306e20,1.00779e20,1.0080495e20,1.008309e20,1.0085685e20,1.00882795e20,1.0090874e20,1.0093469e20,1.0096063e20,1.0098658e20,1.0101253e20,1.0103848e20,1.0106443e20,1.01090374e20,1.0111632e20,1.0114226e20,1.0116821e20,1.0119416e20,1.0122011e20,1.0124606e20,1.01272005e20,1.0129795e20,1.0132389e20,1.0134984e20,1.0137579e20,1.0140174e20,1.0142769e20,1.01453636e20,1.0147958e20,1.0150552e20,1.0153147e20,1.0155742e20,1.0158337e20,1.0160932e20,1.0163527e20,1.01661215e20,1.0168715e20,1.017131e20,1.0173905e20,1.01765e20,1.0179095e20,1.018169e20,1.01842845e20,1.01868785e20,1.0189473e20,1.0192068e20,1.0194663e20,1.0197258e20,1.0199853e20,1.02024476e20,1.02050415e20,1.0207636e20,1.0210231e20,1.0212826e20,1.0215421e20,1.0218016e20,1.0220611e20,1.0223205e20,1.0225799e20,1.0228394e20,1.0230989e20,1.0233584e20,1.0236179e20,1.0238774e20,1.0241368e20,1.02439625e20,1.0246557e20,1.0249152e20,1.0251747e20,1.0254342e20,1.0256937e20,1.0259531e20,1.02621255e20,1.026472e20,1.0267315e20,1.026991e20,1.0272505e20,1.02751e20,1.0277694e20,1.0280289e20,1.0282883e20,1.0285478e20,1.0288073e20,1.0290668e20,1.0293263e20,1.0295857e20,1.0298452e20,1.03010465e20,1.0303641e20,1.0306236e20,1.0308831e20,1.0311426e20,1.031402e20,1.0316615e20,1.03192095e20,1.0321804e20,1.0324399e20,1.0326994e20,1.0329589e20,1.0332183e20,1.0334778e20,1.0337373e20,1.0339967e20,1.0342562e20,1.0345157e20,1.0347752e20,1.0350346e20,1.0352941e20,1.0355536e20,1.03581305e20,1.0360725e20,1.036332e20,1.0365915e20,1.0368509e20,1.0371104e20,1.0373699e20,1.03762935e20],"cosine":[1.0,0.034899496,-0.9975641,-0.104528464,0.99026805,0.17364818,-0.9781476,-0.2419219,0.9612617,0.309017,-0.9396926,-0.37460658,0.9135454,0.99026805,-0.88294756,-0.9975641,0.8480481,1.0,-0.809017,-0.9975641,0.76604444,0.99026805,-0.7193398,0.17364818,0.6691306,0.9612617,0.9612617,0.034899496,0.5591929,0.9135454,0.99026805,-0.104528464,0.43837115,0.8480481,1.0,-0.2419219,0.309017,0.76604444,0.99026805,-0.37460658,0.17364818,0.6691306,0.9612617,-0.5,0.034899496,-0.9781476,-0.9396926,-0.6156615,-0.104528464,0.43837115,0.8480481,1.0,0.8480481,0.43837115,-0.9975641,-0.809017,-0.37460658,0.17364818,0.6691306,0.9612617,0.9612617,0.6691306,-0.9781476,-0.9396926,-0.6156615,-0.104528464,0.43837115,0.8480481,1.0,0.8480481,-0.88294756,-0.9975641,-0.809017,-0.37460658,0.17364818,0.6691306,0.9612617,0.9612617,-0.7193398,-0.9781476,-0.9396926,-0.6156615,-0.104528464,0.43837115,0.8480481,1.0,-0.5,-0.88294756,-0.9975641,-0.809017,0.9135454,0.17364818,0.76604444,0.9612617,-0.2419219,0.6691306,-0.9781476,-0.37460658,-0.6156615,0.99026805,0.43837115,0.5591929,1.0,-0.5,0.43837115,-0.9975641,-0.6156615,-0.37460658,0.99026805,0.6691306,0.309017,0.9612617,-0.7193398,0.17364818,-0.9396926,0.76604444,-0.104528464,0.9135454,0.8480481,0.034899496,0.8480481,-0.88294756,-0.104528464,-0.809017,0.9135454,0.17364818,0.76604444,0.9612617,-0.2419219,0.6691306,-0.9781476,0.309017,-0.6156615,0.99026805,0.43837115,0.5591929,1.0,-0.5,0.43837115,-0.9975641,0.5591929,-0.37460658,0.99026805,0.6691306,0.309017,0.9612617,-0.7193398,0.17364818,-0.9396926,0.76604444,-0.104528464,0.9135454,0.8480481,0.034899496,0.8480481,-0.88294756,0.034899496,-0.809017,0.9135454,0.17364818,0.76604444,0.9612617,-0.2419219,0.6691306,-0.9781476,0.309017,-0.6156615,0.99026805,0.43837115,0.5591929,1.0,-0.5,-0.5,-0.9975641,0.5591929,-0.37460658,0.99026805,0.6691306,0.309017,0.9612617,0.6691306,-0.2419219,-0.9396926,-0.809017,0.17364818,0.9135454,0.8480481,0.034899496,-0.88294756,-0.88294756,-0.104528464,0.8480481,0.9135454,0.17364818,-0.7193398,-0.9396926,-0.2419219,0.6691306,0.9612617,0.309017,-0.6156615,-0.9975641,-0.37460658,0.5591929,1.0,0.43837115,-0.5,-0.9975641,-0.6156615,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9781476,-0.7193398,0.17364818,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.809017,0.034899496,0.8480481,0.8480481,0.034899496,-0.809017,-0.9396926,-0.104528464,0.76604444,0.9612617,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.6691306,0.99026805,0.43837115,-0.5,-0.9975641,-0.5,0.43837115,1.0,0.5591929,-0.37460658,-0.9781476,-0.6156615,0.309017,0.9612617,0.6691306,-0.2419219,-0.9396926,-0.809017,0.17364818,0.9135454,0.8480481,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.8480481,0.9135454,0.17364818,-0.809017,-0.9396926,-0.2419219,0.6691306,0.9612617,0.309017,-0.6156615,-0.9975641,-0.37460658,0.5591929,1.0,0.43837115,-0.5,-0.9975641,-0.6156615,0.43837115,0.99026805,0.6691306,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9612617,0.76604444,-0.104528464,-0.9396926,-0.809017,0.034899496,0.8480481,0.8480481,0.034899496,-0.809017,-0.9396926,-0.104528464,0.76604444,0.9612617,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.6691306,0.99026805,0.43837115,-0.6156615,-0.9975641,-0.5,0.43837115,1.0,0.5591929,-0.37460658,-0.9975641,-0.6156615,0.309017,0.9612617,0.6691306,-0.2419219,-0.9396926,-0.7193398,0.17364818,0.9135454,0.8480481,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.8480481,0.9135454,0.17364818,-0.809017,-0.9396926,-0.2419219,0.6691306,0.9612617,0.309017,-0.6156615,-0.9781476,-0.37460658,0.5591929,1.0,0.43837115,-0.5,-0.9975641,-0.5,0.43837115,0.99026805,0.6691306,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9612617,0.76604444,-0.104528464,-0.9396926,-0.809017,0.034899496,0.8480481,0.9135454,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.9612617,0.309017,-0.6156615,-0.9396926,-0.2419219,0.6691306,0.99026805,0.43837115,-0.5,-0.9975641,-0.37460658,0.5591929,1.0,0.5591929,-0.37460658,-0.9781476,-0.7193398,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.809017,0.034899496,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.8480481,0.034899496,-0.809017,-0.9396926,-0.2419219,0.6691306,0.99026805,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.5591929,1.0,0.5591929,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.6156615,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.88294756,0.17364818,0.9135454,0.8480481,0.034899496,-0.809017,-0.9396926,-0.2419219,0.8480481,0.9135454,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.5591929,0.9612617,0.309017,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.43837115,-0.5,-0.9975641,-0.6156615,0.309017,0.9612617,0.76604444,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9135454,0.8480481,0.034899496,-0.9396926,-0.809017,0.034899496,0.8480481,0.9135454,0.17364818,-0.7193398,-0.88294756,-0.104528464,0.76604444,0.9612617,0.309017,-0.6156615,-0.9975641,-0.5,0.6691306,0.99026805,0.43837115,-0.5,-0.9975641,-0.6156615,0.309017,1.0,0.5591929,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9135454,0.6691306,-0.2419219,-0.9396926,-0.809017,0.034899496,0.8480481,0.9135454,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.9612617,0.309017,-0.809017,-0.9396926,-0.2419219,0.6691306,0.99026805,0.43837115,-0.5,-0.9781476,-0.37460658,0.5591929,1.0,0.5591929,-0.37460658,-0.9781476,-0.5,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.809017,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.8480481,0.034899496,-0.809017,-0.9396926,-0.2419219,0.6691306,0.99026805,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.5591929,1.0,0.5591929,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9975641,-0.6156615,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.7193398,0.17364818,0.9135454,0.8480481,0.034899496,-0.809017,-0.9396926,0.034899496,0.8480481,0.9135454,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.76604444,0.9612617,0.309017,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.43837115,-0.5,-0.9975641,-0.6156615,0.309017,0.9612617,0.76604444,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.9135454,0.8480481,0.034899496,-0.9396926,-0.809017,0.034899496,0.8480481,0.9135454,0.17364818,-0.7193398,-0.88294756,-0.104528464,0.76604444,0.9612617,0.309017,-0.6156615,-0.9975641,-0.2419219,0.6691306,0.99026805,0.43837115,-0.5,-0.9975641,-0.6156615,0.5591929,1.0,0.5591929,-0.37460658,-0.9781476,-0.7193398,0.17364818,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.809017,0.034899496,0.8480481,0.76604444,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.76604444,0.9612617,0.034899496,-0.809017,-0.9396926,-0.2419219,0.6691306,0.99026805,0.43837115,-0.5,-0.9781476,-0.37460658,0.5591929,1.0,0.5591929,-0.37460658,-0.9781476,-0.5,0.43837115,0.99026805,0.6691306,-0.2419219,-0.9396926,-0.809017,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.88294756,-0.104528464,0.9135454,0.8480481,0.034899496,-0.809017,-0.9396926,-0.2419219,0.6691306,0.9135454,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.5591929,1.0,0.309017,-0.6156615,-0.9975641,-0.5,0.43837115,0.99026805,0.6691306,-0.5,-0.9975641,-0.6156615,0.309017,0.9612617,0.76604444,-0.104528464,-0.88294756,-0.7193398,0.17364818,0.9135454,0.8480481,0.034899496,-0.809017,-0.9396926,0.034899496,0.8480481,0.9135454,0.17364818,-0.7193398,-0.9781476,-0.37460658,0.76604444,1.0,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.99026805,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,0.17364818,0.76604444,0.8480481,0.309017,-0.809017,-0.9975641,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,-0.37460658,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.9612617,0.034899496,-0.9396926,-0.9396926,0.034899496,0.6691306,0.9135454,0.43837115,-0.7193398,-0.88294756,-0.37460658,0.76604444,1.0,0.309017,-0.37460658,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9396926,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.88294756,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.9396926,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,-0.37460658,0.76604444,0.8480481,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.17364818,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.9612617,0.034899496,-0.6156615,-0.9396926,0.034899496,0.6691306,0.9135454,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.76604444,1.0,0.309017,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.99026805,0.6691306,-0.5,-0.9396926,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.6691306,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.809017,0.309017,1.0,0.76604444,-0.37460658,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.6691306,0.034899496,-0.9396926,-0.9396926,0.034899496,0.6691306,0.9135454,-0.104528464,-0.7193398,-0.88294756,-0.37460658,0.76604444,1.0,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.809017,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.9135454,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.9135454,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.309017,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,-0.5,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,0.309017,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,-0.37460658,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.9612617,0.034899496,-0.9396926,-0.9396926,0.034899496,0.6691306,0.9135454,0.43837115,-0.7193398,-0.88294756,-0.37460658,0.76604444,1.0,0.309017,-0.37460658,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9396926,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.99026805,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,0.17364818,0.76604444,0.8480481,0.309017,-0.809017,-0.9975641,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.9612617,0.034899496,-0.6156615,-0.9396926,0.034899496,0.6691306,0.9135454,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.76604444,1.0,0.309017,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.99026805,0.6691306,-0.5,-0.9396926,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,-0.2419219,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.88294756,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.9396926,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,-0.37460658,0.76604444,0.8480481,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.17364818,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.9975641,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.9135454,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.9135454,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.309017,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,-0.5,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.9781476,-0.88294756,0.17364818,0.76604444,0.8480481,0.309017,-0.809017,-0.809017,-0.2419219,0.8480481,0.99026805,0.17364818,-0.5,-0.9781476,-0.104528464,0.5591929,0.9612617,0.5591929,-0.6156615,-0.9781476,-0.5,0.6691306,0.99026805,0.43837115,-0.2419219,-0.9975641,-0.809017,0.309017,1.0,0.76604444,-0.37460658,-0.88294756,-0.7193398,-0.104528464,0.9135454,0.6691306,0.034899496,-0.9396926,-0.9396926,0.034899496,0.6691306,0.9135454,-0.104528464,-0.7193398,-0.88294756,-0.37460658,0.76604444,1.0,0.309017,-0.809017,-0.9975641,-0.2419219,0.43837115,0.99026805,0.6691306,-0.5,-0.9781476,-0.6156615,0.5591929,0.9612617,0.5591929,-0.104528464,-0.9781476,-0.5,0.17364818,0.99026805,0.8480481,-0.2419219,-0.809017,-0.809017,0.309017,0.8480481,0.76604444,0.17364818,-0.88294756,-0.9781476,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9396926,-0.5,0.6691306,0.99026805,0.43837115,-0.7193398,-0.9975641,-0.37460658,0.309017,1.0,0.76604444,-0.37460658,-0.9975641,-0.7193398,0.43837115,0.9135454,0.6691306,0.034899496,-0.9396926,-0.6156615,0.034899496,0.9612617,0.9135454,-0.104528464,-0.7193398,-0.88294756,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,0.43837115,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.9396926,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.2419219,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,0.5591929,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,0.6691306,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,1.0,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.6691306,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.9781476,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.5,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,0.309017,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.9135454,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.9135454,0.43837115,-0.2419219,-0.809017,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,0.43837115,0.9135454,0.9612617,-0.5,-0.9396926,-0.9396926,-0.5,0.9612617,0.9135454,0.43837115,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.309017,-0.37460658,-0.809017,-0.2419219,0.43837115,0.9135454,0.17364818,-0.5,-0.9396926,-0.104528464,0.5591929,0.9612617,0.9135454,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.99026805,0.8480481,0.309017,-0.9975641,-0.809017,-0.2419219,0.43837115,0.76604444,0.17364818,-0.5,-0.7193398,-0.104528464,0.5591929,0.9612617,0.034899496,-0.6156615,-0.9781476,0.034899496,0.6691306,0.99026805,0.8480481,-0.7193398,-0.9975641,-0.809017,0.76604444,1.0,0.76604444,0.17364818,-0.9975641,-0.7193398,-0.104528464,0.99026805,0.6691306,0.034899496,-0.6156615,-0.6156615,0.034899496,0.6691306,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.17364818,0.76604444,1.0,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.99026805,0.6691306,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.9612617,0.5591929,-0.104528464,-0.9396926,-0.5,0.17364818,0.76604444,1.0,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,-0.9396926,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,0.76604444,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.5,0.17364818,0.76604444,1.0,0.76604444,0.17364818,-0.5,0.309017,0.8480481,0.99026805,0.6691306,0.034899496,-0.6156615,-0.9781476,0.9135454,0.9612617,0.5591929,-0.104528464,-0.7193398,-0.9975641,-0.809017,0.9135454,0.43837115,-0.2419219,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.309017,-0.37460658,-0.88294756,-0.9781476,-0.6156615,0.034899496,0.6691306,-0.5,-0.9396926,-0.9396926,-0.5,0.17364818,0.76604444,1.0,-0.9781476,-0.88294756,-0.37460658,0.309017,0.8480481,0.99026805,0.6691306,-0.809017,-0.2419219,0.43837115,0.9135454,0.9612617,0.5591929,-0.104528464,-0.104528464,0.5591929,0.9612617,0.9135454,0.43837115,-0.2419219,-0.809017,0.6691306,0.99026805,0.8480481,0.309017,-0.37460658,-0.88294756,-0.9781476,1.0,0.76604444,0.17364818,-0.5,-0.9396926,-0.9396926,-0.5,0.6691306,0.034899496,-0.6156615,-0.9781476,-0.88294756,-0.37460658,0.309017,-0.104528464,-0.7193398,-0.9975641,-0.809017,-0.2419219,0.43837115,0.9135454,-0.809017,-0.9975641,-0.7193398,-0.104528464,0.5591929,0.9612617,0.9135454,-0.9781476,-0.6156615,0.034899496,0.6691306,0.99026805,0.8480481,0.309017,-0.5,0.17364818,0.76604444,1.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/medium_negative.json b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/medium_negative.json new file mode 100644 index 000000000000..bc10b2b688ae --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/medium_negative.json @@ -0,0 +1 @@ +{"sine":[-0.0,0.19976877,0.39148408,0.56741714,0.72042817,0.8444521,0.9344329,0.9867431,0.9992739,0.97152007,0.9046005,0.8012538,0.6655764,0.5030671,0.32027715,0.12457564,-0.07614802,-0.27380186,-0.46035716,-0.6284193,-0.7711474,-0.8827875,-0.9588391,-0.9962362,-0.99347115,-0.95067656,-0.8695488,-0.7533662,-0.6068124,-0.43579572,-0.24721041,-0.0486591,0.15178646,0.346181,0.5266197,0.68582827,0.8173885,0.9159966,0.97767735,0.99994344,0.98191226,0.92429644,0.8294186,0.70110375,0.54452467,0.3659937,0.17277527,-0.027471844,-0.22661147,-0.41661552,-0.58982414,-0.7392547,-0.8588831,-0.94386405,-0.9908291,-0.99785,-0.9646437,-0.8925489,-0.78447205,-0.6447701,-0.47913474,-0.29413155,-0.09727078,0.103511356,0.30012056,0.48463073,0.64960355,0.7883464,0.8953598,0.96627784,0.9982414,0.9899621,0.94177353,0.8556184,0.7350163,0.58474755,0.41090533,0.22049794,0.021201435,-0.17894979,-0.37188685,-0.54977477,-0.7055624,-0.8329061,-0.9266722,-0.9830805,-0.99985707,-0.9763255,-0.9134622,-0.813759,-0.6812501,-0.5212773,-0.3402898,-0.14558391,0.054991025,0.2532831,0.44143245,0.61178595,0.757476,0.8726292,0.9526034,0.9941745,0.9956729,0.95703924,0.8798236,0.7671389,0.6235279,0.45478,0.26769823,0.069892496,-0.13079657,-0.3262127,-0.5084779,-0.6702445,-0.8049909,-0.907285,-0.9729872,-0.9994932,-0.9857058,-0.93218076,-0.8410759,-0.71606404,-0.5621849,-0.38570476,-0.19361903,0.006272236,0.20591064,0.397248,0.57257074,0.72481096,0.8477951,0.9366483,0.9877416,0.9990152,0.9700147,0.9019091,0.7974441,0.6608822,0.49763644,0.31432903,0.11834981,-0.082400545,-0.27982903,-0.4659765,-0.6332859,-0.77512544,-0.8857167,-0.9606012,-0.99676025,-0.99273604,-0.9486908,-0.86643416,-0.7492267,-0.60181504,-0.43014184,-0.241128,-0.042393338,0.15805036,0.35205862,0.53194135,0.6903795,0.82098573,0.91849494,0.978976,0.99999076,0.9807054,0.9218843,0.82589847,0.6966175,0.5392532,0.36014944,0.16652673,-0.033741172,-0.23271607,-0.42230928,-0.5948776,-0.74346405,-0.86207867,-0.9459395,-0.9916571,-0.9974193,-0.9629716,-0.8897029,-0.7805668,-0.63996303,-0.4735599,-0.28813097,-0.09102637,0.109747864,0.30609775,0.49010763,0.6543594,0.7922314,0.89813554,0.96787393,0.9985936,0.9890561,0.939646,0.85235506,0.7307024,0.5796479,0.405179,0.21437575,0.014930191,-0.18511726,-0.3777019,-0.55505997,-0.70999336,-0.83636093,-0.9290115,-0.9842101,-0.99973136,-0.9749496,-0.9108638,-0.8100976,-0.6766451,-0.5159144,-0.3343852,-0.13937564,0.061252687,0.2594117,0.4470518,0.6167354,0.76155597,0.8756753,0.9544928,0.99483097,0.99506366,0.95518154,0.8768251,0.7631003,0.618612,0.44918498,0.26164964,0.063566186,-0.13707988,-0.3321354,-0.5138688,-0.67488617,-0.80869627,-0.9099047,-0.9744314,-0.9996749,-0.98462963,-0.9298919,-0.8376666,-0.7116717,-0.55698663,-0.3798472,-0.18739471,0.012544225,0.21204442,0.4029963,0.5777018,0.72911793,0.85114056,0.93885034,0.9887013,0.9987173,0.96847117,0.8991822,0.7936438,0.65611047,0.49212685,0.30836853,0.112119325,-0.08864983,-0.28584516,-0.471517,-0.63818014,-0.7791158,-0.88861096,-0.9623256,-0.99724513,-0.9919619,-0.9466888,-0.86325103,-0.7450123,-0.59679395,-0.42447105,-0.23503609,-0.036125906,0.16424064,0.35798603,0.53729963,0.69490355,0.82455075,0.9209571,0.9802361,0.99999803,0.9794462,0.91940904,0.8223458,0.6921038,0.5339604,0.35429105,0.1603388,-0.040077295,-0.23887773,-0.42798647,-0.59990764,-0.7476442,-0.8652403,-0.94795525,-0.99245447,-0.996944,-0.9612617,-0.88682187,-0.7766308,-0.6351308,-0.46802622,-0.28205368,-0.08471046,0.11598005,0.3120629,0.49556527,0.6590895,0.7960433,0.9009055,0.9694487,0.9989065,0.98811126,0.93748146,0.84905815,0.72640604,0.5744696,0.3993742,0.20824511,0.008658361,-0.19127744,-0.38350213,-0.5602663,-0.71444404,-0.8398198,-0.9313143,-0.98530096,-0.9995663,-0.9735353,-0.9082573,-0.80636394,-0.671963,-0.5105312,-0.32846743,-0.13316189,0.06751194,0.2654641,0.45271435,0.621714,0.76560605,0.87868696,0.9563446,0.99544835,0.99442166,0.953306,0.873759,0.75903165,0.6136717,0.4435723,0.25559077,0.05730538,-0.1432902,-0.33810923,-0.5192395,-0.67950135,-0.8123699,-0.91248864,-0.9758215,-0.99981517,-0.9835025,-0.92756647,-0.83422434,-0.70725137,-0.5517664,-0.37403762,-0.1812299,0.018883886,0.21816985,0.40872872,0.58281016,0.73339623,0.8544163,0.9409916,0.98963183,0.99838006,0.96688956,0.89641994,0.78981227,0.65136415,0.48665702,0.3023309,0.10588443,-0.09489562,-0.2918501,-0.47703892,-0.6429965,-0.78303236,-0.89150125,-0.9640121,-0.99769074,-0.9911487,-0.9446496,-0.860068,-0.74081373,-0.5916945,-0.41878358,-0.22893493,-0.029857054,0.17042448,0.36383554,0.542579,0.699449,0.8280833,0.92338306,0.9814577,0.99996597,0.97816175,0.9169241,0.81872165,0.6875629,0.5286467,0.34841868,0.15414457,-0.046343703,-0.24496368,-0.43370822,-0.604914,-0.7517949,-0.8683679,-0.9499337,-0.993204,-0.99643445,-0.9594947,-0.88390595,-0.7726643,-0.63027364,-0.46247414,-0.27603054,-0.0784591,0.122275345,0.31801575,0.5010034,0.6637936,0.7998238,0.90361,0.9709682,0.9991829,0.98712754,0.9352801,0.8457278,0.722081,0.5693244,0.39361602,0.20203952,0.00238619,-0.1974301,-0.38928723,-0.56545067,-0.71881866,-0.84320825,-0.93360484,-0.98635304,-0.99936193,-0.97208273,-0.9056151,-0.8026386,-0.66730464,-0.5050691,-0.32253674,-0.12694289,0.07376854,0.27150607,0.45829815,0.62661445,0.7696695,0.88166404,0.9581588,0.9960265,0.99374056,0.951393,0.87069124,0.7548885,0.60870737,0.43794215,0.24952184,0.051042326,-0.1494949,-0.3440054,-0.5246477,-0.6840897,-0.8160115,-0.9150367,-0.9771732,-0.9999161,-0.9823485,-0.92517865,-0.8307493,-0.70280325,-0.5465245,-0.3682133,-0.17505796,0.025154632,0.22435315,0.41444507,0.5878956,0.7376457,0.8576585,0.94309574,0.9905132,0.99799925,0.96526986,0.89362246,0.78594965,0.6465922,0.4811681,0.29634625,0.09957754,-0.10113769,-0.29784352,-0.4825421,-0.6477876,-0.7869182,-0.89432514,-0.96567833,-0.9980972,-0.99029654,-0.9425732,-0.8568511,-0.73658603,-0.58662635,-0.4130175,-0.22282478,-0.023587028,0.1766016,0.36967075,0.547837,0.70391786,0.8316211,0.92577267,0.9826406,0.99989456,0.9768389,0.914403,0.8151041,0.68294513,0.52331215,0.3425326,0.14794427,-0.05260829,-0.25104,-0.43935132,-0.60995066,-0.75591594,-0.8714614,-0.9518748,-0.9939145,-0.9958856,-0.9577088,-0.88092303,-0.7686674,-0.6253916,-0.45690387,-0.26999655,-0.07220465,0.1284981,0.32402062,0.5064218,0.6684717,0.8035729,0.90627897,0.9724494,0.9994167,0.98609364,0.9330419,0.84236425,0.71772766,0.56415665,0.3878424,0.19589266,-0.0039542513,-0.203575,-0.39505702,-0.5706128,-0.7231649,-0.8465635,-0.9358339,-0.9873771,-0.99911827,-0.9705919,-0.9029372,-0.79888165,-0.66262007,-0.4996457,-0.3165287,-0.1207189,0.08002223,0.27753735,0.46386388,0.63149023,0.7736588,0.8846382,0.9599353,0.9965655,0.9930203,0.9494426,0.86758924,0.75075996,0.60366464,0.4322948,0.24344309,0.044777263,-0.15569371,-0.34988806,-0.5299771,-0.6887007,-0.819621,-0.9175487,-0.9784865,-0.9999777,-0.98115593,-0.92278,-0.82720315,-0.6983274,-0.54126114,-0.36237448,-0.16887914,0.03142439,0.23046108,0.420207,0.59295785,0.7418661,0.86086696,0.9451629,0.99135566,0.99758303,0.963594,0.89078975,0.7820561,0.64179474,0.4756602,0.29034993,0.09333452,-0.107443556,-0.30382523,-0.4880263,-0.65255314,-0.79077303,-0.89711386,-0.9672885,-0.99846804,-0.9894054,-0.9404597,-0.8536005,-0.73232937,-0.5815352,-0.4072971,-0.2166393,-0.017316073,0.18277179,0.3754914,0.5530735,0.70835906,0.83508795,0.92815125,0.9837849,0.9997838,0.9754776,0.91184604,0.8114545,0.67835003,0.5178987,0.33656886,0.14173815,-0.058870804,-0.25710645,-0.44497713,-0.61490905,-0.7600516,-0.8745536,-0.95377845,-0.9945859,-0.9952977,-0.9558852,-0.87793726,-0.76459634,-0.62043154,-0.45131564,-0.26395196,-0.06594737,0.13471583,0.3299481,0.5118789,0.67317384,0.8072904,0.9089123,0.97389245,0.99961126,0.98503184,0.930742,0.83893037,0.713346,0.5589668,0.38205346,0.1897381,-0.0102263605,-0.20977855,-0.40087375,-0.57575244,-0.7274828,-0.8498855,-0.9380261,-0.98835117,-0.998832,-0.96904606,-0.9002238,-0.79509324,-0.6579094,-0.49420267,-0.31057274,-0.114422426,0.0863407,0.2835577,0.46941137,0.6363412,0.7776177,0.8875454,0.96169275,0.9970705,0.992261,0.9474548,0.8644531,0.7466019,0.5986523,0.42656875,0.23728853,0.038510438,-0.1618864,-0.35575697,-0.5352856,-0.6932348,-0.823237,-0.9200514,-0.97976124,-0.99999994,-0.9799247,-0.92034495,-0.8236625,-0.69377506,-0.5359189,-0.35652143,-0.16269366,0.03769291,0.23655994,0.42589033,0.5980514,0.74610275,0.8640415,0.9471928,0.99215907,0.9971276,0.961898,0.8878907,0.778089,0.6369721,0.4701336,0.28434217,0.087087825,-0.113677375,-0.30985978,-0.49355057,-0.657293,-0.7945968,-0.89986724,-0.9688606,-0.99879545,-0.988465,-0.9382857,-0.85031635,-0.7280439,-0.5764212,-0.4015607,-0.21051174,-0.010976264,0.18900171,0.3812973,0.5582882,0.7127724,0.838522,0.93046755,0.9849023,0.9996319,0.9740779,0.9092531,0.80777293,0.6737282,0.512523,0.33065596,0.13545889,-0.065131,-0.26316276,-0.45058542,-0.61984324,-0.7641128,-0.87757796,-0.95566463,-0.9952181,-0.9946705,-0.95402396,-0.87491703,-0.76053876,-0.6155003,-0.4456486,-0.25789696,-0.059687488,0.14092822,0.33586258,0.51725703,0.67779887,0.81101596,0.9115099,0.97529715,0.99976647,0.9839313,0.92843014,0.8355003,0.70888823,0.5537549,0.37624952,0.18357606,-0.016498066,-0.2159071,-0.40661207,-0.5809249,-0.731772,-0.85317403,-0.9401813,-0.98928624,-0.9985093,-0.96747845,-0.8974449,-0.79127353,-0.65317285,-0.4887402,-0.30460456,-0.108189136,0.09258782,0.2896322,0.4749404,0.64116716,0.781546,0.8904177,0.9633932,0.99753064,0.99145377,0.94542974,0.86128294,0.7424145,0.5936164,0.42088738,0.23119077,0.032173954,-0.16807272,-0.36161184,-0.54057306,-0.6977416,-0.8267816,-0.9224907,-0.98101074,-0.99998283,-0.9786549,-0.91787374,-0.82008946,-0.6892442,-0.5306129,-0.3505905,-0.1565018,0.043959945,0.2426495,0.4315569,0.6030666,0.75026435,0.86721605,0.94918543,0.9929235,0.99663293,0.96016425,0.88498765,0.77413374,0.63207155,0.4645885,0.27832323,0.080837704,-0.119906716,-0.31581724,-0.49899593,-0.6620582,-0.79838926,-0.90258527,-0.9703946,-0.9990836,-0.9874956,-0.9360979,-0.84696245,-0.7237298,-0.5712845,-0.3958085,-0.20437592,-0.0047041904,0.19515719,0.38715103,0.563481,0.7171577,0.84192306,0.93274724,0.9859687,0.99944204,0.972624,0.9066245,0.80405957,0.66907996,0.5071271,0.32473,0.12924181,-0.07145664,-0.26920873,-0.45617598,-0.624753,-0.76814383,-0.88056785,-0.9574927,-0.9958174,-0.99400425,-0.95212525,-0.87186235,-0.7564513,-0.6105448,-0.44002488,-0.25176585,-0.05342526,0.1471351,0.34176388,0.52261484,0.6823971,0.81466943,0.9140992,0.9766635,0.99988234,0.9827921,0.92608166,0.8320373,0.70445037,0.54846424,0.3704308,0.1774068,-0.022769125,-0.22202715,-0.41233438,-0.58601886,-0.7360786,-0.85642904,-0.9422996,-0.99018246,-0.99814725,-0.9658729,-0.8946604,-0.78738075,-0.6484106,-0.48325852,-0.2986244,-0.101951584,0.09883129,0.2956299,0.4805105,0.64596784,0.78544354,0.89325494,0.9650558,0.99795157,0.99061596,0.9433449,0.8580789,0.73819786,0.5885572,0.41518947,0.22508392,0.025904333,-0.17431955,-0.36745253,-0.5458392,-0.70222104,-0.8302936,-0.9248938,-0.98220795,-0.99992555,-0.97734666,-0.9153664,-0.81648415,-0.68468624,-0.525286,-0.3447095,-0.15023637,0.050225254,0.24872951,0.4372065,0.60805804,0.7543964,0.8703221,0.9511618,0.9936488,0.99609905,0.9583927,0.8820498,0.7701481,0.6271987,0.45896456,0.27229336,0.07458441,-0.12613134,-0.32176223,-0.50442165,-0.6667459,-0.802191,-0.9052678,-0.9718904,-0.99933237,-0.9864874,-0.9338733,-0.8436112,-0.7193398,-0.5661253,-0.3900407,-0.19823205,0.0015680686,0.20130499,0.3929265,0.56870764,0.7215148,0.84529096,0.9349902,0.98699635,0.9992129,0.9711473,0.90393096,0.8003146,0.6644053,0.50171125,0.3187913,0.12301963,-0.07771144,-0.27530965,-0.4617486,-0.62963825,-0.77214473,-0.88352305,-0.9592832,-0.99637085,-0.993291,-0.950189,-0.86877334,-0.75233406,-0.6055653,-0.43438384,-0.2456907,-0.04709283,0.15333617,0.3476517,0.5279521,0.6869686,0.8182908,0.91662455,0.97800565,0.9999589,0.9816142,0.9236968,0.82854164,0.6999848,0.5432088,0.364534,0.17123057,-0.029039286,-0.22813846,-0.41804048,-0.5910897,-0.7403098,-0.8596851,-0.9443809,-0.99103975,-0.997746,-0.9642293,-0.8918407,-0.78349864,-0.64357066,-0.4777578,-0.2926325,-0.095710024,0.105070874,0.30161595,0.48600176,0.6507949,0.78931016,0.89605707,0.9666804,0.99833316,0.98973924,0.94124514,0.85480577,0.73395216,0.58347476,0.40947524,0.2189682,0.019633692,-0.18049233,-0.373342,-0.5511408,-0.7066728,-0.8337729,-0.92726046,-0.98336655,-0.99982935,-0.9759851,-0.9127952,-0.81284666,-0.68010134,-0.51993847,-0.33881488,-0.14403237,0.056556653,0.25486565,0.4428389,0.61302555,0.7584988,0.87339395,0.9530793,0.99434227,0.9955195,0.9565834,0.87907726,0.76613206,0.62230116,0.45338294,0.26618707,0.068260156,-0.132351,-0.3276946,-0.50982755,-0.6714074,-0.8059202,-0.90794325,-0.97336364,-0.9995419,-0.9854404,-0.93161196,-0.84022665,-0.71496856,-0.5608874,-0.3841946,-0.1920804,0.0078402655,0.20744486,0.39868656,0.57385564,0.725867,0.84864366,0.9372083,0.9879852,0.9989444,0.9696324,0.9012307,0.79651755,0.65967894,0.4962461,0.31284004,0.11679262,-0.08396318,-0.2813341,-0.4673332,-0.634525,-0.7761367,-0.8864435,-0.96103585,-0.9968852,-0.99254614,-0.94820464,-0.86563313,-0.7481646,-0.600562,-0.42872572,-0.2396059,-0.040826626,0.15956487,0.35355777,0.53329736,0.69151306,0.82188004,0.9191139,0.97929466,0.9999962,0.9803909,0.9212623,0.82501334,0.6954916,0.537932,0.35868618,0.16501398,-0.035342373,-0.23427394,-0.42373016,-0.5961373,-0.74451184,-0.86287224,-0.9464359,-0.99186236,-0.997303,-0.9625477,-0.88898593,-0.77958566,-0.63875735,-0.47220826,-0.2865964,-0.08943075,0.111306325,0.30759016,0.49147385,0.65554434,0.7931665,0.8988389,0.96827555,0.99867725,0.9888236,0.9391083,0.85153395,0.7296543,0.5783416,0.4037137,0.21281056,0.013362279,-0.186658,-0.37915337,-0.5563353,-0.7111207,-0.83723813,-0.9296032,-0.98448646,-0.99969375,-0.9745996,-0.9102297,-0.80915725,-0.6754645,-0.51454127,-0.332907,-0.1378227,0.06281774,0.26089284,0.44848436,0.61799574,0.7625934,0.87643147,0.9549593,0.994989,0.9949103,0.95472634,0.87605363,0.76206386,0.6173792,0.44778347,0.2601359,0.062035233,-0.13859922,-0.33364618,-0.5152426,-0.6760425,-0.8096177,-0.91055405,-0.9747749,-0.9997129,-0.9843486,-0.9293014,-0.8368091,-0.71056926,-0.5556836,-0.37842774,-0.18588768,0.0141462395,0.21360987,0.4044309,0.57898104,0.7301902,0.8519448,0.9393774,0.9889402,0.9986349,0.9680793,0.89849496,0.7926888,0.65495205,0.4907909,0.30684406,0.11052713,-0.090211615,-0.28734747,-0.47289923,-0.63936037,-0.7800765,-0.8893447,-0.96276,-0.9973602,-0.9917622,-0.9461825,-0.8624757,-0.7439882,-0.5955076,-0.42301986,-0.23351166,-0.034558818,0.16578722,0.35941792,0.5385927,0.69605476,0.82545614,0.92156696,0.9805451,0.99999374,0.97913563,0.91880465,0.8214331,0.69094646,0.53263396,0.35282424,0.15879083,-0.041609995,-0.24036703,-0.4294339,-0.60118866,-0.7486846,-0.8660254,-0.94845337,-0.9926414,-0.996823,-0.9608188,-0.8860804,-0.7756421,-0.6339188,-0.4666399,-0.28058165,-0.08318189,0.11757125,0.31358463,0.49692664,0.66026795,0.79699135,0.9015702,0.96982384,0.99898016,0.9878637,0.9369346,0.8482287,0.72532743,0.5732134,0.3979674,0.20667781,0.007056253,-0.19281632,-0.38494983,-0.5615645,-0.7155165,-0.8406515,-0.9318966,-0.98557335,-0.99951893,-0.97317576,-0.9076001,-0.8054558,-0.67082614,-0.5091529,-0.32695374,-0.1316076,0.06907635,0.26697558,0.45408162,0.62291473,0.7666357,0.8794507,0.9568017,0.9955965,0.99425507,0.95284164,0.8730119,0.7579876,0.61240596,0.4421664,0.25407445,0.05573982,-0.14480819,-0.33955246,-0.52060807,-0.6806759,-0.81328326,-0.91312903,-0.976163,-0.9998435,-0.98322386,-0.9269666,-0.8333398,-0.70614195,-0.55045795,-0.3725829,-0.1797211,0.02041757,0.21973313,0.4101904,0.5840837,0.7344613,0.85523003,0.9415096,0.989851,0.9982876,0.9664794,0.8957239,0.7888495,0.65017354,0.4853164,0.30086836,0.10429115,-0.09649043,-0.29334953,-0.47841647,-0.6441966,-0.78398556,-0.8921951,-0.96443677,-0.9977983,-0.9909393,-0.94413394,-0.85926694,-0.7397825,-0.59045714,-0.41732812,-0.22737503,-0.028289648,0.1719694,0.36529568,0.5438669,0.7005445,0.8289804,0.92399687,0.98175704,0.9999518,0.97783464,0.9162972,0.8178399,0.6863987,0.52728605,0.34694844,0.15259506,-0.04791003,-0.24648367,-0.43508992,-0.6061891,-0.75285035,-0.8691445,-0.95042247,-0.9933853,-0.9963009,-0.95906144,-0.8831555,-0.77164626,-0.62905544,-0.46108326,-0.27452305,-0.076895766,0.12379767,0.31953433,0.5023893,0.6649656,0.800764,0.9042806,0.9713421,0.9992437,0.98687005,0.9347118,0.84489006,0.72099537,0.5680345,0.39217407,0.20053694,0.00078403455,-0.19900048,-0.39073113,-0.5667433,-0.7199079,-0.84405017,-0.9341534,-0.98661554,-0.99930346,-0.9717136,-0.90494895,-0.8017023,-0.66613597,-0.50374454,-0.3210198,-0.12535353,0.07533225,0.2730149,0.45969126,0.6278357,0.77064794,0.88241893,0.9586162,0.9961649,0.9935641,0.95090896,0.86991894,0.7538815,0.6074354,0.43650126,0.24800307,0.04947624,-0.15104516,-0.34547734,-0.525953,-0.6852575,-0.81693655,-0.9156681,-0.97750515,-0.9999352,-0.982054,-0.9245954,-0.82985634,-0.7016626,-0.54521066,-0.36675495,-0.17351389,0.026722172,0.22584775,0.4159026,0.58919084,0.73870355,0.85846376,0.94361603,0.9907275,0.9979011,0.96485007,0.8929022,0.78497916,0.6453952,0.47979286,0.29484823,0.09805106,-0.1027315,-0.29937255,-0.48391494,-0.64898133,-0.78788483,-0.8950256,-0.96607566,-0.99819463,-0.9900726,-0.9420483,-0.8560416,-0.7355246,-0.58535576,-0.41162,-0.22126262,-0.021985287,0.17814481,0.37112728,0.5491482,0.7050308,0.832472,0.92637724,0.9829366,0.99987054,0.9765021,0.91376716,0.8141947,0.68182385,0.5219462,0.34102693,0.14639327,-0.05417412,-0.25255755,-0.4407594,-0.6111656,-0.75696385,-0.872246,-0.9523542,-0.99408597,-0.9957423,-0.95725644,-0.880196,-0.7676416,-0.6241406,-0.4555085,-0.2684864,-0.07064059,0.13005303,0.32547146,0.50780267,0.6696624,0.8045052,0.90694064,0.9728138,0.99946904,0.9858376,0.93246424,0.84149975,0.71663487,0.56286126,0.3863966,0.19435473,-0.005488215,-0.20514335,-0.39652836,-0.57189983,-0.7242471,-0.84739715,-0.93638533,-0.9876189,-0.9990497,-0.97020495,-0.90226215,-0.79793745,-0.66144484,-0.49828678,-0.31507322,-0.1191283,0.08161915,0.2790435,0.46525246,0.63270533,0.7746514,0.88535243,0.96038306,0.9966969,0.99283415,0.94894916,0.86680835,0.7497232,0.602441,0.43084952,0.24188882,0.04321071,-0.15724246,-0.3513566,-0.53130615,-0.68981206,-0.82053787,-0.9181846,-0.9788088,-0.99998695,-0.9808517,-0.92217463,-0.82634026,-0.6971798,-0.53991324,-0.36091256,-0.16733338,0.032991644,0.23198666,0.42159846,0.59424716,0.74293953,0.86166376,0.9456738,0.99156016,0.9974729,0.96318275,0.89006054,0.78105664,0.6405653,0.4742803,0.28884906,0.09177318,-0.10896853,-0.30535126,-0.48942408,-0.65376633,-0.7917319,-0.8978055,-0.9676851,-0.9985517,-0.9891715,-0.9399139,-0.85276484,-0.7312607,-0.58025885,-0.4058645,-0.21514149,-0.015714135,0.18434672,0.37697583,0.5543792,0.709465,0.8359496,0.92872113,0.984071,0.99974924,0.97512364,0.9112012,0.81053704,0.6771971,0.5165859,0.335124,0.14015198,-0.060470108,-0.25862148,-0.44638085,-0.6161449,-0.7610476,-0.8752964,-0.9542587,-0.99475104,-0.99514455,-0.9554234,-0.87718546,-0.7636068,-0.61922777,-0.44988534,-0.2624063,-0.06438263,0.13626944,0.33142793,0.51319605,0.6743074,0.8082349,0.9095792,0.9742472,0.99965376,0.98476034,0.93018,0.83809453,0.7122223,0.5576376,0.38060388,0.18819827,-0.011794334,-0.21127816,-0.4022786,-0.57706165,-0.72858113,-0.8507108,-0.93856835,-0.9885886,-0.9987567,-0.9686662,-0.89952505,-0.79412055,-0.6567277,-0.49283886,-0.30908182,-0.11289839,0.087868854,0.28509375,0.47082543,0.63755006,0.77860266,0.88826674,0.9621121,0.99718666,0.9920608,0.9469411,0.86366373,0.7455578,0.59739554,0.42518082,0.23579809,0.03690942,-0.16346721,-0.357222,-0.5366094,-0.6943641,-0.8241069,-0.9206513,-0.9800807,-0.9999993,-0.97961086,-0.91973054,-0.82277226,-0.6926695,-0.53462315,-0.3550241,-0.16111265,0.039259817,0.23808321,0.42730856,0.5992801,0.74712324,0.86484694,0.9477053,0.99235386,0.9970076,0.96146816,0.8871839,0.7771245,0.6357362,0.46871895,0.2828385,0.08552561,-0.115235135,-0.31131792,-0.49488413,-0.65849966,-0.79556847,-0.90055007,-0.9692477,-0.99887115,-0.98823154,-0.93775403,-0.8494721,-0.7269446,-0.5751391,-0.4001241,-0.20897856,-0.009442364,0.19050783,0.3827779,0.55961674,0.71387136,0.8393754,0.9310409,0.9851667,0.9995891,0.9737142,0.9085851,0.8068476,0.6725686,0.5111759,0.32920787,0.1339389,-0.06672967,-0.2647081,-0.45198473,-0.62107295,-0.76512337,-0.8783124,-0.9561152,-0.9953733,-0.9945041,-0.9535528,-0.8741566,-0.7595197,-0.6142906,-0.44427484,-0.25634867,-0.058088113,0.14248048,0.33733916,0.5185984,0.6789259,0.8119124,0.9121676,0.97564983,0.99979913,0.98365015,0.92784643,0.8346564,0.70780545,0.55242014,0.37476462,0.18203442,-0.018065901,-0.21743791,-0.40801305,-0.5821729,-0.73286307,-0.8540087,-0.94071436,-0.989514,-0.99842244,-0.9670893,-0.8967672,-0.79029286,-0.6519588,-0.48737156,-0.30311063,-0.10663013,0.0941151,0.29110008,0.4763497,0.64239585,0.7825233,0.89113027,0.9638124,0.9976372,0.9912525,0.94490653,0.86046773,0.74136305,0.59235376,0.41946447,0.22966489,0.03064073,-0.16965187,-0.36310512,-0.5418916,-0.69886404,-0.8276626,-0.92309487,-0.9813071,-0.9999721,-0.9783244,-0.9172503,-0.81919116,-0.68810725,-0.5292831,-0.3491535,-0.15491919,0.045560498,0.2441704,0.4329709,0.6043167,0.75130016,0.8679788,0.94968843,0.99311244,0.9965031,0.9597249,0.8842564,0.7731402,0.63088214,0.46316916,0.27678403,0.07927467,-0.12146332,-0.31730467,-0.50035423,-0.66320705,-0.79935294,-0.9032739,-0.97077215,-0.99914944,-0.9872472,-0.9355452,-0.8461459,-0.7226232,-0.56996876,-0.394368,-0.2028407,-0.0031361333,0.19669487,0.3885649,0.56480384,0.71827334,0.84276813,0.9333114,0.9862293,0.99938846,0.9722664,0.90594727,0.803106,0.66791373,0.50577503,0.32324654,0.12768672,-0.07298662,-0.2707514,-0.45760116,-0.6259766,-0.7691469,-0.88130987,-0.95794386,-0.99595636,-0.9938278,-0.9516342,-0.8710933,-0.7554248,-0.60930216,-0.43861625,-0.250281,-0.051825322,0.14871962,0.3432371,0.52395105,0.68354255,0.8155778,0.9147202,0.9770063,0.99990565,0.9825012,0.9254889,0.83116645,0.70333654,0.54718095,0.36894214,0.17582984,-0.024336759,-0.2235558,-0.41376245,-0.58728874,-0.7371161,-0.8572551,-0.9428348,-0.99040043,-0.99805063,-0.96546555,-0.8939588,-0.7864342,-0.64719003,-0.48185524,-0.29712752,-0.10039156,0.10039156,0.29712752,0.48185524,0.64719003,0.7864342,0.8939588,0.96546555,0.99805063,0.99040043,0.9428348,0.8572551,0.7371161,0.58728874,0.41376245,0.2235558,0.024336759,-0.17582984,-0.36894214,-0.54718095,-0.70333654,-0.83116645,-0.9254889,-0.9825012,-0.99990565,-0.9770063,-0.9147202,-0.8155778,-0.68354255,-0.52395105,-0.3432371,-0.14871962,0.051825322,0.250281,0.43861625,0.60930216,0.7554248,0.8710933,0.9516342,0.9938278,0.99595636,0.95794386,0.88130987,0.7691469,0.6259766,0.45760116,0.2707514,0.07298662,-0.12768672,-0.32324654,-0.50577503,-0.66791373,-0.803106,-0.90594727,-0.9722664,-0.99938846,-0.9862293,-0.9333114,-0.84276813,-0.71827334,-0.56480384,-0.3885649,-0.19669487,0.0031361333,0.2028407,0.394368,0.56996876,0.7226232,0.8461459,0.9355452,0.9872472,0.99914944,0.97077215,0.9032739,0.79935294,0.66320705,0.50035423,0.31730467,0.12146332,-0.07927467,-0.27678403,-0.46316916,-0.63088214,-0.7731402,-0.8842564,-0.9597249,-0.9965031,-0.99311244,-0.94968843,-0.8679788,-0.75130016,-0.6043167,-0.4329709,-0.2441704,-0.045560498,0.15491919,0.3491535,0.5292831,0.68810725,0.81919116,0.9172503,0.9783244,0.9999721,0.9813071,0.92309487,0.8276626,0.69886404,0.5418916,0.36310512,0.16965187,-0.03064073,-0.22966489,-0.41946447,-0.59235376,-0.74136305,-0.86046773,-0.94490653,-0.9912525,-0.9976372,-0.9638124,-0.89113027,-0.7825233,-0.64239585,-0.4763497,-0.29110008,-0.0941151,0.10663013,0.30311063,0.48737156,0.6519588,0.79029286,0.8967672,0.9670893,0.99842244,0.989514,0.94071436,0.8540087,0.73286307,0.5821729,0.40801305,0.21743791,0.018065901,-0.18203442,-0.37476462,-0.55242014,-0.70780545,-0.8346564,-0.92784643,-0.98365015,-0.99979913,-0.97564983,-0.9121676,-0.8119124,-0.6789259,-0.5185984,-0.33733916,-0.14248048,0.058088113,0.25634867,0.44427484,0.6142906,0.7595197,0.8741566,0.9535528,0.9945041,0.9953733,0.9561152,0.8783124,0.76512337,0.62107295,0.45198473,0.2647081,0.06672967,-0.1339389,-0.32920787,-0.5111759,-0.6725686,-0.8068476,-0.9085851,-0.9737142,-0.9995891,-0.9851667,-0.9310409,-0.8393754,-0.71387136,-0.55961674,-0.3827779,-0.19050783,0.009442364,0.20897856,0.4001241,0.5751391,0.7269446,0.8494721,0.93775403,0.98823154,0.99887115,0.9692477,0.90055007,0.79556847,0.65849966,0.49488413,0.31131792,0.115235135,-0.08552561,-0.2828385,-0.46871895,-0.6357362,-0.7771245,-0.8871839,-0.96146816,-0.9970076,-0.99235386,-0.9477053,-0.86484694,-0.74712324,-0.5992801,-0.42730856,-0.23808321,-0.039259817,0.16111265,0.3550241,0.53462315,0.6926695,0.82277226,0.91973054,0.97961086,0.9999993,0.9800807,0.9206513,0.8241069,0.6943641,0.5366094,0.357222,0.16346721,-0.03690942,-0.23579809,-0.42518082,-0.59739554,-0.7455578,-0.86366373,-0.9469411,-0.9920608,-0.99718666,-0.9621121,-0.88826674,-0.77860266,-0.63755006,-0.47082543,-0.28509375,-0.087868854,0.11289839,0.30908182,0.49283886,0.6567277,0.79412055,0.89952505,0.9686662,0.9987567,0.9885886,0.93856835,0.8507108,0.72858113,0.57706165,0.4022786,0.21127816,0.011794334,-0.18819827,-0.38060388,-0.5576376,-0.7122223,-0.83809453,-0.93018,-0.98476034,-0.99965376,-0.9742472,-0.9095792,-0.8082349,-0.6743074,-0.51319605,-0.33142793,-0.13626944,0.06438263,0.2624063,0.44988534,0.61922777,0.7636068,0.87718546,0.9554234,0.99514455,0.99475104,0.9542587,0.8752964,0.7610476,0.6161449,0.44638085,0.25862148,0.060470108,-0.14015198,-0.335124,-0.5165859,-0.6771971,-0.81053704,-0.9112012,-0.97512364,-0.99974924,-0.984071,-0.92872113,-0.8359496,-0.709465,-0.5543792,-0.37697583,-0.18434672,0.015714135,0.21514149,0.4058645,0.58025885,0.7312607,0.85276484,0.9399139,0.9891715,0.9985517,0.9676851,0.8978055,0.7917319,0.65376633,0.48942408,0.30535126,0.10896853,-0.09177318,-0.28884906,-0.4742803,-0.6405653,-0.78105664,-0.89006054,-0.96318275,-0.9974729,-0.99156016,-0.9456738,-0.86166376,-0.74293953,-0.59424716,-0.42159846,-0.23198666,-0.032991644,0.16733338,0.36091256,0.53991324,0.6971798,0.82634026,0.92217463,0.9808517,0.99998695,0.9788088,0.9181846,0.82053787,0.68981206,0.53130615,0.3513566,0.15724246,-0.04321071,-0.24188882,-0.43084952,-0.602441,-0.7497232,-0.86680835,-0.94894916,-0.99283415,-0.9966969,-0.96038306,-0.88535243,-0.7746514,-0.63270533,-0.46525246,-0.2790435,-0.08161915,0.1191283,0.31507322,0.49828678,0.66144484,0.79793745,0.90226215,0.97020495,0.9990497,0.9876189,0.93638533,0.84739715,0.7242471,0.57189983,0.39652836,0.20514335,0.005488215,-0.19435473,-0.3863966,-0.56286126,-0.71663487,-0.84149975,-0.93246424,-0.9858376,-0.99946904,-0.9728138,-0.90694064,-0.8045052,-0.6696624,-0.50780267,-0.32547146,-0.13005303,0.07064059,0.2684864,0.4555085,0.6241406,0.7676416,0.880196,0.95725644,0.9957423,0.99408597,0.9523542,0.872246,0.75696385,0.6111656,0.4407594,0.25255755,0.05417412,-0.14639327,-0.34102693,-0.5219462,-0.68182385,-0.8141947,-0.91376716,-0.9765021,-0.99987054,-0.9829366,-0.92637724,-0.832472,-0.7050308,-0.5491482,-0.37112728,-0.17814481,0.021985287,0.22126262,0.41162,0.58535576,0.7355246,0.8560416,0.9420483,0.9900726,0.99819463,0.96607566,0.8950256,0.78788483,0.64898133,0.48391494,0.29937255,0.1027315,-0.09805106,-0.29484823,-0.47979286,-0.6453952,-0.78497916,-0.8929022,-0.96485007,-0.9979011,-0.9907275,-0.94361603,-0.85846376,-0.73870355,-0.58919084,-0.4159026,-0.22584775,-0.026722172,0.17351389,0.36675495,0.54521066,0.7016626,0.82985634,0.9245954,0.982054,0.9999352,0.97750515,0.9156681,0.81693655,0.6852575,0.525953,0.34547734,0.15104516,-0.04947624,-0.24800307,-0.43650126,-0.6074354,-0.7538815,-0.86991894,-0.95090896,-0.9935641,-0.9961649,-0.9586162,-0.88241893,-0.77064794,-0.6278357,-0.45969126,-0.2730149,-0.07533225,0.12535353,0.3210198,0.50374454,0.66613597,0.8017023,0.90494895,0.9717136,0.99930346,0.98661554,0.9341534,0.84405017,0.7199079,0.5667433,0.39073113,0.19900048,-0.00078403455,-0.20053694,-0.39217407,-0.5680345,-0.72099537,-0.84489006,-0.9347118,-0.98687005,-0.9992437,-0.9713421,-0.9042806,-0.800764,-0.6649656,-0.5023893,-0.31953433,-0.12379767,0.076895766,0.27452305,0.46108326,0.62905544,0.77164626,0.8831555,0.95906144,0.9963009,0.9933853,0.95042247,0.8691445,0.75285035,0.6061891,0.43508992,0.24648367,0.04791003,-0.15259506,-0.34694844,-0.52728605,-0.6863987,-0.8178399,-0.9162972,-0.97783464,-0.9999518,-0.98175704,-0.92399687,-0.8289804,-0.7005445,-0.5438669,-0.36529568,-0.1719694,0.028289648,0.22737503,0.41732812,0.59045714,0.7397825,0.85926694,0.94413394,0.9909393,0.9977983,0.96443677,0.8921951,0.78398556,0.6441966,0.47841647,0.29334953,0.09649043,-0.10429115,-0.30086836,-0.4853015,-0.65017354,-0.7888495,-0.8957163,-0.96648383,-0.9982876,-0.989851,-0.9415153,-0.85523003,-0.7344613,-0.5840975,-0.41017488,-0.21973313,-0.02041757,0.17970434,0.3725829,0.55045795,0.7061299,0.8333492,0.9269666,0.98322386,0.9998438,0.976163,0.91312903,0.8132932,0.6806634,0.52060807,0.33955246,0.14482506,-0.05573982,-0.25407445,-0.4421511,-0.6124194,-0.7579876,-0.8730119,-0.95283645,-0.99425685,-0.9955965,-0.95680666,-0.8794426,-0.7666357,-0.62291473,-0.4540968,-0.26695916,-0.06907635,0.13159072,0.32696986,0.5091529,0.67082614,0.8054457,0.90760726,0.97317576,0.9995184,0.9855705,0.9318966,0.8406515,0.7155284,0.5615504,0.38494983,0.19283305,-0.0070732967,-0.20667781,-0.3979674,-0.5731994,-0.7253392,-0.8482287,-0.93692863,-0.98786634,-0.99898016,-0.96982384,-0.90157753,-0.79698104,-0.66026795,-0.49694142,-0.31356844,-0.11757125,0.08318189,0.2805653,0.466655,0.6339188,0.7756313,0.88608825,0.9608188,0.996823,0.9926435,0.94844794,0.8660254,0.7486959,0.60117507,0.4294339,0.24036703,0.041627023,-0.15880767,-0.35282424,-0.53261954,-0.6909588,-0.8214331,-0.91880465,-0.9791322,-0.9999938,-0.9805451,-0.9215736,-0.82544655,-0.69605476,-0.5385927,-0.35943383,-0.16577041,0.034558818,0.23349509,0.4230353,0.5955076,0.7439882,0.8624671,0.946188,0.9917622,0.9973615,0.9627554,0.8893447,0.7800765,0.6393735,0.4728842,0.28734747,0.09022859,-0.11054407,-0.30684406,-0.4907909,-0.6549392,-0.7926992,-0.89849496,-0.96807504,-0.99863577,-0.9889402,-0.9393774,-0.8519537,-0.7301786,-0.57898104,-0.40444648,-0.21359321,-0.0141462395,0.18588768,0.37841198,0.5556978,0.71056926,0.8368091,0.92930764,0.9843486,0.9997129,0.9747787,0.910547,0.8096177,0.6760425,0.515228,0.33364618,0.13859922,-0.06201822,-0.26015234,-0.44778347,-0.6173792,-0.7620749,-0.87605363,-0.95472634,-0.9949086,-0.9949873,-0.9549593,-0.87643147,-0.76258236,-0.61799574,-0.44848436,-0.2609093,-0.06280073,0.1378227,0.332907,0.5145559,0.6754645,0.80915725,0.9102226,0.9746034,0.99969375,0.98448646,0.9295969,0.83723813,0.7111207,0.55634946,0.3791376,0.186658,-0.013362279,-0.21282722,-0.4037137,-0.5783416,-0.7296427,-0.8515429,-0.9391083,-0.9888236,-0.9986764,-0.96827555,-0.8988389,-0.7931769,-0.65553147,-0.49147385,-0.30759016,-0.11132327,0.08943075,0.2865964,0.4721932,0.63877046,0.77958566,0.88898593,0.9625431,0.997303,0.99186236,0.9464414,0.86286366,0.74451184,0.5961373,0.4237456,0.23427394,0.035342373,-0.16499718,-0.3587021,-0.537932,-0.6954916,-0.8250037,-0.9212623,-0.9803909,-0.99999624,-0.9792912,-0.9191139,-0.82188004,-0.69152534,-0.53329736,-0.35355777,-0.15958169,0.04084366,0.2396059,0.42872572,0.6005483,0.7481646,0.86563313,0.9481992,0.9925482,0.9968852,0.96103585,0.8864514,0.7761367,0.634525,0.46734828,0.28131774,0.08396318,-0.11679262,-0.31282386,-0.4962461,-0.65967894,-0.79650724,-0.9012381,-0.9696324,-0.9989444,-0.9879878,-0.93720233,-0.84864366,-0.72587866,-0.5738417,-0.39868656,-0.20744486,-0.00785731,0.19206367,0.38422608,0.56090146,0.7149805,0.84022665,0.93161196,0.98543745,0.9995424,0.9733558,0.90793616,0.8059101,0.6714074,0.50982755,0.3277107,0.1323679,-0.06829417,-0.2662035,-0.45339814,-0.62230116,-0.76613206,-0.8790691,-0.95657843,-0.99552274,-0.9943405,-0.9530741,-0.87339395,-0.7584988,-0.613039,-0.4428542,-0.25483268,-0.056539636,0.14404924,0.33881488,0.51993847,0.6800888,0.81283677,0.91280913,0.97598886,0.99982965,0.98336655,0.92726046,0.8337823,0.7066848,0.55111235,0.37332618,0.18047556,-0.019633692,-0.2189682,-0.4094597,-0.5834609,-0.73392904,-0.8548146,-0.94125086,-0.98973924,-0.99833316,-0.9666848,-0.89606464,-0.78933114,-0.650782,-0.48598686,-0.30161595,-0.105070874,0.09569306,0.2926162,0.47772786,0.6435837,0.7835092,0.8918407,0.9642293,0.99774486,0.991042,0.9443921,0.8596764,0.74029833,0.5910897,0.41804048,0.22815506,0.029056324,-0.171197,-0.36454985,-0.5432231,-0.6999848,-0.82854164,-0.92369026,-0.9816109,-0.9999592,-0.9780021,-0.91661775,-0.8182908,-0.6869686,-0.5279665,-0.3476677,-0.15336986,0.047109857,0.24570723,0.43438384,0.6055653,0.75232285,0.86876494,0.9501784,0.99329495,0.9963694,0.9592832,0.88352305,0.7721555,0.6296515,0.46177885,0.2752769,0.077694446,-0.12301963,-0.3187913,-0.5016965,-0.6643926,-0.80029416,-0.90394557,-0.97115135,-0.9992129,-0.98699635,-0.93499625,-0.8453001,-0.7215384,-0.56867963,-0.39291084,-0.20130499,-0.0015680686,0.19821535,0.390025,0.5660972,0.71936345,0.8436203,0.9338733,0.9864874,0.999333,0.97189444,0.90528226,0.8021707,0.6667332,0.50442165,0.32176223,0.12614824,-0.074567415,-0.27226058,-0.45899484,-0.627212,-0.7701481,-0.8820498,-0.9583878,-0.9960975,-0.99365264,-0.95115125,-0.8703137,-0.7543964,-0.60805804,-0.43722185,-0.24874602,-0.0502593,0.15027007,0.3447255,0.525286,0.68468624,0.8164743,0.9153595,0.97733945,0.999926,0.98220474,0.9248938,0.8302936,0.70223314,0.5458535,0.36748424,0.17428598,-0.02592137,-0.22508392,-0.41518947,-0.5885434,-0.73818636,-0.85806143,-0.9433562,-0.9906183,-0.99795157,-0.9650558,-0.8932626,-0.7854541,-0.6459939,-0.4804806,-0.29561362,-0.09883129,0.101951584,0.29860812,0.48324358,0.64838463,0.78740174,0.89466804,0.9658729,0.99814725,0.99018484,0.9423053,0.8564466,0.73605555,0.58600503,0.41233438,0.22202715,0.022786165,-0.17739004,-0.37039912,-0.5484928,-0.70446247,-0.8320373,-0.92608166,-0.9827889,-0.99988264,-0.9766708,-0.9140854,-0.81465954,-0.68238467,-0.52261484,-0.3417799,-0.14715196,0.053391222,0.25179884,0.4400402,0.61055833,0.7564513,0.871854,0.95212,0.99400055,0.99581426,0.9574878,0.88055974,0.76814383,0.62476635,0.45619115,0.26924157,0.071422644,-0.1292587,-0.32474613,-0.5071271,-0.66906726,-0.80404943,-0.9066101,-0.97263193,-0.99944264,-0.9859659,-0.93274724,-0.84193224,-0.7171696,-0.56350917,-0.3871196,-0.19514047,0.0047212346,0.20437592,0.3957928,0.57127047,0.72370625,0.8469806,0.9361039,0.9874983,0.9990836,0.9703987,0.9025926,0.79840976,0.66203266,0.49898118,0.31580105,0.119906716,-0.08082072,-0.27830687,-0.4645583,-0.63209796,-0.77414453,-0.8849956,-0.96016425,-0.9966315,-0.99292547,-0.94919616,-0.86719906,-0.7502531,-0.603053,-0.4315569,-0.24266604,-0.043976974,0.15646814,0.35062245,0.53062737,0.68925655,0.82008946,0.91786695,0.97865146,0.9999826,0.9810041,0.92248416,0.826772,0.6977416,0.54058737,0.36162776,0.16810632,-0.032208025,-0.23120736,-0.42090285,-0.5936164,-0.74240303,-0.8612743,-0.94541866,-0.9914582,-0.99752945,-0.9633887,-0.8904177,-0.7815566,-0.6411802,-0.4749704,-0.28959957,-0.09257085,0.10820608,0.30460456,0.48872533,0.6531599,0.79125273,0.8974599,0.9674828,0.9985102,0.98928624,0.94018716,0.853183,0.73179525,0.5808972,0.4065965,0.21589045,0.016498066,-0.18357606,-0.37623373,-0.55372655,-0.70891225,-0.83550966,-0.92843646,-0.9839313,-0.99976647,-0.9753009,-0.9115239,-0.810996,-0.6777863,-0.51724243,-0.33586258,-0.14092822,0.059670474,0.25786403,0.44567913,0.61551374,0.76054984,0.87491703,0.95402396,0.9946688,0.99522144,0.95565456,0.8775698,0.7641018,0.61984324,0.45058542,0.2631792,0.06516502,-0.13549267,-0.33067203,-0.5125376,-0.6737282,-0.80777293,-0.909246,-0.97407013,-0.99963284,-0.98489934,-0.9304613,-0.838522,-0.7127724,-0.55830234,-0.3813288,-0.18896824,0.010993307,0.21052842,0.4015607,0.5764212,0.72803223,0.8502984,0.93829745,0.9884676,0.9987946,0.9688606,0.89986724,0.7946071,0.6573187,0.49352092,0.3098436,0.11366044,-0.087087825,-0.28434217,-0.47011855,-0.63694584,-0.7781104,-0.8878985,-0.9619027,-0.9971276,-0.99215907,-0.9471983,-0.8640587,-0.7460801,-0.5980378,-0.42587492,-0.23655994,-0.03769291,0.16267686,0.3564896,0.5359477,0.69378734,0.8236722,0.92034495,0.9799247,0.99999994,0.9797681,0.92003804,0.82322735,0.6932225,0.5352856,0.35575697,0.16190322,-0.038476374,-0.23732165,-0.42658415,-0.59866595,-0.7466019,-0.8644531,-0.9474494,-0.99225676,-0.9970679,-0.96168804,-0.88753754,-0.7776177,-0.6363412,-0.46942642,-0.28357407,-0.08630674,0.11443935,0.31058896,0.49420267,0.6579094,0.79508287,0.9002164,0.96905446,0.9988328,0.98834854,0.9380261,0.84989,0.7274945,0.57577336,0.40084252,0.20975356,0.010209317,-0.1897381,-0.3820456,-0.5589527,-0.7133281,-0.83894897,-0.9307514,-0.9850348,-0.99961126,-0.9738944,-0.9089194,-0.80730546,-0.67314863,-0.5118569,-0.329932,-0.13470738,0.06593886,0.26393554,0.4512928,0.6204583,0.7646128,0.8779454,0.9558877,0.99529684,0.9945876,0.95378613,0.87453705,0.76003504,0.61489564,0.44496948,0.25711468,0.058887817,-0.14171283,-0.336601,-0.51792055,-0.67836255,-0.8114594,-0.9118425,-0.9754738,-0.9997833,-0.98379105,-0.9281417,-0.8350786,-0.70835304,-0.5530806,-0.3755072,-0.18279691,0.01728199,0.21666425,0.4073127,0.58154213,0.7323236,0.8535916,0.940451,0.98940045,0.9984666,0.9672842,0.89711004,0.7907783,0.6525661,0.4880486,0.30385768,0.10741814,-0.09335149,-0.29035807,-0.4756602,-0.6417817,-0.7820402,-0.89077425,-0.9636008,-0.9975842,-0.9913545,-0.9451629,-0.8608756,-0.7418833,-0.5929853,-0.42018378,-0.23044449,-0.03141587,0.16887914,0.3623586,0.5412396,0.69830304,0.8272175,0.92278653,0.98115754,0.9999777,0.97849,0.9175589,0.8196406,0.68868214,0.5299626,0.34988007,0.15569371,-0.044760235,-0.24341829,-0.43226403,-0.603685,-0.7507712,-0.86759347,-0.9494426,-0.99301827,-0.9965676,-0.95994484,-0.88462627,-0.773648,-0.6314836,-0.46386388,-0.27755374,-0.08004772,0.120685056,0.31655297,0.49966046,0.66262645,0.79888165,0.90292984,0.9705857,0.99911684,0.98737305,0.93582785,0.846559,0.7231649,0.57061976,0.39508054,0.20360838,0.003928685,-0.19590938,-0.38785022,-0.56415665,-0.7177217,-0.8423504,-0.9330296,-0.9860979,-0.9994161,-0.97244745,-0.90627897,-0.80357796,-0.6684907,-0.5064512,-0.32399642,-0.12848121,0.07221315,0.26999655,0.4568963,0.6253717,0.76864564,0.88093513,0.9577137,0.9958864,0.9939145,0.9518774,0.8714739,0.7559383,0.60993046,0.439336,0.25103176,0.05260829,-0.14793584,-0.34250858,-0.5232831,-0.68296385,-0.81511396,-0.9144065,-0.9768389,-0.99989444,-0.9826454,-0.92578554,-0.83160686,-0.70390576,-0.54782987,-0.36967075,-0.17661,0.023561468,0.22279154,0.4130408,0.5866402,0.7365918,0.8568511,0.9425703,0.99029416,0.99809927,0.9656717,0.8943175,0.7869129,0.6477876,0.48254955,0.2978598,0.101171605,-0.099602975,-0.29636252,-0.48117554,-0.6465922,-0.78594434,-0.89361477,-0.965261,-0.99800086,-0.9905109,-0.94309294,-0.8576585,-0.73765147,-0.58790934,-0.4144761,-0.22432823,-0.025137592,0.17506635,0.3682133,0.5465174,0.7027911,0.83073026,0.92518836,0.9823517,0.999916,0.9771732,0.91504014,0.8160214,0.68411463,0.52462596,0.3439894,0.14948647,-0.051042326,-0.24951358,-0.43792683,-0.6086803,-0.7549052,-0.8706996,-0.95139563,-0.99374056,-0.9960273,-0.9581637,-0.88168013,-0.76965314,-0.62660116,-0.45829055,-0.27150607,-0.073777035,0.12692598,0.32251254,0.50509113,0.66731733,0.80264366,0.9056151,0.9720807,0.99936134,0.9863573,0.9335957,0.8431991,0.7188127,0.56545067,0.38929507,0.19744681,-0.0023606238,-0.20206456,-0.3936317,-0.56933135,-0.722081,-0.8457233,-0.935274,-0.9871234,-0.9991818,-0.9709641,-0.90360636,-0.7998238,-0.6638,-0.50101817,-0.31803998,-0.12224997,0.078476086,0.27603874,0.46247414,0.630267,0.7726535,0.883894,0.9595019,0.9964359,0.99320304,0.9499337,0.86837214,0.7518061,0.6049344,0.43368518,0.24494715,0.04633519,-0.15414457,-0.3484107,-0.5286322,-0.68754435,-0.8187363,-0.9169309,-0.97816354,-0.99996597,-0.9814593,-0.9233896,-0.8280976,-0.6994246,-0.5425647,-0.36382762,-0.17042448,0.029848536,0.22891834,0.41876036,0.59172195,0.7408252,0.8600724,0.9446496,0.9911476,0.9976919,0.9640189,0.89148575,0.7830218,0.64299,0.47703892,0.29185823,0.094912596,-0.10585901,-0.3023634,-0.48667192,-0.6513706,-0.78981227,-0.8964162,-0.9668852,-0.9983786,-0.98962694,-0.9409858,-0.8544119,-0.73339623,-0.5828171,-0.40874428,-0.21819481,-0.018849803,0.18124667,0.37404552,0.5517664,0.70724535,0.8342149,0.92755693,0.98350865,0.99981487,0.97581965,0.91248864,0.81237483,0.6795138,0.5192613,0.33807713,0.1432649,-0.05731389,-0.25559077,-0.44356465,-0.61365825,-0.759015,-0.87377346,-0.95331246,-0.99442303,-0.99544835,-0.9563471,-0.8786951,-0.7656225,-0.62169063,-0.45269537,-0.26545176,-0.06750769,0.13315344,0.32845134,0.5105092,0.6719851,0.8063766,0.90826267,0.97353625,0.9995661,0.9853039,0.9313236,0.8398036,0.71442914,0.56025577,0.3834982,0.1912858,-0.0086413175,-0.20822011,-0.39940155,-0.5744871,-0.7264148,-0.8490604,-0.9374785,-0.98810863,-0.9989077,-0.96944034,-0.90089625,-0.7960355,-0.6590863,-0.49557266,-0.31207907,-0.11600545,0.084744416,0.28207412,0.46803752,0.6351341,0.77662545,0.886814,0.96125466,0.9969467,0.99245185,0.9479512,0.8652382,0.74764985,0.5999212,0.42800957,0.23884463,0.040056005,-0.16035143,-0.35429502,-0.53395325,-0.6920915,-0.82233125,-0.91942245,-0.97945046,-0.9999981,-0.9802353,-0.92095876,-0.8245604,-0.6949219,-0.53727084,-0.35796613,-0.16422804,0.036130164,0.23503195,0.4244556,0.59677345,0.74503505,0.8632618,0.94669294,0.99196243,0.99724543,0.9623302,0.8886227,0.7790944,0.63816375,0.4715057,0.28584108,0.08865407,-0.11210239,-0.30834422,-0.4921565,-0.6561298,-0.7936516,-0.8991841,-0.9684701,-0.9987164,-0.9887051,-0.9388386,-0.8511271,-0.7291092,-0.57769835,-0.40300018,-0.21206108,-0.01256979,0.18742819,0.37987086,0.55699724,0.7116747,0.83766425,0.9298856,0.9846252,0.9996741,0.9744256,0.9098994,0.80869377,0.6748893,0.5138834,0.33215952,0.13704611,-0.0635917,-0.26166198,-0.4491888,-0.6186086,-0.76309204,-0.8768128,-0.9551916,-0.9950662,-0.9948297,-0.9544915,-0.87567735,-0.76156425,-0.6167555,-0.4470823,-0.259387,-0.061239928,0.13937986,0.3343812,0.5159034,0.67662627,0.8100776,0.91087437,0.9749524,0.9997314,0.98421085,0.92901623,0.83637494,0.7100174,0.5550387,0.37768614,0.18511307,-0.014925931,-0.21436326,-0.4051556,-0.5796201,-0.73071986,-0.85236394,-0.93964744,-0.9890555,-0.9985943,-0.96788037,-0.8981505,-0.7922158,-0.6543465,-0.49010393,-0.3061018,-0.10976057,0.091000915,0.28809834,0.4735824,0.63997614,0.78056943,0.88970095,0.96296823,0.99741775,0.9916615,0.9459312,0.8620711,0.7434598,0.594881,0.42232087,0.23273887,0.033773113,-0.16655195,-0.36016336,-0.53925854,-0.69661444,-0.82589126,-0.9218752,-0.9806991,-0.99999064,-0.978973,-0.9184924,-0.8209882,-0.69038874,-0.5319612,-0.35208854,-0.15802512,0.042410366,0.2411342,0.430138,0.6018048,0.7492112,0.86641824,0.9486989,0.99273807,0.9967598,0.9606024,0.8857226,0.7751402,0.6333106,0.4659539,0.27981266,0.082394175,-0.1183477,-0.3143169,-0.4976161,-0.6608582,-0.7974595,-0.90191644,-0.97001624,-0.99901515,-0.9877436,-0.93665576,-0.84781206,-0.7247934,-0.5725568,-0.39724213,-0.20591272,-0.0062850188,0.19359812,0.38567528,0.56220603,0.71607596,0.84107935,0.93218,0.9857036,0.9994939,0.97299457,0.90727335,0.80498075,0.67023975,0.5084798,0.32622477,0.13081768,-0.069860615,-0.2677249,-0.4547952,-0.6235329,-0.7671375,-0.87981755,-0.95703304,-0.99566996,-0.9941715,-0.9525982,-0.87262505,-0.75747734,-0.611796,-0.44145155,-0.25331402,-0.05496337,0.14560078,0.34029782,0.52127546,0.6812423,0.8137467,0.9134497,0.9763315,0.99985737,0.98307914,0.926673,0.8329126,0.70557755,0.5498006,0.37186113,0.17893197,-0.021209955,-0.22049586,-0.41089463,-0.58473027,-0.73499537,-0.8556328,-0.9417796,-0.9899633,-0.9982415,-0.9662809,-0.89536935,-0.7883654,-0.6495825,-0.48461488,-0.30011243,-0.103512414,0.09726018,0.2941112,0.47910762,0.64479125,0.78448325,0.8925528,0.9646434,0.9978493,0.9908318,0.94387424,0.8588689,0.73924255,0.5898173,0.41661647,0.22662184,0.027492076,-0.1727459,-0.36602047,-0.5445403,-0.7011102,-0.829418,-0.9242924,-0.98190844,-0.99994373,-0.97767144,-0.9159891,-0.8173833,-0.6858287,-0.52662873,-0.34620002,-0.15181594,0.04868783,0.24722847,0.43580386,0.606812,0.7533595,0.8695388,0.9506673,0.9934744,0.99623454,0.95883644,0.88278776,0.7711538,0.6284348,0.4603834,0.27377418,0.0761289,-0.12458488,-0.32027692,-0.5030583,-0.66556174,-0.8012362,-0.9046129,-0.9715246,-0.99927425,-0.9867431,-0.93443644,-0.8444626,-0.7204485,-0.5673931,-0.3914662,-0.19975924,0.0],"x":[-46080.0,-46068.477,-46056.953,-46045.43,-46033.91,-46022.387,-46010.863,-45999.34,-45987.816,-45976.293,-45964.77,-45953.25,-45941.727,-45930.203,-45918.68,-45907.156,-45895.633,-45884.11,-45872.59,-45861.066,-45849.543,-45838.02,-45826.496,-45814.973,-45803.45,-45791.93,-45780.406,-45768.883,-45757.36,-45745.836,-45734.312,-45722.79,-45711.27,-45699.746,-45688.223,-45676.7,-45665.176,-45653.652,-45642.13,-45630.61,-45619.086,-45607.562,-45596.04,-45584.516,-45572.992,-45561.47,-45549.95,-45538.426,-45526.902,-45515.38,-45503.855,-45492.332,-45480.81,-45469.29,-45457.766,-45446.242,-45434.72,-45423.195,-45411.67,-45400.15,-45388.63,-45377.105,-45365.582,-45354.06,-45342.535,-45331.01,-45319.49,-45307.97,-45296.445,-45284.92,-45273.4,-45261.875,-45250.35,-45238.83,-45227.31,-45215.785,-45204.26,-45192.74,-45181.215,-45169.69,-45158.168,-45146.65,-45135.125,-45123.6,-45112.08,-45100.555,-45089.03,-45077.508,-45065.99,-45054.465,-45042.94,-45031.418,-45019.895,-45008.37,-44996.848,-44985.33,-44973.805,-44962.28,-44950.758,-44939.234,-44927.71,-44916.188,-44904.668,-44893.145,-44881.62,-44870.098,-44858.574,-44847.05,-44835.527,-44824.008,-44812.484,-44800.96,-44789.438,-44777.914,-44766.39,-44754.867,-44743.348,-44731.824,-44720.3,-44708.777,-44697.254,-44685.73,-44674.207,-44662.688,-44651.164,-44639.64,-44628.117,-44616.594,-44605.07,-44593.547,-44582.027,-44570.504,-44558.98,-44547.457,-44535.934,-44524.41,-44512.887,-44501.367,-44489.844,-44478.32,-44466.797,-44455.273,-44443.75,-44432.227,-44420.707,-44409.184,-44397.66,-44386.137,-44374.613,-44363.09,-44351.566,-44340.047,-44328.523,-44317.0,-44305.477,-44293.953,-44282.43,-44270.906,-44259.387,-44247.863,-44236.34,-44224.816,-44213.293,-44201.77,-44190.246,-44178.727,-44167.203,-44155.68,-44144.156,-44132.633,-44121.11,-44109.586,-44098.066,-44086.543,-44075.02,-44063.496,-44051.973,-44040.45,-44028.926,-44017.406,-44005.883,-43994.36,-43982.836,-43971.312,-43959.79,-43948.266,-43936.746,-43925.223,-43913.7,-43902.176,-43890.652,-43879.13,-43867.605,-43856.086,-43844.562,-43833.04,-43821.516,-43809.992,-43798.47,-43786.945,-43775.426,-43763.902,-43752.38,-43740.855,-43729.332,-43717.81,-43706.285,-43694.766,-43683.242,-43671.72,-43660.195,-43648.67,-43637.15,-43625.625,-43614.105,-43602.582,-43591.06,-43579.535,-43568.01,-43556.49,-43544.965,-43533.445,-43521.92,-43510.4,-43498.875,-43487.35,-43475.83,-43464.305,-43452.78,-43441.26,-43429.74,-43418.215,-43406.69,-43395.168,-43383.645,-43372.12,-43360.6,-43349.08,-43337.555,-43326.03,-43314.508,-43302.984,-43291.46,-43279.94,-43268.418,-43256.895,-43245.37,-43233.848,-43222.324,-43210.8,-43199.28,-43187.758,-43176.234,-43164.71,-43153.188,-43141.664,-43130.14,-43118.62,-43107.098,-43095.574,-43084.05,-43072.527,-43061.004,-43049.48,-43037.96,-43026.438,-43014.914,-43003.39,-42991.867,-42980.344,-42968.82,-42957.3,-42945.777,-42934.254,-42922.73,-42911.207,-42899.684,-42888.16,-42876.64,-42865.117,-42853.594,-42842.07,-42830.547,-42819.023,-42807.5,-42795.98,-42784.457,-42772.934,-42761.41,-42749.887,-42738.363,-42726.84,-42715.32,-42703.797,-42692.273,-42680.75,-42669.227,-42657.703,-42646.18,-42634.66,-42623.137,-42611.613,-42600.09,-42588.566,-42577.043,-42565.52,-42554.0,-42542.477,-42530.953,-42519.43,-42507.906,-42496.383,-42484.86,-42473.34,-42461.816,-42450.293,-42438.77,-42427.246,-42415.723,-42404.2,-42392.68,-42381.156,-42369.633,-42358.11,-42346.586,-42335.062,-42323.54,-42312.02,-42300.496,-42288.973,-42277.45,-42265.926,-42254.402,-42242.88,-42231.36,-42219.836,-42208.312,-42196.79,-42185.266,-42173.742,-42162.22,-42150.7,-42139.176,-42127.652,-42116.13,-42104.605,-42093.082,-42081.56,-42070.04,-42058.516,-42046.992,-42035.47,-42023.945,-42012.42,-42000.9,-41989.38,-41977.855,-41966.332,-41954.81,-41943.285,-41931.76,-41920.24,-41908.72,-41897.195,-41885.67,-41874.15,-41862.625,-41851.1,-41839.58,-41828.06,-41816.535,-41805.01,-41793.49,-41781.965,-41770.44,-41758.918,-41747.4,-41735.875,-41724.35,-41712.83,-41701.305,-41689.78,-41678.258,-41666.74,-41655.215,-41643.69,-41632.168,-41620.645,-41609.12,-41597.598,-41586.08,-41574.555,-41563.03,-41551.508,-41539.984,-41528.46,-41516.938,-41505.418,-41493.895,-41482.37,-41470.848,-41459.324,-41447.8,-41436.277,-41424.758,-41413.234,-41401.71,-41390.188,-41378.664,-41367.14,-41355.617,-41344.098,-41332.574,-41321.05,-41309.527,-41298.004,-41286.48,-41274.957,-41263.438,-41251.914,-41240.39,-41228.867,-41217.344,-41205.82,-41194.297,-41182.777,-41171.254,-41159.73,-41148.207,-41136.684,-41125.16,-41113.637,-41102.117,-41090.594,-41079.07,-41067.547,-41056.023,-41044.5,-41032.977,-41021.457,-41009.934,-40998.41,-40986.887,-40975.363,-40963.84,-40952.316,-40940.797,-40929.273,-40917.75,-40906.227,-40894.703,-40883.18,-40871.656,-40860.137,-40848.613,-40837.09,-40825.566,-40814.043,-40802.52,-40790.996,-40779.477,-40767.953,-40756.43,-40744.906,-40733.383,-40721.86,-40710.336,-40698.816,-40687.293,-40675.77,-40664.246,-40652.723,-40641.2,-40629.676,-40618.156,-40606.633,-40595.11,-40583.586,-40572.062,-40560.54,-40549.016,-40537.496,-40525.973,-40514.45,-40502.926,-40491.402,-40479.88,-40468.355,-40456.836,-40445.312,-40433.79,-40422.266,-40410.742,-40399.22,-40387.695,-40376.176,-40364.652,-40353.13,-40341.605,-40330.082,-40318.56,-40307.035,-40295.516,-40283.992,-40272.47,-40260.945,-40249.42,-40237.9,-40226.375,-40214.855,-40203.332,-40191.81,-40180.285,-40168.76,-40157.24,-40145.715,-40134.195,-40122.67,-40111.15,-40099.625,-40088.1,-40076.58,-40065.055,-40053.535,-40042.01,-40030.49,-40018.965,-40007.44,-39995.918,-39984.395,-39972.875,-39961.35,-39949.83,-39938.305,-39926.78,-39915.258,-39903.734,-39892.215,-39880.69,-39869.168,-39857.645,-39846.12,-39834.598,-39823.074,-39811.555,-39800.03,-39788.508,-39776.984,-39765.46,-39753.938,-39742.414,-39730.895,-39719.37,-39707.848,-39696.324,-39684.8,-39673.277,-39661.754,-39650.234,-39638.71,-39627.188,-39615.664,-39604.14,-39592.617,-39581.094,-39569.574,-39558.05,-39546.527,-39535.004,-39523.48,-39511.957,-39500.434,-39488.914,-39477.39,-39465.867,-39454.344,-39442.82,-39431.297,-39419.773,-39408.254,-39396.73,-39385.207,-39373.684,-39362.16,-39350.637,-39339.113,-39327.594,-39316.07,-39304.547,-39293.023,-39281.5,-39269.977,-39258.453,-39246.934,-39235.41,-39223.887,-39212.363,-39200.84,-39189.316,-39177.793,-39166.273,-39154.75,-39143.227,-39131.703,-39120.18,-39108.656,-39097.133,-39085.613,-39074.09,-39062.566,-39051.043,-39039.52,-39027.996,-39016.473,-39004.953,-38993.43,-38981.906,-38970.383,-38958.86,-38947.336,-38935.812,-38924.293,-38912.77,-38901.246,-38889.723,-38878.2,-38866.676,-38855.152,-38843.633,-38832.11,-38820.586,-38809.062,-38797.54,-38786.016,-38774.492,-38762.973,-38751.45,-38739.926,-38728.402,-38716.88,-38705.355,-38693.832,-38682.312,-38670.79,-38659.266,-38647.742,-38636.22,-38624.695,-38613.17,-38601.652,-38590.13,-38578.605,-38567.082,-38555.56,-38544.035,-38532.51,-38520.992,-38509.47,-38497.945,-38486.42,-38474.9,-38463.375,-38451.85,-38440.332,-38428.81,-38417.285,-38405.76,-38394.24,-38382.715,-38371.19,-38359.668,-38348.15,-38336.625,-38325.1,-38313.58,-38302.055,-38290.53,-38279.008,-38267.49,-38255.965,-38244.44,-38232.918,-38221.395,-38209.87,-38198.348,-38186.83,-38175.305,-38163.78,-38152.258,-38140.734,-38129.21,-38117.688,-38106.168,-38094.645,-38083.12,-38071.598,-38060.074,-38048.55,-38037.027,-38025.508,-38013.984,-38002.46,-37990.938,-37979.414,-37967.89,-37956.367,-37944.848,-37933.324,-37921.8,-37910.277,-37898.754,-37887.23,-37875.707,-37864.188,-37852.664,-37841.14,-37829.617,-37818.094,-37806.57,-37795.047,-37783.527,-37772.004,-37760.48,-37748.957,-37737.434,-37725.91,-37714.387,-37702.867,-37691.344,-37679.82,-37668.297,-37656.773,-37645.25,-37633.727,-37622.207,-37610.684,-37599.16,-37587.637,-37576.113,-37564.59,-37553.066,-37541.547,-37530.023,-37518.5,-37506.977,-37495.453,-37483.93,-37472.406,-37460.887,-37449.363,-37437.84,-37426.316,-37414.793,-37403.27,-37391.746,-37380.227,-37368.703,-37357.18,-37345.656,-37334.133,-37322.61,-37311.086,-37299.566,-37288.043,-37276.52,-37264.996,-37253.473,-37241.95,-37230.426,-37218.906,-37207.383,-37195.86,-37184.336,-37172.812,-37161.29,-37149.766,-37138.246,-37126.723,-37115.2,-37103.676,-37092.152,-37080.63,-37069.105,-37057.586,-37046.062,-37034.54,-37023.016,-37011.492,-36999.97,-36988.445,-36976.926,-36965.402,-36953.88,-36942.355,-36930.832,-36919.31,-36907.785,-36896.266,-36884.742,-36873.22,-36861.695,-36850.17,-36838.65,-36827.125,-36815.605,-36804.082,-36792.56,-36781.035,-36769.51,-36757.99,-36746.465,-36734.945,-36723.42,-36711.9,-36700.375,-36688.85,-36677.33,-36665.805,-36654.285,-36642.76,-36631.24,-36619.715,-36608.19,-36596.668,-36585.145,-36573.625,-36562.1,-36550.58,-36539.055,-36527.53,-36516.008,-36504.484,-36492.965,-36481.44,-36469.918,-36458.395,-36446.87,-36435.348,-36423.824,-36412.305,-36400.78,-36389.258,-36377.734,-36366.21,-36354.688,-36343.164,-36331.645,-36320.12,-36308.598,-36297.074,-36285.55,-36274.027,-36262.504,-36250.984,-36239.46,-36227.938,-36216.414,-36204.89,-36193.367,-36181.844,-36170.324,-36158.8,-36147.277,-36135.754,-36124.23,-36112.707,-36101.184,-36089.664,-36078.14,-36066.617,-36055.094,-36043.57,-36032.047,-36020.523,-36009.004,-35997.48,-35985.957,-35974.434,-35962.91,-35951.387,-35939.863,-35928.344,-35916.82,-35905.297,-35893.773,-35882.25,-35870.727,-35859.203,-35847.684,-35836.16,-35824.637,-35813.113,-35801.59,-35790.066,-35778.543,-35767.023,-35755.5,-35743.977,-35732.453,-35720.93,-35709.406,-35697.883,-35686.363,-35674.84,-35663.316,-35651.793,-35640.27,-35628.746,-35617.223,-35605.703,-35594.18,-35582.656,-35571.133,-35559.61,-35548.086,-35536.562,-35525.043,-35513.52,-35501.996,-35490.473,-35478.95,-35467.426,-35455.902,-35444.383,-35432.86,-35421.336,-35409.812,-35398.29,-35386.766,-35375.242,-35363.723,-35352.2,-35340.676,-35329.152,-35317.63,-35306.105,-35294.582,-35283.062,-35271.54,-35260.016,-35248.492,-35236.97,-35225.445,-35213.92,-35202.402,-35190.88,-35179.355,-35167.832,-35156.31,-35144.785,-35133.26,-35121.742,-35110.22,-35098.695,-35087.17,-35075.65,-35064.125,-35052.6,-35041.082,-35029.56,-35018.035,-35006.51,-34994.99,-34983.465,-34971.94,-34960.42,-34948.9,-34937.375,-34925.85,-34914.33,-34902.805,-34891.28,-34879.76,-34868.24,-34856.715,-34845.19,-34833.668,-34822.145,-34810.62,-34799.1,-34787.58,-34776.055,-34764.53,-34753.008,-34741.484,-34729.96,-34718.44,-34706.918,-34695.395,-34683.87,-34672.348,-34660.824,-34649.3,-34637.78,-34626.258,-34614.734,-34603.21,-34591.688,-34580.164,-34568.64,-34557.12,-34545.598,-34534.074,-34522.55,-34511.027,-34499.504,-34487.98,-34476.46,-34464.938,-34453.414,-34441.89,-34430.367,-34418.844,-34407.32,-34395.8,-34384.277,-34372.754,-34361.23,-34349.707,-34338.184,-34326.66,-34315.14,-34303.617,-34292.094,-34280.57,-34269.047,-34257.523,-34246.0,-34234.48,-34222.957,-34211.434,-34199.91,-34188.387,-34176.863,-34165.34,-34153.82,-34142.297,-34130.773,-34119.25,-34107.727,-34096.203,-34084.68,-34073.16,-34061.637,-34050.113,-34038.59,-34027.066,-34015.543,-34004.02,-33992.5,-33980.977,-33969.453,-33957.93,-33946.406,-33934.883,-33923.36,-33911.84,-33900.316,-33888.793,-33877.27,-33865.746,-33854.223,-33842.7,-33831.18,-33819.656,-33808.133,-33796.61,-33785.086,-33773.562,-33762.04,-33750.52,-33738.996,-33727.473,-33715.95,-33704.426,-33692.902,-33681.38,-33669.86,-33658.336,-33646.812,-33635.29,-33623.766,-33612.242,-33600.72,-33589.2,-33577.676,-33566.152,-33554.63,-33543.105,-33531.582,-33520.06,-33508.54,-33497.016,-33485.492,-33473.97,-33462.445,-33450.92,-33439.4,-33427.88,-33416.355,-33404.832,-33393.31,-33381.785,-33370.26,-33358.74,-33347.22,-33335.695,-33324.17,-33312.65,-33301.125,-33289.6,-33278.08,-33266.555,-33255.035,-33243.51,-33231.99,-33220.465,-33208.94,-33197.418,-33185.895,-33174.375,-33162.85,-33151.33,-33139.805,-33128.28,-33116.758,-33105.234,-33093.715,-33082.19,-33070.668,-33059.145,-33047.62,-33036.098,-33024.574,-33013.055,-33001.53,-32990.008,-32978.484,-32966.96,-32955.438,-32943.914,-32932.395,-32920.87,-32909.348,-32897.824,-32886.3,-32874.777,-32863.254,-32851.734,-32840.21,-32828.688,-32817.164,-32805.64,-32794.117,-32782.594,-32771.074,-32759.55,-32748.027,-32736.504,-32724.98,-32713.459,-32701.936,-32690.412,-32678.89,-32667.367,-32655.844,-32644.32,-32632.799,-32621.275,-32609.752,-32598.23,-32586.707,-32575.184,-32563.66,-32552.139,-32540.615,-32529.092,-32517.57,-32506.047,-32494.523,-32483.0,-32471.479,-32459.955,-32448.432,-32436.91,-32425.387,-32413.863,-32402.34,-32390.818,-32379.295,-32367.771,-32356.25,-32344.727,-32333.203,-32321.68,-32310.158,-32298.635,-32287.111,-32275.59,-32264.066,-32252.543,-32241.02,-32229.498,-32217.975,-32206.451,-32194.93,-32183.406,-32171.883,-32160.36,-32148.838,-32137.314,-32125.791,-32114.27,-32102.746,-32091.223,-32079.7,-32068.178,-32056.654,-32045.13,-32033.61,-32022.086,-32010.562,-31999.04,-31987.518,-31975.994,-31964.47,-31952.947,-31941.426,-31929.902,-31918.379,-31906.857,-31895.334,-31883.81,-31872.287,-31860.766,-31849.242,-31837.719,-31826.197,-31814.674,-31803.15,-31791.627,-31780.105,-31768.582,-31757.059,-31745.537,-31734.014,-31722.49,-31710.967,-31699.445,-31687.922,-31676.398,-31664.877,-31653.354,-31641.83,-31630.307,-31618.785,-31607.262,-31595.738,-31584.217,-31572.693,-31561.17,-31549.646,-31538.125,-31526.602,-31515.078,-31503.557,-31492.033,-31480.51,-31468.986,-31457.465,-31445.941,-31434.418,-31422.896,-31411.373,-31399.85,-31388.326,-31376.805,-31365.281,-31353.758,-31342.236,-31330.713,-31319.19,-31307.666,-31296.145,-31284.621,-31273.098,-31261.576,-31250.053,-31238.53,-31227.006,-31215.484,-31203.96,-31192.438,-31180.916,-31169.393,-31157.87,-31146.346,-31134.824,-31123.3,-31111.777,-31100.256,-31088.732,-31077.209,-31065.686,-31054.164,-31042.64,-31031.117,-31019.596,-31008.072,-30996.549,-30985.025,-30973.504,-30961.98,-30950.457,-30938.936,-30927.412,-30915.889,-30904.365,-30892.844,-30881.32,-30869.797,-30858.275,-30846.752,-30835.229,-30823.705,-30812.184,-30800.66,-30789.137,-30777.615,-30766.092,-30754.568,-30743.045,-30731.523,-30720.0,-30708.477,-30696.955,-30685.432,-30673.908,-30662.385,-30650.863,-30639.34,-30627.816,-30616.295,-30604.771,-30593.248,-30581.725,-30570.203,-30558.68,-30547.156,-30535.635,-30524.111,-30512.588,-30501.064,-30489.543,-30478.02,-30466.496,-30454.975,-30443.451,-30431.928,-30420.404,-30408.883,-30397.36,-30385.836,-30374.314,-30362.791,-30351.268,-30339.744,-30328.223,-30316.7,-30305.176,-30293.654,-30282.13,-30270.607,-30259.084,-30247.562,-30236.04,-30224.516,-30212.994,-30201.47,-30189.947,-30178.424,-30166.902,-30155.379,-30143.855,-30132.334,-30120.81,-30109.287,-30097.764,-30086.242,-30074.719,-30063.195,-30051.674,-30040.15,-30028.627,-30017.104,-30005.582,-29994.059,-29982.535,-29971.014,-29959.49,-29947.967,-29936.443,-29924.922,-29913.398,-29901.875,-29890.354,-29878.83,-29867.307,-29855.783,-29844.262,-29832.738,-29821.215,-29809.693,-29798.17,-29786.646,-29775.123,-29763.602,-29752.078,-29740.555,-29729.033,-29717.51,-29705.986,-29694.463,-29682.941,-29671.418,-29659.895,-29648.373,-29636.85,-29625.326,-29613.803,-29602.281,-29590.758,-29579.234,-29567.713,-29556.19,-29544.666,-29533.143,-29521.621,-29510.098,-29498.574,-29487.053,-29475.53,-29464.006,-29452.482,-29440.96,-29429.438,-29417.914,-29406.39,-29394.87,-29383.346,-29371.822,-29360.3,-29348.777,-29337.254,-29325.73,-29314.209,-29302.686,-29291.162,-29279.64,-29268.117,-29256.594,-29245.07,-29233.549,-29222.025,-29210.502,-29198.98,-29187.457,-29175.934,-29164.41,-29152.889,-29141.365,-29129.842,-29118.32,-29106.797,-29095.273,-29083.75,-29072.229,-29060.705,-29049.182,-29037.66,-29026.137,-29014.613,-29003.09,-28991.568,-28980.045,-28968.521,-28957.0,-28945.477,-28933.953,-28922.43,-28910.908,-28899.385,-28887.861,-28876.34,-28864.816,-28853.293,-28841.77,-28830.248,-28818.725,-28807.201,-28795.68,-28784.156,-28772.633,-28761.11,-28749.588,-28738.064,-28726.541,-28715.02,-28703.496,-28691.973,-28680.45,-28668.928,-28657.404,-28645.88,-28634.36,-28622.836,-28611.312,-28599.79,-28588.268,-28576.744,-28565.22,-28553.7,-28542.176,-28530.652,-28519.129,-28507.607,-28496.084,-28484.56,-28473.04,-28461.516,-28449.992,-28438.469,-28426.947,-28415.424,-28403.9,-28392.379,-28380.855,-28369.332,-28357.809,-28346.287,-28334.764,-28323.24,-28311.719,-28300.195,-28288.672,-28277.148,-28265.627,-28254.104,-28242.58,-28231.059,-28219.535,-28208.012,-28196.488,-28184.967,-28173.443,-28161.92,-28150.398,-28138.875,-28127.352,-28115.828,-28104.307,-28092.783,-28081.26,-28069.738,-28058.215,-28046.691,-28035.168,-28023.646,-28012.123,-28000.6,-27989.078,-27977.555,-27966.031,-27954.508,-27942.986,-27931.463,-27919.94,-27908.418,-27896.895,-27885.371,-27873.848,-27862.326,-27850.803,-27839.28,-27827.758,-27816.234,-27804.71,-27793.188,-27781.666,-27770.143,-27758.62,-27747.098,-27735.574,-27724.05,-27712.527,-27701.006,-27689.482,-27677.959,-27666.438,-27654.914,-27643.39,-27631.867,-27620.346,-27608.822,-27597.299,-27585.777,-27574.254,-27562.73,-27551.207,-27539.686,-27528.162,-27516.639,-27505.117,-27493.594,-27482.07,-27470.547,-27459.025,-27447.502,-27435.979,-27424.457,-27412.934,-27401.41,-27389.887,-27378.365,-27366.842,-27355.318,-27343.797,-27332.273,-27320.75,-27309.227,-27297.705,-27286.182,-27274.658,-27263.137,-27251.613,-27240.09,-27228.566,-27217.045,-27205.521,-27193.998,-27182.477,-27170.953,-27159.43,-27147.906,-27136.385,-27124.861,-27113.338,-27101.816,-27090.293,-27078.77,-27067.246,-27055.725,-27044.201,-27032.678,-27021.156,-27009.633,-26998.11,-26986.586,-26975.064,-26963.541,-26952.018,-26940.496,-26928.973,-26917.45,-26905.926,-26894.404,-26882.88,-26871.357,-26859.834,-26848.312,-26836.79,-26825.266,-26813.744,-26802.22,-26790.697,-26779.174,-26767.652,-26756.129,-26744.605,-26733.084,-26721.56,-26710.037,-26698.514,-26686.992,-26675.469,-26663.945,-26652.424,-26640.9,-26629.377,-26617.854,-26606.332,-26594.809,-26583.285,-26571.764,-26560.24,-26548.717,-26537.193,-26525.672,-26514.148,-26502.625,-26491.104,-26479.58,-26468.057,-26456.533,-26445.012,-26433.488,-26421.965,-26410.443,-26398.92,-26387.396,-26375.873,-26364.352,-26352.828,-26341.305,-26329.783,-26318.26,-26306.736,-26295.213,-26283.691,-26272.168,-26260.645,-26249.123,-26237.6,-26226.076,-26214.553,-26203.031,-26191.508,-26179.984,-26168.463,-26156.94,-26145.416,-26133.893,-26122.371,-26110.848,-26099.324,-26087.803,-26076.28,-26064.756,-26053.232,-26041.71,-26030.188,-26018.664,-26007.143,-25995.62,-25984.096,-25972.572,-25961.05,-25949.527,-25938.004,-25926.482,-25914.959,-25903.436,-25891.912,-25880.39,-25868.867,-25857.344,-25845.822,-25834.299,-25822.775,-25811.252,-25799.73,-25788.207,-25776.684,-25765.162,-25753.639,-25742.115,-25730.592,-25719.07,-25707.547,-25696.023,-25684.502,-25672.979,-25661.455,-25649.932,-25638.41,-25626.887,-25615.363,-25603.842,-25592.318,-25580.795,-25569.271,-25557.75,-25546.227,-25534.703,-25523.182,-25511.658,-25500.135,-25488.611,-25477.09,-25465.566,-25454.043,-25442.521,-25430.998,-25419.475,-25407.951,-25396.43,-25384.906,-25373.383,-25361.861,-25350.338,-25338.814,-25327.291,-25315.77,-25304.246,-25292.723,-25281.201,-25269.678,-25258.154,-25246.63,-25235.11,-25223.586,-25212.062,-25200.541,-25189.018,-25177.494,-25165.97,-25154.45,-25142.926,-25131.402,-25119.88,-25108.357,-25096.834,-25085.31,-25073.79,-25062.266,-25050.742,-25039.22,-25027.697,-25016.174,-25004.65,-24993.129,-24981.605,-24970.082,-24958.56,-24947.037,-24935.514,-24923.99,-24912.469,-24900.945,-24889.422,-24877.9,-24866.377,-24854.854,-24843.33,-24831.809,-24820.285,-24808.762,-24797.24,-24785.717,-24774.193,-24762.67,-24751.148,-24739.625,-24728.102,-24716.58,-24705.057,-24693.533,-24682.01,-24670.488,-24658.965,-24647.441,-24635.92,-24624.396,-24612.873,-24601.35,-24589.828,-24578.305,-24566.781,-24555.26,-24543.736,-24532.213,-24520.69,-24509.168,-24497.645,-24486.121,-24474.6,-24463.076,-24451.553,-24440.03,-24428.508,-24416.984,-24405.46,-24393.94,-24382.416,-24370.893,-24359.37,-24347.848,-24336.324,-24324.8,-24313.277,-24301.756,-24290.232,-24278.709,-24267.188,-24255.664,-24244.14,-24232.617,-24221.096,-24209.572,-24198.049,-24186.527,-24175.004,-24163.48,-24151.957,-24140.436,-24128.912,-24117.389,-24105.867,-24094.344,-24082.82,-24071.297,-24059.775,-24048.252,-24036.729,-24025.207,-24013.684,-24002.16,-23990.637,-23979.115,-23967.592,-23956.068,-23944.547,-23933.023,-23921.5,-23909.977,-23898.455,-23886.932,-23875.408,-23863.887,-23852.363,-23840.84,-23829.316,-23817.795,-23806.271,-23794.748,-23783.227,-23771.703,-23760.18,-23748.656,-23737.135,-23725.611,-23714.088,-23702.566,-23691.043,-23679.52,-23667.996,-23656.475,-23644.951,-23633.428,-23621.906,-23610.383,-23598.86,-23587.336,-23575.814,-23564.291,-23552.768,-23541.246,-23529.723,-23518.2,-23506.676,-23495.154,-23483.63,-23472.107,-23460.586,-23449.062,-23437.54,-23426.016,-23414.494,-23402.97,-23391.447,-23379.926,-23368.402,-23356.879,-23345.355,-23333.834,-23322.31,-23310.787,-23299.266,-23287.742,-23276.219,-23264.695,-23253.174,-23241.65,-23230.127,-23218.605,-23207.082,-23195.559,-23184.035,-23172.514,-23160.99,-23149.467,-23137.945,-23126.422,-23114.898,-23103.375,-23091.854,-23080.33,-23068.807,-23057.285,-23045.762,-23034.238,-23022.715,-23011.193,-22999.67,-22988.146,-22976.625,-22965.102,-22953.578,-22942.055,-22930.533,-22919.01,-22907.486,-22895.965,-22884.441,-22872.918,-22861.395,-22849.873,-22838.35,-22826.826,-22815.305,-22803.781,-22792.258,-22780.734,-22769.213,-22757.69,-22746.166,-22734.645,-22723.121,-22711.598,-22700.074,-22688.553,-22677.03,-22665.506,-22653.984,-22642.46,-22630.938,-22619.414,-22607.893,-22596.37,-22584.846,-22573.324,-22561.8,-22550.277,-22538.754,-22527.232,-22515.709,-22504.186,-22492.664,-22481.14,-22469.617,-22458.094,-22446.572,-22435.049,-22423.525,-22412.004,-22400.48,-22388.957,-22377.434,-22365.912,-22354.389,-22342.865,-22331.344,-22319.82,-22308.297,-22296.773,-22285.252,-22273.729,-22262.205,-22250.684,-22239.16,-22227.637,-22216.113,-22204.592,-22193.068,-22181.545,-22170.023,-22158.5,-22146.977,-22135.453,-22123.932,-22112.408,-22100.885,-22089.363,-22077.84,-22066.316,-22054.793,-22043.271,-22031.748,-22020.225,-22008.703,-21997.18,-21985.656,-21974.133,-21962.611,-21951.088,-21939.564,-21928.043,-21916.52,-21904.996,-21893.473,-21881.951,-21870.428,-21858.904,-21847.383,-21835.86,-21824.336,-21812.812,-21801.291,-21789.768,-21778.244,-21766.723,-21755.2,-21743.676,-21732.152,-21720.63,-21709.107,-21697.584,-21686.06,-21674.54,-21663.016,-21651.492,-21639.97,-21628.447,-21616.924,-21605.4,-21593.879,-21582.355,-21570.832,-21559.31,-21547.787,-21536.264,-21524.74,-21513.219,-21501.695,-21490.172,-21478.65,-21467.127,-21455.604,-21444.08,-21432.559,-21421.035,-21409.512,-21397.99,-21386.467,-21374.943,-21363.42,-21351.898,-21340.375,-21328.852,-21317.33,-21305.807,-21294.283,-21282.76,-21271.238,-21259.715,-21248.191,-21236.67,-21225.146,-21213.623,-21202.1,-21190.578,-21179.055,-21167.531,-21156.01,-21144.486,-21132.963,-21121.44,-21109.918,-21098.395,-21086.871,-21075.35,-21063.826,-21052.303,-21040.78,-21029.258,-21017.734,-21006.21,-20994.69,-20983.166,-20971.643,-20960.12,-20948.598,-20937.074,-20925.55,-20914.03,-20902.506,-20890.982,-20879.459,-20867.938,-20856.414,-20844.89,-20833.37,-20821.846,-20810.322,-20798.799,-20787.277,-20775.754,-20764.23,-20752.709,-20741.186,-20729.662,-20718.139,-20706.617,-20695.094,-20683.57,-20672.049,-20660.525,-20649.002,-20637.479,-20625.957,-20614.434,-20602.91,-20591.389,-20579.865,-20568.342,-20556.818,-20545.297,-20533.773,-20522.25,-20510.729,-20499.205,-20487.682,-20476.158,-20464.637,-20453.113,-20441.59,-20430.068,-20418.545,-20407.021,-20395.498,-20383.977,-20372.453,-20360.93,-20349.408,-20337.885,-20326.361,-20314.838,-20303.316,-20291.793,-20280.27,-20268.748,-20257.225,-20245.701,-20234.178,-20222.656,-20211.133,-20199.61,-20188.088,-20176.564,-20165.041,-20153.518,-20141.996,-20130.473,-20118.95,-20107.428,-20095.904,-20084.38,-20072.857,-20061.336,-20049.812,-20038.29,-20026.768,-20015.244,-20003.72,-19992.197,-19980.676,-19969.152,-19957.629,-19946.107,-19934.584,-19923.06,-19911.537,-19900.016,-19888.492,-19876.969,-19865.447,-19853.924,-19842.4,-19830.877,-19819.355,-19807.832,-19796.309,-19784.787,-19773.264,-19761.74,-19750.217,-19738.695,-19727.172,-19715.648,-19704.127,-19692.604,-19681.08,-19669.557,-19658.035,-19646.512,-19634.988,-19623.467,-19611.943,-19600.42,-19588.896,-19577.375,-19565.852,-19554.328,-19542.807,-19531.283,-19519.76,-19508.236,-19496.715,-19485.191,-19473.668,-19462.146,-19450.623,-19439.1,-19427.576,-19416.055,-19404.531,-19393.008,-19381.486,-19369.963,-19358.44,-19346.916,-19335.395,-19323.871,-19312.348,-19300.826,-19289.303,-19277.78,-19266.256,-19254.734,-19243.21,-19231.688,-19220.166,-19208.643,-19197.12,-19185.596,-19174.074,-19162.55,-19151.027,-19139.504,-19127.982,-19116.459,-19104.936,-19093.414,-19081.89,-19070.367,-19058.844,-19047.322,-19035.799,-19024.275,-19012.754,-19001.23,-18989.707,-18978.184,-18966.662,-18955.139,-18943.615,-18932.094,-18920.57,-18909.047,-18897.523,-18886.002,-18874.479,-18862.955,-18851.434,-18839.91,-18828.387,-18816.863,-18805.342,-18793.818,-18782.295,-18770.773,-18759.25,-18747.727,-18736.203,-18724.682,-18713.158,-18701.635,-18690.113,-18678.59,-18667.066,-18655.543,-18644.021,-18632.498,-18620.975,-18609.453,-18597.93,-18586.406,-18574.883,-18563.361,-18551.838,-18540.314,-18528.793,-18517.27,-18505.746,-18494.223,-18482.701,-18471.178,-18459.654,-18448.133,-18436.61,-18425.086,-18413.562,-18402.041,-18390.518,-18378.994,-18367.473,-18355.95,-18344.426,-18332.902,-18321.38,-18309.857,-18298.334,-18286.812,-18275.29,-18263.766,-18252.242,-18240.72,-18229.197,-18217.674,-18206.152,-18194.629,-18183.105,-18171.582,-18160.06,-18148.537,-18137.014,-18125.492,-18113.969,-18102.445,-18090.922,-18079.4,-18067.877,-18056.354,-18044.832,-18033.309,-18021.785,-18010.262,-17998.74,-17987.217,-17975.693,-17964.172,-17952.648,-17941.125,-17929.602,-17918.08,-17906.557,-17895.033,-17883.512,-17871.988,-17860.465,-17848.941,-17837.42,-17825.896,-17814.373,-17802.852,-17791.328,-17779.805,-17768.281,-17756.76,-17745.236,-17733.713,-17722.191,-17710.668,-17699.145,-17687.621,-17676.1,-17664.576,-17653.053,-17641.531,-17630.008,-17618.484,-17606.96,-17595.44,-17583.916,-17572.393,-17560.871,-17549.348,-17537.824,-17526.3,-17514.78,-17503.256,-17491.732,-17480.21,-17468.688,-17457.164,-17445.64,-17434.12,-17422.596,-17411.072,-17399.55,-17388.027,-17376.504,-17364.98,-17353.459,-17341.936,-17330.412,-17318.89,-17307.367,-17295.844,-17284.32,-17272.799,-17261.275,-17249.752,-17238.23,-17226.707,-17215.184,-17203.66,-17192.139,-17180.615,-17169.092,-17157.57,-17146.047,-17134.523,-17123.0,-17111.479,-17099.955,-17088.432,-17076.91,-17065.387,-17053.863,-17042.34,-17030.818,-17019.295,-17007.771,-16996.25,-16984.727,-16973.203,-16961.68,-16950.158,-16938.635,-16927.111,-16915.59,-16904.066,-16892.543,-16881.02,-16869.498,-16857.975,-16846.451,-16834.93,-16823.406,-16811.883,-16800.36,-16788.838,-16777.314,-16765.791,-16754.27,-16742.746,-16731.223,-16719.7,-16708.178,-16696.654,-16685.13,-16673.61,-16662.086,-16650.562,-16639.04,-16627.518,-16615.994,-16604.47,-16592.947,-16581.426,-16569.902,-16558.379,-16546.857,-16535.334,-16523.81,-16512.287,-16500.766,-16489.242,-16477.719,-16466.197,-16454.674,-16443.15,-16431.627,-16420.105,-16408.582,-16397.059,-16385.537,-16374.014,-16362.49,-16350.968,-16339.445,-16327.922,-16316.399,-16304.876,-16293.354,-16281.83,-16270.308,-16258.785,-16247.262,-16235.739,-16224.216,-16212.693,-16201.17,-16189.647,-16178.125,-16166.602,-16155.079,-16143.556,-16132.033,-16120.51,-16108.987,-16097.465,-16085.941,-16074.419,-16062.8955,-16051.373,-16039.85,-16028.327,-16016.805,-16005.281,-15993.759,-15982.235,-15970.713,-15959.189,-15947.667,-15936.144,-15924.621,-15913.099,-15901.575,-15890.053,-15878.529,-15867.007,-15855.483,-15843.961,-15832.438,-15820.915,-15809.393,-15797.869,-15786.347,-15774.823,-15763.301,-15751.778,-15740.255,-15728.732,-15717.209,-15705.687,-15694.163,-15682.641,-15671.118,-15659.595,-15648.072,-15636.549,-15625.026,-15613.503,-15601.98,-15590.458,-15578.935,-15567.412,-15555.889,-15544.366,-15532.843,-15521.32,-15509.798,-15498.274,-15486.752,-15475.229,-15463.706,-15452.183,-15440.66,-15429.138,-15417.614,-15406.092,-15394.568,-15383.046,-15371.522,-15360.0,-15348.478,-15336.954,-15325.432,-15313.908,-15302.386,-15290.862,-15279.34,-15267.817,-15256.294,-15244.771,-15233.248,-15221.726,-15210.202,-15198.68,-15187.157,-15175.634,-15164.111,-15152.588,-15141.065,-15129.542,-15118.02,-15106.497,-15094.974,-15083.451,-15071.928,-15060.405,-15048.882,-15037.359,-15025.837,-15014.313,-15002.791,-14991.268,-14979.745,-14968.222,-14956.699,-14945.177,-14933.653,-14922.131,-14910.607,-14899.085,-14887.562,-14876.039,-14864.517,-14852.993,-14841.471,-14829.947,-14818.425,-14806.901,-14795.379,-14783.856,-14772.333,-14760.811,-14749.287,-14737.765,-14726.241,-14714.719,-14703.195,-14691.673,-14680.15,-14668.627,-14657.1045,-14645.581,-14634.059,-14622.535,-14611.013,-14599.49,-14587.967,-14576.444,-14564.921,-14553.398,-14541.875,-14530.353,-14518.83,-14507.307,-14495.784,-14484.261,-14472.738,-14461.215,-14449.692,-14438.17,-14426.646,-14415.124,-14403.601,-14392.078,-14380.555,-14369.032,-14357.51,-14345.986,-14334.464,-14322.94,-14311.418,-14299.895,-14288.372,-14276.85,-14265.326,-14253.804,-14242.28,-14230.758,-14219.234,-14207.712,-14196.189,-14184.666,-14173.144,-14161.62,-14150.098,-14138.574,-14127.052,-14115.529,-14104.006,-14092.483,-14080.96,-14069.4375,-14057.914,-14046.392,-14034.869,-14023.346,-14011.823,-14000.3,-13988.777,-13977.254,-13965.731,-13954.209,-13942.686,-13931.163,-13919.64,-13908.117,-13896.594,-13885.071,-13873.549,-13862.025,-13850.503,-13838.9795,-13827.457,-13815.934,-13804.411,-13792.889,-13781.365,-13769.843,-13758.319,-13746.797,-13735.273,-13723.751,-13712.229,-13700.705,-13689.183,-13677.659,-13666.137,-13654.613,-13643.091,-13631.568,-13620.045,-13608.522,-13596.999,-13585.477,-13573.953,-13562.431,-13550.908,-13539.385,-13527.862,-13516.339,-13504.816,-13493.293,-13481.7705,-13470.248,-13458.725,-13447.202,-13435.679,-13424.156,-13412.633,-13401.11,-13389.587,-13378.064,-13366.542,-13355.019,-13343.496,-13331.973,-13320.45,-13308.927,-13297.404,-13285.882,-13274.358,-13262.836,-13251.3125,-13239.79,-13228.267,-13216.744,-13205.222,-13193.698,-13182.176,-13170.652,-13159.13,-13147.606,-13136.084,-13124.562,-13113.038,-13101.516,-13089.992,-13078.47,-13066.946,-13055.424,-13043.901,-13032.378,-13020.855,-13009.332,-12997.81,-12986.286,-12974.764,-12963.241,-12951.718,-12940.195,-12928.672,-12917.149,-12905.626,-12894.104,-12882.581,-12871.058,-12859.535,-12848.012,-12836.489,-12824.966,-12813.443,-12801.921,-12790.397,-12778.875,-12767.352,-12755.829,-12744.306,-12732.783,-12721.261,-12709.737,-12698.215,-12686.691,-12675.169,-12663.6455,-12652.123,-12640.601,-12629.077,-12617.555,-12606.031,-12594.509,-12582.985,-12571.463,-12559.94,-12548.417,-12536.895,-12525.371,-12513.849,-12502.325,-12490.803,-12479.28,-12467.757,-12456.234,-12444.711,-12433.188,-12421.665,-12410.143,-12398.62,-12387.097,-12375.574,-12364.051,-12352.528,-12341.005,-12329.482,-12317.96,-12306.437,-12294.914,-12283.391,-12271.868,-12260.345,-12248.822,-12237.3,-12225.776,-12214.254,-12202.73,-12191.208,-12179.685,-12168.162,-12156.639,-12145.116,-12133.594,-12122.07,-12110.548,-12099.024,-12087.502,-12075.979,-12064.456,-12052.934,-12041.41,-12029.888,-12018.364,-12006.842,-11995.318,-11983.796,-11972.273,-11960.75,-11949.228,-11937.704,-11926.182,-11914.658,-11903.136,-11891.613,-11880.09,-11868.567,-11857.044,-11845.521,-11833.998,-11822.476,-11810.953,-11799.43,-11787.907,-11776.384,-11764.861,-11753.338,-11741.815,-11730.293,-11718.77,-11707.247,-11695.724,-11684.201,-11672.678,-11661.155,-11649.633,-11638.109,-11626.587,-11615.063,-11603.541,-11592.018,-11580.495,-11568.973,-11557.449,-11545.927,-11534.403,-11522.881,-11511.357,-11499.835,-11488.3125,-11476.789,-11465.267,-11453.743,-11442.221,-11430.697,-11419.175,-11407.652,-11396.129,-11384.606,-11373.083,-11361.561,-11350.037,-11338.515,-11326.992,-11315.469,-11303.946,-11292.423,-11280.9,-11269.377,-11257.8545,-11246.332,-11234.809,-11223.286,-11211.763,-11200.24,-11188.717,-11177.194,-11165.672,-11154.148,-11142.626,-11131.103,-11119.58,-11108.057,-11096.534,-11085.012,-11073.488,-11061.966,-11050.442,-11038.92,-11027.396,-11015.874,-11004.352,-10992.828,-10981.306,-10969.782,-10958.26,-10946.736,-10935.214,-10923.691,-10912.168,-10900.6455,-10889.122,-10877.6,-10866.076,-10854.554,-10843.03,-10831.508,-10819.985,-10808.462,-10796.939,-10785.416,-10773.894,-10762.37,-10750.848,-10739.325,-10727.802,-10716.279,-10704.756,-10693.233,-10681.71,-10670.1875,-10658.665,-10647.142,-10635.619,-10624.096,-10612.573,-10601.05,-10589.527,-10578.005,-10566.481,-10554.959,-10543.436,-10531.913,-10520.39,-10508.867,-10497.345,-10485.821,-10474.299,-10462.775,-10451.253,-10439.7295,-10428.207,-10416.685,-10405.161,-10393.639,-10382.115,-10370.593,-10359.069,-10347.547,-10336.024,-10324.501,-10312.979,-10301.455,-10289.933,-10278.409,-10266.887,-10255.364,-10243.841,-10232.318,-10220.795,-10209.272,-10197.749,-10186.227,-10174.704,-10163.181,-10151.658,-10140.135,-10128.612,-10117.089,-10105.566,-10094.044,-10082.5205,-10070.998,-10059.475,-10047.952,-10036.429,-10024.906,-10013.384,-10001.86,-9990.338,-9978.814,-9967.292,-9955.769,-9944.246,-9932.724,-9921.2,-9909.678,-9898.154,-9886.632,-9875.108,-9863.586,-9852.063,-9840.54,-9829.018,-9817.494,-9805.972,-9794.448,-9782.926,-9771.403,-9759.88,-9748.357,-9736.834,-9725.312,-9713.788,-9702.266,-9690.743,-9679.22,-9667.697,-9656.174,-9644.651,-9633.128,-9621.605,-9610.083,-9598.56,-9587.037,-9575.514,-9563.991,-9552.468,-9540.945,-9529.422,-9517.899,-9506.377,-9494.854,-9483.331,-9471.808,-9460.285,-9448.762,-9437.239,-9425.717,-9414.193,-9402.671,-9391.147,-9379.625,-9368.102,-9356.579,-9345.057,-9333.533,-9322.011,-9310.487,-9298.965,-9287.441,-9275.919,-9264.396,-9252.873,-9241.351,-9229.827,-9218.305,-9206.781,-9195.259,-9183.736,-9172.213,-9160.69,-9149.167,-9137.645,-9126.121,-9114.599,-9103.076,-9091.553,-9080.03,-9068.507,-9056.984,-9045.461,-9033.938,-9022.416,-9010.893,-8999.37,-8987.847,-8976.324,-8964.801,-8953.278,-8941.756,-8930.232,-8918.71,-8907.187,-8895.664,-8884.141,-8872.618,-8861.096,-8849.572,-8838.05,-8826.526,-8815.004,-8803.48,-8791.958,-8780.436,-8768.912,-8757.39,-8745.866,-8734.344,-8722.82,-8711.298,-8699.775,-8688.252,-8676.7295,-8665.206,-8653.684,-8642.16,-8630.638,-8619.115,-8607.592,-8596.069,-8584.546,-8573.023,-8561.5,-8549.978,-8538.455,-8526.932,-8515.409,-8503.886,-8492.363,-8480.84,-8469.317,-8457.795,-8446.271,-8434.749,-8423.226,-8411.703,-8400.18,-8388.657,-8377.135,-8365.611,-8354.089,-8342.565,-8331.043,-8319.52,-8307.997,-8296.474,-8284.951,-8273.429,-8261.905,-8250.383,-8238.859,-8227.337,-8215.813,-8204.291,-8192.769,-8181.245,-8169.7227,-8158.1997,-8146.677,-8135.154,-8123.631,-8112.108,-8100.585,-8089.0625,-8077.5396,-8066.0166,-8054.4937,-8042.9707,-8031.4478,-8019.925,-8008.4023,-7996.8794,-7985.3564,-7973.8335,-7962.3105,-7950.7876,-7939.2646,-7927.7417,-7916.219,-7904.6963,-7893.1733,-7881.6504,-7870.1274,-7858.6045,-7847.0815,-7835.559,-7824.036,-7812.513,-7800.99,-7789.4673,-7777.9443,-7766.4214,-7754.899,-7743.376,-7731.853,-7720.33,-7708.807,-7697.284,-7685.761,-7674.239,-7662.716,-7651.193,-7639.67,-7628.147,-7616.624,-7605.101,-7593.5786,-7582.0557,-7570.5327,-7559.01,-7547.487,-7535.964,-7524.441,-7512.9185,-7501.3955,-7489.8726,-7478.3496,-7466.8267,-7455.3037,-7443.781,-7432.2583,-7420.7354,-7409.2124,-7397.6895,-7386.1665,-7374.6436,-7363.1206,-7351.5977,-7340.075,-7328.5522,-7317.0293,-7305.5063,-7293.9834,-7282.4604,-7270.9375,-7259.415,-7247.892,-7236.369,-7224.846,-7213.323,-7201.8003,-7190.2773,-7178.755,-7167.232,-7155.709,-7144.186,-7132.663,-7121.14,-7109.617,-7098.0947,-7086.572,-7075.049,-7063.526,-7052.003,-7040.48,-7028.957,-7017.4346,-7005.9116,-6994.3887,-6982.8657,-6971.343,-6959.82,-6948.297,-6936.7744,-6925.2515,-6913.7285,-6902.2056,-6890.6826,-6879.1597,-6867.6367,-6856.1143,-6844.5913,-6833.0684,-6821.5454,-6810.0225,-6798.4995,-6786.9766,-6775.454,-6763.931,-6752.408,-6740.8853,-6729.3623,-6717.8394,-6706.3164,-6694.7935,-6683.271,-6671.748,-6660.225,-6648.702,-6637.179,-6625.6562,-6614.1333,-6602.611,-6591.088,-6579.565,-6568.042,-6556.519,-6544.996,-6533.473,-6521.9507,-6510.4277,-6498.905,-6487.382,-6475.859,-6464.336,-6452.813,-6441.2905,-6429.7676,-6418.2446,-6406.7217,-6395.1987,-6383.676,-6372.153,-6360.6304,-6349.1074,-6337.5845,-6326.0615,-6314.5386,-6303.0156,-6291.4927,-6279.97,-6268.4473,-6256.9243,-6245.4014,-6233.8784,-6222.3555,-6210.8325,-6199.31,-6187.787,-6176.264,-6164.741,-6153.2183,-6141.6953,-6130.1724,-6118.65,-6107.127,-6095.604,-6084.081,-6072.558,-6061.035,-6049.512,-6037.9893,-6026.467,-6014.944,-6003.421,-5991.898,-5980.375,-5968.852,-5957.329,-5945.8066,-5934.2837,-5922.7607,-5911.238,-5899.715,-5888.192,-5876.669,-5865.1465,-5853.6235,-5842.1006,-5830.5776,-5819.0547,-5807.5317,-5796.009,-5784.4863,-5772.9634,-5761.4404,-5749.9175,-5738.3945,-5726.8716,-5715.3486,-5703.826,-5692.303,-5680.7803,-5669.2573,-5657.7344,-5646.2114,-5634.6885,-5623.166,-5611.643,-5600.12,-5588.597,-5577.074,-5565.5513,-5554.0283,-5542.506,-5530.983,-5519.46,-5507.937,-5496.414,-5484.891,-5473.368,-5461.8457,-5450.3228,-5438.8,-5427.277,-5415.754,-5404.231,-5392.708,-5381.185,-5369.6626,-5358.1396,-5346.6167,-5335.0938,-5323.571,-5312.048,-5300.525,-5289.0024,-5277.4795,-5265.9565,-5254.4336,-5242.9106,-5231.3877,-5219.8647,-5208.3423,-5196.8193,-5185.2964,-5173.7734,-5162.2505,-5150.7275,-5139.2046,-5127.682,-5116.159,-5104.636,-5093.1133,-5081.5903,-5070.0674,-5058.5444,-5047.022,-5035.499,-5023.976,-5012.453,-5000.93,-4989.407,-4977.8843,-4966.362,-4954.839,-4943.316,-4931.793,-4920.27,-4908.747,-4897.224,-4885.7017,-4874.1787,-4862.656,-4851.133,-4839.61,-4828.087,-4816.564,-4805.0415,-4793.5186,-4781.9956,-4770.4727,-4758.9497,-4747.427,-4735.904,-4724.381,-4712.8584,-4701.3354,-4689.8125,-4678.2896,-4666.7666,-4655.2437,-4643.7207,-4632.198,-4620.6753,-4609.1523,-4597.6294,-4586.1064,-4574.5835,-4563.0605,-4551.538,-4540.015,-4528.492,-4516.969,-4505.4463,-4493.9233,-4482.4004,-4470.878,-4459.355,-4447.832,-4436.309,-4424.786,-4413.263,-4401.74,-4390.218,-4378.695,-4367.172,-4355.649,-4344.126,-4332.603,-4321.08,-4309.5576,-4298.0347,-4286.5117,-4274.989,-4263.466,-4251.943,-4240.42,-4228.8975,-4217.3745,-4205.8516,-4194.3286,-4182.8057,-4171.2827,-4159.76,-4148.237,-4136.7144,-4125.1914,-4113.6685,-4102.1455,-4090.6226,-4079.0999,-4067.577,-4056.054,-4044.5312,-4033.0083,-4021.4854,-4009.9624,-3998.4397,-3986.9167,-3975.3938,-3963.8708,-3952.3481,-3940.8252,-3929.3022,-3917.7795,-3906.2566,-3894.7336,-3883.2107,-3871.688,-3860.165,-3848.642,-3837.1194,-3825.5964,-3814.0735,-3802.5505,-3791.0278,-3779.505,-3767.982,-3756.4592,-3744.9363,-3733.4133,-3721.8904,-3710.3677,-3698.8447,-3687.3218,-3675.7988,-3664.2761,-3652.7532,-3641.2302,-3629.7075,-3618.1846,-3606.6616,-3595.1387,-3583.616,-3572.093,-3560.57,-3549.0474,-3537.5244,-3526.0015,-3514.4785,-3502.9558,-3491.4329,-3479.91,-3468.3872,-3456.8643,-3445.3413,-3433.8184,-3422.2957,-3410.7727,-3399.2498,-3387.727,-3376.204,-3364.6812,-3353.1582,-3341.6355,-3330.1125,-3318.5896,-3307.0667,-3295.544,-3284.021,-3272.498,-3260.9753,-3249.4524,-3237.9294,-3226.4065,-3214.8838,-3203.3608,-3191.838,-3180.3152,-3168.7922,-3157.2693,-3145.7463,-3134.2236,-3122.7007,-3111.1777,-3099.655,-3088.132,-3076.6091,-3065.0862,-3053.5635,-3042.0405,-3030.5176,-3018.9946,-3007.472,-2995.949,-2984.426,-2972.9033,-2961.3804,-2949.8574,-2938.3345,-2926.8118,-2915.2888,-2903.7659,-2892.2432,-2880.7202,-2869.1973,-2857.6743,-2846.1516,-2834.6287,-2823.1057,-2811.583,-2800.06,-2788.537,-2777.0142,-2765.4915,-2753.9685,-2742.4456,-2730.9229,-2719.4,-2707.877,-2696.354,-2684.8313,-2673.3083,-2661.7854,-2650.2625,-2638.7397,-2627.2168,-2615.6938,-2604.1711,-2592.6482,-2581.1252,-2569.6023,-2558.0796,-2546.5566,-2535.0337,-2523.511,-2511.988,-2500.465,-2488.9421,-2477.4194,-2465.8965,-2454.3735,-2442.8508,-2431.328,-2419.805,-2408.282,-2396.7593,-2385.2363,-2373.7134,-2362.1904,-2350.6677,-2339.1448,-2327.6218,-2316.099,-2304.5762,-2293.0532,-2281.5303,-2270.0076,-2258.4846,-2246.9617,-2235.439,-2223.916,-2212.393,-2200.87,-2189.3474,-2177.8245,-2166.3015,-2154.7788,-2143.2559,-2131.733,-2120.21,-2108.6873,-2097.1643,-2085.6414,-2074.1184,-2062.5957,-2051.0728,-2039.5499,-2028.027,-2016.5042,-2004.9812,-1993.4584,-1981.9354,-1970.4126,-1958.8898,-1947.3668,-1935.844,-1924.321,-1912.7982,-1901.2753,-1889.7524,-1878.2296,-1866.7067,-1855.1838,-1843.6609,-1832.1381,-1820.6151,-1809.0923,-1797.5693,-1786.0465,-1774.5237,-1763.0007,-1751.4779,-1739.955,-1728.4321,-1716.9092,-1705.3864,-1693.8635,-1682.3406,-1670.8177,-1659.2948,-1647.772,-1636.249,-1624.7262,-1613.2032,-1601.6804,-1590.1576,-1578.6346,-1567.1118,-1555.5889,-1544.066,-1532.5431,-1521.0203,-1509.4973,-1497.9745,-1486.4517,-1474.9287,-1463.4059,-1451.8829,-1440.3601,-1428.8372,-1417.3143,-1405.7915,-1394.2686,-1382.7457,-1371.2228,-1359.7,-1348.177,-1336.6542,-1325.1312,-1313.6084,-1302.0856,-1290.5626,-1279.0398,-1267.5168,-1255.994,-1244.4711,-1232.9482,-1221.4254,-1209.9025,-1198.3796,-1186.8567,-1175.3339,-1163.8109,-1152.2881,-1140.7651,-1129.2423,-1117.7195,-1106.1965,-1094.6737,-1083.1508,-1071.6279,-1060.105,-1048.5822,-1037.0592,-1025.5364,-1014.0135,-1002.4906,-990.9677,-979.4449,-967.922,-956.3991,-944.8762,-933.35333,-921.83044,-910.30756,-898.78467,-887.26184,-875.73895,-864.21606,-852.6932,-841.1703,-829.6474,-818.1245,-806.6016,-795.0788,-783.5559,-772.033,-760.51013,-748.98724,-737.46436,-725.94147,-714.4186,-702.89575,-691.37286,-679.85,-668.3271,-656.8042,-645.2813,-633.7584,-622.23553,-610.7127,-599.1898,-587.66693,-576.14404,-564.62115,-553.09827,-541.5754,-530.0525,-518.5296,-507.00674,-495.48386,-483.961,-472.4381,-460.91522,-449.39233,-437.86948,-426.3466,-414.8237,-403.3008,-391.77795,-380.25507,-368.73218,-357.2093,-345.68643,-334.16354,-322.64066,-311.11777,-299.5949,-288.07202,-276.54913,-265.02625,-253.50337,-241.9805,-230.45761,-218.93474,-207.41185,-195.88898,-184.36609,-172.84322,-161.32033,-149.79745,-138.27457,-126.751686,-115.228806,-103.705925,-92.183044,-80.660164,-69.13728,-57.614403,-46.091522,-34.56864,-23.045761,-11.522881,0.0],"cosine":[1.0,0.9798431,0.92018485,0.8234305,0.69352955,0.53563106,0.35613924,0.16229005,-0.038101677,-0.23695737,-0.4262604,-0.5983246,-0.7463297,-0.8642474,-0.94732386,-0.9922101,-0.99709654,-0.96178615,-0.8877338,-0.7778748,-0.6366567,-0.46977252,-0.28394997,-0.08668031,0.114083774,0.31018388,0.493847,0.6576013,0.7948451,0.90004563,0.96896183,0.9988154,0.98841333,0.93816775,0.850101,0.7277634,0.5760869,0.40118602,0.21011184,0.010635399,-0.18933645,-0.38167542,-0.55862755,-0.7130593,-0.8387448,-0.93061733,-0.9849613,-0.9996226,-0.97398525,-0.9090828,-0.8075317,-0.6734259,-0.5121717,-0.33033422,-0.13512114,0.06553919,0.26355737,0.45095056,0.62016416,0.7643766,0.87774134,0.95576495,0.995258,0.99462825,0.9539013,0.87471884,0.7602731,0.6152316,0.4453434,0.25750172,0.05927915,-0.1413332,-0.33624786,-0.5176071,-0.67804945,-0.81121534,-0.911678,-0.97538745,-0.99977523,-0.9838582,-0.9282781,-0.83531296,-0.7086478,-0.5534143,-0.3758705,-0.18317394,0.016907072,0.2163065,0.40692347,0.5812024,0.7320508,0.85338736,0.9403206,0.9893459,0.9984869,0.9673922,0.89729446,0.7910234,0.652863,0.4883833,0.30421492,0.10778246,-0.09292723,-0.28995845,-0.47530034,-0.64148104,-0.7818011,-0.8906038,-0.9635028,-0.99755454,-0.99140924,-0.9452964,-0.861075,-0.74214035,-0.59328717,-0.42051628,-0.2308591,-0.031833246,0.16847594,0.3619932,0.54091716,0.6980346,0.8270116,0.92262226,0.9810768,0.99998033,0.9785708,0.9177113,0.81985533,0.6889478,0.5303239,0.35027122,0.15609777,-0.044368606,-0.24304631,-0.4319259,-0.60339284,-0.75048965,-0.86738575,-0.9493141,-0.99297196,-0.9965993,-0.96004987,-0.8847971,-0.7739179,-0.6318074,-0.46422622,-0.27793032,-0.08042998,0.12031281,0.31620532,0.49929133,0.66231364,0.7986355,0.90276134,0.9704933,0.999101,0.98743105,0.93597794,0.8467812,0.72344744,0.57094866,0.3954328,0.20397548,0.004295133,-0.19549151,-0.3874653,-0.5638189,-0.71744275,-0.8421437,-0.93289465,-0.98603696,-0.9994306,-0.9725447,-0.9064518,-0.8038163,-0.66877586,-0.5067745,-0.3243431,-0.12890378,0.07179665,0.2696027,0.45653996,0.62507236,0.7684057,0.8807616,0.957591,0.9958485,0.9939595,0.9520001,0.8716619,0.7561837,0.6102208,0.43971875,0.25143594,0.053016778,-0.14753969,-0.34214827,-0.5229635,-0.6826961,-0.8148671,-0.9142374,-0.97675127,-0.99988854,-0.98271644,-0.9259272,-0.83181036,-0.7042084,-0.5481792,-0.3700508,-0.17700422,0.023178078,0.22242598,0.41270703,0.586295,0.73630935,0.85664016,0.9424365,0.99023956,0.9981223,0.96576685,0.89450806,0.7871705,0.6480991,0.48290035,0.298234,0.10154465,-0.09923834,-0.29602066,-0.48080945,-0.64628005,-0.7856966,-0.89343876,-0.96516293,-0.9979776,-0.99056,-0.9432317,-0.8578688,-0.73792183,-0.58822644,-0.4148173,-0.22468533,-0.025495406,0.1746552,0.36783296,0.5461819,0.7025122,0.83052146,0.92504925,0.9822847,0.9999213,0.97726005,0.9152016,0.8162479,0.68438804,0.52493787,0.34432545,0.14989935,-0.050633796,-0.24912569,-0.4375744,-0.60838276,-0.75466484,-0.8705235,-0.95126694,-0.9936947,-0.9960629,-0.9582758,-0.881857,-0.7698871,-0.62688005,-0.45866168,-0.27189973,-0.07417648,0.12653711,0.32214952,0.5047748,0.6670507,0.8023945,0.9054415,0.97198665,0.99934727,0.9864203,0.93372697,0.8433914,0.719103,0.56578803,0.389664,0.1978311,-0.0019771296,-0.20170565,-0.39330265,-0.568988,-0.721798,-0.84550947,-0.9351352,-0.98706204,-0.9991966,-0.97104967,-0.90378517,-0.8000693,-0.6640995,-0.5013574,-0.31840357,-0.12261367,0.078119256,0.27563736,0.4621114,0.629956,0.7724046,0.88371456,0.9593986,0.9964056,0.99325156,0.95006144,0.8685707,0.7520645,0.6052397,0.43401536,0.24529417,0.046752322,-0.15374039,-0.34803522,-0.5282994,-0.6872658,-0.8185259,-0.916788,-0.9780767,-0.9999625,-0.98153603,-0.92354,-0.8283125,-0.69969255,-0.5428653,-0.36421654,-0.17082754,0.029448174,0.22853673,0.41841206,0.5914196,0.74058473,0.8598592,0.9445153,0.9910943,0.99771845,0.96412075,0.8916556,0.7832444,0.6433097,0.4773984,0.2922413,0.095302835,-0.10547766,-0.30200595,-0.4863592,-0.6510537,-0.7895613,-0.89623857,-0.9667851,-0.9983567,-0.9896807,-0.94110686,-0.8546288,-0.7336743,-0.5831425,-0.40910202,-0.21856904,-0.019224709,0.18089466,0.3736582,0.5514252,0.70696217,0.8339987,0.9274135,0.98344076,0.99982166,0.97591084,0.91265595,0.81260836,0.6798014,0.519589,0.33843,0.14362757,-0.05689699,-0.25519526,-0.44320565,-0.6133487,-0.7587653,-0.8735931,-0.953203,-0.99437845,-0.9954872,-0.95646405,-0.87888217,-0.76586914,-0.6219809,-0.45301828,-0.26585847,-0.06792007,0.13275646,0.32808104,0.5101794,0.6717105,0.8061623,0.90808606,0.9734417,0.99955416,0.98537076,0.9314632,0.8400048,0.7146825,0.5606051,0.38387987,0.19167894,-0.0082493145,-0.207845,-0.39906165,-0.5741906,-0.7261248,-0.84884197,-0.937339,-0.9880483,-0.99892557,-0.96953225,-0.90105337,-0.79629076,-0.65939707,-0.4959205,-0.31245148,-0.11638635,0.08437079,0.2817266,0.4676647,0.6348148,0.7763731,0.88663274,0.96114886,0.9969173,0.9924962,0.9480854,0.8654453,0.74791574,0.60023487,0.42835614,0.23920873,0.040417902,-0.15993503,-0.35390848,-0.5336145,-0.69180846,-0.822113,-0.9192749,-0.9793774,-0.99999714,-0.98031694,-0.9211164,-0.82478213,-0.69519764,-0.53758705,-0.3583043,-0.16464414,0.03571711,0.23463847,0.42410064,0.59646565,0.7447849,0.86307895,0.9465569,0.99191004,0.9972754,0.96243674,0.88879853,0.7793294,0.6384425,0.4718777,0.28623715,0.089057274,-0.111712836,-0.30797938,-0.49183005,-0.6558532,-0.79339486,-0.89900315,-0.9683692,-0.9986965,-0.9887625,-0.93896765,-0.85131943,-0.72939783,-0.57803565,-0.40337062,-0.21244416,-0.012953253,0.18705985,0.37953186,0.5566468,0.7113843,0.8374431,0.9297413,0.9845581,0.99968356,0.9745079,0.91007435,0.80893683,0.675188,0.5142197,0.33252123,0.13741754,-0.063225985,-0.26125482,-0.4488195,-0.61829054,-0.76283586,-0.87662834,-0.95508057,-0.9950298,-0.99487245,-0.9546147,-0.8758728,-0.76182103,-0.6170573,-0.44741768,-0.2597409,-0.061660975,0.13897055,0.33399966,0.5155639,0.67634386,0.8098577,0.9107231,0.9748585,0.99972177,0.98428243,0.9291628,0.8365851,0.7102814,0.55534345,0.37808064,0.18551923,-0.014521174,-0.21397617,-0.40480497,-0.57931453,-0.73046964,-0.8521411,-0.93950593,-0.9889957,-0.9986152,-0.9679767,-0.8983153,-0.7924394,-0.6546687,-0.49046415,-0.30648714,-0.11015444,0.090619,0.28773925,0.4732596,0.6396487,0.78031105,0.88951606,0.9628613,0.99738985,0.99170977,0.94605005,0.8622859,0.7437376,0.5952064,0.42268005,0.23311388,0.034149997,-0.16619061,-0.35976782,-0.5389086,-0.69632393,-0.82566774,-0.9217257,-0.98062533,-0.9999922,-0.97905934,-0.9186566,-0.82121927,-0.6906754,-0.5322877,-0.35244146,-0.15838695,0.04198464,0.24073099,0.42977253,0.6014883,0.7489557,0.8662299,0.94858295,0.99268675,0.9967931,0.9607148,0.8859065,0.77538383,0.63360244,0.46627808,0.2802217,0.082808204,-0.117943615,-0.31394067,-0.49728158,-0.66057515,-0.79723835,-0.9017323,-0.9699152,-0.998997,-0.98780537,-0.93679154,-0.848012,-0.7250458,-0.5729061,-0.39762336,-0.20631093,-0.006681289,0.1932177,0.38532734,0.56190294,0.7157784,0.8408545,0.9320326,0.9856368,0.9995061,0.9730815,0.90742826,0.8052335,0.670548,0.50883013,0.32659936,0.1312021,-0.06948443,-0.26736978,-0.45441568,-0.62320805,-0.76687646,-0.87962914,-0.95692056,-0.9956348,-0.9942112,-0.9527278,-0.87282896,-0.75774294,-0.6121095,-0.44179946,-0.2536788,-0.05533139,0.1451792,0.3399051,0.52092814,0.6809506,0.8135212,0.9132957,0.9762517,0.9998501,0.98315537,0.9268259,0.83313245,0.70585227,0.5501164,0.37220326,0.17935222,-0.020792464,-0.22009893,-0.41053236,-0.5844157,-0.7347389,-0.8554419,-0.94165885,-0.98990417,-0.9982656,-0.9663831,-0.89554197,-0.788598,-0.6498627,-0.48492888,-0.30051073,-0.10391821,0.09686365,0.29374057,0.47877565,0.64450943,0.7842606,0.8923644,0.96453583,0.9978231,0.9908843,0.94399905,0.8590576,0.73948425,0.59015447,0.41698733,0.22700986,0.027880749,-0.17237236,-0.36567646,-0.54423875,-0.700812,-0.82919,-0.9241402,-0.98183477,-0.9999477,-0.97774893,-0.9161333,-0.8176241,-0.68612593,-0.5269674,-0.34656477,-0.15219077,0.048318617,0.2468801,0.43542752,0.6064872,0.7530971,0.86934674,0.9505496,0.99343216,0.99626565,0.95895517,0.8829796,0.7714077,0.6287374,0.46072024,0.2741297,0.07648791,-0.12416975,-0.31988963,-0.5027135,-0.6652711,-0.801009,-0.9044551,-0.97143924,-0.9992582,-0.9868094,-0.9345785,-0.84467113,-0.7207118,-0.5676978,-0.39179775,-0.20016956,-0.00040906153,0.19936794,0.39110765,0.56708026,0.7201917,0.84426945,0.93428713,0.98667663,0.9992894,0.9716169,0.9047748,0.8014577,0.6658308,0.5034206,0.32066464,0.1249815,-0.075740136,-0.27340838,-0.46005452,-0.62815404,-0.77088684,-0.88259524,-0.9587229,-0.9962006,-0.9935177,-0.95078224,-0.8697171,-0.7536351,-0.6071375,-0.43616384,-0.24760675,-0.049067676,0.15144952,0.3458612,0.5262719,0.68553054,0.81715274,0.9158324,0.97759134,0.99993974,0.98197675,0.9244525,0.82964706,0.7013954,0.54486775,0.36637434,0.17311102,-0.027131086,-0.22621302,-0.4162436,-0.5894938,-0.7389792,-0.8586735,-0.9437514,-0.990783,-0.9978767,-0.9647514,-0.89273334,-0.78472567,-0.6450827,-0.47943392,-0.29445735,-0.097677894,0.10310449,0.29973033,0.48427287,0.6492925,0.78813666,0.895208,0.9661724,0.9982171,0.9900198,0.941911,0.85583013,0.7352474,0.585024,0.41127822,0.22089691,0.021610402,-0.17854731,-0.3715071,-0.54949,-0.70532084,-0.8326797,-0.9265184,-0.9830055,-0.9998639,-0.9764139,-0.9136009,-0.81395715,-0.6815495,-0.52162635,-0.34067443,-0.1459886,0.054582577,0.25295332,0.44112656,0.6114623,0.7572088,0.8724294,0.9524789,0.9941303,0.99570453,0.957138,0.880018,0.7674013,0.6238476,0.4551443,0.26809233,0.07023254,-0.1304586,-0.325826,-0.50812566,-0.6699408,-0.8047481,-0.9071129,-0.97290844,-0.9994823,-0.9857746,-0.93232876,-0.8412971,-0.71634954,-0.5625231,-0.38601926,-0.19395345,0.005863182,0.20551033,0.39687258,0.57223535,0.7245291,0.8476143,0.93652886,0.9876777,0.9990333,0.97011405,0.9020857,0.79769087,0.661138,0.49793208,0.31471732,0.11875599,-0.081992865,-0.27943626,-0.46561453,-0.63302207,-0.77491003,-0.8855267,-0.9604875,-0.9967273,-0.99278516,-0.94882005,-0.8666043,-0.7494524,-0.6021417,-0.4305111,-0.24152496,-0.04280203,0.15764642,0.35173953,0.5316527,0.6900835,0.82075214,0.91833305,0.9788925,0.9999889,0.98077196,0.9220163,0.826129,0.6969109,0.53959763,0.36053103,0.16693008,-0.03340048,-0.23238453,-0.42193845,-0.5945487,-0.74319047,-0.8618713,-0.94580674,-0.9916131,-0.99744374,-0.96308184,-0.8898896,-0.7808224,-0.6402773,-0.4739201,-0.2884574,-0.09136584,0.109341264,0.3057083,0.48975104,0.65405,0.7919817,0.8979856,0.96778816,0.9985719,0.98911643,0.93978584,0.8525689,0.73098165,0.57992566,0.4054906,0.21477528,0.015339206,-0.18471526,-0.37732312,-0.5547196,-0.7097533,-0.836174,-0.92886007,-0.9841376,-0.9997408,-0.9750405,-0.91103256,-0.8102974,-0.67689604,-0.51626474,-0.33477068,-0.1397807,0.060844388,0.2590166,0.44674686,0.616467,0.7612908,0.87547773,0.95437074,0.99478936,0.9951042,0.95530254,0.87698895,0.7633646,0.6189333,0.44955042,0.26204443,0.06397441,-0.13667466,-0.33181384,-0.51351786,-0.67458427,-0.8084556,-0.90973496,-0.97433937,-0.9996644,-0.9846891,-0.93004227,-0.83788997,-0.711959,-0.5573263,-0.38022557,-0.1877965,0.0122033665,0.21164465,0.40262187,0.5773679,0.72883797,0.85092574,0.93870944,0.9886501,0.99873793,0.968573,0.89936113,0.79389256,0.65641916,0.4924829,0.30869278,0.1125258,-0.08824237,-0.28545314,-0.4711562,-0.6378651,-0.77885926,-0.88845456,-0.9622143,-0.9972147,-0.9920136,-0.9468205,-0.86345744,-0.7452851,-0.5970674,-0.4248414,-0.23543367,-0.036534697,0.16383712,0.35760406,0.5369546,0.6946584,0.82431924,0.92079765,0.9801551,0.99999875,0.9795286,0.91956985,0.82253975,0.692399,0.5343062,0.35467353,0.16074257,-0.03966856,-0.2384805,-0.42767835,-0.5995803,-0.74737245,-0.8650351,-0.94782495,-0.9924042,-0.9969759,-0.9613556,-0.8870108,-0.7768885,-0.6354467,-0.46838766,-0.2824461,-0.08511804,0.11564146,0.31167424,0.49520993,0.65878177,0.7957956,0.90072787,0.96934825,0.9988905,0.9881741,0.93762374,0.84927416,0.7266871,0.5748044,0.3997492,0.20857851,0.009067407,-0.19087592,-0.3831243,-0.55992746,-0.71415776,-0.83959764,-0.9311901,-0.985231,-0.9995783,-0.9736287,-0.9084284,-0.8066058,-0.6722659,-0.51082426,-0.32885376,-0.13356729,0.06710381,0.2650697,0.45234957,0.6213935,0.7653867,0.8784916,0.956225,0.99540925,0.99446476,0.9534295,0.8739578,0.75925356,0.61399466,0.44393888,0.2559862,0.057713766,-0.14288536,-0.3377242,-0.5189481,-0.6792011,-0.8121313,-0.9123212,-0.97573197,-0.99980724,-0.9835764,-0.9276938,-0.8344123,-0.7075405,-0.5521075,-0.37441695,-0.18163218,0.018474896,0.21783717,0.40841758,0.5824777,0.7331181,0.8542037,0.94085306,0.989573,0.9983994,0.96697646,0.8966012,0.7900631,0.65167445,0.48701435,0.3027208,0.1062234,-0.09455627,-0.29145882,-0.47667935,-0.64268315,-0.7827779,-0.8913158,-0.96392137,-0.99766755,-0.9912029,-0.9447837,-0.86027664,-0.74108845,-0.59202415,-0.4190931,-0.22926675,-0.030265931,0.17002138,0.3634545,0.5422353,0.6991566,0.8278921,0.9232521,0.9813792,0.99996924,0.9782467,0.91708726,0.8189565,0.68783516,0.52896494,0.34877014,0.15454873,-0.045935076,-0.24456707,-0.4333396,-0.6046154,-0.7515475,-0.8681819,-0.9498058,-0.9931563,-0.99646884,-0.95960987,-0.88408124,-0.7729023,-0.6305647,-0.4628368,-0.2764237,-0.07886689,0.12186934,0.31766024,0.50067884,0.6635131,0.7995782,0.9034347,0.97087026,0.99916625,0.98718745,0.9354127,0.84592783,0.72236395,0.5696606,0.39399204,0.20244013,0.002761162,-0.1970625,-0.38894182,-0.56511325,-0.71853423,-0.84298825,-0.9334582,-0.9862912,-0.9993753,-0.97217065,-0.9057885,-0.8028825,-0.6676093,-0.50542206,-0.32289165,-0.12731482,0.07339458,0.27111235,0.45793453,0.62629557,0.7694083,0.881487,0.9580514,0.995993,0.99378616,0.95151895,0.87089235,0.7551567,0.6090048,0.43827924,0.24988493,0.051416807,-0.14909042,-0.34362128,-0.52429944,-0.6838162,-0.8157947,-0.91488534,-0.97709346,-0.9999107,-0.982425,-0.92533386,-0.83095795,-0.7030699,-0.5468385,-0.3685619,-0.1754607,0.024745697,0.2239545,0.4141038,0.5875922,0.7373925,0.8574656,0.94295967,0.99045694,0.998025,0.9653678,0.89379066,0.78618145,0.6468782,0.48152664,0.2967369,0.09998456,-0.10076463,-0.29748553,-0.48221365,-0.6475018,-0.78666574,-0.89414203,-0.965572,-0.99807394,-0.9903486,-0.94269836,-0.8570444,-0.73686266,-0.5869576,-0.41339,-0.22319031,-0.023961894,0.17623252,0.3693223,0.54749477,0.7036273,0.83139384,0.9256308,0.982571,0.9998999,0.97691905,0.91456854,0.815341,0.68324393,0.52363163,0.34288487,0.1483151,-0.05223383,-0.25064403,-0.43898383,-0.6096265,-0.7556704,-0.8712774,-0.9517598,-0.9938731,-0.9959226,-0.95782644,-0.8811165,-0.76890725,-0.6256842,-0.4572374,-0.2703576,-0.072612636,0.12809242,0.3236336,0.50609845,0.66819274,0.8033497,0.9061204,0.972354,0.99940264,0.98616153,0.9331767,0.84256625,0.71798867,0.56446624,0.3882194,0.19629379,-0.0035451925,-0.20320787,-0.39471254,-0.5703048,-0.72290593,-0.8463457,-0.9356896,-0.98731226,-0.99913394,-0.9706821,-0.9030983,-0.79910713,-0.6629264,-0.5,-0.3169167,-0.12109111,0.07964846,0.2771771,0.46353164,0.631173,0.7733996,0.8844474,0.95983016,0.9965344,0.99306446,0.9495602,0.86779255,0.7510301,0.60399073,0.43263286,0.24380676,0.045151856,-0.1553233,-0.34950483,-0.5296301,-0.688404,-0.81940615,-0.9173996,-0.97840905,-0.9999751,-0.98123485,-0.9229375,-0.827433,-0.6985958,-0.5415764,-0.36272395,-0.16924872,0.031015527,0.230063,0.41983575,0.59265584,0.74161464,0.8606761,0.94504035,0.9913019,0.9976114,0.9637033,0.8909601,0.78228974,0.6420823,0.47599,0.29074132,0.09374178,-0.10703686,-0.30346796,-0.48769897,-0.65226895,-0.79054344,-0.896933,-0.96718466,-0.99844533,-0.98945975,-0.9405871,-0.85379577,-0.73258466,-0.58186793,-0.40767068,-0.21703862,-0.017690988,0.18240312,0.37514383,0.5527611,0.7080703,0.8348629,0.9279989,0.9837176,0.99979156,0.97556,0.9119999,0.8116935,0.67865056,0.5182486,0.33698612,0.14210932,-0.058496475,-0.25674406,-0.44461074,-0.6145864,-0.7597857,-0.8743386,-0.9536657,-0.99454683,-0.9953339,-0.9560053,-0.87813306,-0.7648599,-0.62077904,-0.4516502,-0.2643136,-0.06632152,0.13431048,0.32956192,0.5115274,0.6728461,0.807069,0.9087559,0.9738073,0.99959975,0.9851023,0.9308915,0.83917147,0.71360874,0.55927765,0.38239998,0.19013971,-0.009817319,-0.20937857,-0.40049896,-0.57544583,-0.7272255,-0.8496879,-0.9378842,-0.9882888,-0.99885166,-0.96914697,-0.900387,-0.7953206,-0.65819174,-0.49455824,-0.31096154,-0.11482879,0.085933164,0.28319812,0.46908024,0.6360519,0.77736044,0.8873569,0.9615805,0.99703914,0.9923075,0.9475747,0.86464155,0.746874,0.59897995,0.42693868,0.23768589,0.038885128,-0.16151635,-0.3554065,-0.53494,-0.69293994,-0.8230047,-0.919891,-0.97968614,-0.9999997,-0.9799994,-0.92050487,-0.82389444,-0.6940696,-0.5362642,-0.35687175,-0.16306363,0.0373182,0.23616247,0.42552018,0.59772354,0.74583036,0.8638527,0.9470725,0.99211216,0.99715847,0.9620098,0.8880788,0.7783459,0.63726115,0.4704645,0.28470165,0.08749533,-0.11327095,-0.30947083,-0.49319476,-0.6570104,-0.79436904,-0.8997036,-0.96875924,-0.9987753,-0.9885269,-0.9384271,-0.85051364,-0.72830087,-0.57672757,-0.40193528,-0.21091163,-0.0113853,0.18860002,0.3809506,0.5579771,0.7125094,0.83829904,0.9303176,0.9848314,0.9996429,0.97416264,0.90940917,0.8079939,0.6740305,0.5128742,0.33104196,0.13586417,-0.06475682,-0.262801,-0.45025063,-0.61952215,-0.76384884,-0.8773818,-0.9555441,-0.9951814,-0.99470913,-0.9541363,-0.87511504,-0.7608043,-0.6158226,-0.44601476,-0.25825924,-0.06006179,0.14055699,0.33547726,0.5169069,0.67749804,0.8107766,0.91135556,0.97521424,0.9997583,0.98400426,0.928582,0.835725,0.7091767,0.55406713,0.37659693,0.18394464,-0.01608906,-0.21550766,-0.40623832,-0.5805919,-0.7315164,-0.8529784,-0.9400535,-0.98922646,-0.9985315,-0.96758187,-0.89762527,-0.7915028,-0.65345675,-0.48906732,-0.30499417,-0.10859578,0.092180505,0.28924066,0.47461036,0.64087933,0.781312,0.89023143,0.9632835,0.99750185,0.99150705,0.9455519,0.8614734,0.74266565,0.59394556,0.42125842,0.23158874,0.0325828,-0.16770306,-0.36126223,-0.5402575,-0.69744855,-0.8265514,-0.92233276,-0.98093134,-0.9999849,-0.97873193,-0.91802245,-0.82032347,-0.68954057,-0.5309596,-0.35097358,-0.15687214,0.04358533,0.24228571,0.43118787,0.6027402,0.74999386,0.86701226,0.94906735,0.99287885,0.9966636,0.96027845,0.885178,0.77439266,0.6323885,0.46492052,0.2786834,0.08121145,-0.11950059,-0.3154291,-0.4986414,-0.66175157,-0.7981634,-0.9024238,-0.97030395,-0.999066,-0.98756003,-0.9362417,-0.8471799,-0.7239885,-0.57159215,-0.3961528,-0.20477633,-0.005113247,0.19475597,0.38677382,0.56317115,0.71689636,0.84172064,0.93259966,0.98590034,0.99945563,0.97271895,0.9067826,0.8042825,0.66935855,0.5074796,0.32511687,0.12964742,-0.07104862,-0.26884758,-0.4558423,-0.6244602,-0.7679037,-0.8803739,-0.95737463,-0.99577993,-0.9940452,-0.9522398,-0.87204593,-0.7566965,-0.6108687,-0.44039217,-0.2521617,-0.053799696,0.14676419,0.34141144,0.5222951,0.6820981,0.81443214,0.9139333,0.9765829,0.9998765,0.9828613,0.9262231,0.8322642,0.70474064,0.54880625,0.37077907,0.17777582,-0.022394247,-0.22166152,-0.4119617,-0.58568734,-0.7358017,-0.8562354,-0.942174,-0.99013,-0.99817,-0.96597874,-0.8948431,-0.7876328,-0.648696,-0.48358676,-0.29898223,-0.1023246,0.098424226,0.2952391,0.48015174,0.64568156,0.7852114,0.8930863,0.9649575,0.9979253,0.9906718,0.94348055,0.8582714,0.73845077,0.5888603,0.4155306,0.22548246,0.026313255,-0.17391674,-0.36710376,-0.545525,-0.701954,-0.8300845,-0.92473817,-0.98213106,-0.99993044,-0.977426,-0.9155173,-0.8167006,-0.6849595,-0.52563405,-0.34509343,-0.15064079,0.04985075,0.2483663,0.43686926,0.6077603,0.7541278,0.8701206,0.95103544,0.99360657,0.9961321,0.9584996,0.8822264,0.7704089,0.6275173,0.45932797,0.27265415,0.07495833,-0.12575935,-0.3214072,-0.50406843,-0.66644096,-0.80194676,-0.90510845,-0.97180206,-0.9993186,-0.9865488,-0.9340195,-0.84383076,-0.7196239,-0.5664343,-0.39038593,-0.19859958,0.0011930959,0.20090428,0.39255032,0.5683711,0.7212551,0.84509057,0.93485713,0.98693603,0.999229,0.97124475,0.90410584,0.8005394,0.6646855,0.5020356,0.3191467,0.12342557,-0.07730361,-0.27491638,-0.46141598,-0.6293469,-0.7719064,-0.88334733,-0.95916754,-0.996336,-0.9933382,-0.9503058,-0.86895895,-0.75258106,-0.60586363,-0.43475226,-0.24608721,-0.047501434,0.15296562,0.34730008,0.52763355,0.68669605,0.8180556,0.916461,0.97792023,0.9999554,0.9816857,0.9238404,0.8287515,0.70027685,0.5435522,0.36491486,0.1716,-0.02866447,-0.22777337,-0.41769984,-0.5907597,-0.74003476,-0.85947615,-0.9442575,-0.99098957,-0.9977711,-0.9643286,-0.89202565,-0.78375274,-0.6438837,-0.4780872,-0.292991,-0.09608327,0.10469797,0.30122593,0.4856442,0.65048426,0.7890799,0.89589053,0.9665844,0.99831146,0.9897976,0.9413832,0.85501796,0.7342068,0.5837793,0.4098173,0.21933405,0.020042673,-0.18008997,-0.37296247,-0.550771,-0.7064074,-0.83356583,-0.92712,-0.98329216,-0.9998368,-0.97607416,-0.9129761,-0.81306505,-0.6803762,-0.5202587,-0.33919972,-0.14443715,0.056148242,0.25443712,0.44250268,0.61272925,0.75825435,0.8731947,0.95295537,0.99429876,0.9955613,0.9566926,0.8792559,0.76637304,0.62262136,0.4537475,0.26658133,0.068702266,-0.13197932,-0.3273403,-0.5095049,-0.6711042,-0.80567795,-0.90777177,-0.97326976,-0.99953043,-0.98550403,-0.93174815,-0.8404484,-0.71525455,-0.561226,-0.38457224,-0.19244838,0.007465304,0.20707802,0.39831138,0.5735206,0.725609,0.8484453,0.93706554,0.98792714,0.99896157,0.96973234,0.9014079,0.7967442,0.6599607,0.4966012,0.31319618,0.117165014,-0.08355556,-0.28094152,-0.46700168,-0.63423514,-0.77587867,-0.8862699,-0.96093214,-0.9968528,-0.9925959,-0.94832367,-0.8658208,-0.748436,-0.6008617,-0.42906445,-0.24000302,-0.041235343,0.1591947,0.35320696,0.5329513,0.69124216,0.82166636,0.9189526,0.97921175,0.99999505,0.98046476,0.92142135,0.8252252,0.695761,0.53827673,0.35906798,0.1653838,-0.03496763,-0.23387624,-0.42339048,-0.5958362,-0.7442387,-0.8626654,-0.9463148,-0.99181455,-0.99733293,-0.9626493,-0.8891576,-0.7798418,-0.639072,-0.47253874,-0.28695562,-0.08983816,0.11093368,0.30723336,0.49111757,0.65523535,0.7929381,0.8986745,0.96817327,0.99865615,0.9888794,0.9392488,0.85174835,0.7299107,0.5786475,0.40408793,0.21321024,0.013737218,-0.18625611,-0.37877482,-0.55602366,-0.71085703,-0.8370143,-0.92945236,-0.9844206,-0.9997038,-0.97469115,-0.9103849,-0.8093775,-0.6757661,-0.514892,-0.33326054,-0.13822785,0.06240948,0.26053083,0.4481492,0.6176741,0.7623287,0.87625086,0.9548378,0.994948,0.994948,0.9548378,0.87625086,0.7623287,0.6176741,0.4481492,0.26053083,0.06240948,-0.13822785,-0.33326054,-0.514892,-0.6757661,-0.8093775,-0.9103849,-0.97469115,-0.9997038,-0.9844206,-0.92945236,-0.8370143,-0.71085703,-0.55602366,-0.37877482,-0.18625611,0.013737218,0.21321024,0.40408793,0.5786475,0.7299107,0.85174835,0.9392488,0.9888794,0.99865615,0.96817327,0.8986745,0.7929381,0.65523535,0.49111757,0.30723336,0.11093368,-0.08983816,-0.28695562,-0.47253874,-0.639072,-0.7798418,-0.8891576,-0.9626493,-0.99733293,-0.99181455,-0.9463148,-0.8626654,-0.7442387,-0.5958362,-0.42339048,-0.23387624,-0.03496763,0.1653838,0.35906798,0.53827673,0.695761,0.8252252,0.92142135,0.98046476,0.99999505,0.97921175,0.9189526,0.82166636,0.69124216,0.5329513,0.35320696,0.1591947,-0.041235343,-0.24000302,-0.42906445,-0.6008617,-0.748436,-0.8658208,-0.94832367,-0.9925959,-0.9968528,-0.96093214,-0.8862699,-0.77587867,-0.63423514,-0.46700168,-0.28094152,-0.08355556,0.117165014,0.31319618,0.4966012,0.6599607,0.7967442,0.9014079,0.96973234,0.99896157,0.98792714,0.93706554,0.8484453,0.725609,0.5735206,0.39831138,0.20707802,0.007465304,-0.19244838,-0.38457224,-0.561226,-0.71525455,-0.8404484,-0.93174815,-0.98550403,-0.99953043,-0.97326976,-0.90777177,-0.80567795,-0.6711042,-0.5095049,-0.3273403,-0.13197932,0.068702266,0.26658133,0.4537475,0.62262136,0.76637304,0.8792559,0.9566926,0.9955613,0.99429876,0.95295537,0.8731947,0.75825435,0.61272925,0.44250268,0.25443712,0.056148242,-0.14443715,-0.33919972,-0.5202587,-0.6803762,-0.81306505,-0.9129761,-0.97607416,-0.9998368,-0.98329216,-0.92712,-0.83356583,-0.7064074,-0.550771,-0.37296247,-0.18008997,0.020042673,0.21933405,0.4098173,0.5837793,0.7342068,0.85501796,0.9413832,0.9897976,0.99831146,0.9665844,0.89589053,0.7890799,0.65048426,0.4856442,0.30122593,0.10469797,-0.09608327,-0.292991,-0.4780872,-0.6438837,-0.78375274,-0.89202565,-0.9643286,-0.9977711,-0.99098957,-0.9442575,-0.85947615,-0.74003476,-0.5907597,-0.41769984,-0.22777337,-0.02866447,0.1716,0.36491486,0.5435522,0.70027685,0.8287515,0.9238404,0.9816857,0.9999554,0.97792023,0.916461,0.8180556,0.68669605,0.52763355,0.34730008,0.15296562,-0.047501434,-0.24608721,-0.43475226,-0.60586363,-0.75258106,-0.86895895,-0.9503058,-0.9933382,-0.996336,-0.95916754,-0.88334733,-0.7719064,-0.6293469,-0.46141598,-0.27491638,-0.07730361,0.12342557,0.3191467,0.5020356,0.6646855,0.8005394,0.90410584,0.97124475,0.999229,0.98693603,0.93485713,0.84509057,0.7212551,0.5683711,0.39255032,0.20090428,0.0011930959,-0.19859958,-0.39038593,-0.5664343,-0.7196239,-0.84383076,-0.9340195,-0.9865488,-0.9993186,-0.97180206,-0.90510845,-0.80194676,-0.66644096,-0.50406843,-0.3214072,-0.12575935,0.07495833,0.27265415,0.45932797,0.6275173,0.7704089,0.8822264,0.9584996,0.9961321,0.99360657,0.95103544,0.8701206,0.7541278,0.6077603,0.43686926,0.2483663,0.04985075,-0.15064079,-0.34509343,-0.52563405,-0.6849595,-0.8167006,-0.9155173,-0.977426,-0.99993044,-0.98213106,-0.92473817,-0.8300845,-0.701954,-0.545525,-0.36710376,-0.17391674,0.026313255,0.22548246,0.4155306,0.5888603,0.73845077,0.8582714,0.94348055,0.9906718,0.9979253,0.9649575,0.8930863,0.7852114,0.64568156,0.48015174,0.2952391,0.098424226,-0.1023246,-0.29898223,-0.48358676,-0.648696,-0.7876328,-0.8948431,-0.96597874,-0.99817,-0.99013,-0.942174,-0.8562354,-0.7358017,-0.58568734,-0.4119617,-0.22166152,-0.022394247,0.17777582,0.37077907,0.54880625,0.70474064,0.8322642,0.9262231,0.9828613,0.9998765,0.9765829,0.9139333,0.81443214,0.6820981,0.5222951,0.34141144,0.14676419,-0.053799696,-0.2521617,-0.44039217,-0.6108687,-0.7566965,-0.87204593,-0.9522398,-0.9940452,-0.99577993,-0.95737463,-0.8803739,-0.7679037,-0.6244602,-0.4558423,-0.26884758,-0.07104862,0.12964742,0.32511687,0.5074796,0.66935855,0.8042825,0.9067826,0.97271895,0.99945563,0.98590034,0.93259966,0.84172064,0.71689636,0.56317115,0.38677382,0.19475597,-0.005113247,-0.20477633,-0.3961528,-0.57159215,-0.7239885,-0.8471799,-0.9362417,-0.98756003,-0.999066,-0.97030395,-0.9024238,-0.7981634,-0.66175157,-0.4986414,-0.3154291,-0.11950059,0.08121145,0.2786834,0.46492052,0.6323885,0.77439266,0.885178,0.96027845,0.9966636,0.99287885,0.94906735,0.86701226,0.74999386,0.6027402,0.43118787,0.24228571,0.04358533,-0.15687214,-0.35097358,-0.5309596,-0.68954057,-0.82032347,-0.91802245,-0.97873193,-0.9999849,-0.98093134,-0.92233276,-0.8265514,-0.69744855,-0.5402575,-0.36126223,-0.16770306,0.0325828,0.23158874,0.42125842,0.59394556,0.74266565,0.8614734,0.9455519,0.99150705,0.99750185,0.9632835,0.89023143,0.781312,0.64087933,0.47461036,0.28924066,0.092180505,-0.10859578,-0.30499417,-0.48906732,-0.65345675,-0.7915028,-0.89762527,-0.96758187,-0.9985315,-0.98922646,-0.9400535,-0.8529784,-0.7315164,-0.5805919,-0.40623832,-0.21550766,-0.01608906,0.18394464,0.37659693,0.55406713,0.7091767,0.835725,0.928582,0.98400426,0.9997583,0.97521424,0.91135556,0.8107766,0.67749804,0.5169069,0.33547726,0.14055699,-0.06006179,-0.25825924,-0.44601476,-0.6158226,-0.7608043,-0.87511504,-0.9541363,-0.99470913,-0.9951814,-0.9555441,-0.8773818,-0.76384884,-0.61952215,-0.45025063,-0.262801,-0.06475682,0.13586417,0.33104196,0.5128742,0.6740305,0.8079939,0.90940917,0.97416264,0.9996429,0.9848314,0.9303176,0.83829904,0.7125094,0.5579771,0.3809506,0.18860002,-0.0113853,-0.21091163,-0.40193528,-0.57672757,-0.72830087,-0.85051364,-0.9384271,-0.9885269,-0.9987753,-0.96875924,-0.8997036,-0.79436904,-0.6570104,-0.49319476,-0.30947083,-0.11327095,0.08749533,0.28470165,0.4704645,0.63726115,0.7783459,0.8880788,0.9620098,0.99715847,0.99211216,0.9470725,0.8638527,0.74583036,0.59772354,0.42552018,0.23616247,0.0373182,-0.16306363,-0.35687175,-0.5362642,-0.6940696,-0.82389444,-0.92050487,-0.9799994,-0.9999997,-0.97968614,-0.919891,-0.8230047,-0.69293994,-0.53494,-0.3554065,-0.16151635,0.038885128,0.23768589,0.42693868,0.59897995,0.746874,0.86464155,0.9475747,0.9923075,0.99703914,0.9615805,0.8873569,0.77736044,0.6360519,0.46908024,0.28319812,0.085933164,-0.11482879,-0.31096154,-0.49455824,-0.65819174,-0.7953206,-0.900387,-0.96914697,-0.99885166,-0.9882888,-0.9378842,-0.8496879,-0.7272255,-0.57544583,-0.40049896,-0.20937857,-0.009817319,0.19013971,0.38239998,0.55927765,0.71360874,0.83917147,0.9308915,0.9851023,0.99959975,0.9738073,0.9087559,0.807069,0.6728461,0.5115274,0.32956192,0.13431048,-0.06632152,-0.2643136,-0.4516502,-0.62077904,-0.7648599,-0.87813306,-0.9560053,-0.9953339,-0.99454683,-0.9536657,-0.8743469,-0.7597857,-0.6145864,-0.44462603,-0.25672758,-0.058496475,0.14210932,0.3369701,0.5182486,0.67865056,0.81168354,0.9120069,0.97556,0.99979156,0.98372066,0.9279989,0.8348629,0.7080823,0.5527469,0.37514383,0.18240312,-0.017673947,-0.21703862,-0.40767068,-0.5818541,-0.7325963,-0.85379577,-0.9405871,-0.98945725,-0.99844533,-0.96718466,-0.8969406,-0.790533,-0.65226895,-0.48769897,-0.3034842,-0.10701991,0.09374178,0.29072502,0.476005,0.6420823,0.78228974,0.89095235,0.96370786,0.9976114,0.99130416,0.94503474,0.8606761,0.74161464,0.5926696,0.41982028,0.230063,0.031032562,-0.16926551,-0.36272395,-0.5415764,-0.6985836,-0.8274425,-0.9229375,-0.9812316,-0.99997497,-0.97840905,-0.9173996,-0.8194159,-0.6883917,-0.5296301,-0.3495208,-0.15530646,0.045151856,0.24380676,0.43261752,0.6040043,0.7510301,0.8677841,0.9495656,0.99306446,0.9965344,0.95983493,0.88443947,0.7733996,0.63118625,0.46351656,0.2771771,0.07964846,-0.1210742,-0.3169329,-0.5,-0.6629136,-0.7991173,-0.9030983,-0.9706821,-0.9991332,-0.9873095,-0.9356896,-0.8463548,-0.72289413,-0.5703048,-0.39471254,-0.20322455,-0.0035281484,0.19629379,0.38820368,0.5644803,0.71798867,0.84256625,0.93317056,0.9861644,0.99940264,0.972358,0.9061132,0.8033497,0.66819274,0.5061132,0.32361746,0.12809242,-0.07259564,-0.270374,-0.4572374,-0.6256842,-0.76889634,-0.88112456,-0.95782644,-0.9959211,-0.9938712,-0.9517598,-0.8712774,-0.7556816,-0.60961294,-0.43898383,-0.2506605,-0.05221681,0.1483151,0.34288487,0.52361715,0.6832563,0.815341,0.9145617,0.9769227,0.9998999,0.982571,0.9256373,0.83138436,0.7036273,0.54749477,0.36930647,0.17623252,-0.023961894,-0.2231737,-0.41340554,-0.5869576,-0.73686266,-0.85705316,-0.94269836,-0.9903486,-0.998075,-0.9655676,-0.89414203,-0.78666574,-0.64748883,-0.48221365,-0.29748553,-0.10078159,0.100001514,0.2967369,0.48152664,0.6468912,0.78618145,0.89379066,0.9653633,0.9980261,0.99045694,0.94295967,0.85745686,0.7373925,0.5875922,0.4141193,0.22393788,0.024745697,-0.1754607,-0.36857775,-0.5468385,-0.7030699,-0.8309484,-0.9253403,-0.982425,-0.9999107,-0.9770898,-0.91488534,-0.8157947,-0.68382865,-0.5242849,-0.34362128,-0.14909042,0.051433828,0.24988493,0.43827924,0.60899127,0.75516784,0.87089235,0.95151895,0.99378425,0.995993,0.9580514,0.88149506,0.7693974,0.62629557,0.45793453,0.27112874,0.07339458,-0.12731482,-0.32287553,-0.5054368,-0.6676093,-0.8028825,-0.90578127,-0.97217065,-0.9993753,-0.98629403,-0.93345207,-0.84298825,-0.71853423,-0.5651273,-0.38894182,-0.1970625,0.0027441178,0.20245682,0.39399204,0.5696606,0.72235215,0.84592783,0.9354127,0.9871847,0.99916553,0.97087026,0.9034347,0.79958844,0.6635131,0.50067884,0.3176764,0.12185243,-0.07886689,-0.2764237,-0.4628217,-0.6305647,-0.7729023,-0.8840733,-0.9596147,-0.99646884,-0.9931563,-0.94981116,-0.8681819,-0.7515475,-0.604629,-0.43332425,-0.24456707,-0.045935076,0.1545319,0.34878612,0.52896494,0.68782276,0.81896627,0.91708726,0.9782467,0.9999691,0.9813825,0.92323905,0.8278825,0.69914436,0.5422353,0.3634545,0.17003818,-0.030248895,-0.22929993,-0.41910857,-0.5920379,-0.74108845,-0.86027664,-0.94477814,-0.9912007,-0.9976652,-0.96391684,-0.8913081,-0.7827779,-0.64268315,-0.47669435,-0.29147512,-0.09452234,0.10624035,0.30273703,0.48701435,0.65167445,0.79005265,0.89659363,0.96698517,0.99840033,0.9895705,0.94085306,0.8542037,0.7331297,0.5824916,0.40838647,0.21782054,0.018457854,-0.18163218,-0.37441695,-0.5520933,-0.7075285,-0.83443105,-0.92770016,-0.98357946,-0.99980724,-0.97573197,-0.9123282,-0.81214124,-0.67922616,-0.51893353,-0.33770818,-0.14288536,0.057713766,0.25596973,0.44392362,0.6139677,0.75926465,0.8739661,0.9534295,0.99446476,0.99541086,0.95623,0.87850785,0.76537573,0.62138015,0.45234957,0.2650697,0.06712081,-0.13355039,-0.32882157,-0.5108389,-0.67227846,-0.8066058,-0.9084284,-0.9736248,-0.99957776,-0.9852368,-0.9311839,-0.8395884,-0.71415776,-0.55992746,-0.38314006,-0.19089265,0.00903332,0.20859519,0.3997648,0.5748044,0.7266871,0.84926516,0.93761784,0.98816884,0.9988897,0.9693441,0.90072787,0.7957956,0.65879464,0.4952247,0.31170663,0.115607604,-0.08513502,-0.2824461,-0.46838766,-0.63543355,-0.77687776,-0.8869951,-0.961365,-0.9969772,-0.9924042,-0.94782495,-0.8650437,-0.7473838,-0.5996076,-0.42764753,-0.23846394,-0.03966856,0.16074257,0.3546576,0.53429186,0.6923744,0.8225591,0.9195766,0.9795286,0.99999875,0.9801585,0.92080426,0.8243385,0.69463384,0.53694016,0.35760406,0.16383712,-0.036517665,-0.2354171,-0.42481053,-0.5970948,-0.7452965,-0.86345744,-0.9468205,-0.9920114,-0.997216,-0.9622236,-0.88843894,-0.7788486,-0.6378651,-0.4711562,-0.28546947,-0.08825935,0.11249193,0.3087252,0.49249774,0.65641916,0.79389256,0.8993537,0.96856874,0.9987362,0.98864496,0.93870354,0.85092574,0.72883797,0.5773818,0.40263748,0.21167795,0.01216928,-0.18781325,-0.38022557,-0.5573263,-0.7119471,-0.8378806,-0.93002975,-0.9846951,-0.999664,-0.97433937,-0.90973496,-0.80846566,-0.67459685,-0.5135471,-0.3317817,-0.13665777,0.06397441,0.26204443,0.44953522,0.6189199,0.76334256,0.87700534,0.9553076,0.9951042,0.99478936,0.9543758,0.87548596,0.7613129,0.6164402,0.4467316,0.2590166,0.060844388,-0.13976382,-0.33475462,-0.5162356,-0.6769211,-0.8103074,-0.91103256,-0.9750405,-0.99974036,-0.98414063,-0.9288727,-0.8361553,-0.70974123,-0.5547196,-0.37732312,-0.184732,0.015322164,0.21474199,0.40552178,0.57993954,0.7309933,0.8525689,0.93978006,0.9891139,0.99857366,0.9677796,0.89797807,0.7919713,0.65405,0.48976588,0.3057245,0.10937515,-0.09139978,-0.28847373,-0.47393513,-0.6402773,-0.7808118,-0.8898818,-0.96307266,-0.9974461,-0.9916109,-0.9458012,-0.8618713,-0.74320185,-0.5945624,-0.42196935,-0.23235138,-0.033383444,0.16694689,0.36053103,0.53958327,0.6968987,0.8261098,0.9220295,0.9807753,0.99998885,0.9788925,0.91833985,0.82076186,0.6901082,0.5316238,0.35172358,0.1576296,-0.04280203,-0.24150842,-0.4304957,-0.60211444,-0.749475,-0.86661285,-0.9488254,-0.99278516,-0.99672866,-0.9604922,-0.8855425,-0.77488846,-0.63300884,-0.46559945,-0.27943626,-0.08200985,0.11873906,0.31468496,0.49796164,0.66115075,0.7977011,0.9020857,0.9701099,0.99903256,0.987683,0.9365169,0.8476052,0.72451735,0.57223535,0.3968882,0.20552701,0.0058972696,-0.1939869,-0.38603497,-0.5625372,-0.71634954,-0.84128785,-0.93232256,-0.98576885,-0.9994812,-0.9729045,-0.90710574,-0.8047481,-0.6699535,-0.5081404,-0.32585824,-0.1304248,0.07024954,0.26810876,0.4551443,0.6238343,0.7673903,0.8800018,0.9571479,0.9957061,0.99412847,0.9524789,0.8724377,0.75722,0.6114893,0.44109595,0.25293684,0.05456556,-0.1459886,-0.3406584,-0.5216118,-0.6815245,-0.81397694,-0.91360784,-0.9764176,-0.9998639,-0.9830055,-0.92652476,-0.8326986,-0.70529664,-0.5494757,-0.37149128,-0.17854731,0.021610402,0.2208803,0.41124716,0.58505166,0.73525894,0.8558389,0.941911,0.9900198,0.9982181,0.9661812,0.8951928,0.7881262,0.64927953,0.48427287,0.29973033,0.10312144,-0.097643964,-0.29448992,-0.47944888,-0.6450957,-0.78472567,-0.89273334,-0.96474695,-0.9978745,-0.9907783,-0.94374573,-0.85866475,-0.7389792,-0.5894938,-0.4162591,-0.22624624,-0.027097011,0.17312782,0.36639023,0.54486775,0.7013954,0.8296375,0.9244395,0.9819832,0.99993956,0.97758776,0.9158324,0.81715274,0.68554294,0.5263009,0.34582922,0.15143266,-0.049084697,-0.24760675,-0.43616384,-0.607124,-0.7536127,-0.8697339,-0.95078754,-0.99351966,-0.9962006,-0.9587229,-0.8826033,-0.77090853,-0.6281275,-0.46003938,-0.273392,-0.075740136,0.1249815,0.32064852,0.50339115,0.66585624,0.8014679,0.90478206,0.9716169,0.9992894,0.9866794,0.9342993,0.8442512,0.7201799,0.56706625,0.39110765,0.19936794,-0.0003920173,-0.20013617,-0.3918291,-0.56771183,-0.7207236,-0.84467113,-0.9345785,-0.98680663,-0.99925953,-0.97143114,-0.90444785,-0.8009988,-0.6652711,-0.5027135,-0.3199058,-0.12420358,0.076521896,0.27414608,0.46073538,0.6287374,0.7714077,0.8829716,0.95895034,0.99626863,0.99343026,0.9505443,0.86934674,0.7530971,0.6065008,0.43544286,0.24684706,0.048301592,-0.15220761,-0.34656477,-0.52696013,-0.68611354,-0.81760937,-0.916147,-0.9777543,-0.9999479,-0.98183477,-0.9241435,-0.82919955,-0.7008302,-0.54421014,-0.36565265,-0.17235556,0.027880749,0.22700156,0.41697186,0.5901338,0.7395072,0.8590707,0.9440047,0.99088544,0.99782366,0.9645403,0.89237595,0.7842395,0.6444899,0.4787607,0.2937324,0.09687213,-0.10390126,-0.30048636,-0.48495868,-0.64988214,-0.7886085,-0.8955457,-0.9663809,-0.9982646,-0.9899078,-0.94164735,-0.8554287,-0.7347273,-0.5844087,-0.41054013,-0.22011556,-0.020818025,0.1793187,0.37222698,0.55013067,0.7058583,0.83312774,0.9268195,0.9831507,0.99985063,0.9762462,0.9132888,0.81351626,0.68095684,0.5209427,0.33992916,0.14521292,-0.055356916,-0.2536953,-0.4418071,-0.61210275,-0.75773185,-0.87281644,-0.9527174,-0.99421394,-0.99563324,-0.95691806,-0.87962914,-0.76688737,-0.623228,-0.45444605,-0.26734513,-0.069467425,0.13121055,0.32659936,0.50881547,0.67052907,0.8052133,0.90743905,0.97308546,0.9995064,0.9856368,0.9320387,0.8408684,0.71580225,0.5618818,0.3853116,0.19320934,-0.006681289,-0.20629424,-0.3975999,-0.5728781,-0.7250634,-0.848021,-0.9367945,-0.98780537,-0.99899775,-0.9699214,-0.9017471,-0.7972229,-0.66056234,-0.4972742,-0.31394067,-0.11796054,0.08278273,0.28018898,0.4663007,0.6336156,0.7753892,0.8859065,0.9607101,0.996791,0.99269086,0.94857484,0.86622137,0.74895006,0.6014883,0.4297879,0.2407558,0.0420187,-0.15841219,-0.3524574,-0.5322949,-0.6906754,-0.8212144,-0.9186465,-0.9790524,-0.9999923,-0.980622,-0.9217224,-0.82566774,-0.6963301,-0.5389302,-0.35979962,-0.1661654,0.034167033,0.23312217,0.42268005,0.5951995,0.7437205,0.8622686,0.9460583,0.9917119,0.9973892,0.9628613,0.88952,0.780327,0.63967484,0.4732371,0.28772292,0.09061051,-0.11015444,-0.30647904,-0.4904419,-0.6546429,-0.79245496,-0.8983228,-0.96797884,-0.9986152,-0.988997,-0.9395147,-0.8521589,-0.7304522,-0.57930064,-0.40479717,-0.21397617,-0.014529696,0.18549411,0.37804908,0.5553647,0.71029335,0.83658975,0.9291628,0.9842809,0.99972236,0.9748661,0.91071254,0.8098477,0.67633754,0.5155639,0.33400768,0.13898744,-0.061626952,-0.25976557,-0.4474329,-0.61706406,-0.76182103,-0.8758687,-0.95460963,-0.994869,-0.99502724,-0.9550755,-0.8766243,-0.76283586,-0.6182972,-0.44883472,-0.26128772,-0.06320047,0.13743442,0.33252925,0.5142197,0.6751817,0.8089268,0.9100602,0.97451365,0.999684,0.9845566,0.9297413,0.83744776,0.7113963,0.55667514,0.3795082,0.18704312,-0.012961775,-0.21244416,-0.40336284,-0.57802176,-0.7293745,-0.85133284,-0.93897355,-0.98876375,-0.9986965,-0.9683713,-0.8990106,-0.7934156,-0.6558339,-0.4918152,-0.30797127,-0.111712836,0.08904879,0.28622082,0.47184762,0.6384622,0.7793401,0.8888024,0.96243674,0.99727476,0.9919122,0.9465652,0.863066,0.7447735,0.59645885,0.42410064,0.23464675,0.035734143,-0.16461892,-0.35832816,-0.5376015,-0.6952038,-0.82478213,-0.9211131,-0.9803136,-0.9999972,-0.9793722,-0.91926825,-0.82210815,-0.69180846,-0.5336217,-0.35392442,-0.15996027,0.04044345,0.23922528,0.42836383,0.60023487,0.7479101,0.8654368,0.9480773,0.99249935,0.996916,0.96114653,0.88663274,0.77637845,0.634828,0.46768728,0.28170207,0.084353805,-0.11639481,-0.31245148,-0.49591312,-0.65938425,-0.7962753,-0.90106446,-0.9695364,-0.9989259,-0.9880483,-0.937342,-0.84885097,-0.7261424,-0.57416964,-0.39904603,-0.20783667,-0.0082493145,0.19167057,0.38386413,0.56058395,0.71470636,0.84001404,0.9314663,0.98537076,0.99955446,0.97344565,0.9080968,0.80614215,0.67169785,0.51017207,0.32808104,0.13276489,-0.06790306,-0.26583382,-0.45304868,-0.62199426,-0.7658746,-0.87888217,-0.9564616,-0.9954856,-0.9943811,-0.9531927,-0.8735848,-0.75875974,-0.6133487,-0.44321328,-0.25521174,-0.056922514,0.1436613,0.33844605,0.5195963,0.6798014,0.81260335,0.912649,0.97590524,0.9998223,0.98343766,0.92741036,0.8339987,0.7069682,0.5514394,0.37368193,0.18086113,-0.019241748,-0.21857736,-0.40910202,-0.5831356,-0.73366266,-0.8546155,-0.9411184,-0.9896844,-0.9983562,-0.9667851,-0.8962424,-0.78957176,-0.6510731,-0.48633313,-0.30198565,-0.10546495,0.095302835,0.29223317,0.47738343,0.64329016,0.7832629,0.8916652,0.96412414,0.99771875,0.9910954,0.9445209,0.8598723,0.7405647,0.5914024,0.41840047,0.22853257,0.029456692,-0.17081074,-0.36419272,-0.54289037,-0.6997078,-0.82831967,-0.9235416,-0.98153436,-0.9999627,-0.978082,-0.9167761,-0.81851363,-0.6872565,-0.5282958,-0.3480432,-0.15375723,0.046726782,0.24532722,0.43403456,0.6052499,0.7520673,0.86856645,0.95005614,0.9932486,0.99640274,0.9593926,0.8837086,0.77240187,0.6299626,0.46212652,0.27566195,0.07808527,-0.12263481,-0.31841567,-0.5013611,-0.66409314,-0.8000591,-0.9037742,-0.9710578,-0.9991974,-0.98706,-0.9351337,-0.845514,-0.72180974,-0.56900907,-0.3932713,-0.20168479,-0.0019643463,0.19783528,0.38966006,0.56577396,0.7190852,0.8434098,0.9337346,0.9864224,0.9993471,0.97198766,0.90544873,0.80240977,0.6670253,0.50475645,0.32213742,0.1265329,-0.07417223,-0.27188334,-0.45863897,-0.62690663,-0.7699007,-0.881863,-0.95827705,-0.99606246,-0.9936967,-0.9512749,-0.8705067,-0.7546481,-0.60837257,-0.43757054,-0.24912982,-0.050650816,0.14987408,0.34435746,0.5249597,0.6843974,0.8162503,0.9151999,0.9772564,0.999921,0.9822783,0.9250395,0.8305144,0.70250916,0.5461855,0.36784878,0.17468038,-0.025529483,-0.22471024,-0.41482896,-0.58822984,-0.737919,-0.85786,-0.94322324,-0.99056464,-0.997976,-0.9651596,-0.89343685,-0.7856993,-0.6462898,-0.48083186,-0.29598808,-0.0992129,0.10155737,0.29823804,0.48289663,0.6480894,0.7871548,0.8944928,0.96577346,0.99812305,0.99023896,0.94243795,0.8566467,0.73632663,0.58632267,0.41268376,0.22241351,0.023173818,-0.17700003,-0.37003893,-0.5481578,-0.7041842,-0.83182454,-0.92593366,-0.9827172,-0.9998886,-0.976754,-0.91424775,-0.8148868,-0.68267745,-0.522949,-0.34214428,-0.1475439,0.053004015,0.2514112,0.43968812,0.61024106,0.75619483,0.871664,0.9519988,0.99395806,0.9958508,0.95760083,0.8807495,0.76839477,0.625069,0.45654377,0.269615,0.071817905,-0.12886997,-0.32436728,-0.50678736,-0.6687806,-0.80381376,-0.9064464,-0.97253925,-0.9994295,-0.98603266,-0.9328892,-0.84214026,-0.71744573,-0.5638294,-0.3874869,-0.19552284,0.0043206993,0.20399009,0.39543867,0.5709452,0.72343856,0.84676874,0.93596673,0.9874351,0.99910027,0.97049177,0.9027631,0.79864323,0.66233116,0.49931902,0.31618106,0.12029589,-0.08043635,-0.27792624,-0.4642149,-0.6317892,-0.7738977,-0.884809,-0.96005464,-0.9965998,-0.9929722,-0.9493181,-0.86739737,-0.7505108,-0.60337245,-0.4319105,-0.24304011,-0.044370737,0.15608515,0.3502513,0.5302968,0.68896633,0.81986505,0.9177138,0.97857034,0.9999803,0.9810809,0.9226346,0.8269972,0.69802237,0.54091173,0.3619952,0.16848853,-0.03181195,-0.23082802,-0.42054144,-0.5933009,-0.74214464,-0.8610739,-0.94529223,-0.99140644,-0.99755675,-0.9634954,-0.89059603,-0.7817971,-0.64148265,-0.47531158,-0.28997883,-0.092959054,0.10781,0.30423114,0.4883907,0.6528614,0.79101557,0.8972851,0.9673841,0.99848837,0.9893434,0.9403177,0.8533885,0.73205805,0.58121973,0.4069517,0.21627945,0.016888965,-0.18318127,-0.37586853,-0.5534045,-0.7086327,-0.835296,-0.92828834,-0.98386145,-0.99977505,-0.97538793,-0.91168284,-0.8112278,-0.67807215,-0.5175834,-0.3362308,-0.14132476,0.059278086,0.2574904,0.44532433,0.61520725,0.7602911,0.8747276,0.95390385,0.9946282,0.995259,0.9557712,0.8777562,0.76435876,0.62014997,0.45094296,0.26355842,0.06554982,-0.1351011,-0.33030507,-0.51219547,-0.67343926,-0.8075367,-0.90908235,-0.9739828,-0.99962205,-0.9849664,-0.9306068,-0.8387347,-0.7130529,-0.55862844,-0.38168526,-0.18935633,0.010605574,0.21013944,0.4012031,0.57609427,0.72776306,0.8500954,0.9381607,0.9884088,0.99881405,0.9689572,0.90004164,0.7948454,0.65760887,0.49386463,0.31021222,0.114055194,-0.08669941,-0.2839589,-0.46977204,-0.6366489,-0.77786225,-0.88772017,-0.961794,-0.99709797,-0.99220896,-0.947324,-0.86425245,-0.74634284,-0.5983482,-0.42623413,-0.23693861,-0.038092095,0.16228992,0.35613003,0.53561455,0.69350845,0.82344705,0.9201925,0.979845,1.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/medium_positive.json b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/medium_positive.json new file mode 100644 index 000000000000..f75a39eff2be --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/medium_positive.json @@ -0,0 +1 @@ +{"sine":[0.0,0.19975924,0.3914662,0.5673931,0.7204485,0.8444626,0.93443644,0.9867431,0.99927425,0.9715246,0.9046129,0.8012362,0.66556174,0.5030583,0.32027692,0.12458488,-0.0761289,-0.27377418,-0.4603834,-0.6284348,-0.7711538,-0.88278776,-0.95883644,-0.99623454,-0.9934744,-0.9506673,-0.8695388,-0.7533595,-0.606812,-0.43580386,-0.24722847,-0.04868783,0.15181594,0.34620002,0.52662873,0.6858287,0.8173833,0.9159891,0.97767144,0.99994373,0.98190844,0.9242924,0.829418,0.7011102,0.5445403,0.36602047,0.1727459,-0.027492076,-0.22662184,-0.41661647,-0.5898173,-0.73924255,-0.8588689,-0.94387424,-0.9908318,-0.9978493,-0.9646434,-0.8925528,-0.78448325,-0.64479125,-0.47910762,-0.2941112,-0.09726018,0.103512414,0.30011243,0.48461488,0.6495825,0.7883654,0.89536935,0.9662809,0.9982415,0.9899633,0.9417796,0.8556328,0.73499537,0.58473027,0.41089463,0.22049586,0.021209955,-0.17893197,-0.37186113,-0.5498006,-0.70557755,-0.8329126,-0.926673,-0.98307914,-0.99985737,-0.9763315,-0.9134497,-0.8137467,-0.6812423,-0.52127546,-0.34029782,-0.14560078,0.05496337,0.25331402,0.44145155,0.611796,0.75747734,0.87262505,0.9525982,0.9941715,0.99566996,0.95703304,0.87981755,0.7671375,0.6235329,0.4547952,0.2677249,0.069860615,-0.13081768,-0.32622477,-0.5084798,-0.67023975,-0.80498075,-0.90727335,-0.97299457,-0.9994939,-0.9857036,-0.93218,-0.84107935,-0.71607596,-0.56220603,-0.38567528,-0.19359812,0.0062850188,0.20591272,0.39724213,0.5725568,0.7247934,0.84781206,0.93665576,0.9877436,0.99901515,0.97001624,0.90191644,0.7974595,0.6608582,0.4976161,0.3143169,0.1183477,-0.082394175,-0.27981266,-0.4659539,-0.6333106,-0.7751402,-0.8857226,-0.9606024,-0.9967598,-0.99273807,-0.9486989,-0.86641824,-0.7492112,-0.6018048,-0.430138,-0.2411342,-0.042410366,0.15802512,0.35208854,0.5319612,0.69038874,0.8209882,0.9184924,0.978973,0.99999064,0.9806991,0.9218752,0.82589126,0.69661444,0.53925854,0.36016336,0.16655195,-0.033773113,-0.23273887,-0.42232087,-0.594881,-0.7434598,-0.8620711,-0.9459312,-0.9916615,-0.99741775,-0.96296823,-0.88970095,-0.78056943,-0.63997614,-0.4735824,-0.28809834,-0.091000915,0.10976057,0.3061018,0.49010393,0.6543465,0.7922158,0.8981505,0.96788037,0.9985943,0.9890555,0.93964744,0.85236394,0.73071986,0.5796201,0.4051556,0.21436326,0.014925931,-0.18511307,-0.37768614,-0.5550387,-0.7100174,-0.83637494,-0.92901623,-0.98421085,-0.9997314,-0.9749524,-0.91087437,-0.8100776,-0.67662627,-0.5159034,-0.3343812,-0.13937986,0.061239928,0.259387,0.4470823,0.6167555,0.76156425,0.87567735,0.9544915,0.9948297,0.9950662,0.9551916,0.8768128,0.76309204,0.6186086,0.4491888,0.26166198,0.0635917,-0.13704611,-0.33215952,-0.5138834,-0.6748893,-0.80869377,-0.9098994,-0.9744256,-0.9996741,-0.9846252,-0.9298856,-0.83766425,-0.7116747,-0.55699724,-0.37987086,-0.18742819,0.01256979,0.21206108,0.40300018,0.57769835,0.7291092,0.8511271,0.9388386,0.9887051,0.9987164,0.9684701,0.8991841,0.7936516,0.6561298,0.4921565,0.30834422,0.11210239,-0.08865407,-0.28584108,-0.4715057,-0.63816375,-0.7790944,-0.8886227,-0.9623302,-0.99724543,-0.99196243,-0.94669294,-0.8632618,-0.74503505,-0.59677345,-0.4244556,-0.23503195,-0.036130164,0.16422804,0.35796613,0.53727084,0.6949219,0.8245604,0.92095876,0.9802353,0.9999981,0.97945046,0.91942245,0.82233125,0.6920915,0.53395325,0.35429502,0.16035143,-0.040056005,-0.23884463,-0.42800957,-0.5999212,-0.74764985,-0.8652382,-0.9479512,-0.99245185,-0.9969467,-0.96125466,-0.886814,-0.77662545,-0.6351341,-0.46803752,-0.28207412,-0.084744416,0.11600545,0.31207907,0.49557266,0.6590863,0.7960355,0.90089625,0.96944034,0.9989077,0.98810863,0.9374785,0.8490604,0.7264148,0.5744871,0.39940155,0.20822011,0.0086413175,-0.1912858,-0.3834982,-0.56025577,-0.71442914,-0.8398036,-0.9313236,-0.9853039,-0.9995661,-0.97353625,-0.90826267,-0.8063766,-0.6719851,-0.5105092,-0.32845134,-0.13315344,0.06750769,0.26545176,0.45269537,0.62169063,0.7656225,0.8786951,0.9563471,0.99544835,0.99442303,0.95331246,0.87377346,0.759015,0.61365825,0.44356465,0.25559077,0.05731389,-0.1432649,-0.33807713,-0.5192613,-0.6795138,-0.81237483,-0.91248864,-0.97581965,-0.99981487,-0.98350865,-0.92755693,-0.8342149,-0.70724535,-0.5517664,-0.37404552,-0.18124667,0.018849803,0.21819481,0.40874428,0.5828171,0.73339623,0.8544119,0.9409858,0.98962694,0.9983786,0.9668852,0.8964162,0.78981227,0.6513706,0.48667192,0.3023634,0.10585901,-0.094912596,-0.29185823,-0.47703892,-0.64299,-0.7830218,-0.89148575,-0.9640189,-0.9976919,-0.9911476,-0.9446496,-0.8600724,-0.7408252,-0.59172195,-0.41876036,-0.22891834,-0.029848536,0.17042448,0.36382762,0.5425647,0.6994246,0.8280976,0.9233896,0.9814593,0.99996597,0.97816354,0.9169309,0.8187363,0.68754435,0.5286322,0.3484107,0.15414457,-0.04633519,-0.24494715,-0.43368518,-0.6049344,-0.7518061,-0.86837214,-0.9499337,-0.99320304,-0.9964359,-0.9595019,-0.883894,-0.7726535,-0.630267,-0.46247414,-0.27603874,-0.078476086,0.12224997,0.31803998,0.50101817,0.6638,0.7998238,0.90360636,0.9709641,0.9991818,0.9871234,0.935274,0.8457233,0.722081,0.56933135,0.3936317,0.20206456,0.0023606238,-0.19744681,-0.38929507,-0.56545067,-0.7188127,-0.8431991,-0.9335957,-0.9863573,-0.99936134,-0.9720807,-0.9056151,-0.80264366,-0.66731733,-0.50509113,-0.32251254,-0.12692598,0.073777035,0.27150607,0.45829055,0.62660116,0.76965314,0.88168013,0.9581637,0.9960273,0.99374056,0.95139563,0.8706996,0.7549052,0.6086803,0.43792683,0.24951358,0.051042326,-0.14948647,-0.3439894,-0.52462596,-0.68411463,-0.8160214,-0.91504014,-0.9771732,-0.999916,-0.9823517,-0.92518836,-0.83073026,-0.7027911,-0.5465174,-0.3682133,-0.17506635,0.025137592,0.22432823,0.4144761,0.58790934,0.73765147,0.8576585,0.94309294,0.9905109,0.99800086,0.965261,0.89361477,0.78594434,0.6465922,0.48117554,0.29636252,0.099602975,-0.101171605,-0.2978598,-0.48254955,-0.6477876,-0.7869129,-0.8943175,-0.9656717,-0.99809927,-0.99029416,-0.9425703,-0.8568511,-0.7365918,-0.5866402,-0.4130408,-0.22279154,-0.023561468,0.17661,0.36967075,0.54782987,0.70390576,0.83160686,0.92578554,0.9826454,0.99989444,0.9768389,0.9144065,0.81511396,0.68296385,0.5232831,0.34250858,0.14793584,-0.05260829,-0.25103176,-0.439336,-0.60993046,-0.7559383,-0.8714739,-0.9518774,-0.9939145,-0.9958864,-0.9577137,-0.88093513,-0.76864564,-0.6253717,-0.4568963,-0.26999655,-0.07221315,0.12848121,0.32399642,0.5064512,0.6684907,0.80357796,0.90627897,0.97244745,0.9994161,0.9860979,0.9330296,0.8423504,0.7177217,0.56415665,0.38785022,0.19590938,-0.003928685,-0.20360838,-0.39508054,-0.57061976,-0.7231649,-0.846559,-0.93582785,-0.98737305,-0.99911684,-0.9705857,-0.90292984,-0.79888165,-0.66262645,-0.49966046,-0.31655297,-0.120685056,0.08004772,0.27755374,0.46386388,0.6314836,0.773648,0.88462627,0.95994484,0.9965676,0.99301827,0.9494426,0.86759347,0.7507712,0.603685,0.43226403,0.24341829,0.044760235,-0.15569371,-0.34988007,-0.5299626,-0.68868214,-0.8196406,-0.9175589,-0.97849,-0.9999777,-0.98115754,-0.92278653,-0.8272175,-0.69830304,-0.5412396,-0.3623586,-0.16887914,0.03141587,0.23044449,0.42018378,0.5929853,0.7418833,0.8608756,0.9451629,0.9913545,0.9975842,0.9636008,0.89077425,0.7820402,0.6417817,0.4756602,0.29035807,0.09335149,-0.10741814,-0.30385768,-0.4880486,-0.6525661,-0.7907783,-0.89711004,-0.9672842,-0.9984666,-0.98940045,-0.940451,-0.8535916,-0.7323236,-0.58154213,-0.4073127,-0.21666425,-0.01728199,0.18279691,0.3755072,0.5530806,0.70835304,0.8350786,0.9281417,0.98379105,0.9997833,0.9754738,0.9118425,0.8114594,0.67836255,0.51792055,0.336601,0.14171283,-0.058887817,-0.25711468,-0.44496948,-0.61489564,-0.76003504,-0.87453705,-0.95378613,-0.9945876,-0.99529684,-0.9558877,-0.8779454,-0.7646128,-0.6204583,-0.4512928,-0.26393554,-0.06593886,0.13470738,0.329932,0.5118569,0.67314863,0.80730546,0.9089194,0.9738944,0.99961126,0.9850348,0.9307514,0.83894897,0.7133281,0.5589527,0.3820456,0.1897381,-0.010209317,-0.20975356,-0.40084252,-0.57577336,-0.7274945,-0.84989,-0.9380261,-0.98834854,-0.9988328,-0.96905446,-0.9002164,-0.79508287,-0.6579094,-0.49420267,-0.31058896,-0.11443935,0.08630674,0.28357407,0.46942642,0.6363412,0.7776177,0.88753754,0.96168804,0.9970679,0.99225676,0.9474494,0.8644531,0.7466019,0.59866595,0.42658415,0.23732165,0.038476374,-0.16190322,-0.35575697,-0.5352856,-0.6932225,-0.82322735,-0.92003804,-0.9797681,-0.99999994,-0.9799247,-0.92034495,-0.8236722,-0.69378734,-0.5359477,-0.3564896,-0.16267686,0.03769291,0.23655994,0.42587492,0.5980378,0.7460801,0.8640587,0.9471983,0.99215907,0.9971276,0.9619027,0.8878985,0.7781104,0.63694584,0.47011855,0.28434217,0.087087825,-0.11366044,-0.3098436,-0.49352092,-0.6573187,-0.7946071,-0.89986724,-0.9688606,-0.9987946,-0.9884676,-0.93829745,-0.8502984,-0.72803223,-0.5764212,-0.4015607,-0.21052842,-0.010993307,0.18896824,0.3813288,0.55830234,0.7127724,0.838522,0.9304613,0.98489934,0.99963284,0.97407013,0.909246,0.80777293,0.6737282,0.5125376,0.33067203,0.13549267,-0.06516502,-0.2631792,-0.45058542,-0.61984324,-0.7641018,-0.8775698,-0.95565456,-0.99522144,-0.9946688,-0.95402396,-0.87491703,-0.76054984,-0.61551374,-0.44567913,-0.25786403,-0.059670474,0.14092822,0.33586258,0.51724243,0.6777863,0.810996,0.9115239,0.9753009,0.99976647,0.9839313,0.92843646,0.83550966,0.70891225,0.55372655,0.37623373,0.18357606,-0.016498066,-0.21589045,-0.4065965,-0.5808972,-0.73179525,-0.853183,-0.94018716,-0.98928624,-0.9985102,-0.9674828,-0.8974599,-0.79125273,-0.6531599,-0.48872533,-0.30460456,-0.10820608,0.09257085,0.28959957,0.4749704,0.6411802,0.7815566,0.8904177,0.9633887,0.99752945,0.9914582,0.94541866,0.8612743,0.74240303,0.5936164,0.42090285,0.23120736,0.032208025,-0.16810632,-0.36162776,-0.54058737,-0.6977416,-0.826772,-0.92248416,-0.9810041,-0.9999826,-0.97865146,-0.91786695,-0.82008946,-0.68925655,-0.53062737,-0.35062245,-0.15646814,0.043976974,0.24266604,0.4315569,0.603053,0.7502531,0.86719906,0.94919616,0.99292547,0.9966315,0.96016425,0.8849956,0.77414453,0.63209796,0.4645583,0.27830687,0.08082072,-0.119906716,-0.31580105,-0.49898118,-0.66203266,-0.79840976,-0.9025926,-0.9703987,-0.9990836,-0.9874983,-0.9361039,-0.8469806,-0.72370625,-0.57127047,-0.3957928,-0.20437592,-0.0047212346,0.19514047,0.3871196,0.56350917,0.7171696,0.84193224,0.93274724,0.9859659,0.99944264,0.97263193,0.9066101,0.80404943,0.66906726,0.5071271,0.32474613,0.1292587,-0.071422644,-0.26924157,-0.45619115,-0.62476635,-0.76814383,-0.88055974,-0.9574878,-0.99581426,-0.99400055,-0.95212,-0.871854,-0.7564513,-0.61055833,-0.4400402,-0.25179884,-0.053391222,0.14715196,0.3417799,0.52261484,0.68238467,0.81465954,0.9140854,0.9766708,0.99988264,0.9827889,0.92608166,0.8320373,0.70446247,0.5484928,0.37039912,0.17739004,-0.022786165,-0.22202715,-0.41233438,-0.58600503,-0.73605555,-0.8564466,-0.9423053,-0.99018484,-0.99814725,-0.9658729,-0.89466804,-0.78740174,-0.64838463,-0.48324358,-0.29860812,-0.101951584,0.09883129,0.29561362,0.4804806,0.6459939,0.7854541,0.8932626,0.9650558,0.99795157,0.9906183,0.9433562,0.85806143,0.73818636,0.5885434,0.41518947,0.22508392,0.02592137,-0.17428598,-0.36748424,-0.5458535,-0.70223314,-0.8302936,-0.9248938,-0.98220474,-0.999926,-0.97733945,-0.9153595,-0.8164743,-0.68468624,-0.525286,-0.3447255,-0.15027007,0.0502593,0.24874602,0.43722185,0.60805804,0.7543964,0.8703137,0.95115125,0.99365264,0.9960975,0.9583878,0.8820498,0.7701481,0.627212,0.45899484,0.27226058,0.074567415,-0.12614824,-0.32176223,-0.50442165,-0.6667332,-0.8021707,-0.90528226,-0.97189444,-0.999333,-0.9864874,-0.9338733,-0.8436203,-0.71936345,-0.5660972,-0.390025,-0.19821535,0.0015680686,0.20130499,0.39291084,0.56867963,0.7215384,0.8453001,0.93499625,0.98699635,0.9992129,0.97115135,0.90394557,0.80029416,0.6643926,0.5016965,0.3187913,0.12301963,-0.077694446,-0.2752769,-0.46177885,-0.6296515,-0.7721555,-0.88352305,-0.9592832,-0.9963694,-0.99329495,-0.9501784,-0.86876494,-0.75232285,-0.6055653,-0.43438384,-0.24570723,-0.047109857,0.15336986,0.3476677,0.5279665,0.6869686,0.8182908,0.91661775,0.9780021,0.9999592,0.9816109,0.92369026,0.82854164,0.6999848,0.5432231,0.36454985,0.171197,-0.029056324,-0.22815506,-0.41804048,-0.5910897,-0.74029833,-0.8596764,-0.9443921,-0.991042,-0.99774486,-0.9642293,-0.8918407,-0.7835092,-0.6435837,-0.47772786,-0.2926162,-0.09569306,0.105070874,0.30161595,0.48598686,0.650782,0.78933114,0.89606464,0.9666848,0.99833316,0.98973924,0.94125086,0.8548146,0.73392904,0.5834609,0.4094597,0.2189682,0.019633692,-0.18047556,-0.37332618,-0.55111235,-0.7066848,-0.8337823,-0.92726046,-0.98336655,-0.99982965,-0.97598886,-0.91280913,-0.81283677,-0.6800888,-0.51993847,-0.33881488,-0.14404924,0.056539636,0.25483268,0.4428542,0.613039,0.7584988,0.87339395,0.9530741,0.9943405,0.99552274,0.95657843,0.8790691,0.76613206,0.62230116,0.45339814,0.2662035,0.06829417,-0.1323679,-0.3277107,-0.50982755,-0.6714074,-0.8059101,-0.90793616,-0.9733558,-0.9995424,-0.98543745,-0.93161196,-0.84022665,-0.7149805,-0.56090146,-0.38422608,-0.19206367,0.00785731,0.20744486,0.39868656,0.5738417,0.72587866,0.84864366,0.93720233,0.9879878,0.9989444,0.9696324,0.9012381,0.79650724,0.65967894,0.4962461,0.31282386,0.11679262,-0.08396318,-0.28131774,-0.46734828,-0.634525,-0.7761367,-0.8864514,-0.96103585,-0.9968852,-0.9925482,-0.9481992,-0.86563313,-0.7481646,-0.6005483,-0.42872572,-0.2396059,-0.04084366,0.15958169,0.35355777,0.53329736,0.69152534,0.82188004,0.9191139,0.9792912,0.99999624,0.9803909,0.9212623,0.8250037,0.6954916,0.537932,0.3587021,0.16499718,-0.035342373,-0.23427394,-0.4237456,-0.5961373,-0.74451184,-0.86286366,-0.9464414,-0.99186236,-0.997303,-0.9625431,-0.88898593,-0.77958566,-0.63877046,-0.4721932,-0.2865964,-0.08943075,0.11132327,0.30759016,0.49147385,0.65553147,0.7931769,0.8988389,0.96827555,0.9986764,0.9888236,0.9391083,0.8515429,0.7296427,0.5783416,0.4037137,0.21282722,0.013362279,-0.186658,-0.3791376,-0.55634946,-0.7111207,-0.83723813,-0.9295969,-0.98448646,-0.99969375,-0.9746034,-0.9102226,-0.80915725,-0.6754645,-0.5145559,-0.332907,-0.1378227,0.06280073,0.2609093,0.44848436,0.61799574,0.76258236,0.87643147,0.9549593,0.9949873,0.9949086,0.95472634,0.87605363,0.7620749,0.6173792,0.44778347,0.26015234,0.06201822,-0.13859922,-0.33364618,-0.515228,-0.6760425,-0.8096177,-0.910547,-0.9747787,-0.9997129,-0.9843486,-0.92930764,-0.8368091,-0.71056926,-0.5556978,-0.37841198,-0.18588768,0.0141462395,0.21359321,0.40444648,0.57898104,0.7301786,0.8519537,0.9393774,0.9889402,0.99863577,0.96807504,0.89849496,0.7926992,0.6549392,0.4907909,0.30684406,0.11054407,-0.09022859,-0.28734747,-0.4728842,-0.6393735,-0.7800765,-0.8893447,-0.9627554,-0.9973615,-0.9917622,-0.946188,-0.8624671,-0.7439882,-0.5955076,-0.4230353,-0.23349509,-0.034558818,0.16577041,0.35943383,0.5385927,0.69605476,0.82544655,0.9215736,0.9805451,0.9999938,0.9791322,0.91880465,0.8214331,0.6909588,0.53261954,0.35282424,0.15880767,-0.041627023,-0.24036703,-0.4294339,-0.60117507,-0.7486959,-0.8660254,-0.94844794,-0.9926435,-0.996823,-0.9608188,-0.88608825,-0.7756313,-0.6339188,-0.466655,-0.2805653,-0.08318189,0.11757125,0.31356844,0.49694142,0.66026795,0.79698104,0.90157753,0.96982384,0.99898016,0.98786634,0.93692863,0.8482287,0.7253392,0.5731994,0.3979674,0.20667781,0.0070732967,-0.19283305,-0.38494983,-0.5615504,-0.7155284,-0.8406515,-0.9318966,-0.9855705,-0.9995184,-0.97317576,-0.90760726,-0.8054457,-0.67082614,-0.5091529,-0.32696986,-0.13159072,0.06907635,0.26695916,0.4540968,0.62291473,0.7666357,0.8794426,0.95680666,0.9955965,0.99425685,0.95283645,0.8730119,0.7579876,0.6124194,0.4421511,0.25407445,0.05573982,-0.14482506,-0.33955246,-0.52060807,-0.6806634,-0.8132932,-0.91312903,-0.976163,-0.9998438,-0.98322386,-0.9269666,-0.8333492,-0.7061299,-0.55045795,-0.3725829,-0.17970434,0.02041757,0.21973313,0.41017488,0.5840975,0.7344613,0.85523003,0.9415153,0.989851,0.9982876,0.96648383,0.8957163,0.7888495,0.65017354,0.4853015,0.30086836,0.10429115,-0.09649043,-0.29334953,-0.47841647,-0.6441966,-0.78398556,-0.8921951,-0.96443677,-0.9977983,-0.9909393,-0.94413394,-0.85926694,-0.7397825,-0.59045714,-0.41732812,-0.22737503,-0.028289648,0.1719694,0.36529568,0.5438669,0.7005445,0.8289804,0.92399687,0.98175704,0.9999518,0.97783464,0.9162972,0.8178399,0.6863987,0.52728605,0.34694844,0.15259506,-0.04791003,-0.24648367,-0.43508992,-0.6061891,-0.75285035,-0.8691445,-0.95042247,-0.9933853,-0.9963009,-0.95906144,-0.8831555,-0.77164626,-0.62905544,-0.46108326,-0.27452305,-0.076895766,0.12379767,0.31953433,0.5023893,0.6649656,0.800764,0.9042806,0.9713421,0.9992437,0.98687005,0.9347118,0.84489006,0.72099537,0.5680345,0.39217407,0.20053694,0.00078403455,-0.19900048,-0.39073113,-0.5667433,-0.7199079,-0.84405017,-0.9341534,-0.98661554,-0.99930346,-0.9717136,-0.90494895,-0.8017023,-0.66613597,-0.50374454,-0.3210198,-0.12535353,0.07533225,0.2730149,0.45969126,0.6278357,0.77064794,0.88241893,0.9586162,0.9961649,0.9935641,0.95090896,0.86991894,0.7538815,0.6074354,0.43650126,0.24800307,0.04947624,-0.15104516,-0.34547734,-0.525953,-0.6852575,-0.81693655,-0.9156681,-0.97750515,-0.9999352,-0.982054,-0.9245954,-0.82985634,-0.7016626,-0.54521066,-0.36675495,-0.17351389,0.026722172,0.22584775,0.4159026,0.58919084,0.73870355,0.85846376,0.94361603,0.9907275,0.9979011,0.96485007,0.8929022,0.78497916,0.6453952,0.47979286,0.29484823,0.09805106,-0.1027315,-0.29937255,-0.48391494,-0.64898133,-0.78788483,-0.8950256,-0.96607566,-0.99819463,-0.9900726,-0.9420483,-0.8560416,-0.7355246,-0.58535576,-0.41162,-0.22126262,-0.021985287,0.17814481,0.37112728,0.5491482,0.7050308,0.832472,0.92637724,0.9829366,0.99987054,0.9765021,0.91376716,0.8141947,0.68182385,0.5219462,0.34102693,0.14639327,-0.05417412,-0.25255755,-0.4407594,-0.6111656,-0.75696385,-0.872246,-0.9523542,-0.99408597,-0.9957423,-0.95725644,-0.880196,-0.7676416,-0.6241406,-0.4555085,-0.2684864,-0.07064059,0.13005303,0.32547146,0.50780267,0.6696624,0.8045052,0.90694064,0.9728138,0.99946904,0.9858376,0.93246424,0.84149975,0.71663487,0.56286126,0.3863966,0.19435473,-0.005488215,-0.20514335,-0.39652836,-0.57189983,-0.7242471,-0.84739715,-0.93638533,-0.9876189,-0.9990497,-0.97020495,-0.90226215,-0.79793745,-0.66144484,-0.49828678,-0.31507322,-0.1191283,0.08161915,0.2790435,0.46525246,0.63270533,0.7746514,0.88535243,0.96038306,0.9966969,0.99283415,0.94894916,0.86680835,0.7497232,0.602441,0.43084952,0.24188882,0.04321071,-0.15724246,-0.3513566,-0.53130615,-0.68981206,-0.82053787,-0.9181846,-0.9788088,-0.99998695,-0.9808517,-0.92217463,-0.82634026,-0.6971798,-0.53991324,-0.36091256,-0.16733338,0.032991644,0.23198666,0.42159846,0.59424716,0.74293953,0.86166376,0.9456738,0.99156016,0.9974729,0.96318275,0.89006054,0.78105664,0.6405653,0.4742803,0.28884906,0.09177318,-0.10896853,-0.30535126,-0.48942408,-0.65376633,-0.7917319,-0.8978055,-0.9676851,-0.9985517,-0.9891715,-0.9399139,-0.85276484,-0.7312607,-0.58025885,-0.4058645,-0.21514149,-0.015714135,0.18434672,0.37697583,0.5543792,0.709465,0.8359496,0.92872113,0.984071,0.99974924,0.97512364,0.9112012,0.81053704,0.6771971,0.5165859,0.335124,0.14015198,-0.060470108,-0.25862148,-0.44638085,-0.6161449,-0.7610476,-0.8752964,-0.9542587,-0.99475104,-0.99514455,-0.9554234,-0.87718546,-0.7636068,-0.61922777,-0.44988534,-0.2624063,-0.06438263,0.13626944,0.33142793,0.51319605,0.6743074,0.8082349,0.9095792,0.9742472,0.99965376,0.98476034,0.93018,0.83809453,0.7122223,0.5576376,0.38060388,0.18819827,-0.011794334,-0.21127816,-0.4022786,-0.57706165,-0.72858113,-0.8507108,-0.93856835,-0.9885886,-0.9987567,-0.9686662,-0.89952505,-0.79412055,-0.6567277,-0.49283886,-0.30908182,-0.11289839,0.087868854,0.28509375,0.47082543,0.63755006,0.77860266,0.88826674,0.9621121,0.99718666,0.9920608,0.9469411,0.86366373,0.7455578,0.59739554,0.42518082,0.23579809,0.03690942,-0.16346721,-0.357222,-0.5366094,-0.6943641,-0.8241069,-0.9206513,-0.9800807,-0.9999993,-0.97961086,-0.91973054,-0.82277226,-0.6926695,-0.53462315,-0.3550241,-0.16111265,0.039259817,0.23808321,0.42730856,0.5992801,0.74712324,0.86484694,0.9477053,0.99235386,0.9970076,0.96146816,0.8871839,0.7771245,0.6357362,0.46871895,0.2828385,0.08552561,-0.115235135,-0.31131792,-0.49488413,-0.65849966,-0.79556847,-0.90055007,-0.9692477,-0.99887115,-0.98823154,-0.93775403,-0.8494721,-0.7269446,-0.5751391,-0.4001241,-0.20897856,-0.009442364,0.19050783,0.3827779,0.55961674,0.71387136,0.8393754,0.9310409,0.9851667,0.9995891,0.9737142,0.9085851,0.8068476,0.6725686,0.5111759,0.32920787,0.1339389,-0.06672967,-0.2647081,-0.45198473,-0.62107295,-0.76512337,-0.8783124,-0.9561152,-0.9953733,-0.9945041,-0.9535528,-0.8741566,-0.7595197,-0.6142906,-0.44427484,-0.25634867,-0.058088113,0.14248048,0.33733916,0.5185984,0.6789259,0.8119124,0.9121676,0.97564983,0.99979913,0.98365015,0.92784643,0.8346564,0.70780545,0.55242014,0.37476462,0.18203442,-0.018065901,-0.21743791,-0.40801305,-0.5821729,-0.73286307,-0.8540087,-0.94071436,-0.989514,-0.99842244,-0.9670893,-0.8967672,-0.79029286,-0.6519588,-0.48737156,-0.30311063,-0.10663013,0.0941151,0.29110008,0.4763497,0.64239585,0.7825233,0.89113027,0.9638124,0.9976372,0.9912525,0.94490653,0.86046773,0.74136305,0.59235376,0.41946447,0.22966489,0.03064073,-0.16965187,-0.36310512,-0.5418916,-0.69886404,-0.8276626,-0.92309487,-0.9813071,-0.9999721,-0.9783244,-0.9172503,-0.81919116,-0.68810725,-0.5292831,-0.3491535,-0.15491919,0.045560498,0.2441704,0.4329709,0.6043167,0.75130016,0.8679788,0.94968843,0.99311244,0.9965031,0.9597249,0.8842564,0.7731402,0.63088214,0.46316916,0.27678403,0.07927467,-0.12146332,-0.31730467,-0.50035423,-0.66320705,-0.79935294,-0.9032739,-0.97077215,-0.99914944,-0.9872472,-0.9355452,-0.8461459,-0.7226232,-0.56996876,-0.394368,-0.2028407,-0.0031361333,0.19669487,0.3885649,0.56480384,0.71827334,0.84276813,0.9333114,0.9862293,0.99938846,0.9722664,0.90594727,0.803106,0.66791373,0.50577503,0.32324654,0.12768672,-0.07298662,-0.2707514,-0.45760116,-0.6259766,-0.7691469,-0.88130987,-0.95794386,-0.99595636,-0.9938278,-0.9516342,-0.8710933,-0.7554248,-0.60930216,-0.43861625,-0.250281,-0.051825322,0.14871962,0.3432371,0.52395105,0.68354255,0.8155778,0.9147202,0.9770063,0.99990565,0.9825012,0.9254889,0.83116645,0.70333654,0.54718095,0.36894214,0.17582984,-0.024336759,-0.2235558,-0.41376245,-0.58728874,-0.7371161,-0.8572551,-0.9428348,-0.99040043,-0.99805063,-0.96546555,-0.8939588,-0.7864342,-0.64719003,-0.48185524,-0.29712752,-0.10039156,0.10039156,0.29712752,0.48185524,0.64719003,0.7864342,0.8939588,0.96546555,0.99805063,0.99040043,0.9428348,0.8572551,0.7371161,0.58728874,0.41376245,0.2235558,0.024336759,-0.17582984,-0.36894214,-0.54718095,-0.70333654,-0.83116645,-0.9254889,-0.9825012,-0.99990565,-0.9770063,-0.9147202,-0.8155778,-0.68354255,-0.52395105,-0.3432371,-0.14871962,0.051825322,0.250281,0.43861625,0.60930216,0.7554248,0.8710933,0.9516342,0.9938278,0.99595636,0.95794386,0.88130987,0.7691469,0.6259766,0.45760116,0.2707514,0.07298662,-0.12768672,-0.32324654,-0.50577503,-0.66791373,-0.803106,-0.90594727,-0.9722664,-0.99938846,-0.9862293,-0.9333114,-0.84276813,-0.71827334,-0.56480384,-0.3885649,-0.19669487,0.0031361333,0.2028407,0.394368,0.56996876,0.7226232,0.8461459,0.9355452,0.9872472,0.99914944,0.97077215,0.9032739,0.79935294,0.66320705,0.50035423,0.31730467,0.12146332,-0.07927467,-0.27678403,-0.46316916,-0.63088214,-0.7731402,-0.8842564,-0.9597249,-0.9965031,-0.99311244,-0.94968843,-0.8679788,-0.75130016,-0.6043167,-0.4329709,-0.2441704,-0.045560498,0.15491919,0.3491535,0.5292831,0.68810725,0.81919116,0.9172503,0.9783244,0.9999721,0.9813071,0.92309487,0.8276626,0.69886404,0.5418916,0.36310512,0.16965187,-0.03064073,-0.22966489,-0.41946447,-0.59235376,-0.74136305,-0.86046773,-0.94490653,-0.9912525,-0.9976372,-0.9638124,-0.89113027,-0.7825233,-0.64239585,-0.4763497,-0.29110008,-0.0941151,0.10663013,0.30311063,0.48737156,0.6519588,0.79029286,0.8967672,0.9670893,0.99842244,0.989514,0.94071436,0.8540087,0.73286307,0.5821729,0.40801305,0.21743791,0.018065901,-0.18203442,-0.37476462,-0.55242014,-0.70780545,-0.8346564,-0.92784643,-0.98365015,-0.99979913,-0.97564983,-0.9121676,-0.8119124,-0.6789259,-0.5185984,-0.33733916,-0.14248048,0.058088113,0.25634867,0.44427484,0.6142906,0.7595197,0.8741566,0.9535528,0.9945041,0.9953733,0.9561152,0.8783124,0.76512337,0.62107295,0.45198473,0.2647081,0.06672967,-0.1339389,-0.32920787,-0.5111759,-0.6725686,-0.8068476,-0.9085851,-0.9737142,-0.9995891,-0.9851667,-0.9310409,-0.8393754,-0.71387136,-0.55961674,-0.3827779,-0.19050783,0.009442364,0.20897856,0.4001241,0.5751391,0.7269446,0.8494721,0.93775403,0.98823154,0.99887115,0.9692477,0.90055007,0.79556847,0.65849966,0.49488413,0.31131792,0.115235135,-0.08552561,-0.2828385,-0.46871895,-0.6357362,-0.7771245,-0.8871839,-0.96146816,-0.9970076,-0.99235386,-0.9477053,-0.86484694,-0.74712324,-0.5992801,-0.42730856,-0.23808321,-0.039259817,0.16111265,0.3550241,0.53462315,0.6926695,0.82277226,0.91973054,0.97961086,0.9999993,0.9800807,0.9206513,0.8241069,0.6943641,0.5366094,0.357222,0.16346721,-0.03690942,-0.23579809,-0.42518082,-0.59739554,-0.7455578,-0.86366373,-0.9469411,-0.9920608,-0.99718666,-0.9621121,-0.88826674,-0.77860266,-0.63755006,-0.47082543,-0.28509375,-0.087868854,0.11289839,0.30908182,0.49283886,0.6567277,0.79412055,0.89952505,0.9686662,0.9987567,0.9885886,0.93856835,0.8507108,0.72858113,0.57706165,0.4022786,0.21127816,0.011794334,-0.18819827,-0.38060388,-0.5576376,-0.7122223,-0.83809453,-0.93018,-0.98476034,-0.99965376,-0.9742472,-0.9095792,-0.8082349,-0.6743074,-0.51319605,-0.33142793,-0.13626944,0.06438263,0.2624063,0.44988534,0.61922777,0.7636068,0.87718546,0.9554234,0.99514455,0.99475104,0.9542587,0.8752964,0.7610476,0.6161449,0.44638085,0.25862148,0.060470108,-0.14015198,-0.335124,-0.5165859,-0.6771971,-0.81053704,-0.9112012,-0.97512364,-0.99974924,-0.984071,-0.92872113,-0.8359496,-0.709465,-0.5543792,-0.37697583,-0.18434672,0.015714135,0.21514149,0.4058645,0.58025885,0.7312607,0.85276484,0.9399139,0.9891715,0.9985517,0.9676851,0.8978055,0.7917319,0.65376633,0.48942408,0.30535126,0.10896853,-0.09177318,-0.28884906,-0.4742803,-0.6405653,-0.78105664,-0.89006054,-0.96318275,-0.9974729,-0.99156016,-0.9456738,-0.86166376,-0.74293953,-0.59424716,-0.42159846,-0.23198666,-0.032991644,0.16733338,0.36091256,0.53991324,0.6971798,0.82634026,0.92217463,0.9808517,0.99998695,0.9788088,0.9181846,0.82053787,0.68981206,0.53130615,0.3513566,0.15724246,-0.04321071,-0.24188882,-0.43084952,-0.602441,-0.7497232,-0.86680835,-0.94894916,-0.99283415,-0.9966969,-0.96038306,-0.88535243,-0.7746514,-0.63270533,-0.46525246,-0.2790435,-0.08161915,0.1191283,0.31507322,0.49828678,0.66144484,0.79793745,0.90226215,0.97020495,0.9990497,0.9876189,0.93638533,0.84739715,0.7242471,0.57189983,0.39652836,0.20514335,0.005488215,-0.19435473,-0.3863966,-0.56286126,-0.71663487,-0.84149975,-0.93246424,-0.9858376,-0.99946904,-0.9728138,-0.90694064,-0.8045052,-0.6696624,-0.50780267,-0.32547146,-0.13005303,0.07064059,0.2684864,0.4555085,0.6241406,0.7676416,0.880196,0.95725644,0.9957423,0.99408597,0.9523542,0.872246,0.75696385,0.6111656,0.4407594,0.25255755,0.05417412,-0.14639327,-0.34102693,-0.5219462,-0.68182385,-0.8141947,-0.91376716,-0.9765021,-0.99987054,-0.9829366,-0.92637724,-0.832472,-0.7050308,-0.5491482,-0.37112728,-0.17814481,0.021985287,0.22126262,0.41162,0.58535576,0.7355246,0.8560416,0.9420483,0.9900726,0.99819463,0.96607566,0.8950256,0.78788483,0.64898133,0.48391494,0.29937255,0.1027315,-0.09805106,-0.29484823,-0.47979286,-0.6453952,-0.78497916,-0.8929022,-0.96485007,-0.9979011,-0.9907275,-0.94361603,-0.85846376,-0.73870355,-0.58919084,-0.4159026,-0.22584775,-0.026722172,0.17351389,0.36675495,0.54521066,0.7016626,0.82985634,0.9245954,0.982054,0.9999352,0.97750515,0.9156681,0.81693655,0.6852575,0.525953,0.34547734,0.15104516,-0.04947624,-0.24800307,-0.43650126,-0.6074354,-0.7538815,-0.86991894,-0.95090896,-0.9935641,-0.9961649,-0.9586162,-0.88241893,-0.77064794,-0.6278357,-0.45969126,-0.2730149,-0.07533225,0.12535353,0.3210198,0.50374454,0.66613597,0.8017023,0.90494895,0.9717136,0.99930346,0.98661554,0.9341534,0.84405017,0.7199079,0.5667433,0.39073113,0.19900048,-0.00078403455,-0.20053694,-0.39217407,-0.5680345,-0.72099537,-0.84489006,-0.9347118,-0.98687005,-0.9992437,-0.9713421,-0.9042806,-0.800764,-0.6649656,-0.5023893,-0.31953433,-0.12379767,0.076895766,0.27452305,0.46108326,0.62905544,0.77164626,0.8831555,0.95906144,0.9963009,0.9933853,0.95042247,0.8691445,0.75285035,0.6061891,0.43508992,0.24648367,0.04791003,-0.15259506,-0.34694844,-0.52728605,-0.6863987,-0.8178399,-0.9162972,-0.97783464,-0.9999518,-0.98175704,-0.92399687,-0.8289804,-0.7005445,-0.5438669,-0.36529568,-0.1719694,0.028289648,0.22737503,0.41732812,0.59045714,0.7397825,0.85926694,0.94413394,0.9909393,0.9977983,0.96443677,0.8921951,0.78398556,0.6441966,0.47841647,0.29334953,0.09649043,-0.10429115,-0.30086836,-0.4853164,-0.65017354,-0.7888495,-0.8957239,-0.9664794,-0.9982876,-0.989851,-0.9415096,-0.85523003,-0.7344613,-0.5840837,-0.4101904,-0.21973313,-0.02041757,0.1797211,0.3725829,0.55045795,0.70614195,0.8333398,0.9269666,0.98322386,0.9998435,0.976163,0.91312903,0.81328326,0.6806759,0.52060807,0.33955246,0.14480819,-0.05573982,-0.25407445,-0.4421664,-0.61240596,-0.7579876,-0.8730119,-0.95284164,-0.99425507,-0.9955965,-0.9568017,-0.8794507,-0.7666357,-0.62291473,-0.45408162,-0.26697558,-0.06907635,0.1316076,0.32695374,0.5091529,0.67082614,0.8054558,0.9076001,0.97317576,0.99951893,0.98557335,0.9318966,0.8406515,0.7155165,0.5615645,0.38494983,0.19281632,-0.007056253,-0.20667781,-0.3979674,-0.5732134,-0.72532743,-0.8482287,-0.9369346,-0.9878637,-0.99898016,-0.96982384,-0.9015702,-0.79699135,-0.66026795,-0.49692664,-0.31358463,-0.11757125,0.08318189,0.28058165,0.4666399,0.6339188,0.7756421,0.8860804,0.9608188,0.996823,0.9926414,0.94845337,0.8660254,0.7486846,0.60118866,0.4294339,0.24036703,0.041609995,-0.15879083,-0.35282424,-0.53263396,-0.69094646,-0.8214331,-0.91880465,-0.97913563,-0.99999374,-0.9805451,-0.92156696,-0.82545614,-0.69605476,-0.5385927,-0.35941792,-0.16578722,0.034558818,0.23351166,0.42301986,0.5955076,0.7439882,0.8624757,0.9461825,0.9917622,0.9973602,0.96276,0.8893447,0.7800765,0.63936037,0.47289923,0.28734747,0.090211615,-0.11052713,-0.30684406,-0.4907909,-0.65495205,-0.7926888,-0.89849496,-0.9680793,-0.9986349,-0.9889402,-0.9393774,-0.8519448,-0.7301902,-0.57898104,-0.4044309,-0.21360987,-0.0141462395,0.18588768,0.37842774,0.5556836,0.71056926,0.8368091,0.9293014,0.9843486,0.9997129,0.9747749,0.91055405,0.8096177,0.6760425,0.5152426,0.33364618,0.13859922,-0.062035233,-0.2601359,-0.44778347,-0.6173792,-0.76206386,-0.87605363,-0.95472634,-0.9949103,-0.994989,-0.9549593,-0.87643147,-0.7625934,-0.61799574,-0.44848436,-0.26089284,-0.06281774,0.1378227,0.332907,0.51454127,0.6754645,0.80915725,0.9102297,0.9745996,0.99969375,0.98448646,0.9296032,0.83723813,0.7111207,0.5563353,0.37915337,0.186658,-0.013362279,-0.21281056,-0.4037137,-0.5783416,-0.7296543,-0.85153395,-0.9391083,-0.9888236,-0.99867725,-0.96827555,-0.8988389,-0.7931665,-0.65554434,-0.49147385,-0.30759016,-0.111306325,0.08943075,0.2865964,0.47220826,0.63875735,0.77958566,0.88898593,0.9625477,0.997303,0.99186236,0.9464359,0.86287224,0.74451184,0.5961373,0.42373016,0.23427394,0.035342373,-0.16501398,-0.35868618,-0.537932,-0.6954916,-0.82501334,-0.9212623,-0.9803909,-0.9999962,-0.97929466,-0.9191139,-0.82188004,-0.69151306,-0.53329736,-0.35355777,-0.15956487,0.040826626,0.2396059,0.42872572,0.600562,0.7481646,0.86563313,0.94820464,0.99254614,0.9968852,0.96103585,0.8864435,0.7761367,0.634525,0.4673332,0.2813341,0.08396318,-0.11679262,-0.31284004,-0.4962461,-0.65967894,-0.79651755,-0.9012307,-0.9696324,-0.9989444,-0.9879852,-0.9372083,-0.84864366,-0.725867,-0.57385564,-0.39868656,-0.20744486,-0.0078402655,0.1920804,0.3841946,0.5608874,0.71496856,0.84022665,0.93161196,0.9854404,0.9995419,0.97336364,0.90794325,0.8059202,0.6714074,0.50982755,0.3276946,0.132351,-0.068260156,-0.26618707,-0.45338294,-0.62230116,-0.76613206,-0.87907726,-0.9565834,-0.9955195,-0.99434227,-0.9530793,-0.87339395,-0.7584988,-0.61302555,-0.4428389,-0.25486565,-0.056556653,0.14403237,0.33881488,0.51993847,0.68010134,0.81284666,0.9127952,0.9759851,0.99982935,0.98336655,0.92726046,0.8337729,0.7066728,0.5511408,0.373342,0.18049233,-0.019633692,-0.2189682,-0.40947524,-0.58347476,-0.73395216,-0.85480577,-0.94124514,-0.98973924,-0.99833316,-0.9666804,-0.89605707,-0.78931016,-0.6507949,-0.48600176,-0.30161595,-0.105070874,0.095710024,0.2926325,0.4777578,0.64357066,0.78349864,0.8918407,0.9642293,0.997746,0.99103975,0.9443809,0.8596851,0.7403098,0.5910897,0.41804048,0.22813846,0.029039286,-0.17123057,-0.364534,-0.5432088,-0.6999848,-0.82854164,-0.9236968,-0.9816142,-0.9999589,-0.97800565,-0.91662455,-0.8182908,-0.6869686,-0.5279521,-0.3476517,-0.15333617,0.04709283,0.2456907,0.43438384,0.6055653,0.75233406,0.86877334,0.950189,0.993291,0.99637085,0.9592832,0.88352305,0.77214473,0.62963825,0.4617486,0.27530965,0.07771144,-0.12301963,-0.3187913,-0.50171125,-0.6644053,-0.8003146,-0.90393096,-0.9711473,-0.9992129,-0.98699635,-0.9349902,-0.84529096,-0.7215148,-0.56870764,-0.3929265,-0.20130499,-0.0015680686,0.19823205,0.3900407,0.5661253,0.7193398,0.8436112,0.9338733,0.9864874,0.99933237,0.9718904,0.9052678,0.802191,0.6667459,0.50442165,0.32176223,0.12613134,-0.07458441,-0.27229336,-0.45896456,-0.6271987,-0.7701481,-0.8820498,-0.9583927,-0.99609905,-0.9936488,-0.9511618,-0.8703221,-0.7543964,-0.60805804,-0.4372065,-0.24872951,-0.050225254,0.15023637,0.3447095,0.525286,0.68468624,0.81648415,0.9153664,0.97734666,0.99992555,0.98220795,0.9248938,0.8302936,0.70222104,0.5458392,0.36745253,0.17431955,-0.025904333,-0.22508392,-0.41518947,-0.5885572,-0.73819786,-0.8580789,-0.9433449,-0.99061596,-0.99795157,-0.9650558,-0.89325494,-0.78544354,-0.64596784,-0.4805105,-0.2956299,-0.09883129,0.101951584,0.2986244,0.48325852,0.6484106,0.78738075,0.8946604,0.9658729,0.99814725,0.99018246,0.9422996,0.85642904,0.7360786,0.58601886,0.41233438,0.22202715,0.022769125,-0.1774068,-0.3704308,-0.54846424,-0.70445037,-0.8320373,-0.92608166,-0.9827921,-0.99988234,-0.9766635,-0.9140992,-0.81466943,-0.6823971,-0.52261484,-0.34176388,-0.1471351,0.05342526,0.25176585,0.44002488,0.6105448,0.7564513,0.87186235,0.95212525,0.99400425,0.9958174,0.9574927,0.88056785,0.76814383,0.624753,0.45617598,0.26920873,0.07145664,-0.12924181,-0.32473,-0.5071271,-0.66907996,-0.80405957,-0.9066245,-0.972624,-0.99944204,-0.9859687,-0.93274724,-0.84192306,-0.7171577,-0.563481,-0.38715103,-0.19515719,0.0047041904,0.20437592,0.3958085,0.5712845,0.7237298,0.84696245,0.9360979,0.9874956,0.9990836,0.9703946,0.90258527,0.79838926,0.6620582,0.49899593,0.31581724,0.119906716,-0.080837704,-0.27832323,-0.4645885,-0.63207155,-0.77413374,-0.88498765,-0.96016425,-0.99663293,-0.9929235,-0.94918543,-0.86721605,-0.75026435,-0.6030666,-0.4315569,-0.2426495,-0.043959945,0.1565018,0.3505905,0.5306129,0.6892442,0.82008946,0.91787374,0.9786549,0.99998283,0.98101074,0.9224907,0.8267816,0.6977416,0.54057306,0.36161184,0.16807272,-0.032173954,-0.23119077,-0.42088738,-0.5936164,-0.7424145,-0.86128294,-0.94542974,-0.99145377,-0.99753064,-0.9633932,-0.8904177,-0.781546,-0.64116716,-0.4749404,-0.2896322,-0.09258782,0.108189136,0.30460456,0.4887402,0.65317285,0.79127353,0.8974449,0.96747845,0.9985093,0.98928624,0.9401813,0.85317403,0.731772,0.5809249,0.40661207,0.2159071,0.016498066,-0.18357606,-0.37624952,-0.5537549,-0.70888823,-0.8355003,-0.92843014,-0.9839313,-0.99976647,-0.97529715,-0.9115099,-0.81101596,-0.67779887,-0.51725703,-0.33586258,-0.14092822,0.059687488,0.25789696,0.4456486,0.6155003,0.76053876,0.87491703,0.95402396,0.9946705,0.9952181,0.95566463,0.87757796,0.7641128,0.61984324,0.45058542,0.26316276,0.065131,-0.13545889,-0.33065596,-0.512523,-0.6737282,-0.80777293,-0.9092531,-0.9740779,-0.9996319,-0.9849023,-0.93046755,-0.838522,-0.7127724,-0.5582882,-0.3812973,-0.18900171,0.010976264,0.21051174,0.4015607,0.5764212,0.7280439,0.85031635,0.9382857,0.988465,0.99879545,0.9688606,0.89986724,0.7945968,0.657293,0.49355057,0.30985978,0.113677375,-0.087087825,-0.28434217,-0.4701336,-0.6369721,-0.778089,-0.8878907,-0.961898,-0.9971276,-0.99215907,-0.9471928,-0.8640415,-0.74610275,-0.5980514,-0.42589033,-0.23655994,-0.03769291,0.16269366,0.35652143,0.5359189,0.69377506,0.8236625,0.92034495,0.9799247,0.99999994,0.97976124,0.9200514,0.823237,0.6932348,0.5352856,0.35575697,0.1618864,-0.038510438,-0.23728853,-0.42656875,-0.5986523,-0.7466019,-0.8644531,-0.9474548,-0.992261,-0.9970705,-0.96169275,-0.8875454,-0.7776177,-0.6363412,-0.46941137,-0.2835577,-0.0863407,0.114422426,0.31057274,0.49420267,0.6579094,0.79509324,0.9002238,0.96904606,0.998832,0.98835117,0.9380261,0.8498855,0.7274828,0.57575244,0.40087375,0.20977855,0.0102263605,-0.1897381,-0.38205346,-0.5589668,-0.713346,-0.83893037,-0.930742,-0.98503184,-0.99961126,-0.97389245,-0.9089123,-0.8072904,-0.67317384,-0.5118789,-0.3299481,-0.13471583,0.06594737,0.26395196,0.45131564,0.62043154,0.76459634,0.87793726,0.9558852,0.9952977,0.9945859,0.95377845,0.8745536,0.7600516,0.61490905,0.44497713,0.25710645,0.058870804,-0.14173815,-0.33656886,-0.5178987,-0.67835003,-0.8114545,-0.91184604,-0.9754776,-0.9997838,-0.9837849,-0.92815125,-0.83508795,-0.70835906,-0.5530735,-0.3754914,-0.18277179,0.017316073,0.2166393,0.4072971,0.5815352,0.73232937,0.8536005,0.9404597,0.9894054,0.99846804,0.9672885,0.89711386,0.79077303,0.65255314,0.4880263,0.30382523,0.107443556,-0.09333452,-0.29034993,-0.4756602,-0.64179474,-0.7820561,-0.89078975,-0.963594,-0.99758303,-0.99135566,-0.9451629,-0.86086696,-0.7418661,-0.59295785,-0.420207,-0.23046108,-0.03142439,0.16887914,0.36237448,0.54126114,0.6983274,0.82720315,0.92278,0.98115593,0.9999777,0.9784865,0.9175487,0.819621,0.6887007,0.5299771,0.34988806,0.15569371,-0.044777263,-0.24344309,-0.4322948,-0.60366464,-0.75075996,-0.86758924,-0.9494426,-0.9930203,-0.9965655,-0.9599353,-0.8846382,-0.7736588,-0.63149023,-0.46386388,-0.27753735,-0.08002223,0.1207189,0.3165287,0.4996457,0.66262007,0.79888165,0.9029372,0.9705919,0.99911827,0.9873771,0.9358339,0.8465635,0.7231649,0.5706128,0.39505702,0.203575,0.0039542513,-0.19589266,-0.3878424,-0.56415665,-0.71772766,-0.84236425,-0.9330419,-0.98609364,-0.9994167,-0.9724494,-0.90627897,-0.8035729,-0.6684717,-0.5064218,-0.32402062,-0.1284981,0.07220465,0.26999655,0.45690387,0.6253916,0.7686674,0.88092303,0.9577088,0.9958856,0.9939145,0.9518748,0.8714614,0.75591594,0.60995066,0.43935132,0.25104,0.05260829,-0.14794427,-0.3425326,-0.52331215,-0.68294513,-0.8151041,-0.914403,-0.9768389,-0.99989456,-0.9826406,-0.92577267,-0.8316211,-0.70391786,-0.547837,-0.36967075,-0.1766016,0.023587028,0.22282478,0.4130175,0.58662635,0.73658603,0.8568511,0.9425732,0.99029654,0.9980972,0.96567833,0.89432514,0.7869182,0.6477876,0.4825421,0.29784352,0.10113769,-0.09957754,-0.29634625,-0.4811681,-0.6465922,-0.78594965,-0.89362246,-0.96526986,-0.99799925,-0.9905132,-0.94309574,-0.8576585,-0.7376457,-0.5878956,-0.41444507,-0.22435315,-0.025154632,0.17505796,0.3682133,0.5465245,0.70280325,0.8307493,0.92517865,0.9823485,0.9999161,0.9771732,0.9150367,0.8160115,0.6840897,0.5246477,0.3440054,0.1494949,-0.051042326,-0.24952184,-0.43794215,-0.60870737,-0.7548885,-0.87069124,-0.951393,-0.99374056,-0.9960265,-0.9581588,-0.88166404,-0.7696695,-0.62661445,-0.45829815,-0.27150607,-0.07376854,0.12694289,0.32253674,0.5050691,0.66730464,0.8026386,0.9056151,0.97208273,0.99936193,0.98635304,0.93360484,0.84320825,0.71881866,0.56545067,0.38928723,0.1974301,-0.00238619,-0.20203952,-0.39361602,-0.5693244,-0.722081,-0.8457278,-0.9352801,-0.98712754,-0.9991829,-0.9709682,-0.90361,-0.7998238,-0.6637936,-0.5010034,-0.31801575,-0.122275345,0.0784591,0.27603054,0.46247414,0.63027364,0.7726643,0.88390595,0.9594947,0.99643445,0.993204,0.9499337,0.8683679,0.7517949,0.604914,0.43370822,0.24496368,0.046343703,-0.15414457,-0.34841868,-0.5286467,-0.6875629,-0.81872165,-0.9169241,-0.97816175,-0.99996597,-0.9814577,-0.92338306,-0.8280833,-0.699449,-0.542579,-0.36383554,-0.17042448,0.029857054,0.22893493,0.41878358,0.5916945,0.74081373,0.860068,0.9446496,0.9911487,0.99769074,0.9640121,0.89150125,0.78303236,0.6429965,0.47703892,0.2918501,0.09489562,-0.10588443,-0.3023309,-0.48665702,-0.65136415,-0.78981227,-0.89641994,-0.96688956,-0.99838006,-0.98963183,-0.9409916,-0.8544163,-0.73339623,-0.58281016,-0.40872872,-0.21816985,-0.018883886,0.1812299,0.37403762,0.5517664,0.70725137,0.83422434,0.92756647,0.9835025,0.99981517,0.9758215,0.91248864,0.8123699,0.67950135,0.5192395,0.33810923,0.1432902,-0.05730538,-0.25559077,-0.4435723,-0.6136717,-0.75903165,-0.873759,-0.953306,-0.99442166,-0.99544835,-0.9563446,-0.87868696,-0.76560605,-0.621714,-0.45271435,-0.2654641,-0.06751194,0.13316189,0.32846743,0.5105312,0.671963,0.80636394,0.9082573,0.9735353,0.9995663,0.98530096,0.9313143,0.8398198,0.71444404,0.5602663,0.38350213,0.19127744,-0.008658361,-0.20824511,-0.3993742,-0.5744696,-0.72640604,-0.84905815,-0.93748146,-0.98811126,-0.9989065,-0.9694487,-0.9009055,-0.7960433,-0.6590895,-0.49556527,-0.3120629,-0.11598005,0.08471046,0.28205368,0.46802622,0.6351308,0.7766308,0.88682187,0.9612617,0.996944,0.99245447,0.94795525,0.8652403,0.7476442,0.59990764,0.42798647,0.23887773,0.040077295,-0.1603388,-0.35429105,-0.5339604,-0.6921038,-0.8223458,-0.91940904,-0.9794462,-0.99999803,-0.9802361,-0.9209571,-0.82455075,-0.69490355,-0.53729963,-0.35798603,-0.16424064,0.036125906,0.23503609,0.42447105,0.59679395,0.7450123,0.86325103,0.9466888,0.9919619,0.99724513,0.9623256,0.88861096,0.7791158,0.63818014,0.471517,0.28584516,0.08864983,-0.112119325,-0.30836853,-0.49212685,-0.65611047,-0.7936438,-0.8991822,-0.96847117,-0.9987173,-0.9887013,-0.93885034,-0.85114056,-0.72911793,-0.5777018,-0.4029963,-0.21204442,-0.012544225,0.18739471,0.3798472,0.55698663,0.7116717,0.8376666,0.9298919,0.98462963,0.9996749,0.9744314,0.9099047,0.80869627,0.67488617,0.5138688,0.3321354,0.13707988,-0.063566186,-0.26164964,-0.44918498,-0.618612,-0.7631003,-0.8768251,-0.95518154,-0.99506366,-0.99483097,-0.9544928,-0.8756753,-0.76155597,-0.6167354,-0.4470518,-0.2594117,-0.061252687,0.13937564,0.3343852,0.5159144,0.6766451,0.8100976,0.9108638,0.9749496,0.99973136,0.9842101,0.9290115,0.83636093,0.70999336,0.55505997,0.3777019,0.18511726,-0.014930191,-0.21437575,-0.405179,-0.5796479,-0.7307024,-0.85235506,-0.939646,-0.9890561,-0.9985936,-0.96787393,-0.89813554,-0.7922314,-0.6543594,-0.49010763,-0.30609775,-0.109747864,0.09102637,0.28813097,0.4735599,0.63996303,0.7805668,0.8897029,0.9629716,0.9974193,0.9916571,0.9459395,0.86207867,0.74346405,0.5948776,0.42230928,0.23271607,0.033741172,-0.16652673,-0.36014944,-0.5392532,-0.6966175,-0.82589847,-0.9218843,-0.9807054,-0.99999076,-0.978976,-0.91849494,-0.82098573,-0.6903795,-0.53194135,-0.35205862,-0.15805036,0.042393338,0.241128,0.43014184,0.60181504,0.7492267,0.86643416,0.9486908,0.99273604,0.99676025,0.9606012,0.8857167,0.77512544,0.6332859,0.4659765,0.27982903,0.082400545,-0.11834981,-0.31432903,-0.49763644,-0.6608822,-0.7974441,-0.9019091,-0.9700147,-0.9990152,-0.9877416,-0.9366483,-0.8477951,-0.72481096,-0.57257074,-0.397248,-0.20591064,-0.006272236,0.19361903,0.38570476,0.5621849,0.71606404,0.8410759,0.93218076,0.9857058,0.9994932,0.9729872,0.907285,0.8049909,0.6702445,0.5084779,0.3262127,0.13079657,-0.069892496,-0.26769823,-0.45478,-0.6235279,-0.7671389,-0.8798236,-0.95703924,-0.9956729,-0.9941745,-0.9526034,-0.8726292,-0.757476,-0.61178595,-0.44143245,-0.2532831,-0.054991025,0.14558391,0.3402898,0.5212773,0.6812501,0.813759,0.9134622,0.9763255,0.99985707,0.9830805,0.9266722,0.8329061,0.7055624,0.54977477,0.37188685,0.17894979,-0.021201435,-0.22049794,-0.41090533,-0.58474755,-0.7350163,-0.8556184,-0.94177353,-0.9899621,-0.9982414,-0.96627784,-0.8953598,-0.7883464,-0.64960355,-0.48463073,-0.30012056,-0.103511356,0.09727078,0.29413155,0.47913474,0.6447701,0.78447205,0.8925489,0.9646437,0.99785,0.9908291,0.94386405,0.8588831,0.7392547,0.58982414,0.41661552,0.22661147,0.027471844,-0.17277527,-0.3659937,-0.54452467,-0.70110375,-0.8294186,-0.92429644,-0.98191226,-0.99994344,-0.97767735,-0.9159966,-0.8173885,-0.68582827,-0.5266197,-0.346181,-0.15178646,0.0486591,0.24721041,0.43579572,0.6068124,0.7533662,0.8695488,0.95067656,0.99347115,0.9962362,0.9588391,0.8827875,0.7711474,0.6284193,0.46035716,0.27380186,0.07614802,-0.12457564,-0.32027715,-0.5030671,-0.6655764,-0.8012538,-0.9046005,-0.97152007,-0.9992739,-0.9867431,-0.9344329,-0.8444521,-0.72042817,-0.56741714,-0.39148408,-0.19976877,0.0],"x":[0.0,11.522881,23.045761,34.56864,46.091522,57.614403,69.13728,80.660164,92.183044,103.705925,115.228806,126.751686,138.27457,149.79745,161.32033,172.84322,184.36609,195.88898,207.41185,218.93474,230.45761,241.9805,253.50337,265.02625,276.54913,288.07202,299.5949,311.11777,322.64066,334.16354,345.68643,357.2093,368.73218,380.25507,391.77795,403.3008,414.8237,426.3466,437.86948,449.39233,460.91522,472.4381,483.961,495.48386,507.00674,518.5296,530.0525,541.5754,553.09827,564.62115,576.14404,587.66693,599.1898,610.7127,622.23553,633.7584,645.2813,656.8042,668.3271,679.85,691.37286,702.89575,714.4186,725.94147,737.46436,748.98724,760.51013,772.033,783.5559,795.0788,806.6016,818.1245,829.6474,841.1703,852.6932,864.21606,875.73895,887.26184,898.78467,910.30756,921.83044,933.35333,944.8762,956.3991,967.922,979.4449,990.9677,1002.4906,1014.0135,1025.5364,1037.0592,1048.5822,1060.105,1071.6279,1083.1508,1094.6737,1106.1965,1117.7195,1129.2423,1140.7651,1152.2881,1163.8109,1175.3339,1186.8567,1198.3796,1209.9025,1221.4254,1232.9482,1244.4711,1255.994,1267.5168,1279.0398,1290.5626,1302.0856,1313.6084,1325.1312,1336.6542,1348.177,1359.7,1371.2228,1382.7457,1394.2686,1405.7915,1417.3143,1428.8372,1440.3601,1451.8829,1463.4059,1474.9287,1486.4517,1497.9745,1509.4973,1521.0203,1532.5431,1544.066,1555.5889,1567.1118,1578.6346,1590.1576,1601.6804,1613.2032,1624.7262,1636.249,1647.772,1659.2948,1670.8177,1682.3406,1693.8635,1705.3864,1716.9092,1728.4321,1739.955,1751.4779,1763.0007,1774.5237,1786.0465,1797.5693,1809.0923,1820.6151,1832.1381,1843.6609,1855.1838,1866.7067,1878.2296,1889.7524,1901.2753,1912.7982,1924.321,1935.844,1947.3668,1958.8898,1970.4126,1981.9354,1993.4584,2004.9812,2016.5042,2028.027,2039.5499,2051.0728,2062.5957,2074.1184,2085.6414,2097.1643,2108.6873,2120.21,2131.733,2143.2559,2154.7788,2166.3015,2177.8245,2189.3474,2200.87,2212.393,2223.916,2235.439,2246.9617,2258.4846,2270.0076,2281.5303,2293.0532,2304.5762,2316.099,2327.6218,2339.1448,2350.6677,2362.1904,2373.7134,2385.2363,2396.7593,2408.282,2419.805,2431.328,2442.8508,2454.3735,2465.8965,2477.4194,2488.9421,2500.465,2511.988,2523.511,2535.0337,2546.5566,2558.0796,2569.6023,2581.1252,2592.6482,2604.1711,2615.6938,2627.2168,2638.7397,2650.2625,2661.7854,2673.3083,2684.8313,2696.354,2707.877,2719.4,2730.9229,2742.4456,2753.9685,2765.4915,2777.0142,2788.537,2800.06,2811.583,2823.1057,2834.6287,2846.1516,2857.6743,2869.1973,2880.7202,2892.2432,2903.7659,2915.2888,2926.8118,2938.3345,2949.8574,2961.3804,2972.9033,2984.426,2995.949,3007.472,3018.9946,3030.5176,3042.0405,3053.5635,3065.0862,3076.6091,3088.132,3099.655,3111.1777,3122.7007,3134.2236,3145.7463,3157.2693,3168.7922,3180.3152,3191.838,3203.3608,3214.8838,3226.4065,3237.9294,3249.4524,3260.9753,3272.498,3284.021,3295.544,3307.0667,3318.5896,3330.1125,3341.6355,3353.1582,3364.6812,3376.204,3387.727,3399.2498,3410.7727,3422.2957,3433.8184,3445.3413,3456.8643,3468.3872,3479.91,3491.4329,3502.9558,3514.4785,3526.0015,3537.5244,3549.0474,3560.57,3572.093,3583.616,3595.1387,3606.6616,3618.1846,3629.7075,3641.2302,3652.7532,3664.2761,3675.7988,3687.3218,3698.8447,3710.3677,3721.8904,3733.4133,3744.9363,3756.4592,3767.982,3779.505,3791.0278,3802.5505,3814.0735,3825.5964,3837.1194,3848.642,3860.165,3871.688,3883.2107,3894.7336,3906.2566,3917.7795,3929.3022,3940.8252,3952.3481,3963.8708,3975.3938,3986.9167,3998.4397,4009.9624,4021.4854,4033.0083,4044.5312,4056.054,4067.577,4079.0999,4090.6226,4102.1455,4113.6685,4125.1914,4136.7144,4148.237,4159.76,4171.2827,4182.8057,4194.3286,4205.8516,4217.3745,4228.8975,4240.42,4251.943,4263.466,4274.989,4286.5117,4298.0347,4309.5576,4321.08,4332.603,4344.126,4355.649,4367.172,4378.695,4390.218,4401.74,4413.263,4424.786,4436.309,4447.832,4459.355,4470.878,4482.4004,4493.9233,4505.4463,4516.969,4528.492,4540.015,4551.538,4563.0605,4574.5835,4586.1064,4597.6294,4609.1523,4620.6753,4632.198,4643.7207,4655.2437,4666.7666,4678.2896,4689.8125,4701.3354,4712.8584,4724.381,4735.904,4747.427,4758.9497,4770.4727,4781.9956,4793.5186,4805.0415,4816.564,4828.087,4839.61,4851.133,4862.656,4874.1787,4885.7017,4897.224,4908.747,4920.27,4931.793,4943.316,4954.839,4966.362,4977.8843,4989.407,5000.93,5012.453,5023.976,5035.499,5047.022,5058.5444,5070.0674,5081.5903,5093.1133,5104.636,5116.159,5127.682,5139.2046,5150.7275,5162.2505,5173.7734,5185.2964,5196.8193,5208.3423,5219.8647,5231.3877,5242.9106,5254.4336,5265.9565,5277.4795,5289.0024,5300.525,5312.048,5323.571,5335.0938,5346.6167,5358.1396,5369.6626,5381.185,5392.708,5404.231,5415.754,5427.277,5438.8,5450.3228,5461.8457,5473.368,5484.891,5496.414,5507.937,5519.46,5530.983,5542.506,5554.0283,5565.5513,5577.074,5588.597,5600.12,5611.643,5623.166,5634.6885,5646.2114,5657.7344,5669.2573,5680.7803,5692.303,5703.826,5715.3486,5726.8716,5738.3945,5749.9175,5761.4404,5772.9634,5784.4863,5796.009,5807.5317,5819.0547,5830.5776,5842.1006,5853.6235,5865.1465,5876.669,5888.192,5899.715,5911.238,5922.7607,5934.2837,5945.8066,5957.329,5968.852,5980.375,5991.898,6003.421,6014.944,6026.467,6037.9893,6049.512,6061.035,6072.558,6084.081,6095.604,6107.127,6118.65,6130.1724,6141.6953,6153.2183,6164.741,6176.264,6187.787,6199.31,6210.8325,6222.3555,6233.8784,6245.4014,6256.9243,6268.4473,6279.97,6291.4927,6303.0156,6314.5386,6326.0615,6337.5845,6349.1074,6360.6304,6372.153,6383.676,6395.1987,6406.7217,6418.2446,6429.7676,6441.2905,6452.813,6464.336,6475.859,6487.382,6498.905,6510.4277,6521.9507,6533.473,6544.996,6556.519,6568.042,6579.565,6591.088,6602.611,6614.1333,6625.6562,6637.179,6648.702,6660.225,6671.748,6683.271,6694.7935,6706.3164,6717.8394,6729.3623,6740.8853,6752.408,6763.931,6775.454,6786.9766,6798.4995,6810.0225,6821.5454,6833.0684,6844.5913,6856.1143,6867.6367,6879.1597,6890.6826,6902.2056,6913.7285,6925.2515,6936.7744,6948.297,6959.82,6971.343,6982.8657,6994.3887,7005.9116,7017.4346,7028.957,7040.48,7052.003,7063.526,7075.049,7086.572,7098.0947,7109.617,7121.14,7132.663,7144.186,7155.709,7167.232,7178.755,7190.2773,7201.8003,7213.323,7224.846,7236.369,7247.892,7259.415,7270.9375,7282.4604,7293.9834,7305.5063,7317.0293,7328.5522,7340.075,7351.5977,7363.1206,7374.6436,7386.1665,7397.6895,7409.2124,7420.7354,7432.2583,7443.781,7455.3037,7466.8267,7478.3496,7489.8726,7501.3955,7512.9185,7524.441,7535.964,7547.487,7559.01,7570.5327,7582.0557,7593.5786,7605.101,7616.624,7628.147,7639.67,7651.193,7662.716,7674.239,7685.761,7697.284,7708.807,7720.33,7731.853,7743.376,7754.899,7766.4214,7777.9443,7789.4673,7800.99,7812.513,7824.036,7835.559,7847.0815,7858.6045,7870.1274,7881.6504,7893.1733,7904.6963,7916.219,7927.7417,7939.2646,7950.7876,7962.3105,7973.8335,7985.3564,7996.8794,8008.4023,8019.925,8031.4478,8042.9707,8054.4937,8066.0166,8077.5396,8089.0625,8100.585,8112.108,8123.631,8135.154,8146.677,8158.1997,8169.7227,8181.245,8192.769,8204.291,8215.813,8227.337,8238.859,8250.383,8261.905,8273.429,8284.951,8296.474,8307.997,8319.52,8331.043,8342.565,8354.089,8365.611,8377.135,8388.657,8400.18,8411.703,8423.226,8434.749,8446.271,8457.795,8469.317,8480.84,8492.363,8503.886,8515.409,8526.932,8538.455,8549.978,8561.5,8573.023,8584.546,8596.069,8607.592,8619.115,8630.638,8642.16,8653.684,8665.206,8676.7295,8688.252,8699.775,8711.298,8722.82,8734.344,8745.866,8757.39,8768.912,8780.436,8791.958,8803.48,8815.004,8826.526,8838.05,8849.572,8861.096,8872.618,8884.141,8895.664,8907.187,8918.71,8930.232,8941.756,8953.278,8964.801,8976.324,8987.847,8999.37,9010.893,9022.416,9033.938,9045.461,9056.984,9068.507,9080.03,9091.553,9103.076,9114.599,9126.121,9137.645,9149.167,9160.69,9172.213,9183.736,9195.259,9206.781,9218.305,9229.827,9241.351,9252.873,9264.396,9275.919,9287.441,9298.965,9310.487,9322.011,9333.533,9345.057,9356.579,9368.102,9379.625,9391.147,9402.671,9414.193,9425.717,9437.239,9448.762,9460.285,9471.808,9483.331,9494.854,9506.377,9517.899,9529.422,9540.945,9552.468,9563.991,9575.514,9587.037,9598.56,9610.083,9621.605,9633.128,9644.651,9656.174,9667.697,9679.22,9690.743,9702.266,9713.788,9725.312,9736.834,9748.357,9759.88,9771.403,9782.926,9794.448,9805.972,9817.494,9829.018,9840.54,9852.063,9863.586,9875.108,9886.632,9898.154,9909.678,9921.2,9932.724,9944.246,9955.769,9967.292,9978.814,9990.338,10001.86,10013.384,10024.906,10036.429,10047.952,10059.475,10070.998,10082.5205,10094.044,10105.566,10117.089,10128.612,10140.135,10151.658,10163.181,10174.704,10186.227,10197.749,10209.272,10220.795,10232.318,10243.841,10255.364,10266.887,10278.409,10289.933,10301.455,10312.979,10324.501,10336.024,10347.547,10359.069,10370.593,10382.115,10393.639,10405.161,10416.685,10428.207,10439.7295,10451.253,10462.775,10474.299,10485.821,10497.345,10508.867,10520.39,10531.913,10543.436,10554.959,10566.481,10578.005,10589.527,10601.05,10612.573,10624.096,10635.619,10647.142,10658.665,10670.1875,10681.71,10693.233,10704.756,10716.279,10727.802,10739.325,10750.848,10762.37,10773.894,10785.416,10796.939,10808.462,10819.985,10831.508,10843.03,10854.554,10866.076,10877.6,10889.122,10900.6455,10912.168,10923.691,10935.214,10946.736,10958.26,10969.782,10981.306,10992.828,11004.352,11015.874,11027.396,11038.92,11050.442,11061.966,11073.488,11085.012,11096.534,11108.057,11119.58,11131.103,11142.626,11154.148,11165.672,11177.194,11188.717,11200.24,11211.763,11223.286,11234.809,11246.332,11257.8545,11269.377,11280.9,11292.423,11303.946,11315.469,11326.992,11338.515,11350.037,11361.561,11373.083,11384.606,11396.129,11407.652,11419.175,11430.697,11442.221,11453.743,11465.267,11476.789,11488.3125,11499.835,11511.357,11522.881,11534.403,11545.927,11557.449,11568.973,11580.495,11592.018,11603.541,11615.063,11626.587,11638.109,11649.633,11661.155,11672.678,11684.201,11695.724,11707.247,11718.77,11730.293,11741.815,11753.338,11764.861,11776.384,11787.907,11799.43,11810.953,11822.476,11833.998,11845.521,11857.044,11868.567,11880.09,11891.613,11903.136,11914.658,11926.182,11937.704,11949.228,11960.75,11972.273,11983.796,11995.318,12006.842,12018.364,12029.888,12041.41,12052.934,12064.456,12075.979,12087.502,12099.024,12110.548,12122.07,12133.594,12145.116,12156.639,12168.162,12179.685,12191.208,12202.73,12214.254,12225.776,12237.3,12248.822,12260.345,12271.868,12283.391,12294.914,12306.437,12317.96,12329.482,12341.005,12352.528,12364.051,12375.574,12387.097,12398.62,12410.143,12421.665,12433.188,12444.711,12456.234,12467.757,12479.28,12490.803,12502.325,12513.849,12525.371,12536.895,12548.417,12559.94,12571.463,12582.985,12594.509,12606.031,12617.555,12629.077,12640.601,12652.123,12663.6455,12675.169,12686.691,12698.215,12709.737,12721.261,12732.783,12744.306,12755.829,12767.352,12778.875,12790.397,12801.921,12813.443,12824.966,12836.489,12848.012,12859.535,12871.058,12882.581,12894.104,12905.626,12917.149,12928.672,12940.195,12951.718,12963.241,12974.764,12986.286,12997.81,13009.332,13020.855,13032.378,13043.901,13055.424,13066.946,13078.47,13089.992,13101.516,13113.038,13124.562,13136.084,13147.606,13159.13,13170.652,13182.176,13193.698,13205.222,13216.744,13228.267,13239.79,13251.3125,13262.836,13274.358,13285.882,13297.404,13308.927,13320.45,13331.973,13343.496,13355.019,13366.542,13378.064,13389.587,13401.11,13412.633,13424.156,13435.679,13447.202,13458.725,13470.248,13481.7705,13493.293,13504.816,13516.339,13527.862,13539.385,13550.908,13562.431,13573.953,13585.477,13596.999,13608.522,13620.045,13631.568,13643.091,13654.613,13666.137,13677.659,13689.183,13700.705,13712.229,13723.751,13735.273,13746.797,13758.319,13769.843,13781.365,13792.889,13804.411,13815.934,13827.457,13838.9795,13850.503,13862.025,13873.549,13885.071,13896.594,13908.117,13919.64,13931.163,13942.686,13954.209,13965.731,13977.254,13988.777,14000.3,14011.823,14023.346,14034.869,14046.392,14057.914,14069.4375,14080.96,14092.483,14104.006,14115.529,14127.052,14138.574,14150.098,14161.62,14173.144,14184.666,14196.189,14207.712,14219.234,14230.758,14242.28,14253.804,14265.326,14276.85,14288.372,14299.895,14311.418,14322.94,14334.464,14345.986,14357.51,14369.032,14380.555,14392.078,14403.601,14415.124,14426.646,14438.17,14449.692,14461.215,14472.738,14484.261,14495.784,14507.307,14518.83,14530.353,14541.875,14553.398,14564.921,14576.444,14587.967,14599.49,14611.013,14622.535,14634.059,14645.581,14657.1045,14668.627,14680.15,14691.673,14703.195,14714.719,14726.241,14737.765,14749.287,14760.811,14772.333,14783.856,14795.379,14806.901,14818.425,14829.947,14841.471,14852.993,14864.517,14876.039,14887.562,14899.085,14910.607,14922.131,14933.653,14945.177,14956.699,14968.222,14979.745,14991.268,15002.791,15014.313,15025.837,15037.359,15048.882,15060.405,15071.928,15083.451,15094.974,15106.497,15118.02,15129.542,15141.065,15152.588,15164.111,15175.634,15187.157,15198.68,15210.202,15221.726,15233.248,15244.771,15256.294,15267.817,15279.34,15290.862,15302.386,15313.908,15325.432,15336.954,15348.478,15360.0,15371.522,15383.046,15394.568,15406.092,15417.614,15429.138,15440.66,15452.183,15463.706,15475.229,15486.752,15498.274,15509.798,15521.32,15532.843,15544.366,15555.889,15567.412,15578.935,15590.458,15601.98,15613.503,15625.026,15636.549,15648.072,15659.595,15671.118,15682.641,15694.163,15705.687,15717.209,15728.732,15740.255,15751.778,15763.301,15774.823,15786.347,15797.869,15809.393,15820.915,15832.438,15843.961,15855.483,15867.007,15878.529,15890.053,15901.575,15913.099,15924.621,15936.144,15947.667,15959.189,15970.713,15982.235,15993.759,16005.281,16016.805,16028.327,16039.85,16051.373,16062.8955,16074.419,16085.941,16097.465,16108.987,16120.51,16132.033,16143.556,16155.079,16166.602,16178.125,16189.647,16201.17,16212.693,16224.216,16235.739,16247.262,16258.785,16270.308,16281.83,16293.354,16304.876,16316.399,16327.922,16339.445,16350.968,16362.49,16374.014,16385.537,16397.059,16408.582,16420.105,16431.627,16443.15,16454.674,16466.197,16477.719,16489.242,16500.766,16512.287,16523.81,16535.334,16546.857,16558.379,16569.902,16581.426,16592.947,16604.47,16615.994,16627.518,16639.04,16650.562,16662.086,16673.61,16685.13,16696.654,16708.178,16719.7,16731.223,16742.746,16754.27,16765.791,16777.314,16788.838,16800.36,16811.883,16823.406,16834.93,16846.451,16857.975,16869.498,16881.02,16892.543,16904.066,16915.59,16927.111,16938.635,16950.158,16961.68,16973.203,16984.727,16996.25,17007.771,17019.295,17030.818,17042.34,17053.863,17065.387,17076.91,17088.432,17099.955,17111.479,17123.0,17134.523,17146.047,17157.57,17169.092,17180.615,17192.139,17203.66,17215.184,17226.707,17238.23,17249.752,17261.275,17272.799,17284.32,17295.844,17307.367,17318.89,17330.412,17341.936,17353.459,17364.98,17376.504,17388.027,17399.55,17411.072,17422.596,17434.12,17445.64,17457.164,17468.688,17480.21,17491.732,17503.256,17514.78,17526.3,17537.824,17549.348,17560.871,17572.393,17583.916,17595.44,17606.96,17618.484,17630.008,17641.531,17653.053,17664.576,17676.1,17687.621,17699.145,17710.668,17722.191,17733.713,17745.236,17756.76,17768.281,17779.805,17791.328,17802.852,17814.373,17825.896,17837.42,17848.941,17860.465,17871.988,17883.512,17895.033,17906.557,17918.08,17929.602,17941.125,17952.648,17964.172,17975.693,17987.217,17998.74,18010.262,18021.785,18033.309,18044.832,18056.354,18067.877,18079.4,18090.922,18102.445,18113.969,18125.492,18137.014,18148.537,18160.06,18171.582,18183.105,18194.629,18206.152,18217.674,18229.197,18240.72,18252.242,18263.766,18275.29,18286.812,18298.334,18309.857,18321.38,18332.902,18344.426,18355.95,18367.473,18378.994,18390.518,18402.041,18413.562,18425.086,18436.61,18448.133,18459.654,18471.178,18482.701,18494.223,18505.746,18517.27,18528.793,18540.314,18551.838,18563.361,18574.883,18586.406,18597.93,18609.453,18620.975,18632.498,18644.021,18655.543,18667.066,18678.59,18690.113,18701.635,18713.158,18724.682,18736.203,18747.727,18759.25,18770.773,18782.295,18793.818,18805.342,18816.863,18828.387,18839.91,18851.434,18862.955,18874.479,18886.002,18897.523,18909.047,18920.57,18932.094,18943.615,18955.139,18966.662,18978.184,18989.707,19001.23,19012.754,19024.275,19035.799,19047.322,19058.844,19070.367,19081.89,19093.414,19104.936,19116.459,19127.982,19139.504,19151.027,19162.55,19174.074,19185.596,19197.12,19208.643,19220.166,19231.688,19243.21,19254.734,19266.256,19277.78,19289.303,19300.826,19312.348,19323.871,19335.395,19346.916,19358.44,19369.963,19381.486,19393.008,19404.531,19416.055,19427.576,19439.1,19450.623,19462.146,19473.668,19485.191,19496.715,19508.236,19519.76,19531.283,19542.807,19554.328,19565.852,19577.375,19588.896,19600.42,19611.943,19623.467,19634.988,19646.512,19658.035,19669.557,19681.08,19692.604,19704.127,19715.648,19727.172,19738.695,19750.217,19761.74,19773.264,19784.787,19796.309,19807.832,19819.355,19830.877,19842.4,19853.924,19865.447,19876.969,19888.492,19900.016,19911.537,19923.06,19934.584,19946.107,19957.629,19969.152,19980.676,19992.197,20003.72,20015.244,20026.768,20038.29,20049.812,20061.336,20072.857,20084.38,20095.904,20107.428,20118.95,20130.473,20141.996,20153.518,20165.041,20176.564,20188.088,20199.61,20211.133,20222.656,20234.178,20245.701,20257.225,20268.748,20280.27,20291.793,20303.316,20314.838,20326.361,20337.885,20349.408,20360.93,20372.453,20383.977,20395.498,20407.021,20418.545,20430.068,20441.59,20453.113,20464.637,20476.158,20487.682,20499.205,20510.729,20522.25,20533.773,20545.297,20556.818,20568.342,20579.865,20591.389,20602.91,20614.434,20625.957,20637.479,20649.002,20660.525,20672.049,20683.57,20695.094,20706.617,20718.139,20729.662,20741.186,20752.709,20764.23,20775.754,20787.277,20798.799,20810.322,20821.846,20833.37,20844.89,20856.414,20867.938,20879.459,20890.982,20902.506,20914.03,20925.55,20937.074,20948.598,20960.12,20971.643,20983.166,20994.69,21006.21,21017.734,21029.258,21040.78,21052.303,21063.826,21075.35,21086.871,21098.395,21109.918,21121.44,21132.963,21144.486,21156.01,21167.531,21179.055,21190.578,21202.1,21213.623,21225.146,21236.67,21248.191,21259.715,21271.238,21282.76,21294.283,21305.807,21317.33,21328.852,21340.375,21351.898,21363.42,21374.943,21386.467,21397.99,21409.512,21421.035,21432.559,21444.08,21455.604,21467.127,21478.65,21490.172,21501.695,21513.219,21524.74,21536.264,21547.787,21559.31,21570.832,21582.355,21593.879,21605.4,21616.924,21628.447,21639.97,21651.492,21663.016,21674.54,21686.06,21697.584,21709.107,21720.63,21732.152,21743.676,21755.2,21766.723,21778.244,21789.768,21801.291,21812.812,21824.336,21835.86,21847.383,21858.904,21870.428,21881.951,21893.473,21904.996,21916.52,21928.043,21939.564,21951.088,21962.611,21974.133,21985.656,21997.18,22008.703,22020.225,22031.748,22043.271,22054.793,22066.316,22077.84,22089.363,22100.885,22112.408,22123.932,22135.453,22146.977,22158.5,22170.023,22181.545,22193.068,22204.592,22216.113,22227.637,22239.16,22250.684,22262.205,22273.729,22285.252,22296.773,22308.297,22319.82,22331.344,22342.865,22354.389,22365.912,22377.434,22388.957,22400.48,22412.004,22423.525,22435.049,22446.572,22458.094,22469.617,22481.14,22492.664,22504.186,22515.709,22527.232,22538.754,22550.277,22561.8,22573.324,22584.846,22596.37,22607.893,22619.414,22630.938,22642.46,22653.984,22665.506,22677.03,22688.553,22700.074,22711.598,22723.121,22734.645,22746.166,22757.69,22769.213,22780.734,22792.258,22803.781,22815.305,22826.826,22838.35,22849.873,22861.395,22872.918,22884.441,22895.965,22907.486,22919.01,22930.533,22942.055,22953.578,22965.102,22976.625,22988.146,22999.67,23011.193,23022.715,23034.238,23045.762,23057.285,23068.807,23080.33,23091.854,23103.375,23114.898,23126.422,23137.945,23149.467,23160.99,23172.514,23184.035,23195.559,23207.082,23218.605,23230.127,23241.65,23253.174,23264.695,23276.219,23287.742,23299.266,23310.787,23322.31,23333.834,23345.355,23356.879,23368.402,23379.926,23391.447,23402.97,23414.494,23426.016,23437.54,23449.062,23460.586,23472.107,23483.63,23495.154,23506.676,23518.2,23529.723,23541.246,23552.768,23564.291,23575.814,23587.336,23598.86,23610.383,23621.906,23633.428,23644.951,23656.475,23667.996,23679.52,23691.043,23702.566,23714.088,23725.611,23737.135,23748.656,23760.18,23771.703,23783.227,23794.748,23806.271,23817.795,23829.316,23840.84,23852.363,23863.887,23875.408,23886.932,23898.455,23909.977,23921.5,23933.023,23944.547,23956.068,23967.592,23979.115,23990.637,24002.16,24013.684,24025.207,24036.729,24048.252,24059.775,24071.297,24082.82,24094.344,24105.867,24117.389,24128.912,24140.436,24151.957,24163.48,24175.004,24186.527,24198.049,24209.572,24221.096,24232.617,24244.14,24255.664,24267.188,24278.709,24290.232,24301.756,24313.277,24324.8,24336.324,24347.848,24359.37,24370.893,24382.416,24393.94,24405.46,24416.984,24428.508,24440.03,24451.553,24463.076,24474.6,24486.121,24497.645,24509.168,24520.69,24532.213,24543.736,24555.26,24566.781,24578.305,24589.828,24601.35,24612.873,24624.396,24635.92,24647.441,24658.965,24670.488,24682.01,24693.533,24705.057,24716.58,24728.102,24739.625,24751.148,24762.67,24774.193,24785.717,24797.24,24808.762,24820.285,24831.809,24843.33,24854.854,24866.377,24877.9,24889.422,24900.945,24912.469,24923.99,24935.514,24947.037,24958.56,24970.082,24981.605,24993.129,25004.65,25016.174,25027.697,25039.22,25050.742,25062.266,25073.79,25085.31,25096.834,25108.357,25119.88,25131.402,25142.926,25154.45,25165.97,25177.494,25189.018,25200.541,25212.062,25223.586,25235.11,25246.63,25258.154,25269.678,25281.201,25292.723,25304.246,25315.77,25327.291,25338.814,25350.338,25361.861,25373.383,25384.906,25396.43,25407.951,25419.475,25430.998,25442.521,25454.043,25465.566,25477.09,25488.611,25500.135,25511.658,25523.182,25534.703,25546.227,25557.75,25569.271,25580.795,25592.318,25603.842,25615.363,25626.887,25638.41,25649.932,25661.455,25672.979,25684.502,25696.023,25707.547,25719.07,25730.592,25742.115,25753.639,25765.162,25776.684,25788.207,25799.73,25811.252,25822.775,25834.299,25845.822,25857.344,25868.867,25880.39,25891.912,25903.436,25914.959,25926.482,25938.004,25949.527,25961.05,25972.572,25984.096,25995.62,26007.143,26018.664,26030.188,26041.71,26053.232,26064.756,26076.28,26087.803,26099.324,26110.848,26122.371,26133.893,26145.416,26156.94,26168.463,26179.984,26191.508,26203.031,26214.553,26226.076,26237.6,26249.123,26260.645,26272.168,26283.691,26295.213,26306.736,26318.26,26329.783,26341.305,26352.828,26364.352,26375.873,26387.396,26398.92,26410.443,26421.965,26433.488,26445.012,26456.533,26468.057,26479.58,26491.104,26502.625,26514.148,26525.672,26537.193,26548.717,26560.24,26571.764,26583.285,26594.809,26606.332,26617.854,26629.377,26640.9,26652.424,26663.945,26675.469,26686.992,26698.514,26710.037,26721.56,26733.084,26744.605,26756.129,26767.652,26779.174,26790.697,26802.22,26813.744,26825.266,26836.79,26848.312,26859.834,26871.357,26882.88,26894.404,26905.926,26917.45,26928.973,26940.496,26952.018,26963.541,26975.064,26986.586,26998.11,27009.633,27021.156,27032.678,27044.201,27055.725,27067.246,27078.77,27090.293,27101.816,27113.338,27124.861,27136.385,27147.906,27159.43,27170.953,27182.477,27193.998,27205.521,27217.045,27228.566,27240.09,27251.613,27263.137,27274.658,27286.182,27297.705,27309.227,27320.75,27332.273,27343.797,27355.318,27366.842,27378.365,27389.887,27401.41,27412.934,27424.457,27435.979,27447.502,27459.025,27470.547,27482.07,27493.594,27505.117,27516.639,27528.162,27539.686,27551.207,27562.73,27574.254,27585.777,27597.299,27608.822,27620.346,27631.867,27643.39,27654.914,27666.438,27677.959,27689.482,27701.006,27712.527,27724.05,27735.574,27747.098,27758.62,27770.143,27781.666,27793.188,27804.71,27816.234,27827.758,27839.28,27850.803,27862.326,27873.848,27885.371,27896.895,27908.418,27919.94,27931.463,27942.986,27954.508,27966.031,27977.555,27989.078,28000.6,28012.123,28023.646,28035.168,28046.691,28058.215,28069.738,28081.26,28092.783,28104.307,28115.828,28127.352,28138.875,28150.398,28161.92,28173.443,28184.967,28196.488,28208.012,28219.535,28231.059,28242.58,28254.104,28265.627,28277.148,28288.672,28300.195,28311.719,28323.24,28334.764,28346.287,28357.809,28369.332,28380.855,28392.379,28403.9,28415.424,28426.947,28438.469,28449.992,28461.516,28473.04,28484.56,28496.084,28507.607,28519.129,28530.652,28542.176,28553.7,28565.22,28576.744,28588.268,28599.79,28611.312,28622.836,28634.36,28645.88,28657.404,28668.928,28680.45,28691.973,28703.496,28715.02,28726.541,28738.064,28749.588,28761.11,28772.633,28784.156,28795.68,28807.201,28818.725,28830.248,28841.77,28853.293,28864.816,28876.34,28887.861,28899.385,28910.908,28922.43,28933.953,28945.477,28957.0,28968.521,28980.045,28991.568,29003.09,29014.613,29026.137,29037.66,29049.182,29060.705,29072.229,29083.75,29095.273,29106.797,29118.32,29129.842,29141.365,29152.889,29164.41,29175.934,29187.457,29198.98,29210.502,29222.025,29233.549,29245.07,29256.594,29268.117,29279.64,29291.162,29302.686,29314.209,29325.73,29337.254,29348.777,29360.3,29371.822,29383.346,29394.87,29406.39,29417.914,29429.438,29440.96,29452.482,29464.006,29475.53,29487.053,29498.574,29510.098,29521.621,29533.143,29544.666,29556.19,29567.713,29579.234,29590.758,29602.281,29613.803,29625.326,29636.85,29648.373,29659.895,29671.418,29682.941,29694.463,29705.986,29717.51,29729.033,29740.555,29752.078,29763.602,29775.123,29786.646,29798.17,29809.693,29821.215,29832.738,29844.262,29855.783,29867.307,29878.83,29890.354,29901.875,29913.398,29924.922,29936.443,29947.967,29959.49,29971.014,29982.535,29994.059,30005.582,30017.104,30028.627,30040.15,30051.674,30063.195,30074.719,30086.242,30097.764,30109.287,30120.81,30132.334,30143.855,30155.379,30166.902,30178.424,30189.947,30201.47,30212.994,30224.516,30236.04,30247.562,30259.084,30270.607,30282.13,30293.654,30305.176,30316.7,30328.223,30339.744,30351.268,30362.791,30374.314,30385.836,30397.36,30408.883,30420.404,30431.928,30443.451,30454.975,30466.496,30478.02,30489.543,30501.064,30512.588,30524.111,30535.635,30547.156,30558.68,30570.203,30581.725,30593.248,30604.771,30616.295,30627.816,30639.34,30650.863,30662.385,30673.908,30685.432,30696.955,30708.477,30720.0,30731.523,30743.045,30754.568,30766.092,30777.615,30789.137,30800.66,30812.184,30823.705,30835.229,30846.752,30858.275,30869.797,30881.32,30892.844,30904.365,30915.889,30927.412,30938.936,30950.457,30961.98,30973.504,30985.025,30996.549,31008.072,31019.596,31031.117,31042.64,31054.164,31065.686,31077.209,31088.732,31100.256,31111.777,31123.3,31134.824,31146.346,31157.87,31169.393,31180.916,31192.438,31203.96,31215.484,31227.006,31238.53,31250.053,31261.576,31273.098,31284.621,31296.145,31307.666,31319.19,31330.713,31342.236,31353.758,31365.281,31376.805,31388.326,31399.85,31411.373,31422.896,31434.418,31445.941,31457.465,31468.986,31480.51,31492.033,31503.557,31515.078,31526.602,31538.125,31549.646,31561.17,31572.693,31584.217,31595.738,31607.262,31618.785,31630.307,31641.83,31653.354,31664.877,31676.398,31687.922,31699.445,31710.967,31722.49,31734.014,31745.537,31757.059,31768.582,31780.105,31791.627,31803.15,31814.674,31826.197,31837.719,31849.242,31860.766,31872.287,31883.81,31895.334,31906.857,31918.379,31929.902,31941.426,31952.947,31964.47,31975.994,31987.518,31999.04,32010.562,32022.086,32033.61,32045.13,32056.654,32068.178,32079.7,32091.223,32102.746,32114.27,32125.791,32137.314,32148.838,32160.36,32171.883,32183.406,32194.93,32206.451,32217.975,32229.498,32241.02,32252.543,32264.066,32275.59,32287.111,32298.635,32310.158,32321.68,32333.203,32344.727,32356.25,32367.771,32379.295,32390.818,32402.34,32413.863,32425.387,32436.91,32448.432,32459.955,32471.479,32483.0,32494.523,32506.047,32517.57,32529.092,32540.615,32552.139,32563.66,32575.184,32586.707,32598.23,32609.752,32621.275,32632.799,32644.32,32655.844,32667.367,32678.89,32690.412,32701.936,32713.459,32724.98,32736.504,32748.027,32759.55,32771.074,32782.594,32794.117,32805.64,32817.164,32828.688,32840.21,32851.734,32863.254,32874.777,32886.3,32897.824,32909.348,32920.87,32932.395,32943.914,32955.438,32966.96,32978.484,32990.008,33001.53,33013.055,33024.574,33036.098,33047.62,33059.145,33070.668,33082.19,33093.715,33105.234,33116.758,33128.28,33139.805,33151.33,33162.85,33174.375,33185.895,33197.418,33208.94,33220.465,33231.99,33243.51,33255.035,33266.555,33278.08,33289.6,33301.125,33312.65,33324.17,33335.695,33347.22,33358.74,33370.26,33381.785,33393.31,33404.832,33416.355,33427.88,33439.4,33450.92,33462.445,33473.97,33485.492,33497.016,33508.54,33520.06,33531.582,33543.105,33554.63,33566.152,33577.676,33589.2,33600.72,33612.242,33623.766,33635.29,33646.812,33658.336,33669.86,33681.38,33692.902,33704.426,33715.95,33727.473,33738.996,33750.52,33762.04,33773.562,33785.086,33796.61,33808.133,33819.656,33831.18,33842.7,33854.223,33865.746,33877.27,33888.793,33900.316,33911.84,33923.36,33934.883,33946.406,33957.93,33969.453,33980.977,33992.5,34004.02,34015.543,34027.066,34038.59,34050.113,34061.637,34073.16,34084.68,34096.203,34107.727,34119.25,34130.773,34142.297,34153.82,34165.34,34176.863,34188.387,34199.91,34211.434,34222.957,34234.48,34246.0,34257.523,34269.047,34280.57,34292.094,34303.617,34315.14,34326.66,34338.184,34349.707,34361.23,34372.754,34384.277,34395.8,34407.32,34418.844,34430.367,34441.89,34453.414,34464.938,34476.46,34487.98,34499.504,34511.027,34522.55,34534.074,34545.598,34557.12,34568.64,34580.164,34591.688,34603.21,34614.734,34626.258,34637.78,34649.3,34660.824,34672.348,34683.87,34695.395,34706.918,34718.44,34729.96,34741.484,34753.008,34764.53,34776.055,34787.58,34799.1,34810.62,34822.145,34833.668,34845.19,34856.715,34868.24,34879.76,34891.28,34902.805,34914.33,34925.85,34937.375,34948.9,34960.42,34971.94,34983.465,34994.99,35006.51,35018.035,35029.56,35041.082,35052.6,35064.125,35075.65,35087.17,35098.695,35110.22,35121.742,35133.26,35144.785,35156.31,35167.832,35179.355,35190.88,35202.402,35213.92,35225.445,35236.97,35248.492,35260.016,35271.54,35283.062,35294.582,35306.105,35317.63,35329.152,35340.676,35352.2,35363.723,35375.242,35386.766,35398.29,35409.812,35421.336,35432.86,35444.383,35455.902,35467.426,35478.95,35490.473,35501.996,35513.52,35525.043,35536.562,35548.086,35559.61,35571.133,35582.656,35594.18,35605.703,35617.223,35628.746,35640.27,35651.793,35663.316,35674.84,35686.363,35697.883,35709.406,35720.93,35732.453,35743.977,35755.5,35767.023,35778.543,35790.066,35801.59,35813.113,35824.637,35836.16,35847.684,35859.203,35870.727,35882.25,35893.773,35905.297,35916.82,35928.344,35939.863,35951.387,35962.91,35974.434,35985.957,35997.48,36009.004,36020.523,36032.047,36043.57,36055.094,36066.617,36078.14,36089.664,36101.184,36112.707,36124.23,36135.754,36147.277,36158.8,36170.324,36181.844,36193.367,36204.89,36216.414,36227.938,36239.46,36250.984,36262.504,36274.027,36285.55,36297.074,36308.598,36320.12,36331.645,36343.164,36354.688,36366.21,36377.734,36389.258,36400.78,36412.305,36423.824,36435.348,36446.87,36458.395,36469.918,36481.44,36492.965,36504.484,36516.008,36527.53,36539.055,36550.58,36562.1,36573.625,36585.145,36596.668,36608.19,36619.715,36631.24,36642.76,36654.285,36665.805,36677.33,36688.85,36700.375,36711.9,36723.42,36734.945,36746.465,36757.99,36769.51,36781.035,36792.56,36804.082,36815.605,36827.125,36838.65,36850.17,36861.695,36873.22,36884.742,36896.266,36907.785,36919.31,36930.832,36942.355,36953.88,36965.402,36976.926,36988.445,36999.97,37011.492,37023.016,37034.54,37046.062,37057.586,37069.105,37080.63,37092.152,37103.676,37115.2,37126.723,37138.246,37149.766,37161.29,37172.812,37184.336,37195.86,37207.383,37218.906,37230.426,37241.95,37253.473,37264.996,37276.52,37288.043,37299.566,37311.086,37322.61,37334.133,37345.656,37357.18,37368.703,37380.227,37391.746,37403.27,37414.793,37426.316,37437.84,37449.363,37460.887,37472.406,37483.93,37495.453,37506.977,37518.5,37530.023,37541.547,37553.066,37564.59,37576.113,37587.637,37599.16,37610.684,37622.207,37633.727,37645.25,37656.773,37668.297,37679.82,37691.344,37702.867,37714.387,37725.91,37737.434,37748.957,37760.48,37772.004,37783.527,37795.047,37806.57,37818.094,37829.617,37841.14,37852.664,37864.188,37875.707,37887.23,37898.754,37910.277,37921.8,37933.324,37944.848,37956.367,37967.89,37979.414,37990.938,38002.46,38013.984,38025.508,38037.027,38048.55,38060.074,38071.598,38083.12,38094.645,38106.168,38117.688,38129.21,38140.734,38152.258,38163.78,38175.305,38186.83,38198.348,38209.87,38221.395,38232.918,38244.44,38255.965,38267.49,38279.008,38290.53,38302.055,38313.58,38325.1,38336.625,38348.15,38359.668,38371.19,38382.715,38394.24,38405.76,38417.285,38428.81,38440.332,38451.85,38463.375,38474.9,38486.42,38497.945,38509.47,38520.992,38532.51,38544.035,38555.56,38567.082,38578.605,38590.13,38601.652,38613.17,38624.695,38636.22,38647.742,38659.266,38670.79,38682.312,38693.832,38705.355,38716.88,38728.402,38739.926,38751.45,38762.973,38774.492,38786.016,38797.54,38809.062,38820.586,38832.11,38843.633,38855.152,38866.676,38878.2,38889.723,38901.246,38912.77,38924.293,38935.812,38947.336,38958.86,38970.383,38981.906,38993.43,39004.953,39016.473,39027.996,39039.52,39051.043,39062.566,39074.09,39085.613,39097.133,39108.656,39120.18,39131.703,39143.227,39154.75,39166.273,39177.793,39189.316,39200.84,39212.363,39223.887,39235.41,39246.934,39258.453,39269.977,39281.5,39293.023,39304.547,39316.07,39327.594,39339.113,39350.637,39362.16,39373.684,39385.207,39396.73,39408.254,39419.773,39431.297,39442.82,39454.344,39465.867,39477.39,39488.914,39500.434,39511.957,39523.48,39535.004,39546.527,39558.05,39569.574,39581.094,39592.617,39604.14,39615.664,39627.188,39638.71,39650.234,39661.754,39673.277,39684.8,39696.324,39707.848,39719.37,39730.895,39742.414,39753.938,39765.46,39776.984,39788.508,39800.03,39811.555,39823.074,39834.598,39846.12,39857.645,39869.168,39880.69,39892.215,39903.734,39915.258,39926.78,39938.305,39949.83,39961.35,39972.875,39984.395,39995.918,40007.44,40018.965,40030.49,40042.01,40053.535,40065.055,40076.58,40088.1,40099.625,40111.15,40122.67,40134.195,40145.715,40157.24,40168.76,40180.285,40191.81,40203.332,40214.855,40226.375,40237.9,40249.42,40260.945,40272.47,40283.992,40295.516,40307.035,40318.56,40330.082,40341.605,40353.13,40364.652,40376.176,40387.695,40399.22,40410.742,40422.266,40433.79,40445.312,40456.836,40468.355,40479.88,40491.402,40502.926,40514.45,40525.973,40537.496,40549.016,40560.54,40572.062,40583.586,40595.11,40606.633,40618.156,40629.676,40641.2,40652.723,40664.246,40675.77,40687.293,40698.816,40710.336,40721.86,40733.383,40744.906,40756.43,40767.953,40779.477,40790.996,40802.52,40814.043,40825.566,40837.09,40848.613,40860.137,40871.656,40883.18,40894.703,40906.227,40917.75,40929.273,40940.797,40952.316,40963.84,40975.363,40986.887,40998.41,41009.934,41021.457,41032.977,41044.5,41056.023,41067.547,41079.07,41090.594,41102.117,41113.637,41125.16,41136.684,41148.207,41159.73,41171.254,41182.777,41194.297,41205.82,41217.344,41228.867,41240.39,41251.914,41263.438,41274.957,41286.48,41298.004,41309.527,41321.05,41332.574,41344.098,41355.617,41367.14,41378.664,41390.188,41401.71,41413.234,41424.758,41436.277,41447.8,41459.324,41470.848,41482.37,41493.895,41505.418,41516.938,41528.46,41539.984,41551.508,41563.03,41574.555,41586.08,41597.598,41609.12,41620.645,41632.168,41643.69,41655.215,41666.74,41678.258,41689.78,41701.305,41712.83,41724.35,41735.875,41747.4,41758.918,41770.44,41781.965,41793.49,41805.01,41816.535,41828.06,41839.58,41851.1,41862.625,41874.15,41885.67,41897.195,41908.72,41920.24,41931.76,41943.285,41954.81,41966.332,41977.855,41989.38,42000.9,42012.42,42023.945,42035.47,42046.992,42058.516,42070.04,42081.56,42093.082,42104.605,42116.13,42127.652,42139.176,42150.7,42162.22,42173.742,42185.266,42196.79,42208.312,42219.836,42231.36,42242.88,42254.402,42265.926,42277.45,42288.973,42300.496,42312.02,42323.54,42335.062,42346.586,42358.11,42369.633,42381.156,42392.68,42404.2,42415.723,42427.246,42438.77,42450.293,42461.816,42473.34,42484.86,42496.383,42507.906,42519.43,42530.953,42542.477,42554.0,42565.52,42577.043,42588.566,42600.09,42611.613,42623.137,42634.66,42646.18,42657.703,42669.227,42680.75,42692.273,42703.797,42715.32,42726.84,42738.363,42749.887,42761.41,42772.934,42784.457,42795.98,42807.5,42819.023,42830.547,42842.07,42853.594,42865.117,42876.64,42888.16,42899.684,42911.207,42922.73,42934.254,42945.777,42957.3,42968.82,42980.344,42991.867,43003.39,43014.914,43026.438,43037.96,43049.48,43061.004,43072.527,43084.05,43095.574,43107.098,43118.62,43130.14,43141.664,43153.188,43164.71,43176.234,43187.758,43199.28,43210.8,43222.324,43233.848,43245.37,43256.895,43268.418,43279.94,43291.46,43302.984,43314.508,43326.03,43337.555,43349.08,43360.6,43372.12,43383.645,43395.168,43406.69,43418.215,43429.74,43441.26,43452.78,43464.305,43475.83,43487.35,43498.875,43510.4,43521.92,43533.445,43544.965,43556.49,43568.01,43579.535,43591.06,43602.582,43614.105,43625.625,43637.15,43648.67,43660.195,43671.72,43683.242,43694.766,43706.285,43717.81,43729.332,43740.855,43752.38,43763.902,43775.426,43786.945,43798.47,43809.992,43821.516,43833.04,43844.562,43856.086,43867.605,43879.13,43890.652,43902.176,43913.7,43925.223,43936.746,43948.266,43959.79,43971.312,43982.836,43994.36,44005.883,44017.406,44028.926,44040.45,44051.973,44063.496,44075.02,44086.543,44098.066,44109.586,44121.11,44132.633,44144.156,44155.68,44167.203,44178.727,44190.246,44201.77,44213.293,44224.816,44236.34,44247.863,44259.387,44270.906,44282.43,44293.953,44305.477,44317.0,44328.523,44340.047,44351.566,44363.09,44374.613,44386.137,44397.66,44409.184,44420.707,44432.227,44443.75,44455.273,44466.797,44478.32,44489.844,44501.367,44512.887,44524.41,44535.934,44547.457,44558.98,44570.504,44582.027,44593.547,44605.07,44616.594,44628.117,44639.64,44651.164,44662.688,44674.207,44685.73,44697.254,44708.777,44720.3,44731.824,44743.348,44754.867,44766.39,44777.914,44789.438,44800.96,44812.484,44824.008,44835.527,44847.05,44858.574,44870.098,44881.62,44893.145,44904.668,44916.188,44927.71,44939.234,44950.758,44962.28,44973.805,44985.33,44996.848,45008.37,45019.895,45031.418,45042.94,45054.465,45065.99,45077.508,45089.03,45100.555,45112.08,45123.6,45135.125,45146.65,45158.168,45169.69,45181.215,45192.74,45204.26,45215.785,45227.31,45238.83,45250.35,45261.875,45273.4,45284.92,45296.445,45307.97,45319.49,45331.01,45342.535,45354.06,45365.582,45377.105,45388.63,45400.15,45411.67,45423.195,45434.72,45446.242,45457.766,45469.29,45480.81,45492.332,45503.855,45515.38,45526.902,45538.426,45549.95,45561.47,45572.992,45584.516,45596.04,45607.562,45619.086,45630.61,45642.13,45653.652,45665.176,45676.7,45688.223,45699.746,45711.27,45722.79,45734.312,45745.836,45757.36,45768.883,45780.406,45791.93,45803.45,45814.973,45826.496,45838.02,45849.543,45861.066,45872.59,45884.11,45895.633,45907.156,45918.68,45930.203,45941.727,45953.25,45964.77,45976.293,45987.816,45999.34,46010.863,46022.387,46033.91,46045.43,46056.953,46068.477,46080.0],"cosine":[1.0,0.979845,0.9201925,0.82344705,0.69350845,0.53561455,0.35613003,0.16228992,-0.038092095,-0.23693861,-0.42623413,-0.5983482,-0.74634284,-0.86425245,-0.947324,-0.99220896,-0.99709797,-0.961794,-0.88772017,-0.77786225,-0.6366489,-0.46977204,-0.2839589,-0.08669941,0.114055194,0.31021222,0.49386463,0.65760887,0.7948454,0.90004164,0.9689572,0.99881405,0.9884088,0.9381607,0.8500954,0.72776306,0.57609427,0.4012031,0.21013944,0.010605574,-0.18935633,-0.38168526,-0.55862844,-0.7130529,-0.8387347,-0.9306068,-0.9849664,-0.99962205,-0.9739828,-0.90908235,-0.8075367,-0.67343926,-0.51219547,-0.33030507,-0.1351011,0.06554982,0.26355842,0.45094296,0.62014997,0.76435876,0.8777562,0.9557712,0.995259,0.9946282,0.95390385,0.8747276,0.7602911,0.61520725,0.44532433,0.2574904,0.059278086,-0.14132476,-0.3362308,-0.5175834,-0.67807215,-0.8112278,-0.91168284,-0.97538793,-0.99977505,-0.98386145,-0.92828834,-0.835296,-0.7086327,-0.5534045,-0.37586853,-0.18318127,0.016888965,0.21627945,0.4069517,0.58121973,0.73205805,0.8533885,0.9403177,0.9893434,0.99848837,0.9673841,0.8972851,0.79101557,0.6528614,0.4883907,0.30423114,0.10781,-0.092959054,-0.28997883,-0.47531158,-0.64148265,-0.7817971,-0.89059603,-0.9634954,-0.99755675,-0.99140644,-0.94529223,-0.8610739,-0.74214464,-0.5933009,-0.42054144,-0.23082802,-0.03181195,0.16848853,0.3619952,0.54091173,0.69802237,0.8269972,0.9226346,0.9810809,0.9999803,0.97857034,0.9177138,0.81986505,0.68896633,0.5302968,0.3502513,0.15608515,-0.044370737,-0.24304011,-0.4319105,-0.60337245,-0.7505108,-0.86739737,-0.9493181,-0.9929722,-0.9965998,-0.96005464,-0.884809,-0.7738977,-0.6317892,-0.4642149,-0.27792624,-0.08043635,0.12029589,0.31618106,0.49931902,0.66233116,0.79864323,0.9027631,0.97049177,0.99910027,0.9874351,0.93596673,0.84676874,0.72343856,0.5709452,0.39543867,0.20399009,0.0043206993,-0.19552284,-0.3874869,-0.5638294,-0.71744573,-0.84214026,-0.9328892,-0.98603266,-0.9994295,-0.97253925,-0.9064464,-0.80381376,-0.6687806,-0.50678736,-0.32436728,-0.12886997,0.071817905,0.269615,0.45654377,0.625069,0.76839477,0.8807495,0.95760083,0.9958508,0.99395806,0.9519988,0.871664,0.75619483,0.61024106,0.43968812,0.2514112,0.053004015,-0.1475439,-0.34214428,-0.522949,-0.68267745,-0.8148868,-0.91424775,-0.976754,-0.9998886,-0.9827172,-0.92593366,-0.83182454,-0.7041842,-0.5481578,-0.37003893,-0.17700003,0.023173818,0.22241351,0.41268376,0.58632267,0.73632663,0.8566467,0.94243795,0.99023896,0.99812305,0.96577346,0.8944928,0.7871548,0.6480894,0.48289663,0.29823804,0.10155737,-0.0992129,-0.29598808,-0.48083186,-0.6462898,-0.7856993,-0.89343685,-0.9651596,-0.997976,-0.99056464,-0.94322324,-0.85786,-0.737919,-0.58822984,-0.41482896,-0.22471024,-0.025529483,0.17468038,0.36784878,0.5461855,0.70250916,0.8305144,0.9250395,0.9822783,0.999921,0.9772564,0.9151999,0.8162503,0.6843974,0.5249597,0.34435746,0.14987408,-0.050650816,-0.24912982,-0.43757054,-0.60837257,-0.7546481,-0.8705067,-0.9512749,-0.9936967,-0.99606246,-0.95827705,-0.881863,-0.7699007,-0.62690663,-0.45863897,-0.27188334,-0.07417223,0.1265329,0.32213742,0.50475645,0.6670253,0.80240977,0.90544873,0.97198766,0.9993471,0.9864224,0.9337346,0.8434098,0.7190852,0.56577396,0.38966006,0.19783528,-0.0019643463,-0.20168479,-0.3932713,-0.56900907,-0.72180974,-0.845514,-0.9351337,-0.98706,-0.9991974,-0.9710578,-0.9037742,-0.8000591,-0.66409314,-0.5013611,-0.31841567,-0.12263481,0.07808527,0.27566195,0.46212652,0.6299626,0.77240187,0.8837086,0.9593926,0.99640274,0.9932486,0.95005614,0.86856645,0.7520673,0.6052499,0.43403456,0.24532722,0.046726782,-0.15375723,-0.3480432,-0.5282958,-0.6872565,-0.81851363,-0.9167761,-0.978082,-0.9999627,-0.98153436,-0.9235416,-0.82831967,-0.6997078,-0.54289037,-0.36419272,-0.17081074,0.029456692,0.22853257,0.41840047,0.5914024,0.7405647,0.8598723,0.9445209,0.9910954,0.99771875,0.96412414,0.8916652,0.7832629,0.64329016,0.47738343,0.29223317,0.095302835,-0.10546495,-0.30198565,-0.48633313,-0.6510731,-0.78957176,-0.8962424,-0.9667851,-0.9983562,-0.9896844,-0.9411184,-0.8546155,-0.73366266,-0.5831356,-0.40910202,-0.21857736,-0.019241748,0.18086113,0.37368193,0.5514394,0.7069682,0.8339987,0.92741036,0.98343766,0.9998223,0.97590524,0.912649,0.81260335,0.6798014,0.5195963,0.33844605,0.1436613,-0.056922514,-0.25521174,-0.44321328,-0.6133487,-0.75875974,-0.8735848,-0.9531927,-0.9943811,-0.9954856,-0.9564616,-0.87888217,-0.7658746,-0.62199426,-0.45304868,-0.26583382,-0.06790306,0.13276489,0.32808104,0.51017207,0.67169785,0.80614215,0.9080968,0.97344565,0.99955446,0.98537076,0.9314663,0.84001404,0.71470636,0.56058395,0.38386413,0.19167057,-0.0082493145,-0.20783667,-0.39904603,-0.57416964,-0.7261424,-0.84885097,-0.937342,-0.9880483,-0.9989259,-0.9695364,-0.90106446,-0.7962753,-0.65938425,-0.49591312,-0.31245148,-0.11639481,0.084353805,0.28170207,0.46768728,0.634828,0.77637845,0.88663274,0.96114653,0.996916,0.99249935,0.9480773,0.8654368,0.7479101,0.60023487,0.42836383,0.23922528,0.04044345,-0.15996027,-0.35392442,-0.5336217,-0.69180846,-0.82210815,-0.91926825,-0.9793722,-0.9999972,-0.9803136,-0.9211131,-0.82478213,-0.6952038,-0.5376015,-0.35832816,-0.16461892,0.035734143,0.23464675,0.42410064,0.59645885,0.7447735,0.863066,0.9465652,0.9919122,0.99727476,0.96243674,0.8888024,0.7793401,0.6384622,0.47184762,0.28622082,0.08904879,-0.111712836,-0.30797127,-0.4918152,-0.6558339,-0.7934156,-0.8990106,-0.9683713,-0.9986965,-0.98876375,-0.93897355,-0.85133284,-0.7293745,-0.57802176,-0.40336284,-0.21244416,-0.012961775,0.18704312,0.3795082,0.55667514,0.7113963,0.83744776,0.9297413,0.9845566,0.999684,0.97451365,0.9100602,0.8089268,0.6751817,0.5142197,0.33252925,0.13743442,-0.06320047,-0.26128772,-0.44883472,-0.6182972,-0.76283586,-0.8766243,-0.9550755,-0.99502724,-0.994869,-0.95460963,-0.8758687,-0.76182103,-0.61706406,-0.4474329,-0.25976557,-0.061626952,0.13898744,0.33400768,0.5155639,0.67633754,0.8098477,0.91071254,0.9748661,0.99972236,0.9842809,0.9291628,0.83658975,0.71029335,0.5553647,0.37804908,0.18549411,-0.014529696,-0.21397617,-0.40479717,-0.57930064,-0.7304522,-0.8521589,-0.9395147,-0.988997,-0.9986152,-0.96797884,-0.8983228,-0.79245496,-0.6546429,-0.4904419,-0.30647904,-0.11015444,0.09061051,0.28772292,0.4732371,0.63967484,0.780327,0.88952,0.9628613,0.9973892,0.9917119,0.9460583,0.8622686,0.7437205,0.5951995,0.42268005,0.23312217,0.034167033,-0.1661654,-0.35979962,-0.5389302,-0.6963301,-0.82566774,-0.9217224,-0.980622,-0.9999923,-0.9790524,-0.9186465,-0.8212144,-0.6906754,-0.5322949,-0.3524574,-0.15841219,0.0420187,0.2407558,0.4297879,0.6014883,0.74895006,0.86622137,0.94857484,0.99269086,0.996791,0.9607101,0.8859065,0.7753892,0.6336156,0.4663007,0.28018898,0.08278273,-0.11796054,-0.31394067,-0.4972742,-0.66056234,-0.7972229,-0.9017471,-0.9699214,-0.99899775,-0.98780537,-0.9367945,-0.848021,-0.7250634,-0.5728781,-0.3975999,-0.20629424,-0.006681289,0.19320934,0.3853116,0.5618818,0.71580225,0.8408684,0.9320387,0.9856368,0.9995064,0.97308546,0.90743905,0.8052133,0.67052907,0.50881547,0.32659936,0.13121055,-0.069467425,-0.26734513,-0.45444605,-0.623228,-0.76688737,-0.87962914,-0.95691806,-0.99563324,-0.99421394,-0.9527174,-0.87281644,-0.75773185,-0.61210275,-0.4418071,-0.2536953,-0.055356916,0.14521292,0.33992916,0.5209427,0.68095684,0.81351626,0.9132888,0.9762462,0.99985063,0.9831507,0.9268195,0.83312774,0.7058583,0.55013067,0.37222698,0.1793187,-0.020818025,-0.22011556,-0.41054013,-0.5844087,-0.7347273,-0.8554287,-0.94164735,-0.9899078,-0.9982646,-0.9663809,-0.8955457,-0.7886085,-0.64988214,-0.48495868,-0.30048636,-0.10390126,0.09687213,0.2937324,0.4787607,0.6444899,0.7842395,0.89237595,0.9645403,0.99782366,0.99088544,0.9440047,0.8590707,0.7395072,0.5901338,0.41697186,0.22700156,0.027880749,-0.17235556,-0.36565265,-0.54421014,-0.7008302,-0.82919955,-0.9241435,-0.98183477,-0.9999479,-0.9777543,-0.916147,-0.81760937,-0.68611354,-0.52696013,-0.34656477,-0.15220761,0.048301592,0.24684706,0.43544286,0.6065008,0.7530971,0.86934674,0.9505443,0.99343026,0.99626863,0.95895034,0.8829716,0.7714077,0.6287374,0.46073538,0.27414608,0.076521896,-0.12420358,-0.3199058,-0.5027135,-0.6652711,-0.8009988,-0.90444785,-0.97143114,-0.99925953,-0.98680663,-0.9345785,-0.84467113,-0.7207236,-0.56771183,-0.3918291,-0.20013617,-0.0003920173,0.19936794,0.39110765,0.56706625,0.7201799,0.8442512,0.9342993,0.9866794,0.9992894,0.9716169,0.90478206,0.8014679,0.66585624,0.50339115,0.32064852,0.1249815,-0.075740136,-0.273392,-0.46003938,-0.6281275,-0.77090853,-0.8826033,-0.9587229,-0.9962006,-0.99351966,-0.95078754,-0.8697339,-0.7536127,-0.607124,-0.43616384,-0.24760675,-0.049084697,0.15143266,0.34582922,0.5263009,0.68554294,0.81715274,0.9158324,0.97758776,0.99993956,0.9819832,0.9244395,0.8296375,0.7013954,0.54486775,0.36639023,0.17312782,-0.027097011,-0.22624624,-0.4162591,-0.5894938,-0.7389792,-0.85866475,-0.94374573,-0.9907783,-0.9978745,-0.96474695,-0.89273334,-0.78472567,-0.6450957,-0.47944888,-0.29448992,-0.097643964,0.10312144,0.29973033,0.48427287,0.64927953,0.7881262,0.8951928,0.9661812,0.9982181,0.9900198,0.941911,0.8558389,0.73525894,0.58505166,0.41124716,0.2208803,0.021610402,-0.17854731,-0.37149128,-0.5494757,-0.70529664,-0.8326986,-0.92652476,-0.9830055,-0.9998639,-0.9764176,-0.91360784,-0.81397694,-0.6815245,-0.5216118,-0.3406584,-0.1459886,0.05456556,0.25293684,0.44109595,0.6114893,0.75722,0.8724377,0.9524789,0.99412847,0.9957061,0.9571479,0.8800018,0.7673903,0.6238343,0.4551443,0.26810876,0.07024954,-0.1304248,-0.32585824,-0.5081404,-0.6699535,-0.8047481,-0.90710574,-0.9729045,-0.9994812,-0.98576885,-0.93232256,-0.84128785,-0.71634954,-0.5625372,-0.38603497,-0.1939869,0.0058972696,0.20552701,0.3968882,0.57223535,0.72451735,0.8476052,0.9365169,0.987683,0.99903256,0.9701099,0.9020857,0.7977011,0.66115075,0.49796164,0.31468496,0.11873906,-0.08200985,-0.27943626,-0.46559945,-0.63300884,-0.77488846,-0.8855425,-0.9604922,-0.99672866,-0.99278516,-0.9488254,-0.86661285,-0.749475,-0.60211444,-0.4304957,-0.24150842,-0.04280203,0.1576296,0.35172358,0.5316238,0.6901082,0.82076186,0.91833985,0.9788925,0.99998885,0.9807753,0.9220295,0.8261098,0.6968987,0.53958327,0.36053103,0.16694689,-0.033383444,-0.23235138,-0.42196935,-0.5945624,-0.74320185,-0.8618713,-0.9458012,-0.9916109,-0.9974461,-0.96307266,-0.8898818,-0.7808118,-0.6402773,-0.47393513,-0.28847373,-0.09139978,0.10937515,0.3057245,0.48976588,0.65405,0.7919713,0.89797807,0.9677796,0.99857366,0.9891139,0.93978006,0.8525689,0.7309933,0.57993954,0.40552178,0.21474199,0.015322164,-0.184732,-0.37732312,-0.5547196,-0.70974123,-0.8361553,-0.9288727,-0.98414063,-0.99974036,-0.9750405,-0.91103256,-0.8103074,-0.6769211,-0.5162356,-0.33475462,-0.13976382,0.060844388,0.2590166,0.4467316,0.6164402,0.7613129,0.87548596,0.9543758,0.99478936,0.9951042,0.9553076,0.87700534,0.76334256,0.6189199,0.44953522,0.26204443,0.06397441,-0.13665777,-0.3317817,-0.5135471,-0.67459685,-0.80846566,-0.90973496,-0.97433937,-0.999664,-0.9846951,-0.93002975,-0.8378806,-0.7119471,-0.5573263,-0.38022557,-0.18781325,0.01216928,0.21167795,0.40263748,0.5773818,0.72883797,0.85092574,0.93870354,0.98864496,0.9987362,0.96856874,0.8993537,0.79389256,0.65641916,0.49249774,0.3087252,0.11249193,-0.08825935,-0.28546947,-0.4711562,-0.6378651,-0.7788486,-0.88843894,-0.9622236,-0.997216,-0.9920114,-0.9468205,-0.86345744,-0.7452965,-0.5970948,-0.42481053,-0.2354171,-0.036517665,0.16383712,0.35760406,0.53694016,0.69463384,0.8243385,0.92080426,0.9801585,0.99999875,0.9795286,0.9195766,0.8225591,0.6923744,0.53429186,0.3546576,0.16074257,-0.03966856,-0.23846394,-0.42764753,-0.5996076,-0.7473838,-0.8650437,-0.94782495,-0.9924042,-0.9969772,-0.961365,-0.8869951,-0.77687776,-0.63543355,-0.46838766,-0.2824461,-0.08513502,0.115607604,0.31170663,0.4952247,0.65879464,0.7957956,0.90072787,0.9693441,0.9988897,0.98816884,0.93761784,0.84926516,0.7266871,0.5748044,0.3997648,0.20859519,0.00903332,-0.19089265,-0.38314006,-0.55992746,-0.71415776,-0.8395884,-0.9311839,-0.9852368,-0.99957776,-0.9736248,-0.9084284,-0.8066058,-0.67227846,-0.5108389,-0.32882157,-0.13355039,0.06712081,0.2650697,0.45234957,0.62138015,0.76537573,0.87850785,0.95623,0.99541086,0.99446476,0.9534295,0.8739661,0.75926465,0.6139677,0.44392362,0.25596973,0.057713766,-0.14288536,-0.33770818,-0.51893353,-0.67922616,-0.81214124,-0.9123282,-0.97573197,-0.99980724,-0.98357946,-0.92770016,-0.83443105,-0.7075285,-0.5520933,-0.37441695,-0.18163218,0.018457854,0.21782054,0.40838647,0.5824916,0.7331297,0.8542037,0.94085306,0.9895705,0.99840033,0.96698517,0.89659363,0.79005265,0.65167445,0.48701435,0.30273703,0.10624035,-0.09452234,-0.29147512,-0.47669435,-0.64268315,-0.7827779,-0.8913081,-0.96391684,-0.9976652,-0.9912007,-0.94477814,-0.86027664,-0.74108845,-0.5920379,-0.41910857,-0.22929993,-0.030248895,0.17003818,0.3634545,0.5422353,0.69914436,0.8278825,0.92323905,0.9813825,0.9999691,0.9782467,0.91708726,0.81896627,0.68782276,0.52896494,0.34878612,0.1545319,-0.045935076,-0.24456707,-0.43332425,-0.604629,-0.7515475,-0.8681819,-0.94981116,-0.9931563,-0.99646884,-0.9596147,-0.8840733,-0.7729023,-0.6305647,-0.4628217,-0.2764237,-0.07886689,0.12185243,0.3176764,0.50067884,0.6635131,0.79958844,0.9034347,0.97087026,0.99916553,0.9871847,0.9354127,0.84592783,0.72235215,0.5696606,0.39399204,0.20245682,0.0027441178,-0.1970625,-0.38894182,-0.5651273,-0.71853423,-0.84298825,-0.93345207,-0.98629403,-0.9993753,-0.97217065,-0.90578127,-0.8028825,-0.6676093,-0.5054368,-0.32287553,-0.12731482,0.07339458,0.27112874,0.45793453,0.62629557,0.7693974,0.88149506,0.9580514,0.995993,0.99378425,0.95151895,0.87089235,0.75516784,0.60899127,0.43827924,0.24988493,0.051433828,-0.14909042,-0.34362128,-0.5242849,-0.68382865,-0.8157947,-0.91488534,-0.9770898,-0.9999107,-0.982425,-0.9253403,-0.8309484,-0.7030699,-0.5468385,-0.36857775,-0.1754607,0.024745697,0.22393788,0.4141193,0.5875922,0.7373925,0.85745686,0.94295967,0.99045694,0.9980261,0.9653633,0.89379066,0.78618145,0.6468912,0.48152664,0.2967369,0.100001514,-0.10078159,-0.29748553,-0.48221365,-0.64748883,-0.78666574,-0.89414203,-0.9655676,-0.998075,-0.9903486,-0.94269836,-0.85705316,-0.73686266,-0.5869576,-0.41340554,-0.2231737,-0.023961894,0.17623252,0.36930647,0.54749477,0.7036273,0.83138436,0.9256373,0.982571,0.9998999,0.9769227,0.9145617,0.815341,0.6832563,0.52361715,0.34288487,0.1483151,-0.05221681,-0.2506605,-0.43898383,-0.60961294,-0.7556816,-0.8712774,-0.9517598,-0.9938712,-0.9959211,-0.95782644,-0.88112456,-0.76889634,-0.6256842,-0.4572374,-0.270374,-0.07259564,0.12809242,0.32361746,0.5061132,0.66819274,0.8033497,0.9061132,0.972358,0.99940264,0.9861644,0.93317056,0.84256625,0.71798867,0.5644803,0.38820368,0.19629379,-0.0035281484,-0.20322455,-0.39471254,-0.5703048,-0.72289413,-0.8463548,-0.9356896,-0.9873095,-0.9991332,-0.9706821,-0.9030983,-0.7991173,-0.6629136,-0.5,-0.3169329,-0.1210742,0.07964846,0.2771771,0.46351656,0.63118625,0.7733996,0.88443947,0.95983493,0.9965344,0.99306446,0.9495656,0.8677841,0.7510301,0.6040043,0.43261752,0.24380676,0.045151856,-0.15530646,-0.3495208,-0.5296301,-0.6883917,-0.8194159,-0.9173996,-0.97840905,-0.99997497,-0.9812316,-0.9229375,-0.8274425,-0.6985836,-0.5415764,-0.36272395,-0.16926551,0.031032562,0.230063,0.41982028,0.5926696,0.74161464,0.8606761,0.94503474,0.99130416,0.9976114,0.96370786,0.89095235,0.78228974,0.6420823,0.476005,0.29072502,0.09374178,-0.10701991,-0.3034842,-0.48769897,-0.65226895,-0.790533,-0.8969406,-0.96718466,-0.99844533,-0.98945725,-0.9405871,-0.85379577,-0.7325963,-0.5818541,-0.40767068,-0.21703862,-0.017673947,0.18240312,0.37514383,0.5527469,0.7080823,0.8348629,0.9279989,0.98372066,0.99979156,0.97556,0.9120069,0.81168354,0.67865056,0.5182486,0.3369701,0.14210932,-0.058496475,-0.25672758,-0.44462603,-0.6145864,-0.7597857,-0.8743469,-0.9536657,-0.99454683,-0.9953339,-0.9560053,-0.87813306,-0.7648599,-0.62077904,-0.4516502,-0.2643136,-0.06632152,0.13431048,0.32956192,0.5115274,0.6728461,0.807069,0.9087559,0.9738073,0.99959975,0.9851023,0.9308915,0.83917147,0.71360874,0.55927765,0.38239998,0.19013971,-0.009817319,-0.20937857,-0.40049896,-0.57544583,-0.7272255,-0.8496879,-0.9378842,-0.9882888,-0.99885166,-0.96914697,-0.900387,-0.7953206,-0.65819174,-0.49455824,-0.31096154,-0.11482879,0.085933164,0.28319812,0.46908024,0.6360519,0.77736044,0.8873569,0.9615805,0.99703914,0.9923075,0.9475747,0.86464155,0.746874,0.59897995,0.42693868,0.23768589,0.038885128,-0.16151635,-0.3554065,-0.53494,-0.69293994,-0.8230047,-0.919891,-0.97968614,-0.9999997,-0.9799994,-0.92050487,-0.82389444,-0.6940696,-0.5362642,-0.35687175,-0.16306363,0.0373182,0.23616247,0.42552018,0.59772354,0.74583036,0.8638527,0.9470725,0.99211216,0.99715847,0.9620098,0.8880788,0.7783459,0.63726115,0.4704645,0.28470165,0.08749533,-0.11327095,-0.30947083,-0.49319476,-0.6570104,-0.79436904,-0.8997036,-0.96875924,-0.9987753,-0.9885269,-0.9384271,-0.85051364,-0.72830087,-0.57672757,-0.40193528,-0.21091163,-0.0113853,0.18860002,0.3809506,0.5579771,0.7125094,0.83829904,0.9303176,0.9848314,0.9996429,0.97416264,0.90940917,0.8079939,0.6740305,0.5128742,0.33104196,0.13586417,-0.06475682,-0.262801,-0.45025063,-0.61952215,-0.76384884,-0.8773818,-0.9555441,-0.9951814,-0.99470913,-0.9541363,-0.87511504,-0.7608043,-0.6158226,-0.44601476,-0.25825924,-0.06006179,0.14055699,0.33547726,0.5169069,0.67749804,0.8107766,0.91135556,0.97521424,0.9997583,0.98400426,0.928582,0.835725,0.7091767,0.55406713,0.37659693,0.18394464,-0.01608906,-0.21550766,-0.40623832,-0.5805919,-0.7315164,-0.8529784,-0.9400535,-0.98922646,-0.9985315,-0.96758187,-0.89762527,-0.7915028,-0.65345675,-0.48906732,-0.30499417,-0.10859578,0.092180505,0.28924066,0.47461036,0.64087933,0.781312,0.89023143,0.9632835,0.99750185,0.99150705,0.9455519,0.8614734,0.74266565,0.59394556,0.42125842,0.23158874,0.0325828,-0.16770306,-0.36126223,-0.5402575,-0.69744855,-0.8265514,-0.92233276,-0.98093134,-0.9999849,-0.97873193,-0.91802245,-0.82032347,-0.68954057,-0.5309596,-0.35097358,-0.15687214,0.04358533,0.24228571,0.43118787,0.6027402,0.74999386,0.86701226,0.94906735,0.99287885,0.9966636,0.96027845,0.885178,0.77439266,0.6323885,0.46492052,0.2786834,0.08121145,-0.11950059,-0.3154291,-0.4986414,-0.66175157,-0.7981634,-0.9024238,-0.97030395,-0.999066,-0.98756003,-0.9362417,-0.8471799,-0.7239885,-0.57159215,-0.3961528,-0.20477633,-0.005113247,0.19475597,0.38677382,0.56317115,0.71689636,0.84172064,0.93259966,0.98590034,0.99945563,0.97271895,0.9067826,0.8042825,0.66935855,0.5074796,0.32511687,0.12964742,-0.07104862,-0.26884758,-0.4558423,-0.6244602,-0.7679037,-0.8803739,-0.95737463,-0.99577993,-0.9940452,-0.9522398,-0.87204593,-0.7566965,-0.6108687,-0.44039217,-0.2521617,-0.053799696,0.14676419,0.34141144,0.5222951,0.6820981,0.81443214,0.9139333,0.9765829,0.9998765,0.9828613,0.9262231,0.8322642,0.70474064,0.54880625,0.37077907,0.17777582,-0.022394247,-0.22166152,-0.4119617,-0.58568734,-0.7358017,-0.8562354,-0.942174,-0.99013,-0.99817,-0.96597874,-0.8948431,-0.7876328,-0.648696,-0.48358676,-0.29898223,-0.1023246,0.098424226,0.2952391,0.48015174,0.64568156,0.7852114,0.8930863,0.9649575,0.9979253,0.9906718,0.94348055,0.8582714,0.73845077,0.5888603,0.4155306,0.22548246,0.026313255,-0.17391674,-0.36710376,-0.545525,-0.701954,-0.8300845,-0.92473817,-0.98213106,-0.99993044,-0.977426,-0.9155173,-0.8167006,-0.6849595,-0.52563405,-0.34509343,-0.15064079,0.04985075,0.2483663,0.43686926,0.6077603,0.7541278,0.8701206,0.95103544,0.99360657,0.9961321,0.9584996,0.8822264,0.7704089,0.6275173,0.45932797,0.27265415,0.07495833,-0.12575935,-0.3214072,-0.50406843,-0.66644096,-0.80194676,-0.90510845,-0.97180206,-0.9993186,-0.9865488,-0.9340195,-0.84383076,-0.7196239,-0.5664343,-0.39038593,-0.19859958,0.0011930959,0.20090428,0.39255032,0.5683711,0.7212551,0.84509057,0.93485713,0.98693603,0.999229,0.97124475,0.90410584,0.8005394,0.6646855,0.5020356,0.3191467,0.12342557,-0.07730361,-0.27491638,-0.46141598,-0.6293469,-0.7719064,-0.88334733,-0.95916754,-0.996336,-0.9933382,-0.9503058,-0.86895895,-0.75258106,-0.60586363,-0.43475226,-0.24608721,-0.047501434,0.15296562,0.34730008,0.52763355,0.68669605,0.8180556,0.916461,0.97792023,0.9999554,0.9816857,0.9238404,0.8287515,0.70027685,0.5435522,0.36491486,0.1716,-0.02866447,-0.22777337,-0.41769984,-0.5907597,-0.74003476,-0.85947615,-0.9442575,-0.99098957,-0.9977711,-0.9643286,-0.89202565,-0.78375274,-0.6438837,-0.4780872,-0.292991,-0.09608327,0.10469797,0.30122593,0.4856442,0.65048426,0.7890799,0.89589053,0.9665844,0.99831146,0.9897976,0.9413832,0.85501796,0.7342068,0.5837793,0.4098173,0.21933405,0.020042673,-0.18008997,-0.37296247,-0.550771,-0.7064074,-0.83356583,-0.92712,-0.98329216,-0.9998368,-0.97607416,-0.9129761,-0.81306505,-0.6803762,-0.5202587,-0.33919972,-0.14443715,0.056148242,0.25443712,0.44250268,0.61272925,0.75825435,0.8731947,0.95295537,0.99429876,0.9955613,0.9566926,0.8792559,0.76637304,0.62262136,0.4537475,0.26658133,0.068702266,-0.13197932,-0.3273403,-0.5095049,-0.6711042,-0.80567795,-0.90777177,-0.97326976,-0.99953043,-0.98550403,-0.93174815,-0.8404484,-0.71525455,-0.561226,-0.38457224,-0.19244838,0.007465304,0.20707802,0.39831138,0.5735206,0.725609,0.8484453,0.93706554,0.98792714,0.99896157,0.96973234,0.9014079,0.7967442,0.6599607,0.4966012,0.31319618,0.117165014,-0.08355556,-0.28094152,-0.46700168,-0.63423514,-0.77587867,-0.8862699,-0.96093214,-0.9968528,-0.9925959,-0.94832367,-0.8658208,-0.748436,-0.6008617,-0.42906445,-0.24000302,-0.041235343,0.1591947,0.35320696,0.5329513,0.69124216,0.82166636,0.9189526,0.97921175,0.99999505,0.98046476,0.92142135,0.8252252,0.695761,0.53827673,0.35906798,0.1653838,-0.03496763,-0.23387624,-0.42339048,-0.5958362,-0.7442387,-0.8626654,-0.9463148,-0.99181455,-0.99733293,-0.9626493,-0.8891576,-0.7798418,-0.639072,-0.47253874,-0.28695562,-0.08983816,0.11093368,0.30723336,0.49111757,0.65523535,0.7929381,0.8986745,0.96817327,0.99865615,0.9888794,0.9392488,0.85174835,0.7299107,0.5786475,0.40408793,0.21321024,0.013737218,-0.18625611,-0.37877482,-0.55602366,-0.71085703,-0.8370143,-0.92945236,-0.9844206,-0.9997038,-0.97469115,-0.9103849,-0.8093775,-0.6757661,-0.514892,-0.33326054,-0.13822785,0.06240948,0.26053083,0.4481492,0.6176741,0.7623287,0.87625086,0.9548378,0.994948,0.994948,0.9548378,0.87625086,0.7623287,0.6176741,0.4481492,0.26053083,0.06240948,-0.13822785,-0.33326054,-0.514892,-0.6757661,-0.8093775,-0.9103849,-0.97469115,-0.9997038,-0.9844206,-0.92945236,-0.8370143,-0.71085703,-0.55602366,-0.37877482,-0.18625611,0.013737218,0.21321024,0.40408793,0.5786475,0.7299107,0.85174835,0.9392488,0.9888794,0.99865615,0.96817327,0.8986745,0.7929381,0.65523535,0.49111757,0.30723336,0.11093368,-0.08983816,-0.28695562,-0.47253874,-0.639072,-0.7798418,-0.8891576,-0.9626493,-0.99733293,-0.99181455,-0.9463148,-0.8626654,-0.7442387,-0.5958362,-0.42339048,-0.23387624,-0.03496763,0.1653838,0.35906798,0.53827673,0.695761,0.8252252,0.92142135,0.98046476,0.99999505,0.97921175,0.9189526,0.82166636,0.69124216,0.5329513,0.35320696,0.1591947,-0.041235343,-0.24000302,-0.42906445,-0.6008617,-0.748436,-0.8658208,-0.94832367,-0.9925959,-0.9968528,-0.96093214,-0.8862699,-0.77587867,-0.63423514,-0.46700168,-0.28094152,-0.08355556,0.117165014,0.31319618,0.4966012,0.6599607,0.7967442,0.9014079,0.96973234,0.99896157,0.98792714,0.93706554,0.8484453,0.725609,0.5735206,0.39831138,0.20707802,0.007465304,-0.19244838,-0.38457224,-0.561226,-0.71525455,-0.8404484,-0.93174815,-0.98550403,-0.99953043,-0.97326976,-0.90777177,-0.80567795,-0.6711042,-0.5095049,-0.3273403,-0.13197932,0.068702266,0.26658133,0.4537475,0.62262136,0.76637304,0.8792559,0.9566926,0.9955613,0.99429876,0.95295537,0.8731947,0.75825435,0.61272925,0.44250268,0.25443712,0.056148242,-0.14443715,-0.33919972,-0.5202587,-0.6803762,-0.81306505,-0.9129761,-0.97607416,-0.9998368,-0.98329216,-0.92712,-0.83356583,-0.7064074,-0.550771,-0.37296247,-0.18008997,0.020042673,0.21933405,0.4098173,0.5837793,0.7342068,0.85501796,0.9413832,0.9897976,0.99831146,0.9665844,0.89589053,0.7890799,0.65048426,0.4856442,0.30122593,0.10469797,-0.09608327,-0.292991,-0.4780872,-0.6438837,-0.78375274,-0.89202565,-0.9643286,-0.9977711,-0.99098957,-0.9442575,-0.85947615,-0.74003476,-0.5907597,-0.41769984,-0.22777337,-0.02866447,0.1716,0.36491486,0.5435522,0.70027685,0.8287515,0.9238404,0.9816857,0.9999554,0.97792023,0.916461,0.8180556,0.68669605,0.52763355,0.34730008,0.15296562,-0.047501434,-0.24608721,-0.43475226,-0.60586363,-0.75258106,-0.86895895,-0.9503058,-0.9933382,-0.996336,-0.95916754,-0.88334733,-0.7719064,-0.6293469,-0.46141598,-0.27491638,-0.07730361,0.12342557,0.3191467,0.5020356,0.6646855,0.8005394,0.90410584,0.97124475,0.999229,0.98693603,0.93485713,0.84509057,0.7212551,0.5683711,0.39255032,0.20090428,0.0011930959,-0.19859958,-0.39038593,-0.5664343,-0.7196239,-0.84383076,-0.9340195,-0.9865488,-0.9993186,-0.97180206,-0.90510845,-0.80194676,-0.66644096,-0.50406843,-0.3214072,-0.12575935,0.07495833,0.27265415,0.45932797,0.6275173,0.7704089,0.8822264,0.9584996,0.9961321,0.99360657,0.95103544,0.8701206,0.7541278,0.6077603,0.43686926,0.2483663,0.04985075,-0.15064079,-0.34509343,-0.52563405,-0.6849595,-0.8167006,-0.9155173,-0.977426,-0.99993044,-0.98213106,-0.92473817,-0.8300845,-0.701954,-0.545525,-0.36710376,-0.17391674,0.026313255,0.22548246,0.4155306,0.5888603,0.73845077,0.8582714,0.94348055,0.9906718,0.9979253,0.9649575,0.8930863,0.7852114,0.64568156,0.48015174,0.2952391,0.098424226,-0.1023246,-0.29898223,-0.48358676,-0.648696,-0.7876328,-0.8948431,-0.96597874,-0.99817,-0.99013,-0.942174,-0.8562354,-0.7358017,-0.58568734,-0.4119617,-0.22166152,-0.022394247,0.17777582,0.37077907,0.54880625,0.70474064,0.8322642,0.9262231,0.9828613,0.9998765,0.9765829,0.9139333,0.81443214,0.6820981,0.5222951,0.34141144,0.14676419,-0.053799696,-0.2521617,-0.44039217,-0.6108687,-0.7566965,-0.87204593,-0.9522398,-0.9940452,-0.99577993,-0.95737463,-0.8803739,-0.7679037,-0.6244602,-0.4558423,-0.26884758,-0.07104862,0.12964742,0.32511687,0.5074796,0.66935855,0.8042825,0.9067826,0.97271895,0.99945563,0.98590034,0.93259966,0.84172064,0.71689636,0.56317115,0.38677382,0.19475597,-0.005113247,-0.20477633,-0.3961528,-0.57159215,-0.7239885,-0.8471799,-0.9362417,-0.98756003,-0.999066,-0.97030395,-0.9024238,-0.7981634,-0.66175157,-0.4986414,-0.3154291,-0.11950059,0.08121145,0.2786834,0.46492052,0.6323885,0.77439266,0.885178,0.96027845,0.9966636,0.99287885,0.94906735,0.86701226,0.74999386,0.6027402,0.43118787,0.24228571,0.04358533,-0.15687214,-0.35097358,-0.5309596,-0.68954057,-0.82032347,-0.91802245,-0.97873193,-0.9999849,-0.98093134,-0.92233276,-0.8265514,-0.69744855,-0.5402575,-0.36126223,-0.16770306,0.0325828,0.23158874,0.42125842,0.59394556,0.74266565,0.8614734,0.9455519,0.99150705,0.99750185,0.9632835,0.89023143,0.781312,0.64087933,0.47461036,0.28924066,0.092180505,-0.10859578,-0.30499417,-0.48906732,-0.65345675,-0.7915028,-0.89762527,-0.96758187,-0.9985315,-0.98922646,-0.9400535,-0.8529784,-0.7315164,-0.5805919,-0.40623832,-0.21550766,-0.01608906,0.18394464,0.37659693,0.55406713,0.7091767,0.835725,0.928582,0.98400426,0.9997583,0.97521424,0.91135556,0.8107766,0.67749804,0.5169069,0.33547726,0.14055699,-0.06006179,-0.25825924,-0.44601476,-0.6158226,-0.7608043,-0.87511504,-0.9541363,-0.99470913,-0.9951814,-0.9555441,-0.8773818,-0.76384884,-0.61952215,-0.45025063,-0.262801,-0.06475682,0.13586417,0.33104196,0.5128742,0.6740305,0.8079939,0.90940917,0.97416264,0.9996429,0.9848314,0.9303176,0.83829904,0.7125094,0.5579771,0.3809506,0.18860002,-0.0113853,-0.21091163,-0.40193528,-0.57672757,-0.72830087,-0.85051364,-0.9384271,-0.9885269,-0.9987753,-0.96875924,-0.8997036,-0.79436904,-0.6570104,-0.49319476,-0.30947083,-0.11327095,0.08749533,0.28470165,0.4704645,0.63726115,0.7783459,0.8880788,0.9620098,0.99715847,0.99211216,0.9470725,0.8638527,0.74583036,0.59772354,0.42552018,0.23616247,0.0373182,-0.16306363,-0.35687175,-0.5362642,-0.6940696,-0.82389444,-0.92050487,-0.9799994,-0.9999997,-0.97968614,-0.919891,-0.8230047,-0.69293994,-0.53494,-0.3554065,-0.16151635,0.038885128,0.23768589,0.42693868,0.59897995,0.746874,0.86464155,0.9475747,0.9923075,0.99703914,0.9615805,0.8873569,0.77736044,0.6360519,0.46908024,0.28319812,0.085933164,-0.11482879,-0.31096154,-0.49455824,-0.65819174,-0.7953206,-0.900387,-0.96914697,-0.99885166,-0.9882888,-0.9378842,-0.8496879,-0.7272255,-0.57544583,-0.40049896,-0.20937857,-0.009817319,0.19013971,0.38239998,0.55927765,0.71360874,0.83917147,0.9308915,0.9851023,0.99959975,0.9738073,0.9087559,0.807069,0.6728461,0.5115274,0.32956192,0.13431048,-0.06632152,-0.2643136,-0.4516502,-0.62077904,-0.7648599,-0.87813306,-0.9560053,-0.9953339,-0.99454683,-0.9536657,-0.8743386,-0.7597857,-0.6145864,-0.44461074,-0.25674406,-0.058496475,0.14210932,0.33698612,0.5182486,0.67865056,0.8116935,0.9119999,0.97556,0.99979156,0.9837176,0.9279989,0.8348629,0.7080703,0.5527611,0.37514383,0.18240312,-0.017690988,-0.21703862,-0.40767068,-0.58186793,-0.73258466,-0.85379577,-0.9405871,-0.98945975,-0.99844533,-0.96718466,-0.896933,-0.79054344,-0.65226895,-0.48769897,-0.30346796,-0.10703686,0.09374178,0.29074132,0.47599,0.6420823,0.78228974,0.8909601,0.9637033,0.9976114,0.9913019,0.94504035,0.8606761,0.74161464,0.59265584,0.41983575,0.230063,0.031015527,-0.16924872,-0.36272395,-0.5415764,-0.6985958,-0.827433,-0.9229375,-0.98123485,-0.9999751,-0.97840905,-0.9173996,-0.81940615,-0.688404,-0.5296301,-0.34950483,-0.1553233,0.045151856,0.24380676,0.43263286,0.60399073,0.7510301,0.86779255,0.9495602,0.99306446,0.9965344,0.95983016,0.8844474,0.7733996,0.631173,0.46353164,0.2771771,0.07964846,-0.12109111,-0.3169167,-0.5,-0.6629264,-0.79910713,-0.9030983,-0.9706821,-0.99913394,-0.98731226,-0.9356896,-0.8463457,-0.72290593,-0.5703048,-0.39471254,-0.20320787,-0.0035451925,0.19629379,0.3882194,0.56446624,0.71798867,0.84256625,0.9331767,0.98616153,0.99940264,0.972354,0.9061204,0.8033497,0.66819274,0.50609845,0.3236336,0.12809242,-0.072612636,-0.2703576,-0.4572374,-0.6256842,-0.76890725,-0.8811165,-0.95782644,-0.9959226,-0.9938731,-0.9517598,-0.8712774,-0.7556704,-0.6096265,-0.43898383,-0.25064403,-0.05223383,0.1483151,0.34288487,0.52363163,0.68324393,0.815341,0.91456854,0.97691905,0.9998999,0.982571,0.9256308,0.83139384,0.7036273,0.54749477,0.3693223,0.17623252,-0.023961894,-0.22319031,-0.41339,-0.5869576,-0.73686266,-0.8570444,-0.94269836,-0.9903486,-0.99807394,-0.965572,-0.89414203,-0.78666574,-0.6475018,-0.48221365,-0.29748553,-0.10076463,0.09998456,0.2967369,0.48152664,0.6468782,0.78618145,0.89379066,0.9653678,0.998025,0.99045694,0.94295967,0.8574656,0.7373925,0.5875922,0.4141038,0.2239545,0.024745697,-0.1754607,-0.3685619,-0.5468385,-0.7030699,-0.83095795,-0.92533386,-0.982425,-0.9999107,-0.97709346,-0.91488534,-0.8157947,-0.6838162,-0.52429944,-0.34362128,-0.14909042,0.051416807,0.24988493,0.43827924,0.6090048,0.7551567,0.87089235,0.95151895,0.99378616,0.995993,0.9580514,0.881487,0.7694083,0.62629557,0.45793453,0.27111235,0.07339458,-0.12731482,-0.32289165,-0.50542206,-0.6676093,-0.8028825,-0.9057885,-0.97217065,-0.9993753,-0.9862912,-0.9334582,-0.84298825,-0.71853423,-0.56511325,-0.38894182,-0.1970625,0.002761162,0.20244013,0.39399204,0.5696606,0.72236395,0.84592783,0.9354127,0.98718745,0.99916625,0.97087026,0.9034347,0.7995782,0.6635131,0.50067884,0.31766024,0.12186934,-0.07886689,-0.2764237,-0.4628368,-0.6305647,-0.7729023,-0.88408124,-0.95960987,-0.99646884,-0.9931563,-0.9498058,-0.8681819,-0.7515475,-0.6046154,-0.4333396,-0.24456707,-0.045935076,0.15454873,0.34877014,0.52896494,0.68783516,0.8189565,0.91708726,0.9782467,0.99996924,0.9813792,0.9232521,0.8278921,0.6991566,0.5422353,0.3634545,0.17002138,-0.030265931,-0.22926675,-0.4190931,-0.59202415,-0.74108845,-0.86027664,-0.9447837,-0.9912029,-0.99766755,-0.96392137,-0.8913158,-0.7827779,-0.64268315,-0.47667935,-0.29145882,-0.09455627,0.1062234,0.3027208,0.48701435,0.65167445,0.7900631,0.8966012,0.96697646,0.9983994,0.989573,0.94085306,0.8542037,0.7331181,0.5824777,0.40841758,0.21783717,0.018474896,-0.18163218,-0.37441695,-0.5521075,-0.7075405,-0.8344123,-0.9276938,-0.9835764,-0.99980724,-0.97573197,-0.9123212,-0.8121313,-0.6792011,-0.5189481,-0.3377242,-0.14288536,0.057713766,0.2559862,0.44393888,0.61399466,0.75925356,0.8739578,0.9534295,0.99446476,0.99540925,0.956225,0.8784916,0.7653867,0.6213935,0.45234957,0.2650697,0.06710381,-0.13356729,-0.32885376,-0.51082426,-0.6722659,-0.8066058,-0.9084284,-0.9736287,-0.9995783,-0.985231,-0.9311901,-0.83959764,-0.71415776,-0.55992746,-0.3831243,-0.19087592,0.009067407,0.20857851,0.3997492,0.5748044,0.7266871,0.84927416,0.93762374,0.9881741,0.9988905,0.96934825,0.90072787,0.7957956,0.65878177,0.49520993,0.31167424,0.11564146,-0.08511804,-0.2824461,-0.46838766,-0.6354467,-0.7768885,-0.8870108,-0.9613556,-0.9969759,-0.9924042,-0.94782495,-0.8650351,-0.74737245,-0.5995803,-0.42767835,-0.2384805,-0.03966856,0.16074257,0.35467353,0.5343062,0.692399,0.82253975,0.91956985,0.9795286,0.99999875,0.9801551,0.92079765,0.82431924,0.6946584,0.5369546,0.35760406,0.16383712,-0.036534697,-0.23543367,-0.4248414,-0.5970674,-0.7452851,-0.86345744,-0.9468205,-0.9920136,-0.9972147,-0.9622143,-0.88845456,-0.77885926,-0.6378651,-0.4711562,-0.28545314,-0.08824237,0.1125258,0.30869278,0.4924829,0.65641916,0.79389256,0.89936113,0.968573,0.99873793,0.9886501,0.93870944,0.85092574,0.72883797,0.5773679,0.40262187,0.21164465,0.0122033665,-0.1877965,-0.38022557,-0.5573263,-0.711959,-0.83788997,-0.93004227,-0.9846891,-0.9996644,-0.97433937,-0.90973496,-0.8084556,-0.67458427,-0.51351786,-0.33181384,-0.13667466,0.06397441,0.26204443,0.44955042,0.6189333,0.7633646,0.87698895,0.95530254,0.9951042,0.99478936,0.95437074,0.87547773,0.7612908,0.616467,0.44674686,0.2590166,0.060844388,-0.1397807,-0.33477068,-0.51626474,-0.67689604,-0.8102974,-0.91103256,-0.9750405,-0.9997408,-0.9841376,-0.92886007,-0.836174,-0.7097533,-0.5547196,-0.37732312,-0.18471526,0.015339206,0.21477528,0.4054906,0.57992566,0.73098165,0.8525689,0.93978584,0.98911643,0.9985719,0.96778816,0.8979856,0.7919817,0.65405,0.48975104,0.3057083,0.109341264,-0.09136584,-0.2884574,-0.4739201,-0.6402773,-0.7808224,-0.8898896,-0.96308184,-0.99744374,-0.9916131,-0.94580674,-0.8618713,-0.74319047,-0.5945487,-0.42193845,-0.23238453,-0.03340048,0.16693008,0.36053103,0.53959763,0.6969109,0.826129,0.9220163,0.98077196,0.9999889,0.9788925,0.91833305,0.82075214,0.6900835,0.5316527,0.35173953,0.15764642,-0.04280203,-0.24152496,-0.4305111,-0.6021417,-0.7494524,-0.8666043,-0.94882005,-0.99278516,-0.9967273,-0.9604875,-0.8855267,-0.77491003,-0.63302207,-0.46561453,-0.27943626,-0.081992865,0.11875599,0.31471732,0.49793208,0.661138,0.79769087,0.9020857,0.97011405,0.9990333,0.9876777,0.93652886,0.8476143,0.7245291,0.57223535,0.39687258,0.20551033,0.005863182,-0.19395345,-0.38601926,-0.5625231,-0.71634954,-0.8412971,-0.93232876,-0.9857746,-0.9994823,-0.97290844,-0.9071129,-0.8047481,-0.6699408,-0.50812566,-0.325826,-0.1304586,0.07023254,0.26809233,0.4551443,0.6238476,0.7674013,0.880018,0.957138,0.99570453,0.9941303,0.9524789,0.8724294,0.7572088,0.6114623,0.44112656,0.25295332,0.054582577,-0.1459886,-0.34067443,-0.52162635,-0.6815495,-0.81395715,-0.9136009,-0.9764139,-0.9998639,-0.9830055,-0.9265184,-0.8326797,-0.70532084,-0.54949,-0.3715071,-0.17854731,0.021610402,0.22089691,0.41127822,0.585024,0.7352474,0.85583013,0.941911,0.9900198,0.9982171,0.9661724,0.895208,0.78813666,0.6492925,0.48427287,0.29973033,0.10310449,-0.097677894,-0.29445735,-0.47943392,-0.6450827,-0.78472567,-0.89273334,-0.9647514,-0.9978767,-0.990783,-0.9437514,-0.8586735,-0.7389792,-0.5894938,-0.4162436,-0.22621302,-0.027131086,0.17311102,0.36637434,0.54486775,0.7013954,0.82964706,0.9244525,0.98197675,0.99993974,0.97759134,0.9158324,0.81715274,0.68553054,0.5262719,0.3458612,0.15144952,-0.049067676,-0.24760675,-0.43616384,-0.6071375,-0.7536351,-0.8697171,-0.95078224,-0.9935177,-0.9962006,-0.9587229,-0.88259524,-0.77088684,-0.62815404,-0.46005452,-0.27340838,-0.075740136,0.1249815,0.32066464,0.5034206,0.6658308,0.8014577,0.9047748,0.9716169,0.9992894,0.98667663,0.93428713,0.84426945,0.7201917,0.56708026,0.39110765,0.19936794,-0.00040906153,-0.20016956,-0.39179775,-0.5676978,-0.7207118,-0.84467113,-0.9345785,-0.9868094,-0.9992582,-0.97143924,-0.9044551,-0.801009,-0.6652711,-0.5027135,-0.31988963,-0.12416975,0.07648791,0.2741297,0.46072024,0.6287374,0.7714077,0.8829796,0.95895517,0.99626565,0.99343216,0.9505496,0.86934674,0.7530971,0.6064872,0.43542752,0.2468801,0.048318617,-0.15219077,-0.34656477,-0.5269674,-0.68612593,-0.8176241,-0.9161333,-0.97774893,-0.9999477,-0.98183477,-0.9241402,-0.82919,-0.700812,-0.54423875,-0.36567646,-0.17237236,0.027880749,0.22700986,0.41698733,0.59015447,0.73948425,0.8590576,0.94399905,0.9908843,0.9978231,0.96453583,0.8923644,0.7842606,0.64450943,0.47877565,0.29374057,0.09686365,-0.10391821,-0.30051073,-0.48492888,-0.6498627,-0.788598,-0.89554197,-0.9663831,-0.9982656,-0.98990417,-0.94165885,-0.8554419,-0.7347389,-0.5844157,-0.41053236,-0.22009893,-0.020792464,0.17935222,0.37220326,0.5501164,0.70585227,0.83313245,0.9268259,0.98315537,0.9998501,0.9762517,0.9132957,0.8135212,0.6809506,0.52092814,0.3399051,0.1451792,-0.05533139,-0.2536788,-0.44179946,-0.6121095,-0.75774294,-0.87282896,-0.9527278,-0.9942112,-0.9956348,-0.95692056,-0.87962914,-0.76687646,-0.62320805,-0.45441568,-0.26736978,-0.06948443,0.1312021,0.32659936,0.50883013,0.670548,0.8052335,0.90742826,0.9730815,0.9995061,0.9856368,0.9320326,0.8408545,0.7157784,0.56190294,0.38532734,0.1932177,-0.006681289,-0.20631093,-0.39762336,-0.5729061,-0.7250458,-0.848012,-0.93679154,-0.98780537,-0.998997,-0.9699152,-0.9017323,-0.79723835,-0.66057515,-0.49728158,-0.31394067,-0.117943615,0.082808204,0.2802217,0.46627808,0.63360244,0.77538383,0.8859065,0.9607148,0.9967931,0.99268675,0.94858295,0.8662299,0.7489557,0.6014883,0.42977253,0.24073099,0.04198464,-0.15838695,-0.35244146,-0.5322877,-0.6906754,-0.82121927,-0.9186566,-0.97905934,-0.9999922,-0.98062533,-0.9217257,-0.82566774,-0.69632393,-0.5389086,-0.35976782,-0.16619061,0.034149997,0.23311388,0.42268005,0.5952064,0.7437376,0.8622859,0.94605005,0.99170977,0.99738985,0.9628613,0.88951606,0.78031105,0.6396487,0.4732596,0.28773925,0.090619,-0.11015444,-0.30648714,-0.49046415,-0.6546687,-0.7924394,-0.8983153,-0.9679767,-0.9986152,-0.9889957,-0.93950593,-0.8521411,-0.73046964,-0.57931453,-0.40480497,-0.21397617,-0.014521174,0.18551923,0.37808064,0.55534345,0.7102814,0.8365851,0.9291628,0.98428243,0.99972177,0.9748585,0.9107231,0.8098577,0.67634386,0.5155639,0.33399966,0.13897055,-0.061660975,-0.2597409,-0.44741768,-0.6170573,-0.76182103,-0.8758728,-0.9546147,-0.99487245,-0.9950298,-0.95508057,-0.87662834,-0.76283586,-0.61829054,-0.4488195,-0.26125482,-0.063225985,0.13741754,0.33252123,0.5142197,0.675188,0.80893683,0.91007435,0.9745079,0.99968356,0.9845581,0.9297413,0.8374431,0.7113843,0.5566468,0.37953186,0.18705985,-0.012953253,-0.21244416,-0.40337062,-0.57803565,-0.72939783,-0.85131943,-0.93896765,-0.9887625,-0.9986965,-0.9683692,-0.89900315,-0.79339486,-0.6558532,-0.49183005,-0.30797938,-0.111712836,0.089057274,0.28623715,0.4718777,0.6384425,0.7793294,0.88879853,0.96243674,0.9972754,0.99191004,0.9465569,0.86307895,0.7447849,0.59646565,0.42410064,0.23463847,0.03571711,-0.16464414,-0.3583043,-0.53758705,-0.69519764,-0.82478213,-0.9211164,-0.98031694,-0.99999714,-0.9793774,-0.9192749,-0.822113,-0.69180846,-0.5336145,-0.35390848,-0.15993503,0.040417902,0.23920873,0.42835614,0.60023487,0.74791574,0.8654453,0.9480854,0.9924962,0.9969173,0.96114886,0.88663274,0.7763731,0.6348148,0.4676647,0.2817266,0.08437079,-0.11638635,-0.31245148,-0.4959205,-0.65939707,-0.79629076,-0.90105337,-0.96953225,-0.99892557,-0.9880483,-0.937339,-0.84884197,-0.7261248,-0.5741906,-0.39906165,-0.207845,-0.0082493145,0.19167894,0.38387987,0.5606051,0.7146825,0.8400048,0.9314632,0.98537076,0.99955416,0.9734417,0.90808606,0.8061623,0.6717105,0.5101794,0.32808104,0.13275646,-0.06792007,-0.26585847,-0.45301828,-0.6219809,-0.76586914,-0.87888217,-0.95646405,-0.9954872,-0.99437845,-0.953203,-0.8735931,-0.7587653,-0.6133487,-0.44320565,-0.25519526,-0.05689699,0.14362757,0.33843,0.519589,0.6798014,0.81260836,0.91265595,0.97591084,0.99982166,0.98344076,0.9274135,0.8339987,0.70696217,0.5514252,0.3736582,0.18089466,-0.019224709,-0.21856904,-0.40910202,-0.5831425,-0.7336743,-0.8546288,-0.94110686,-0.9896807,-0.9983567,-0.9667851,-0.89623857,-0.7895613,-0.6510537,-0.4863592,-0.30200595,-0.10547766,0.095302835,0.2922413,0.4773984,0.6433097,0.7832444,0.8916556,0.96412075,0.99771845,0.9910943,0.9445153,0.8598592,0.74058473,0.5914196,0.41841206,0.22853673,0.029448174,-0.17082754,-0.36421654,-0.5428653,-0.69969255,-0.8283125,-0.92354,-0.98153603,-0.9999625,-0.9780767,-0.916788,-0.8185259,-0.6872658,-0.5282994,-0.34803522,-0.15374039,0.046752322,0.24529417,0.43401536,0.6052397,0.7520645,0.8685707,0.95006144,0.99325156,0.9964056,0.9593986,0.88371456,0.7724046,0.629956,0.4621114,0.27563736,0.078119256,-0.12261367,-0.31840357,-0.5013574,-0.6640995,-0.8000693,-0.90378517,-0.97104967,-0.9991966,-0.98706204,-0.9351352,-0.84550947,-0.721798,-0.568988,-0.39330265,-0.20170565,-0.0019771296,0.1978311,0.389664,0.56578803,0.719103,0.8433914,0.93372697,0.9864203,0.99934727,0.97198665,0.9054415,0.8023945,0.6670507,0.5047748,0.32214952,0.12653711,-0.07417648,-0.27189973,-0.45866168,-0.62688005,-0.7698871,-0.881857,-0.9582758,-0.9960629,-0.9936947,-0.95126694,-0.8705235,-0.75466484,-0.60838276,-0.4375744,-0.24912569,-0.050633796,0.14989935,0.34432545,0.52493787,0.68438804,0.8162479,0.9152016,0.97726005,0.9999213,0.9822847,0.92504925,0.83052146,0.7025122,0.5461819,0.36783296,0.1746552,-0.025495406,-0.22468533,-0.4148173,-0.58822644,-0.73792183,-0.8578688,-0.9432317,-0.99056,-0.9979776,-0.96516293,-0.89343876,-0.7856966,-0.64628005,-0.48080945,-0.29602066,-0.09923834,0.10154465,0.298234,0.48290035,0.6480991,0.7871705,0.89450806,0.96576685,0.9981223,0.99023956,0.9424365,0.85664016,0.73630935,0.586295,0.41270703,0.22242598,0.023178078,-0.17700422,-0.3700508,-0.5481792,-0.7042084,-0.83181036,-0.9259272,-0.98271644,-0.99988854,-0.97675127,-0.9142374,-0.8148671,-0.6826961,-0.5229635,-0.34214827,-0.14753969,0.053016778,0.25143594,0.43971875,0.6102208,0.7561837,0.8716619,0.9520001,0.9939595,0.9958485,0.957591,0.8807616,0.7684057,0.62507236,0.45653996,0.2696027,0.07179665,-0.12890378,-0.3243431,-0.5067745,-0.66877586,-0.8038163,-0.9064518,-0.9725447,-0.9994306,-0.98603696,-0.93289465,-0.8421437,-0.71744275,-0.5638189,-0.3874653,-0.19549151,0.004295133,0.20397548,0.3954328,0.57094866,0.72344744,0.8467812,0.93597794,0.98743105,0.999101,0.9704933,0.90276134,0.7986355,0.66231364,0.49929133,0.31620532,0.12031281,-0.08042998,-0.27793032,-0.46422622,-0.6318074,-0.7739179,-0.8847971,-0.96004987,-0.9965993,-0.99297196,-0.9493141,-0.86738575,-0.75048965,-0.60339284,-0.4319259,-0.24304631,-0.044368606,0.15609777,0.35027122,0.5303239,0.6889478,0.81985533,0.9177113,0.9785708,0.99998033,0.9810768,0.92262226,0.8270116,0.6980346,0.54091716,0.3619932,0.16847594,-0.031833246,-0.2308591,-0.42051628,-0.59328717,-0.74214035,-0.861075,-0.9452964,-0.99140924,-0.99755454,-0.9635028,-0.8906038,-0.7818011,-0.64148104,-0.47530034,-0.28995845,-0.09292723,0.10778246,0.30421492,0.4883833,0.652863,0.7910234,0.89729446,0.9673922,0.9984869,0.9893459,0.9403206,0.85338736,0.7320508,0.5812024,0.40692347,0.2163065,0.016907072,-0.18317394,-0.3758705,-0.5534143,-0.7086478,-0.83531296,-0.9282781,-0.9838582,-0.99977523,-0.97538745,-0.911678,-0.81121534,-0.67804945,-0.5176071,-0.33624786,-0.1413332,0.05927915,0.25750172,0.4453434,0.6152316,0.7602731,0.87471884,0.9539013,0.99462825,0.995258,0.95576495,0.87774134,0.7643766,0.62016416,0.45095056,0.26355737,0.06553919,-0.13512114,-0.33033422,-0.5121717,-0.6734259,-0.8075317,-0.9090828,-0.97398525,-0.9996226,-0.9849613,-0.93061733,-0.8387448,-0.7130593,-0.55862755,-0.38167542,-0.18933645,0.010635399,0.21011184,0.40118602,0.5760869,0.7277634,0.850101,0.93816775,0.98841333,0.9988154,0.96896183,0.90004563,0.7948451,0.6576013,0.493847,0.31018388,0.114083774,-0.08668031,-0.28394997,-0.46977252,-0.6366567,-0.7778748,-0.8877338,-0.96178615,-0.99709654,-0.9922101,-0.94732386,-0.8642474,-0.7463297,-0.5983246,-0.4262604,-0.23695737,-0.038101677,0.16229005,0.35613924,0.53563106,0.69352955,0.8234305,0.92018485,0.9798431,1.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/runner.jl new file mode 100644 index 000000000000..d1b0d63c0822 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/fixtures/julia/runner.jl @@ -0,0 +1,87 @@ +#!/usr/bin/env julia +# +# @license Apache-2.0 +# +# Copyright (c) 2026 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import JSON + +""" + gen( domain, name ) + +Generate single-precision fixture data for sincosdf. + +# Arguments + +* `domain`: domain +* `name::AbstractString`: output filename + +# Examples + +``` julia +julia> x = linspace( -1000, 1000, 2001 ); +julia> gen( x, \"data.json\" ); +``` +""" +function gen( domain, name ) + x = collect( domain ) + s = sind.( x ) + c = cosd.( x ) + + # Store data to be written to file as a collection: + data = Dict([ + ("x", x), + ("sine", s), + ("cosine", c) + ]) + # Based on the script directory, create an output filepath: + filepath = joinpath( dir, name ) + + # Write the data to the output filepath as JSON: + open( filepath, "w" ) do outfile + write( outfile, JSON.json( data ) ) + write( outfile, "\n" ) + end +end + +# Get the filename: +file = @__FILE__ + +# Extract the directory in which this file resides: +dir = dirname( file ) + +# Negative medium sized values: +x = Float32.( range( -256.0 * 180.0, stop = 0.0, length = 4000 ) ) +gen( x, "medium_negative.json" ) + +# Positive medium sized values: +x = Float32.( range( 0.0, stop = 256.0 * 180.0, length = 4000 ) ) +gen( x, "medium_positive.json" ) + +# Negative large values: +x = Float32.( range( -2.0^20 * (180.0/2.0), stop = -2.0^60 * (180.0/2.0), length = 4000 ) ) +gen( x, "large_negative.json" ) + +# Positive large values: +x = Float32.( range( 2.0^20 * (180.0/2.0), stop = 2.0^60 * (180.0/2.0), length = 4000 ) ) +gen( x, "large_positive.json" ) + +# Negative huge values: +x = Float32.( range( -2.0^60 * (180.0/2.0), stop = -2.0^120 * (180.0/2.0), length = 4000 ) ) +gen( x, "huge_negative.json" ) + +# Positive huge values: +x = Float32.( range( 2.0^60 * (180.0/2.0), stop = 2.0^120 * (180.0/2.0), length = 4000 ) ) +gen( x, "huge_positive.json" ) diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/test/test.assign.js b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/test.assign.js new file mode 100644 index 000000000000..ed8341913cf1 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/test.assign.js @@ -0,0 +1,362 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var tape = require( 'tape' ); +var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var EPS = require( '@stdlib/constants/float32/eps' ); +var absf = require( '@stdlib/math/base/special/absf' ); +var Float32Array = require( '@stdlib/array/float32' ); +var f32 = require( '@stdlib/number/float64/base/to-float32' ); +var sincosdf = require( './../lib/assign.js' ); +var mediumNegative = require( './fixtures/julia/medium_negative.json' ); +var mediumPositive = require( './fixtures/julia/medium_positive.json' ); +var largeNegative = require( './fixtures/julia/large_negative.json' ); +var largePositive = require( './fixtures/julia/large_positive.json' ); +var hugeNegative = require( './fixtures/julia/huge_negative.json' ); +var hugePositive = require( './fixtures/julia/huge_positive.json' ); + + +// TESTS // + +tape( 'main export is a function', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof sincosdf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function computes the sine and cosine (for -256*180.0 < x < 0)', function test( t ) { + var cosine; + var delta; + var sine; + var tol; + var x; + var y; + var z; + var i; + + z = [ 0.0, 0.0 ]; + x = mediumNegative.x; + sine = mediumNegative.sine; + cosine = mediumNegative.cosine; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + y = sincosdf( x[i], z, 1, 0 ); + sine[ i ] = f32( sine[ i ] ); + cosine[ i ] = f32( cosine[ i ] ); + t.strictEqual( y, z, 'returns output array' ); + if ( y[0] === sine[ i ] ) { + t.strictEqual( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] ); + } else { + delta = absf( y[0] - sine[i] ); + tol = EPS * absf( sine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[0]+'. Expected: '+sine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + if ( y[1] === cosine[ i ] ) { + t.strictEqual( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] ); + } else { + delta = absf( y[1] - cosine[i] ); + tol = 1.01 * EPS * absf( cosine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[1]+'. Expected: '+cosine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the sine and cosine (for 0 < x < 256*180.0)', function test( t ) { + var cosine; + var delta; + var sine; + var tol; + var x; + var y; + var i; + var z; + + z = [ 0.0, 0.0 ]; + x = mediumPositive.x; + sine = mediumPositive.sine; + cosine = mediumPositive.cosine; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + y = sincosdf( x[i], z, 1, 0 ); + sine[ i ] = f32( sine[ i ] ); + cosine[ i ] = f32( cosine[ i ] ); + t.strictEqual( y, z, 'returns output array' ); + if ( y[0] === sine[ i ] ) { + t.strictEqual( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] ); + } else { + delta = absf( y[0] - sine[i] ); + tol = EPS * absf( sine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[0]+'. Expected: '+sine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + if ( y[1] === cosine[ i ] ) { + t.strictEqual( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] ); + } else { + delta = absf( y[1] - cosine[i] ); + tol = 1.01 * EPS * absf( cosine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[1]+'. Expected: '+cosine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the sine and cosine (for -2**60 (180.0/2) < x < -2**20 (180.0/2))', function test( t ) { + var cosine; + var delta; + var sine; + var tol; + var x; + var y; + var i; + var z; + + z = [ 0.0, 0.0 ]; + x = largeNegative.x; + sine = largeNegative.sine; + cosine = largeNegative.cosine; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + y = sincosdf( x[i], z, 1, 0 ); + sine[ i ] = f32( sine[ i ] ); + cosine[ i ] = f32( cosine[ i ] ); + t.strictEqual( y, z, 'returns output array' ); + if ( y[0] === sine[ i ] ) { + t.strictEqual( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] ); + } else { + delta = absf( y[0] - sine[i] ); + tol = EPS * absf( sine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[0]+'. Expected: '+sine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + if ( y[1] === cosine[ i ] ) { + t.strictEqual( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] ); + } else { + delta = absf( y[1] - cosine[i] ); + tol = EPS * absf( cosine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[1]+'. Expected: '+cosine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the sine and cosine (for 2**20 (180.0/2) < x < 2**60 (180.0/2))', function test( t ) { + var cosine; + var delta; + var sine; + var tol; + var x; + var y; + var i; + var z; + + z = [ 0.0, 0.0 ]; + x = largePositive.x; + sine = largePositive.sine; + cosine = largePositive.cosine; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + y = sincosdf( x[i], z, 1, 0 ); + sine[ i ] = f32( sine[ i ] ); + cosine[ i ] = f32( cosine[ i ] ); + t.strictEqual( y, z, 'returns output array' ); + if ( y[0] === sine[ i ] ) { + t.strictEqual( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] ); + } else { + delta = absf( y[0] - sine[i] ); + tol = EPS * absf( sine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[0]+'. Expected: '+sine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + if ( y[1] === cosine[ i ] ) { + t.strictEqual( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] ); + } else { + delta = absf( y[1] - cosine[i] ); + tol = EPS * absf( cosine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[1]+'. Expected: '+cosine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the sine and cosine (for x <= -2**60 (180.0/2))', function test( t ) { + var cosine; + var delta; + var sine; + var tol; + var x; + var y; + var i; + var z; + + z = [ 0.0, 0.0 ]; + x = hugeNegative.x; + sine = hugeNegative.sine; + cosine = hugeNegative.cosine; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + y = sincosdf( x[i], z, 1, 0 ); + sine[ i ] = f32( sine[ i ] ); + cosine[ i ] = f32( cosine[ i ] ); + t.strictEqual( y, z, 'returns output array' ); + if ( y[0] === sine[ i ] ) { + t.strictEqual( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] ); + } else { + delta = absf( y[0] - sine[i] ); + tol = EPS * absf( sine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[0]+'. Expected: '+sine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + if ( y[1] === cosine[ i ] ) { + t.strictEqual( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] ); + } else { + delta = absf( y[1] - cosine[i] ); + tol = EPS * absf( cosine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[1]+'. Expected: '+cosine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the sine and cosine (for x >= 2**60 (180.0/2))', function test( t ) { + var cosine; + var delta; + var sine; + var tol; + var x; + var y; + var i; + var z; + + z = [ 0.0, 0.0 ]; + x = hugePositive.x; + sine = hugePositive.sine; + cosine = hugePositive.cosine; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + y = sincosdf( x[i], z, 1, 0 ); + sine[ i ] = f32( sine[ i ] ); + cosine[ i ] = f32( cosine[ i ] ); + t.strictEqual( y, z, 'returns output array' ); + if ( y[0] === sine[ i ] ) { + t.strictEqual( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] ); + } else { + delta = absf( y[0] - sine[i] ); + tol = EPS * absf( sine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[0]+'. Expected: '+sine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + if ( y[1] === cosine[ i ] ) { + t.strictEqual( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] ); + } else { + delta = absf( y[1] - cosine[i] ); + tol = EPS * absf( cosine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[1]+'. Expected: '+cosine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided a `NaN`', function test( t ) { + var v; + var z; + + z = [ 0.0, 0.0 ]; + v = sincosdf( NaN, z, 1, 0 ); + t.strictEqual( v, z, 'returns output array' ); + t.strictEqual( isnanf( v[0] ), true, 'returns expected value' ); + t.strictEqual( isnanf( v[1] ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided `+infinity`', function test( t ) { + var v; + var z; + + z = [ 0.0, 0.0 ]; + v = sincosdf( PINF, z, 1, 0 ); + t.strictEqual( v, z, 'returns output array' ); + t.strictEqual( isnanf( v[0] ), true, 'returns expected value' ); + t.strictEqual( isnanf( v[1] ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided `-infinity`', function test( t ) { + var v; + var z; + + z = [ 0.0, 0.0 ]; + v = sincosdf( NINF, z, 1, 0 ); + t.strictEqual( v, z, 'returns output array' ); + t.strictEqual( isnanf( v[0] ), true, 'returns expected value' ); + t.strictEqual( isnanf( v[1] ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function supports providing an output typed array', function test( t ) { + var parts; + var out; + + out = new Float32Array( 2 ); + parts = sincosdf( 1.0, out, 1, 0 ); + + t.strictEqual( parts, out, 'returns output array' ); + t.strictEqual( parts[ 0 ], f32( 0.01745240643728351 ), 'has expected first element' ); + t.strictEqual( parts[ 1 ], f32( 0.9998476951563913 ), 'has expected second element' ); + + t.end(); +}); + +tape( 'the function supports specifying a stride', function test( t ) { + var out; + var val; + + out = new Float32Array( 4 ); + val = sincosdf( 1.0, out, 2, 0 ); + + t.strictEqual( val, out, 'returns output array' ); + t.strictEqual( val[ 0 ], f32( 0.01745240643728351 ), 'returns expected value' ); + t.strictEqual( val[ 1 ], 0, 'returns expected value' ); + t.strictEqual( val[ 2 ], f32( 0.9998476951563913 ), 'returns expected value' ); + t.strictEqual( val[ 3 ], 0, 'returns expected value' ); + + t.end(); +}); + +tape( 'the function supports specifying an offset', function test( t ) { + var out; + var val; + + out = new Float32Array( 4 ); + val = sincosdf( 1.0, out, 2, 1 ); + + t.strictEqual( val, out, 'returns output array' ); + t.strictEqual( val[ 0 ], 0, 'returns expected value' ); + t.strictEqual( val[ 1 ], f32( 0.01745240643728351 ), 'returns expected value' ); + t.strictEqual( val[ 2 ], 0, 'returns expected value' ); + t.strictEqual( val[ 3 ], f32( 0.9998476951563913 ), 'returns expected value' ); + + t.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/test/test.js b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/test.js new file mode 100644 index 000000000000..b0f17b0b43fe --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/test.js @@ -0,0 +1,40 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var tape = require( 'tape' ); +var hasOwnProp = require( '@stdlib/assert/has-own-property' ); +var sincosdf = require( './../lib' ); + + +// TESTS // + +tape( 'main export is a function', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof sincosdf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'attached to the main export is an `assign` method', function test( t ) { + t.strictEqual( hasOwnProp( sincosdf, 'assign' ), true, 'has property' ); + t.strictEqual( typeof sincosdf.assign, 'function', 'has method' ); + t.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/test/test.main.js b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/test.main.js new file mode 100644 index 000000000000..9472a3a804e1 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/test.main.js @@ -0,0 +1,282 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var tape = require( 'tape' ); +var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var EPS = require( '@stdlib/constants/float32/eps' ); +var absf = require( '@stdlib/math/base/special/absf' ); +var f32 = require( '@stdlib/number/float64/base/to-float32' ); +var sincosdf = require( './../lib/main.js' ); +var mediumNegative = require( './fixtures/julia/medium_negative.json' ); +var mediumPositive = require( './fixtures/julia/medium_positive.json' ); +var largeNegative = require( './fixtures/julia/large_negative.json' ); +var largePositive = require( './fixtures/julia/large_positive.json' ); +var hugeNegative = require( './fixtures/julia/huge_negative.json' ); +var hugePositive = require( './fixtures/julia/huge_positive.json' ); + + +// TESTS // + +tape( 'main export is a function', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof sincosdf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function computes the sine and cosine (for -256*180.0 < x < 0)', function test( t ) { + var cosine; + var delta; + var sine; + var tol; + var x; + var y; + var i; + + x = mediumNegative.x; + sine = mediumNegative.sine; + cosine = mediumNegative.cosine; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + y = sincosdf( x[i] ); + sine[ i ] = f32( sine[ i ] ); + cosine[ i ] = f32( cosine[ i ] ); + if ( y[0] === sine[ i ] ) { + t.strictEqual( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] ); + } else { + delta = absf( y[0] - sine[i] ); + tol = EPS * absf( sine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[0]+'. Expected: '+sine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + if ( y[1] === cosine[ i ] ) { + t.strictEqual( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] ); + } else { + delta = absf( y[1] - cosine[i] ); + tol = 1.01 * EPS * absf( cosine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[1]+'. Expected: '+cosine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the sine and cosine (for 0 < x < 256*180.0)', function test( t ) { + var cosine; + var delta; + var sine; + var tol; + var x; + var y; + var i; + + x = mediumPositive.x; + sine = mediumPositive.sine; + cosine = mediumPositive.cosine; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + y = sincosdf( x[i] ); + sine[ i ] = f32( sine[ i ] ); + cosine[ i ] = f32( cosine[ i ] ); + if ( y[0] === sine[ i ] ) { + t.strictEqual( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] ); + } else { + delta = absf( y[0] - sine[i] ); + tol = EPS * absf( sine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[0]+'. Expected: '+sine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + if ( y[1] === cosine[ i ] ) { + t.strictEqual( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] ); + } else { + delta = absf( y[1] - cosine[i] ); + tol = 1.01 * EPS * absf( cosine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[1]+'. Expected: '+cosine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the sine and cosine (for -2**60 (180.0/2) < x < -2**20 (180.0/2))', function test( t ) { + var cosine; + var delta; + var sine; + var tol; + var x; + var y; + var i; + + x = largeNegative.x; + sine = largeNegative.sine; + cosine = largeNegative.cosine; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + y = sincosdf( x[i] ); + sine[ i ] = f32( sine[ i ] ); + cosine[ i ] = f32( cosine[ i ] ); + if ( y[0] === sine[ i ] ) { + t.strictEqual( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] ); + } else { + delta = absf( y[0] - sine[i] ); + tol = EPS * absf( sine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[0]+'. Expected: '+sine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + if ( y[1] === cosine[ i ] ) { + t.strictEqual( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] ); + } else { + delta = absf( y[1] - cosine[i] ); + tol = EPS * absf( cosine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[1]+'. Expected: '+cosine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the sine and cosine (for 2**20 (180.0/2) < x < 2**60 (180.0/2))', function test( t ) { + var cosine; + var delta; + var sine; + var tol; + var x; + var y; + var i; + + x = largePositive.x; + sine = largePositive.sine; + cosine = largePositive.cosine; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + y = sincosdf( x[i] ); + sine[ i ] = f32( sine[ i ] ); + cosine[ i ] = f32( cosine[ i ] ); + if ( y[0] === sine[ i ] ) { + t.strictEqual( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] ); + } else { + delta = absf( y[0] - sine[i] ); + tol = EPS * absf( sine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[0]+'. Expected: '+sine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + if ( y[1] === cosine[ i ] ) { + t.strictEqual( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] ); + } else { + delta = absf( y[1] - cosine[i] ); + tol = EPS * absf( cosine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[1]+'. Expected: '+cosine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the sine and cosine (for x <= -2**60 (180.0/2))', function test( t ) { + var cosine; + var delta; + var sine; + var tol; + var x; + var y; + var i; + + x = hugeNegative.x; + sine = hugeNegative.sine; + cosine = hugeNegative.cosine; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + y = sincosdf( x[i] ); + sine[ i ] = f32( sine[ i ] ); + cosine[ i ] = f32( cosine[ i ] ); + if ( y[0] === sine[ i ] ) { + t.strictEqual( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] ); + } else { + delta = absf( y[0] - sine[i] ); + tol = EPS * absf( sine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[0]+'. Expected: '+sine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + if ( y[1] === cosine[ i ] ) { + t.strictEqual( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] ); + } else { + delta = absf( y[1] - cosine[i] ); + tol = EPS * absf( cosine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[1]+'. Expected: '+cosine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the sine and cosine (for x >= 2**60 (180.0/2))', function test( t ) { + var cosine; + var delta; + var sine; + var tol; + var x; + var y; + var i; + + x = hugePositive.x; + sine = hugePositive.sine; + cosine = hugePositive.cosine; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + y = sincosdf( x[i] ); + sine[ i ] = f32( sine[ i ] ); + cosine[ i ] = f32( cosine[ i ] ); + if ( y[0] === sine[ i ] ) { + t.strictEqual( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] ); + } else { + delta = absf( y[0] - sine[i] ); + tol = EPS * absf( sine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[0]+'. Expected: '+sine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + if ( y[1] === cosine[ i ] ) { + t.strictEqual( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] ); + } else { + delta = absf( y[1] - cosine[i] ); + tol = EPS * absf( cosine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[1]+'. Expected: '+cosine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided a `NaN`', function test( t ) { + var v = sincosdf( NaN ); + t.strictEqual( isnanf( v[0] ), true, 'returns expected value' ); + t.strictEqual( isnanf( v[1] ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided `+infinity`', function test( t ) { + var v = sincosdf( PINF ); + t.strictEqual( isnanf( v[0] ), true, 'returns expected value' ); + t.strictEqual( isnanf( v[1] ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided `-infinity`', function test( t ) { + var v = sincosdf( NINF ); + t.strictEqual( isnanf( v[0] ), true, 'returns expected value' ); + t.strictEqual( isnanf( v[1] ), true, 'returns expected value' ); + t.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/sincosdf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/test.native.js new file mode 100644 index 000000000000..d48cda1870d0 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincosdf/test/test.native.js @@ -0,0 +1,295 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var resolve = require( 'path' ).resolve; +var tape = require( 'tape' ); +var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var EPS = require( '@stdlib/constants/float32/eps' ); +var absf = require( '@stdlib/math/base/special/absf' ); +var tryRequire = require( '@stdlib/utils/try-require' ); +var f32 = require( '@stdlib/number/float64/base/to-float32' ); + + +// VARIABLES // + +var sincosdf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( sincosdf instanceof Error ) +}; + + +// FIXTURES // + +var mediumNegative = require( './fixtures/julia/medium_negative.json' ); +var mediumPositive = require( './fixtures/julia/medium_positive.json' ); +var largeNegative = require( './fixtures/julia/large_negative.json' ); +var largePositive = require( './fixtures/julia/large_positive.json' ); +var hugeNegative = require( './fixtures/julia/huge_negative.json' ); +var hugePositive = require( './fixtures/julia/huge_positive.json' ); + + +// TESTS // + +tape( 'main export is a function', opts, function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof sincosdf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function computes the sine and cosine (for -256*180.0 < x < 0)', opts, function test( t ) { + var cosine; + var delta; + var sine; + var tol; + var x; + var y; + var i; + + x = mediumNegative.x; + sine = mediumNegative.sine; + cosine = mediumNegative.cosine; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + y = sincosdf( x[ i ] ); + sine[ i ] = f32( sine[ i ] ); + cosine[ i ] = f32( cosine[ i ] ); + if ( y[0] === sine[i] ) { + t.strictEqual( y[0], sine[i], 'x: '+x[i]+'. Expected: '+sine[i] ); + } else { + delta = absf( y[0] - sine[i] ); + tol = EPS * absf( sine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[0]+'. Expected: '+sine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + if ( y[1] === cosine[i] ) { + t.strictEqual( y[1], cosine[i], 'x: '+x[i]+'. Expected: '+cosine[i] ); + } else { + delta = absf( y[1] - cosine[i] ); + tol = 1.01 * EPS * absf( cosine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[1]+'. Expected: '+cosine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the sine and cosine (for 0 < x < 256*180.0)', opts, function test( t ) { + var cosine; + var delta; + var sine; + var tol; + var x; + var y; + var i; + + x = mediumPositive.x; + sine = mediumPositive.sine; + cosine = mediumPositive.cosine; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + y = sincosdf( x[ i ] ); + sine[ i ] = f32( sine[ i ] ); + cosine[ i ] = f32( cosine[ i ] ); + if ( y[0] === sine[i] ) { + t.strictEqual( y[0], sine[i], 'x: '+x[i]+'. Expected: '+sine[i] ); + } else { + delta = absf( y[0] - sine[i] ); + tol = EPS * absf( sine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[0]+'. Expected: '+sine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + if ( y[1] === cosine[i] ) { + t.strictEqual( y[1], cosine[i], 'x: '+x[i]+'. Expected: '+cosine[i] ); + } else { + delta = absf( y[1] - cosine[i] ); + tol = 1.01 * EPS * absf( cosine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[1]+'. Expected: '+cosine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the sine and cosine (for -2**60 (180.0/2) < x < -2**20 (180.0/2))', opts, function test( t ) { + var cosine; + var delta; + var sine; + var tol; + var x; + var y; + var i; + + x = largeNegative.x; + sine = largeNegative.sine; + cosine = largeNegative.cosine; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + y = sincosdf( x[ i ] ); + sine[ i ] = f32( sine[ i ] ); + cosine[ i ] = f32( cosine[ i ] ); + if ( y[0] === sine[i] ) { + t.strictEqual( y[0], sine[i], 'x: '+x[i]+'. Expected: '+sine[i] ); + } else { + delta = absf( y[0] - sine[i] ); + tol = EPS * absf( sine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[0]+'. Expected: '+sine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + if ( y[1] === cosine[i] ) { + t.strictEqual( y[1], cosine[i], 'x: '+x[i]+'. Expected: '+cosine[i] ); + } else { + delta = absf( y[1] - cosine[i] ); + tol = EPS * absf( cosine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[1]+'. Expected: '+cosine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the sine and cosine (for 2**20 (180.0/2) < x < 2**60 (180.0/2))', opts, function test( t ) { + var cosine; + var delta; + var sine; + var tol; + var x; + var y; + var i; + + x = largePositive.x; + sine = largePositive.sine; + cosine = largePositive.cosine; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + y = sincosdf( x[ i ] ); + sine[ i ] = f32( sine[ i ] ); + cosine[ i ] = f32( cosine[ i ] ); + if ( y[0] === sine[i] ) { + t.strictEqual( y[0], sine[i], 'x: '+x[i]+'. Expected: '+sine[i] ); + } else { + delta = absf( y[0] - sine[i] ); + tol = EPS * absf( sine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[0]+'. Expected: '+sine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + if ( y[1] === cosine[i] ) { + t.strictEqual( y[1], cosine[i], 'x: '+x[i]+'. Expected: '+cosine[i] ); + } else { + delta = absf( y[1] - cosine[i] ); + tol = EPS * absf( cosine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[1]+'. Expected: '+cosine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the sine and cosine (for x <= -2**60 (180.0/2))', opts, function test( t ) { + var cosine; + var delta; + var sine; + var tol; + var x; + var y; + var i; + + x = hugeNegative.x; + sine = hugeNegative.sine; + cosine = hugeNegative.cosine; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + y = sincosdf( x[ i ] ); + sine[ i ] = f32( sine[ i ] ); + cosine[ i ] = f32( cosine[ i ] ); + if ( y[0] === sine[i] ) { + t.strictEqual( y[0], sine[i], 'x: '+x[i]+'. Expected: '+sine[i] ); + } else { + delta = absf( y[0] - sine[i] ); + tol = EPS * absf( sine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[0]+'. Expected: '+sine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + if ( y[1] === cosine[i] ) { + t.strictEqual( y[1], cosine[i], 'x: '+x[i]+'. Expected: '+cosine[i] ); + } else { + delta = absf( y[1] - cosine[i] ); + tol = EPS * absf( cosine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[1]+'. Expected: '+cosine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the sine and cosine (for x >= 2**60 (180.0/2))', opts, function test( t ) { + var cosine; + var delta; + var sine; + var tol; + var x; + var y; + var i; + + x = hugePositive.x; + sine = hugePositive.sine; + cosine = hugePositive.cosine; + + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + y = sincosdf( x[i] ); + sine[ i ] = f32( sine[ i ] ); + cosine[ i ] = f32( cosine[ i ] ); + if ( y[0] === sine[i] ) { + t.strictEqual( y[0], sine[i], 'x: '+x[i]+'. Expected: '+sine[i] ); + } else { + delta = absf( y[0] - sine[i] ); + tol = EPS * absf( sine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[0]+'. Expected: '+sine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + if ( y[1] === cosine[i] ) { + t.strictEqual( y[1], cosine[i], 'x: '+x[i]+'. Expected: '+cosine[i] ); + } else { + delta = absf( y[1] - cosine[i] ); + tol = EPS * absf( cosine[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y[1]+'. Expected: '+cosine[i]+'. tol: '+tol+'. delta: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided a `NaN`', opts, function test( t ) { + var v = sincosdf( NaN ); + t.strictEqual( isnanf( v[0] ), true, 'returns expected value' ); + t.strictEqual( isnanf( v[1] ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided `+infinity`', opts, function test( t ) { + var v = sincosdf( PINF ); + t.strictEqual( isnanf( v[0] ), true, 'returns expected value' ); + t.strictEqual( isnanf( v[1] ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided `-infinity`', opts, function test( t ) { + var v = sincosdf( NINF ); + t.strictEqual( isnanf( v[0] ), true, 'returns expected value' ); + t.strictEqual( isnanf( v[1] ), true, 'returns expected value' ); + t.end(); +});