diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/README.md b/lib/node_modules/@stdlib/math/base/special/sincosd/README.md
new file mode 100644
index 000000000000..86681a27825a
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/README.md
@@ -0,0 +1,204 @@
+
+
+# sincosd
+
+> Simultaneously compute the [sine][@stdlib/math/base/special/sind] and [cosine][@stdlib/math/base/special/cosd] of an angle measured in degrees.
+
+
+
+## Usage
+
+```javascript
+var sincosd = require( '@stdlib/math/base/special/sincosd' );
+```
+
+#### sincosd( x )
+
+Simultaneously computes the [sine][@stdlib/math/base/special/sind] and [cosine][@stdlib/math/base/special/cosd] of an angle measured in degrees.
+
+```javascript
+var v = sincosd( 0.0 );
+// returns [ ~0.0, ~1.0 ]
+
+v = sincosd( 90.0 );
+// returns [ ~1.0, ~0.0 ]
+
+v = sincosd( -30.0 );
+// returns [ ~-0.5, ~0.866 ]
+```
+
+#### sincosd.assign( x, out, stride, offset )
+
+Simultaneously computes the [sine][@stdlib/math/base/special/sind] and [cosine][@stdlib/math/base/special/cosd] of an angle measured in degrees and assigns the results to a provided output array.
+
+```javascript
+var Float64Array = require( '@stdlib/array/float64' );
+
+var out = new Float64Array( 2 );
+
+var v = sincosd.assign( 0.0, out, 1, 0 );
+// returns [ ~0.0, ~1.0 ]
+
+var bool = ( v === out );
+// returns true
+```
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var linspace = require( '@stdlib/array/base/linspace' );
+var sincosd = require( '@stdlib/math/base/special/sincosd' );
+
+var x = linspace( 0.0, 180.0, 100 );
+
+var y;
+var i;
+for ( i = 0; i < x.length; i++ ) {
+ y = sincosd( x[ i ] );
+ console.log( 'sincosd(%d) = [ %d, %d ]', x[ i ], y[ 0 ], y[ 1 ] );
+}
+```
+
+
+
+
+
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/math/base/special/sincosd.h"
+```
+
+#### stdlib_base_sincosd( x, &sine, &cosine )
+
+Simultaneously computes the [sine][@stdlib/math/base/special/sind] and [cosine][@stdlib/math/base/special/cosd] of an angle measured in degrees.
+
+```c
+double cosine;
+double sine;
+
+stdlib_base_sincosd( 4.0, &sine, &cosine );
+```
+
+The function accepts the following arguments:
+
+- **x**: `[in] double` input value.
+- **sine**: `[out] double*` destination for the sine.
+- **cosine**: `[out] double*` destination for the cosine.
+
+```c
+void stdlib_base_sincosd( const double x, double *sine, double *cosine );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Examples
+
+```c
+#include "stdlib/math/base/special/sincosd.h"
+#include
+
+int main( void ) {
+ const double x[] = { 0.0, 90.0, 180.0, 360.0 };
+
+ double cosine;
+ double sine;
+ int i;
+ for ( i = 0; i < 4; i++ ) {
+ stdlib_base_sincosd( x[ i ], &sine, &cosine );
+ printf( "x: %lf => sine: %lf, cosine: %lf\n", x[ i ], sine, cosine );
+ }
+}
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[@stdlib/math/base/special/cosd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/cosd
+
+[@stdlib/math/base/special/sind]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/sind
+
+
+
+
+
+
+
+
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/sincosd/benchmark/benchmark.js
new file mode 100644
index 000000000000..9e44642640f6
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/benchmark/benchmark.js
@@ -0,0 +1,124 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 isnan = require( '@stdlib/math/base/assert/is-nan' );
+var sind = require( '@stdlib/math/base/special/sind' );
+var cosd = require( '@stdlib/math/base/special/cosd' );
+var pkg = require( './../package.json' ).name;
+var sincosd = require( './../lib' );
+
+
+// MAIN //
+
+bench( pkg, function benchmark( b ) {
+ var x;
+ var y;
+ var i;
+
+ x = uniform( 100, -10.0, 10.0 );
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ y = sincosd( x[ i%x.length ] );
+ if ( isnan( y[0] ) || isnan( y[1] ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnan( y[0] ) || isnan( y[1] ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
+
+bench( pkg+'::separate-evaluation', function benchmark( b ) {
+ var x;
+ var y;
+ var i;
+
+ x = uniform( 100, -10.0, 10.0 );
+ y = [ 0.0, 0.0 ];
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ y = [ sind( x[ i%x.length ] ), cosd( x[ i%x.length ] ) ];
+ if ( isnan( y[0] ) || isnan( y[1] ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnan( y[0] ) || isnan( y[1] ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
+
+bench( pkg+':assign', function benchmark( b ) {
+ var x;
+ var y;
+ var i;
+
+ x = uniform( 100, -10.0, 10.0 );
+ y = [ 0.0, 0.0 ];
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ sincosd.assign( x[ i%x.length ], y, 1, 0 );
+ if ( isnan( y[0] ) || isnan( y[1] ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnan( y[0] ) || isnan( y[1] ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
+
+bench( pkg+'::separate-evaluation,in-place', function benchmark( b ) {
+ var x;
+ var y;
+ var i;
+
+ x = uniform( 100, -10.0, 10.0 );
+ y = [ 0.0, 0.0 ];
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ y[0] = sind( x[ i%x.length ] );
+ y[1] = cosd( x[ i%x.length ] );
+ if ( isnan( y[0] ) || isnan( y[1] ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnan( y[0] ) || isnan( y[1] ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/sincosd/benchmark/benchmark.native.js
new file mode 100644
index 000000000000..a0ba3cb5e40e
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/benchmark/benchmark.native.js
@@ -0,0 +1,61 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 isnan = require( '@stdlib/math/base/assert/is-nan' );
+var tryRequire = require( '@stdlib/utils/try-require' );
+var pkg = require( './../package.json' ).name;
+
+
+// VARIABLES //
+
+var sincosd = tryRequire( resolve( __dirname, './../lib/native.js' ) );
+var opts = {
+ 'skip': ( sincosd instanceof Error )
+};
+
+
+// MAIN //
+
+bench( pkg+'::native', opts, function benchmark( b ) {
+ var x;
+ var y;
+ var i;
+
+ x = uniform( 100, -10.0, 10.0 );
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ y = sincosd( x[ i%x.length ] );
+ if ( isnan( y[ 0 ] ) || isnan( y[ 1 ] ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnan( y[ 0 ] ) || isnan( y[ 1 ] ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/sincosd/benchmark/c/native/Makefile
new file mode 100644
index 000000000000..a4bd7b38fd74
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/benchmark/c/native/Makefile
@@ -0,0 +1,146 @@
+#/
+# @license Apache-2.0
+#
+# Copyright (c) 2025 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/sincosd/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/sincosd/benchmark/c/native/benchmark.c
new file mode 100644
index 000000000000..ecdd6d7ef11e
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/benchmark/c/native/benchmark.c
@@ -0,0 +1,134 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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/sincosd.h"
+#include
+#include
+#include
+#include
+#include
+
+#define NAME "sincosd"
+#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 ); // TAP plan
+ printf( "# total %d\n", total );
+ printf( "# pass %d\n", passing );
+ printf( "#\n" );
+ printf( "# ok\n" );
+}
+
+/**
+* Prints benchmarks 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 number on the interval [0,1).
+*
+* @return random number
+*/
+static double rand_double( void ) {
+ int r = rand();
+ return (double)r / ( (double)RAND_MAX + 1.0 );
+}
+
+/**
+* Runs a benchmark.
+*
+* @return elapsed time in seconds
+*/
+static double benchmark( void ) {
+ double elapsed;
+ double cosine;
+ double sine;
+ double x;
+ double t;
+ int i;
+
+ t = tic();
+ for ( i = 0; i < ITERATIONS; i++ ) {
+ x = ( 20.0 * rand_double() ) - 10.0;
+ stdlib_base_sincosd( x, &sine, &cosine );
+ if ( cosine != cosine || sine != sine) {
+ printf( "unexpected results\n" );
+ break;
+ }
+ }
+ elapsed = tic() - t;
+ if ( cosine != cosine || sine != sine) {
+ printf( "unexpected results\n" );
+ }
+ return elapsed;
+}
+
+/**
+* Main execution sequence.
+*/
+int main( void ) {
+ double elapsed;
+ int i;
+
+ // Use the current time to seed the random number generator:
+ 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/sincosd/benchmark/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/sincosd/benchmark/julia/REQUIRE
new file mode 100644
index 000000000000..98645e192e41
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/benchmark/julia/REQUIRE
@@ -0,0 +1,2 @@
+julia 1.5
+BenchmarkTools 0.5.0
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/benchmark/julia/benchmark.jl b/lib/node_modules/@stdlib/math/base/special/sincosd/benchmark/julia/benchmark.jl
new file mode 100755
index 000000000000..5f740d284714
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/benchmark/julia/benchmark.jl
@@ -0,0 +1,144 @@
+#!/usr/bin/env julia
+#
+# @license Apache-2.0
+#
+# Copyright (c) 2025 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 BenchmarkTools
+using Printf
+
+# Benchmark variables:
+name = "sincosd";
+repeats = 3;
+
+"""
+ print_version()
+
+Prints the TAP version.
+
+# Examples
+
+``` julia
+julia> print_version()
+```
+"""
+function print_version()
+ @printf( "TAP version 13\n" );
+end
+
+"""
+ print_summary( total, passing )
+
+Print the benchmark summary.
+
+# Arguments
+
+* `total`: total number of tests
+* `passing`: number of passing tests
+
+# Examples
+
+``` julia
+julia> print_summary( 3, 3 )
+```
+"""
+function print_summary( total, passing )
+ @printf( "#\n" );
+ @printf( "1..%d\n", total ); # TAP plan
+ @printf( "# total %d\n", total );
+ @printf( "# pass %d\n", passing );
+ @printf( "#\n" );
+ @printf( "# ok\n" );
+end
+
+"""
+ print_results( iterations, elapsed )
+
+Print benchmark results.
+
+# Arguments
+
+* `iterations`: number of iterations
+* `elapsed`: elapsed time (in seconds)
+
+# Examples
+
+``` julia
+julia> print_results( 1000000, 0.131009101868 )
+```
+"""
+function print_results( iterations, elapsed )
+ rate = iterations / elapsed
+
+ @printf( " ---\n" );
+ @printf( " iterations: %d\n", iterations );
+ @printf( " elapsed: %0.9f\n", elapsed );
+ @printf( " rate: %0.9f\n", rate );
+ @printf( " ...\n" );
+end
+
+"""
+ benchmark()
+
+Run a benchmark.
+
+# Notes
+
+* Benchmark results are returned as a two-element array: [ iterations, elapsed ].
+* The number of iterations is not the true number of iterations. Instead, an 'iteration' is defined as a 'sample', which is a computed estimate for a single evaluation.
+* The elapsed time is in seconds.
+
+# Examples
+
+``` julia
+julia> out = benchmark();
+```
+"""
+function benchmark()
+ t = BenchmarkTools.@benchmark sincosd( (20.0*rand()) - 10.0 ) samples=1e6
+
+ # Compute the total "elapsed" time and convert from nanoseconds to seconds:
+ s = sum( t.times ) / 1.0e9;
+
+ # Determine the number of "iterations":
+ iter = length( t.times );
+
+ # Return the results:
+ [ iter, s ];
+end
+
+"""
+ main()
+
+Run benchmarks.
+
+# Examples
+
+``` julia
+julia> main();
+```
+"""
+function main()
+ print_version();
+ for i in 1:repeats
+ @printf( "# julia::%s\n", name );
+ results = benchmark();
+ print_results( results[ 1 ], results[ 2 ] );
+ @printf( "ok %d benchmark finished\n", i );
+ end
+ print_summary( repeats, repeats );
+end
+
+main();
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/binding.gyp b/lib/node_modules/@stdlib/math/base/special/sincosd/binding.gyp
new file mode 100644
index 000000000000..68a1ca11d160
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/binding.gyp
@@ -0,0 +1,170 @@
+# @license Apache-2.0
+#
+# Copyright (c) 2025 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/sincosd/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/sincosd/docs/repl.txt
new file mode 100644
index 000000000000..9492bea60775
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/docs/repl.txt
@@ -0,0 +1,59 @@
+
+{{alias}}( x )
+ Simultaneously computes the sine and cosine of an angle measured in degrees.
+
+ 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
+ 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/float64}}( 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/sincosd/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/sincosd/docs/types/index.d.ts
new file mode 100644
index 000000000000..23f81560cd48
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/docs/types/index.d.ts
@@ -0,0 +1,100 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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
+
+///
+
+import { Collection } from '@stdlib/types/array';
+
+interface sincosd {
+ /**
+ * Simultaneously computes the sine and cosine of an angle measured in degrees.
+ *
+ * @param x - input value (in degrees)
+ * @returns sine and cosine
+ *
+ * @example
+ * var v = sincosd( 0.0 );
+ * // returns [ ~0.0, ~1.0 ]
+ *
+ * @example
+ * var v = sincosd( 90.0 );
+ * // returns [ ~1.0, ~0.0 ]
+ *
+ * @example
+ * var v = sincosd( -30.0 );
+ * // returns [ ~-0.5, ~0.866 ]
+ *
+ * @example
+ * var v = sincosd( NaN );
+ * // returns [ NaN, NaN ]
+ */
+ ( x: number ): Array;
+
+ /**
+ * Simultaneously computes the sine and cosine of an angle measured in degrees 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 Float64Array = require( '@stdlib/array/float64' );
+ *
+ * var out = new Float64Array( 2 );
+ *
+ * var v = sincosd.assign( 0.0, out, 1, 0 );
+ * // return [ ~0.0, ~1.0 ]
+ *
+ * var bool = ( v === out );
+ * // returns true
+ */
+ assign( x: number, out: Collection, stride: number, offset: number ): Collection;
+}
+
+/**
+* Simultaneously computes the sine and cosine of an angle measured in degrees.
+*
+* @param x - input value (in degrees)
+* @returns sine and cosine
+*
+* @example
+* var v = sincosd( 0.0 );
+* // returns [ ~0.0, ~1.0 ]
+*
+* @example
+* var v = sincosd( 90.0 );
+* // returns [ ~1.0, ~0.0 ]
+*
+* @example
+* var v = sincosd( -30.0 );
+* // returns [ ~-0.5, ~0.866 ]
+*
+* @example
+* var v = sincosd( NaN );
+* // returns [ NaN, NaN ]
+*/
+declare var sincosd: sincosd;
+
+
+// EXPORTS //
+
+export = sincosd;
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/sincosd/docs/types/test.ts
new file mode 100644
index 000000000000..4909b4bbd365
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/docs/types/test.ts
@@ -0,0 +1,112 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 sincosd = require( './index' );
+
+
+// TESTS //
+
+// The function returns an array of numbers...
+{
+ sincosd( 1.0 ); // $ExpectType number[]
+}
+
+// The compiler throws an error if the function is provided an argument other than a number...
+{
+ sincosd( true ); // $ExpectError
+ sincosd( false ); // $ExpectError
+ sincosd( null ); // $ExpectError
+ sincosd( undefined ); // $ExpectError
+ sincosd( '5' ); // $ExpectError
+ sincosd( [] ); // $ExpectError
+ sincosd( {} ); // $ExpectError
+ sincosd( ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided insufficient arguments...
+{
+ sincosd(); // $ExpectError
+}
+
+// Attached to the main export is an `assign` method which returns an array-like object containing numbers...
+{
+ const out = [ 0.0, 0.0 ];
+
+ sincosd.assign( 3.14e-319, out, 1, 0 ); // $ExpectType Collection
+}
+
+// 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 ];
+
+ sincosd.assign( true, out, 1, 0 ); // $ExpectError
+ sincosd.assign( false, out, 1, 0 ); // $ExpectError
+ sincosd.assign( '5', out, 1, 0 ); // $ExpectError
+ sincosd.assign( null, out, 1, 0 ); // $ExpectError
+ sincosd.assign( [], out, 1, 0 ); // $ExpectError
+ sincosd.assign( {}, out, 1, 0 ); // $ExpectError
+ sincosd.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...
+{
+ sincosd.assign( 1.0, 1, 1, 0 ); // $ExpectError
+ sincosd.assign( 1.0, true, 1, 0 ); // $ExpectError
+ sincosd.assign( 1.0, false, 1, 0 ); // $ExpectError
+ sincosd.assign( 1.0, null, 1, 0 ); // $ExpectError
+ sincosd.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 ];
+
+ sincosd.assign( 1.0, out, '5', 0 ); // $ExpectError
+ sincosd.assign( 1.0, out, true, 0 ); // $ExpectError
+ sincosd.assign( 1.0, out, false, 0 ); // $ExpectError
+ sincosd.assign( 1.0, out, null, 0 ); // $ExpectError
+ sincosd.assign( 1.0, out, [], 0 ); // $ExpectError
+ sincosd.assign( 1.0, out, {}, 0 ); // $ExpectError
+ sincosd.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 ];
+
+ sincosd.assign( 1.0, out, 1, '5' ); // $ExpectError
+ sincosd.assign( 1.0, out, 1, true ); // $ExpectError
+ sincosd.assign( 1.0, out, 1, false ); // $ExpectError
+ sincosd.assign( 1.0, out, 1, null ); // $ExpectError
+ sincosd.assign( 1.0, out, 1, [] ); // $ExpectError
+ sincosd.assign( 1.0, out, 1, {} ); // $ExpectError
+ sincosd.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 ];
+
+ sincosd.assign(); // $ExpectError
+ sincosd.assign( 1.0 ); // $ExpectError
+ sincosd.assign( 1.0, out ); // $ExpectError
+ sincosd.assign( 1.0, out, 1 ); // $ExpectError
+ sincosd.assign( 1.0, out, 1, 0, 1 ); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/sincosd/examples/c/Makefile
new file mode 100644
index 000000000000..25ced822f96a
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/examples/c/Makefile
@@ -0,0 +1,146 @@
+#/
+# @license Apache-2.0
+#
+# Copyright (c) 2025 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/sincosd/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/sincosd/examples/c/example.c
new file mode 100644
index 000000000000..ef618c83dc97
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/examples/c/example.c
@@ -0,0 +1,32 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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/sincosd.h"
+#include
+
+int main( void ) {
+ const double x[] = { 0.0, 90.0, 180.0, 360.0 };
+
+ double cosine;
+ double sine;
+ int i;
+ for ( i = 0; i < 4; i++ ) {
+ stdlib_base_sincosd( x[ i ], &sine, &cosine );
+ printf( "x: %lf => sine: %lf, cosine: %lf\n", x[ i ], sine, cosine );
+ }
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/examples/index.js b/lib/node_modules/@stdlib/math/base/special/sincosd/examples/index.js
new file mode 100644
index 000000000000..bb3e5ea1b841
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/examples/index.js
@@ -0,0 +1,31 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 linspace = require( '@stdlib/array/base/linspace' );
+var sincosd = require( './../lib' );
+
+var x = linspace( 0.0, 180.0, 100 );
+
+var y;
+var i;
+for ( i = 0; i < x.length; i++ ) {
+ y = sincosd( x[ i ] );
+ console.log( 'sincosd(%d) = [ %d, %d ]', x[ i ], y[ 0 ], y[ 1 ] );
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/include.gypi b/lib/node_modules/@stdlib/math/base/special/sincosd/include.gypi
new file mode 100644
index 000000000000..ecfaf82a3279
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/include.gypi
@@ -0,0 +1,53 @@
+# @license Apache-2.0
+#
+# Copyright (c) 2025 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/sincosd/lib/main.js b/lib/node_modules/@stdlib/math/base/special/sincosd/lib/main.js
new file mode 100644
index 000000000000..9adade9a2e6f
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/lib/main.js
@@ -0,0 +1,57 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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.
+*
+* @param {number} x - input value (in degrees)
+* @returns {Array} sine and cosine
+*
+* @example
+* var v = sincosd( 0.0 );
+* // returns [ ~0.0, ~1.0 ]
+*
+* @example
+* var v = sincosd( 90.0 );
+* // returns [ ~1.0, ~0.0 ]
+*
+* @example
+* var v = sincosd( -30.0 );
+* // returns [ ~-0.5, ~0.866 ]
+*
+* @example
+* var v = sincosd( NaN );
+* // returns [ NaN, NaN ]
+*/
+function sincosd( x ) {
+ return assign( x, [ 0.0, 0.0 ], 1, 0 );
+}
+
+
+// EXPORTS //
+
+module.exports = sincosd;
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/lib/native.js b/lib/node_modules/@stdlib/math/base/special/sincosd/lib/native.js
new file mode 100644
index 000000000000..f258d7c6c6c4
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/lib/native.js
@@ -0,0 +1,61 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 Float64Array = require( '@stdlib/array/float64' );
+var addon = require( './../src/addon.node' );
+
+
+// MAIN //
+
+/**
+* Simultaneously computes the sine and cosine of an angle measured in degrees.
+*
+* @private
+* @param {number} x - input value (in degrees)
+* @returns {Array} sine and cosine
+*
+* @example
+* var v = sincosd( 0.0 );
+* // returns [ ~0.0, ~1.0 ]
+*
+* @example
+* var v = sincosd( 90.0 );
+* // returns [ ~1.0, ~0.0 ]
+*
+* @example
+* var v = sincosd( -30.0 );
+* // returns [ ~-0.5, ~0.866 ]
+*
+* @example
+* var v = sincosd( NaN );
+* // returns [ NaN, NaN ]
+*/
+function sincosd( x ) {
+ var out = new Float64Array( 2 );
+ addon( x, out );
+ return out;
+}
+
+
+// EXPORTS //
+
+module.exports = sincosd;
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/manifest.json b/lib/node_modules/@stdlib/math/base/special/sincosd/manifest.json
new file mode 100644
index 000000000000..4c596c446352
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/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-double",
+ "@stdlib/napi/argv-float64array",
+ "@stdlib/napi/export",
+ "@stdlib/math/base/special/sind",
+ "@stdlib/math/base/special/cosd"
+ ]
+ },
+ {
+ "task": "benchmark",
+ "src": [
+ "./src/main.c"
+ ],
+ "include": [
+ "./include"
+ ],
+ "libraries": [],
+ "libpath": [],
+ "dependencies": [
+ "@stdlib/math/base/special/sind",
+ "@stdlib/math/base/special/cosd"
+ ]
+ },
+ {
+ "task": "examples",
+ "src": [
+ "./src/main.c"
+ ],
+ "include": [
+ "./include"
+ ],
+ "libraries": [],
+ "libpath": [],
+ "dependencies": [
+ "@stdlib/math/base/special/sind",
+ "@stdlib/math/base/special/cosd"
+ ]
+ }
+ ]
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/package.json b/lib/node_modules/@stdlib/math/base/special/sincosd/package.json
new file mode 100644
index 000000000000..86debf29e89e
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/package.json
@@ -0,0 +1,71 @@
+{
+ "name": "@stdlib/math/base/special/sincosd",
+ "version": "0.0.0",
+ "description": "Simultaneously compute the sine and cosine of an angle measured in degrees.",
+ "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",
+ "sincosd",
+ "sine",
+ "cosine",
+ "trig",
+ "trigonometry",
+ "radians",
+ "angle"
+ ]
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/src/Makefile b/lib/node_modules/@stdlib/math/base/special/sincosd/src/Makefile
new file mode 100644
index 000000000000..7733b6180cb4
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/src/Makefile
@@ -0,0 +1,70 @@
+#/
+# @license Apache-2.0
+#
+# Copyright (c) 2025 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/sincosd/src/addon.c b/lib/node_modules/@stdlib/math/base/special/sincosd/src/addon.c
new file mode 100644
index 000000000000..a1ddc34a19ba
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/src/addon.c
@@ -0,0 +1,41 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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/sincosd.h"
+#include "stdlib/napi/argv.h"
+#include "stdlib/napi/argv_double.h"
+#include "stdlib/napi/argv_float64array.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_DOUBLE( env, x, argv, 0 );
+ STDLIB_NAPI_ARGV_FLOAT64ARRAY( env, y, ylen, argv, 1 );
+ stdlib_base_sincosd( x, &y[ 0 ], &y[ 1 ] );
+ return NULL;
+}
+
+STDLIB_NAPI_MODULE_EXPORT_FCN( addon )
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/src/main.c b/lib/node_modules/@stdlib/math/base/special/sincosd/src/main.c
new file mode 100644
index 000000000000..8dd3e3e1361c
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/src/main.c
@@ -0,0 +1,41 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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/sincosd.h"
+#include "stdlib/math/base/special/sind.h"
+#include "stdlib/math/base/special/cosd.h"
+
+/**
+* Simultaneously computes the sine and cosine of an angle measured in degrees.
+*
+* @param x input value (in degrees)
+* @param sine destination to store the sine
+* @param cosine destination to store the cosine
+*
+* @example
+* double x = 0.0;
+*
+* double cosine;
+* double sine;
+* stdlib_base_sincosd( x, &sine, &cosine );
+*/
+void stdlib_base_sincosd( const double x, double* sine, double* cosine ) {
+ *sine = stdlib_base_sind( x );
+ *cosine = stdlib_base_cosd( x );
+ return;
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/REQUIRE
new file mode 100644
index 000000000000..308c3be89c85
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/REQUIRE
@@ -0,0 +1,2 @@
+julia 1.5
+JSON 0.21
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/huge_negative.json b/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/huge_negative.json
new file mode 100644
index 000000000000..be5c35ff7ff3
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/huge_negative.json
@@ -0,0 +1 @@
+{"sine":[-0.0,0.3420201433256687,-0.6427876096865394,-0.13917310096006544,-0.984807753012208,-0.7431448254773942,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,-0.898794046299167,0.20791169081775934,0.46947156278589075,0.6946583704589973,0.13917310096006544,-0.13917310096006544,-0.6946583704589973,-0.46947156278589075,0.984807753012208,0.898794046299167,0.7431448254773942,-0.984807753012208,-0.9945218953682733,0.6946583704589973,0.8660254037844386,-0.13917310096006544,-0.4067366430758002,-0.6427876096865394,-0.20791169081775934,0.0697564737441253,0.7431448254773942,-0.984807753012208,-0.9945218953682733,-0.9271838545667874,-0.788010753606722,-0.5877852522924731,-0.4067366430758002,-0.6427876096865394,-0.8290375725550417,-0.9510565162951535,-0.9993908270190958,0.5299192642332049,0.27563735581699916,-0.0,-0.27563735581699916,0.9702957262759965,0.9993908270190958,0.9510565162951535,0.8290375725550417,0.6427876096865394,0.3420201433256687,0.5877852522924731,0.788010753606722,0.9271838545667874,0.9945218953682733,-0.5877852522924731,-0.3420201433256687,-0.0697564737441253,0.20791169081775934,0.46947156278589075,-0.9993908270190958,-0.9702957262759965,-0.8660254037844386,-0.6946583704589973,-0.27563735581699916,-0.5299192642332049,-0.7431448254773942,-0.898794046299167,-0.984807753012208,0.6427876096865394,0.4067366430758002,0.13917310096006544,-0.13917310096006544,-0.4067366430758002,0.9945218953682733,0.984807753012208,-0.3420201433256687,0.7431448254773942,0.20791169081775934,0.27563735581699916,0.6946583704589973,-0.9702957262759965,0.9702957262759965,-0.6946583704589973,0.9510565162951535,-0.20791169081775934,-0.7431448254773942,0.3420201433256687,-0.984807753012208,0.788010753606722,-0.9271838545667874,0.13917310096006544,-0.5877852522924731,-0.4067366430758002,-0.0697564737441253,-0.8290375725550417,0.898794046299167,-0.9993908270190958,0.5299192642332049,-0.8660254037844386,-0.0,0.8660254037844386,-0.5299192642332049,0.9993908270190958,-0.46947156278589075,0.8290375725550417,0.0697564737441253,0.4067366430758002,0.5877852522924731,-0.9945218953682733,0.9271838545667874,-0.788010753606722,0.984807753012208,-0.3420201433256687,-0.6427876096865394,0.20791169081775934,-0.9510565162951535,0.6946583704589973,-0.9702957262759965,0.27563735581699916,-0.6946583704589973,-0.27563735581699916,-0.20791169081775934,-0.7431448254773942,0.9510565162951535,-0.984807753012208,0.6427876096865394,-0.9271838545667874,0.13917310096006544,0.788010753606722,-0.4067366430758002,0.9945218953682733,-0.8290375725550417,0.898794046299167,-0.0697564737441253,0.5299192642332049,0.46947156278589075,-0.9993908270190958,0.8660254037844386,-0.8660254037844386,0.9993908270190958,-0.46947156278589075,-0.5299192642332049,0.0697564737441253,-0.898794046299167,0.5877852522924731,-0.9945218953682733,0.4067366430758002,-0.788010753606722,-0.13917310096006544,-0.3420201433256687,-0.6427876096865394,0.984807753012208,-0.9510565162951535,0.7431448254773942,-0.9702957262759965,0.27563735581699916,0.6946583704589973,-0.27563735581699916,0.9702957262759965,-0.7431448254773942,0.9510565162951535,-0.20791169081775934,0.6427876096865394,0.3420201433256687,0.13917310096006544,0.6427876096865394,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,0.898794046299167,-0.9993908270190958,0.8660254037844386,0.46947156278589075,-0.0,-0.46947156278589075,0.8290375725550417,0.9993908270190958,-0.898794046299167,0.5877852522924731,0.0697564737441253,0.4067366430758002,-0.788010753606722,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,-0.13917310096006544,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,-0.9510565162951535,0.6946583704589973,-0.27563735581699916,0.27563735581699916,-0.6946583704589973,0.9510565162951535,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.13917310096006544,0.6427876096865394,-0.9271838545667874,0.9945218953682733,0.788010753606722,-0.4067366430758002,-0.0697564737441253,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.8660254037844386,0.46947156278589075,-0.0,-0.46947156278589075,-0.8660254037844386,0.9993908270190958,-0.898794046299167,-0.5299192642332049,0.0697564737441253,0.4067366430758002,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,-0.13917310096006544,-0.3420201433256687,0.7431448254773942,0.984807753012208,-0.9510565162951535,0.6946583704589973,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9510565162951535,0.9702957262759965,-0.7431448254773942,0.3420201433256687,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.0697564737441253,-0.5877852522924731,0.898794046299167,-0.9993908270190958,-0.8290375725550417,0.46947156278589075,-0.0,0.5299192642332049,-0.8660254037844386,0.9993908270190958,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.4067366430758002,0.8290375725550417,-0.9945218953682733,0.9271838545667874,0.5877852522924731,-0.13917310096006544,-0.3420201433256687,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.6946583704589973,0.20791169081775934,0.27563735581699916,-0.6946583704589973,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,-0.984807753012208,0.788010753606722,-0.4067366430758002,0.13917310096006544,-0.5877852522924731,0.898794046299167,0.9945218953682733,-0.8290375725550417,0.46947156278589075,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9993908270190958,0.8660254037844386,-0.5299192642332049,0.0697564737441253,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,-0.898794046299167,0.5877852522924731,-0.13917310096006544,-0.3420201433256687,-0.788010753606722,0.984807753012208,-0.9510565162951535,-0.6427876096865394,0.20791169081775934,0.27563735581699916,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,0.9510565162951535,-0.984807753012208,0.788010753606722,0.3420201433256687,0.13917310096006544,-0.5877852522924731,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,0.46947156278589075,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,-0.9993908270190958,0.8660254037844386,-0.5299192642332049,-0.0,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,-0.898794046299167,0.5877852522924731,-0.13917310096006544,0.4067366430758002,-0.788010753606722,0.984807753012208,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.984807753012208,-0.9510565162951535,0.6946583704589973,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9993908270190958,-0.8290375725550417,0.46947156278589075,-0.0,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.5299192642332049,0.0697564737441253,0.4067366430758002,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.5877852522924731,-0.13917310096006544,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9510565162951535,-0.984807753012208,0.788010753606722,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,0.46947156278589075,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9993908270190958,-0.898794046299167,0.5877852522924731,-0.13917310096006544,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.6946583704589973,-0.27563735581699916,-0.20791169081775934,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.9510565162951535,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9945218953682733,-0.8290375725550417,0.46947156278589075,-0.0,-0.46947156278589075,0.8290375725550417,-0.9993908270190958,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.4067366430758002,-0.788010753606722,0.984807753012208,-0.898794046299167,0.5877852522924731,-0.13917310096006544,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9510565162951535,-0.984807753012208,0.6946583704589973,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9993908270190958,-0.898794046299167,0.5877852522924731,-0.0,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,0.0697564737441253,0.4067366430758002,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.6946583704589973,-0.27563735581699916,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.6946583704589973,0.9510565162951535,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.0697564737441253,0.6427876096865394,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,0.46947156278589075,-0.0,-0.46947156278589075,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.4067366430758002,-0.8660254037844386,0.9993908270190958,-0.898794046299167,0.5877852522924731,-0.13917310096006544,-0.3420201433256687,0.7431448254773942,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9510565162951535,-0.9510565162951535,0.6946583704589973,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.788010753606722,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9993908270190958,-0.8290375725550417,0.46947156278589075,-0.0,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.5299192642332049,0.0697564737441253,0.4067366430758002,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.6946583704589973,-0.13917310096006544,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9510565162951535,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,0.46947156278589075,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9993908270190958,-0.898794046299167,0.5877852522924731,-0.13917310096006544,-0.3420201433256687,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.6946583704589973,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.9510565162951535,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9945218953682733,-0.8290375725550417,0.46947156278589075,-0.0,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.4067366430758002,-0.788010753606722,0.984807753012208,-0.898794046299167,0.5877852522924731,-0.13917310096006544,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9510565162951535,-0.984807753012208,0.6946583704589973,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9993908270190958,-0.898794046299167,0.5877852522924731,-0.0,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.4067366430758002,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.6946583704589973,-0.27563735581699916,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.6946583704589973,0.9510565162951535,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9993908270190958,-0.898794046299167,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.4067366430758002,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.6946583704589973,-0.0,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9510565162951535,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.6427876096865394,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,0.46947156278589075,-0.0,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9993908270190958,-0.898794046299167,0.5877852522924731,-0.13917310096006544,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9510565162951535,0.6946583704589973,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,0.46947156278589075,-0.0,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.788010753606722,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9993908270190958,-0.898794046299167,0.5877852522924731,-0.13917310096006544,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.5299192642332049,0.0697564737441253,0.4067366430758002,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.6946583704589973,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9510565162951535,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9993908270190958,-0.898794046299167,0.5877852522924731,-0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.4067366430758002,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.6946583704589973,-0.27563735581699916,-0.20791169081775934,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9510565162951535,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.4067366430758002,-0.788010753606722,0.9945218953682733,-0.8290375725550417,0.46947156278589075,-0.0,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9510565162951535,-0.898794046299167,0.5877852522924731,-0.13917310096006544,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,0.46947156278589075,-0.0,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9993908270190958,-0.898794046299167,0.5877852522924731,-0.13917310096006544,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.4067366430758002,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.6946583704589973,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,0.46947156278589075,-0.0,-0.6946583704589973,0.9510565162951535,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9993908270190958,-0.898794046299167,0.5877852522924731,-0.13917310096006544,-0.3420201433256687,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.4067366430758002,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.6946583704589973,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9510565162951535,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9993908270190958,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.4067366430758002,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.46947156278589075,-0.0,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9510565162951535,-0.984807753012208,0.788010753606722,-0.13917310096006544,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.5299192642332049,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,0.46947156278589075,-0.0,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.8660254037844386,0.9993908270190958,-0.898794046299167,0.5877852522924731,-0.13917310096006544,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.984807753012208,-0.9510565162951535,0.6946583704589973,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,0.46947156278589075,-0.0,-0.46947156278589075,0.8290375725550417,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9993908270190958,-0.898794046299167,0.5877852522924731,-0.13917310096006544,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.4067366430758002,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.6946583704589973,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,0.9945218953682733,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9510565162951535,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9993908270190958,-0.898794046299167,0.5877852522924731,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.4067366430758002,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.6946583704589973,-0.27563735581699916,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9510565162951535,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.0697564737441253,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.4067366430758002,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,0.46947156278589075,-0.0,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9993908270190958,-0.898794046299167,0.5877852522924731,-0.13917310096006544,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.6946583704589973,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,0.46947156278589075,-0.0,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9993908270190958,-0.898794046299167,0.5877852522924731,-0.13917310096006544,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,0.0697564737441253,0.4067366430758002,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.6946583704589973,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,0.46947156278589075,0.27563735581699916,-0.6946583704589973,0.9510565162951535,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9993908270190958,-0.898794046299167,0.5877852522924731,-0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.4067366430758002,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.6946583704589973,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9510565162951535,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.4067366430758002,-0.788010753606722,0.984807753012208,-0.8290375725550417,0.46947156278589075,-0.0,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9510565162951535,-0.984807753012208,0.5877852522924731,-0.13917310096006544,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,0.46947156278589075,-0.0,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.5299192642332049,-0.8660254037844386,0.9993908270190958,-0.898794046299167,0.5877852522924731,-0.13917310096006544,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.6946583704589973,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,0.46947156278589075,-0.0,-0.46947156278589075,0.9510565162951535,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9993908270190958,-0.898794046299167,0.5877852522924731,-0.13917310096006544,-0.3420201433256687,0.7431448254773942,-0.9993908270190958,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.4067366430758002,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.6946583704589973,-0.27563735581699916,-0.20791169081775934,0.6427876096865394,-0.9271838545667874,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9510565162951535,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.0697564737441253,0.5299192642332049,-0.8660254037844386,0.9993908270190958,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.4067366430758002,-0.788010753606722,0.984807753012208,-0.9510565162951535,0.6946583704589973,-0.0,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.6946583704589973,0.9510565162951535,-0.984807753012208,0.788010753606722,-0.4067366430758002,-0.3420201433256687,0.7431448254773942,-0.9702957262759965,0.9702957262759965,-0.7431448254773942,0.3420201433256687,0.13917310096006544,-0.5877852522924731,0.898794046299167,-0.9993908270190958,0.8660254037844386,-0.5299192642332049,0.0697564737441253,0.6427876096865394,-0.9271838545667874,0.9945218953682733,-0.8290375725550417,0.46947156278589075,-0.0,-0.46947156278589075,0.8290375725550417,-0.9945218953682733,0.9271838545667874,-0.6427876096865394,0.20791169081775934,0.27563735581699916,-0.8660254037844386,0.9993908270190958,-0.898794046299167,0.5877852522924731,-0.4067366430758002,-0.3420201433256687,0.5299192642332049,-0.9702957262759965,0.8660254037844386,-0.7431448254773942,0.0697564737441253,0.13917310096006544,-0.788010753606722,0.898794046299167,-0.9510565162951535,0.8660254037844386,-0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.788010753606722,0.9945218953682733,-0.6427876096865394,0.46947156278589075,0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.9945218953682733,0.788010753606722,-0.6427876096865394,-0.0697564737441253,0.27563735581699916,-0.8660254037844386,0.9510565162951535,-0.898794046299167,0.3420201433256687,-0.13917310096006544,-0.5877852522924731,0.7431448254773942,-0.9993908270190958,0.9702957262759965,-0.5299192642332049,0.3420201433256687,0.4067366430758002,-0.5877852522924731,0.984807753012208,-0.9993908270190958,0.6946583704589973,-0.0,-0.20791169081775934,0.8290375725550417,-0.9271838545667874,0.9271838545667874,-0.8290375725550417,0.20791169081775934,-0.0,-0.6946583704589973,0.8290375725550417,-0.984807753012208,0.9271838545667874,-0.4067366430758002,-0.3420201433256687,0.5299192642332049,-0.9702957262759965,0.9993908270190958,-0.7431448254773942,0.5877852522924731,0.13917310096006544,-0.3420201433256687,0.898794046299167,-0.9702957262759965,0.8660254037844386,-0.7431448254773942,0.0697564737441253,0.6427876096865394,-0.788010753606722,0.9945218953682733,-0.9510565162951535,0.46947156278589075,-0.27563735581699916,-0.46947156278589075,0.6427876096865394,-0.9945218953682733,0.9945218953682733,-0.6427876096865394,0.46947156278589075,0.27563735581699916,-0.8660254037844386,0.9510565162951535,-0.898794046299167,0.788010753606722,-0.13917310096006544,-0.0697564737441253,0.7431448254773942,-0.8660254037844386,0.9702957262759965,-0.898794046299167,0.3420201433256687,-0.13917310096006544,-0.5877852522924731,0.984807753012208,-0.9993908270190958,0.6946583704589973,-0.5299192642332049,-0.20791169081775934,0.4067366430758002,-0.9271838545667874,0.984807753012208,-0.8290375725550417,0.6946583704589973,-0.0,-0.20791169081775934,0.8290375725550417,-0.984807753012208,0.9271838545667874,-0.4067366430758002,0.20791169081775934,0.5299192642332049,-0.6946583704589973,0.9993908270190958,-0.984807753012208,0.5877852522924731,-0.4067366430758002,-0.3420201433256687,0.5299192642332049,-0.9702957262759965,0.9993908270190958,-0.7431448254773942,0.0697564737441253,0.13917310096006544,-0.788010753606722,0.898794046299167,-0.9510565162951535,0.8660254037844386,-0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.788010753606722,0.9945218953682733,-0.9510565162951535,0.46947156278589075,0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.9945218953682733,0.788010753606722,-0.6427876096865394,-0.0697564737441253,0.27563735581699916,-0.8660254037844386,0.9510565162951535,-0.898794046299167,0.788010753606722,-0.13917310096006544,-0.5877852522924731,0.7431448254773942,-0.9993908270190958,0.9702957262759965,-0.5299192642332049,0.3420201433256687,0.4067366430758002,-0.5877852522924731,0.984807753012208,-0.9993908270190958,0.6946583704589973,-0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.9271838545667874,0.9271838545667874,-0.8290375725550417,0.20791169081775934,-0.0,-0.6946583704589973,0.8290375725550417,-0.984807753012208,0.9271838545667874,-0.4067366430758002,0.20791169081775934,0.5299192642332049,-0.9702957262759965,0.9993908270190958,-0.7431448254773942,0.5877852522924731,0.13917310096006544,-0.3420201433256687,0.898794046299167,-0.9702957262759965,0.8660254037844386,-0.7431448254773942,0.0697564737441253,0.13917310096006544,-0.788010753606722,0.9945218953682733,-0.9510565162951535,0.46947156278589075,-0.27563735581699916,-0.46947156278589075,0.6427876096865394,-0.9945218953682733,0.9945218953682733,-0.6427876096865394,0.46947156278589075,0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.898794046299167,0.788010753606722,-0.13917310096006544,-0.0697564737441253,0.7431448254773942,-0.8660254037844386,0.9702957262759965,-0.898794046299167,0.3420201433256687,-0.13917310096006544,-0.5877852522924731,0.7431448254773942,-0.9993908270190958,0.6946583704589973,-0.5299192642332049,-0.20791169081775934,0.4067366430758002,-0.9271838545667874,0.984807753012208,-0.8290375725550417,0.6946583704589973,-0.0,-0.20791169081775934,0.8290375725550417,-0.9271838545667874,0.9271838545667874,-0.4067366430758002,0.20791169081775934,0.5299192642332049,-0.6946583704589973,0.9993908270190958,-0.984807753012208,0.5877852522924731,-0.4067366430758002,-0.3420201433256687,0.5299192642332049,-0.9702957262759965,0.9993908270190958,-0.7431448254773942,0.0697564737441253,0.13917310096006544,-0.788010753606722,0.898794046299167,-0.9510565162951535,0.8660254037844386,-0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.788010753606722,0.9945218953682733,-0.9510565162951535,0.46947156278589075,-0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.9945218953682733,0.788010753606722,-0.6427876096865394,-0.0697564737441253,0.27563735581699916,-0.8660254037844386,0.9510565162951535,-0.898794046299167,0.788010753606722,-0.13917310096006544,-0.0697564737441253,0.7431448254773942,-0.9993908270190958,0.9702957262759965,-0.5299192642332049,0.3420201433256687,0.4067366430758002,-0.5877852522924731,0.984807753012208,-0.9993908270190958,0.6946583704589973,-0.5299192642332049,-0.20791169081775934,0.4067366430758002,-0.9271838545667874,0.9271838545667874,-0.8290375725550417,0.20791169081775934,-0.0,-0.6946583704589973,0.8290375725550417,-0.984807753012208,0.9271838545667874,-0.4067366430758002,0.20791169081775934,0.5299192642332049,-0.6946583704589973,0.9993908270190958,-0.7431448254773942,0.5877852522924731,0.13917310096006544,-0.3420201433256687,0.898794046299167,-0.9702957262759965,0.8660254037844386,-0.7431448254773942,0.0697564737441253,0.13917310096006544,-0.788010753606722,0.898794046299167,-0.9510565162951535,0.46947156278589075,-0.27563735581699916,-0.46947156278589075,0.6427876096865394,-0.9945218953682733,0.9945218953682733,-0.6427876096865394,0.46947156278589075,0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.9945218953682733,0.788010753606722,-0.13917310096006544,-0.0697564737441253,0.7431448254773942,-0.8660254037844386,0.9702957262759965,-0.898794046299167,0.3420201433256687,-0.13917310096006544,-0.5877852522924731,0.7431448254773942,-0.9993908270190958,0.9702957262759965,-0.5299192642332049,-0.20791169081775934,0.4067366430758002,-0.9271838545667874,0.984807753012208,-0.8290375725550417,0.6946583704589973,-0.0,-0.20791169081775934,0.8290375725550417,-0.9271838545667874,0.9271838545667874,-0.8290375725550417,0.20791169081775934,0.5299192642332049,-0.6946583704589973,0.9993908270190958,-0.984807753012208,0.5877852522924731,-0.4067366430758002,-0.3420201433256687,0.5299192642332049,-0.9702957262759965,0.9993908270190958,-0.7431448254773942,0.5877852522924731,0.13917310096006544,-0.788010753606722,0.898794046299167,-0.9510565162951535,0.8660254037844386,-0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.788010753606722,0.9945218953682733,-0.9510565162951535,0.46947156278589075,-0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.9945218953682733,0.788010753606722,-0.6427876096865394,-0.0697564737441253,0.27563735581699916,-0.8660254037844386,0.9510565162951535,-0.898794046299167,0.788010753606722,-0.13917310096006544,-0.0697564737441253,0.7431448254773942,-0.8660254037844386,0.9702957262759965,-0.5299192642332049,0.3420201433256687,0.4067366430758002,-0.5877852522924731,0.984807753012208,-0.9993908270190958,0.6946583704589973,-0.5299192642332049,-0.20791169081775934,0.4067366430758002,-0.9271838545667874,0.984807753012208,-0.8290375725550417,0.20791169081775934,-0.0,-0.6946583704589973,0.8290375725550417,-0.984807753012208,0.9271838545667874,-0.4067366430758002,0.20791169081775934,0.5299192642332049,-0.6946583704589973,0.9993908270190958,-0.984807753012208,0.5877852522924731,0.13917310096006544,-0.3420201433256687,0.898794046299167,-0.9702957262759965,0.8660254037844386,-0.7431448254773942,0.0697564737441253,0.13917310096006544,-0.788010753606722,0.898794046299167,-0.9510565162951535,0.8660254037844386,-0.27563735581699916,-0.46947156278589075,0.6427876096865394,-0.9945218953682733,0.9945218953682733,-0.6427876096865394,0.46947156278589075,0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.9945218953682733,0.788010753606722,-0.6427876096865394,-0.0697564737441253,0.7431448254773942,-0.8660254037844386,0.9702957262759965,-0.898794046299167,0.3420201433256687,-0.13917310096006544,-0.5877852522924731,0.7431448254773942,-0.9993908270190958,0.9702957262759965,-0.5299192642332049,0.3420201433256687,0.4067366430758002,-0.9271838545667874,0.984807753012208,-0.8290375725550417,0.6946583704589973,-0.0,-0.20791169081775934,0.8290375725550417,-0.9271838545667874,0.9271838545667874,-0.8290375725550417,0.20791169081775934,-0.0,-0.6946583704589973,0.9993908270190958,-0.984807753012208,0.5877852522924731,-0.4067366430758002,-0.3420201433256687,0.5299192642332049,-0.9702957262759965,0.9993908270190958,-0.7431448254773942,0.5877852522924731,0.13917310096006544,-0.3420201433256687,0.898794046299167,-0.9510565162951535,0.8660254037844386,-0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.788010753606722,0.9945218953682733,-0.9510565162951535,0.46947156278589075,-0.27563735581699916,-0.46947156278589075,0.6427876096865394,-0.9945218953682733,0.788010753606722,-0.6427876096865394,-0.0697564737441253,0.27563735581699916,-0.8660254037844386,0.9510565162951535,-0.898794046299167,0.788010753606722,-0.13917310096006544,-0.0697564737441253,0.7431448254773942,-0.8660254037844386,0.9702957262759965,-0.5299192642332049,0.3420201433256687,0.4067366430758002,-0.5877852522924731,0.984807753012208,-0.9993908270190958,0.6946583704589973,-0.5299192642332049,-0.20791169081775934,0.4067366430758002,-0.9271838545667874,0.984807753012208,-0.8290375725550417,0.6946583704589973,-0.0,-0.6946583704589973,0.8290375725550417,-0.984807753012208,0.9271838545667874,-0.4067366430758002,0.20791169081775934,0.5299192642332049,-0.6946583704589973,0.9993908270190958,-0.984807753012208,0.5877852522924731,-0.4067366430758002,-0.3420201433256687,0.898794046299167,-0.9702957262759965,0.8660254037844386,-0.7431448254773942,0.0697564737441253,0.13917310096006544,-0.788010753606722,0.898794046299167,-0.9510565162951535,0.8660254037844386,-0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.9945218953682733,0.9945218953682733,-0.6427876096865394,0.46947156278589075,0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.9945218953682733,0.788010753606722,-0.6427876096865394,-0.0697564737441253,0.27563735581699916,-0.8660254037844386,0.9702957262759965,-0.898794046299167,0.3420201433256687,-0.13917310096006544,-0.5877852522924731,0.7431448254773942,-0.9993908270190958,0.9702957262759965,-0.5299192642332049,0.3420201433256687,0.4067366430758002,-0.5877852522924731,0.984807753012208,-0.8290375725550417,0.6946583704589973,-0.0,-0.20791169081775934,0.8290375725550417,-0.9271838545667874,0.9271838545667874,-0.8290375725550417,0.20791169081775934,-0.0,-0.6946583704589973,0.8290375725550417,-0.984807753012208,0.5877852522924731,-0.4067366430758002,-0.3420201433256687,0.5299192642332049,-0.9702957262759965,0.9993908270190958,-0.7431448254773942,0.5877852522924731,0.13917310096006544,-0.3420201433256687,0.898794046299167,-0.9702957262759965,0.8660254037844386,-0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.788010753606722,0.9945218953682733,-0.9510565162951535,0.46947156278589075,-0.27563735581699916,-0.46947156278589075,0.6427876096865394,-0.9945218953682733,0.9945218953682733,-0.6427876096865394,-0.0697564737441253,0.27563735581699916,-0.8660254037844386,0.9510565162951535,-0.898794046299167,0.788010753606722,-0.13917310096006544,-0.0697564737441253,0.7431448254773942,-0.8660254037844386,0.9702957262759965,-0.898794046299167,0.3420201433256687,0.4067366430758002,-0.5877852522924731,0.984807753012208,-0.9993908270190958,0.6946583704589973,-0.5299192642332049,-0.20791169081775934,0.4067366430758002,-0.9271838545667874,0.984807753012208,-0.8290375725550417,0.6946583704589973,-0.0,-0.6946583704589973,0.8290375725550417,-0.984807753012208,0.9271838545667874,-0.4067366430758002,0.20791169081775934,0.5299192642332049,-0.6946583704589973,0.9993908270190958,-0.984807753012208,0.5877852522924731,-0.4067366430758002,-0.3420201433256687,0.5299192642332049,-0.9702957262759965,0.8660254037844386,-0.7431448254773942,0.0697564737441253,0.13917310096006544,-0.788010753606722,0.898794046299167,-0.9510565162951535,0.8660254037844386,-0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.788010753606722,0.9945218953682733,-0.6427876096865394,0.46947156278589075,0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.9945218953682733,0.788010753606722,-0.6427876096865394,-0.0697564737441253,0.27563735581699916,-0.8660254037844386,0.9510565162951535,-0.898794046299167,0.3420201433256687,-0.13917310096006544,-0.5877852522924731,0.7431448254773942,-0.9993908270190958,0.9702957262759965,-0.5299192642332049,0.3420201433256687,0.4067366430758002,-0.5877852522924731,0.984807753012208,-0.9993908270190958,0.6946583704589973,-0.0,-0.20791169081775934,0.8290375725550417,-0.9271838545667874,0.9271838545667874,-0.8290375725550417,0.20791169081775934,-0.0,-0.6946583704589973,0.8290375725550417,-0.984807753012208,0.9271838545667874,-0.4067366430758002,-0.3420201433256687,0.5299192642332049,-0.9702957262759965,0.9993908270190958,-0.7431448254773942,0.5877852522924731,0.13917310096006544,-0.3420201433256687,0.898794046299167,-0.9702957262759965,0.8660254037844386,-0.7431448254773942,0.0697564737441253,0.6427876096865394,-0.788010753606722,0.9945218953682733,-0.9510565162951535,0.46947156278589075,-0.27563735581699916,-0.46947156278589075,0.6427876096865394,-0.9945218953682733,0.9945218953682733,-0.6427876096865394,0.46947156278589075,0.27563735581699916,-0.8660254037844386,0.9510565162951535,-0.898794046299167,0.788010753606722,-0.13917310096006544,-0.0697564737441253,0.7431448254773942,-0.8660254037844386,0.9702957262759965,-0.898794046299167,0.3420201433256687,-0.13917310096006544,-0.5877852522924731,0.984807753012208,-0.9993908270190958,0.6946583704589973,-0.5299192642332049,-0.20791169081775934,0.4067366430758002,-0.9271838545667874,0.984807753012208,-0.8290375725550417,0.6946583704589973,-0.0,-0.20791169081775934,0.8290375725550417,-0.984807753012208,0.9271838545667874,-0.4067366430758002,0.20791169081775934,0.5299192642332049,-0.6946583704589973,0.9993908270190958,-0.984807753012208,0.5877852522924731,-0.4067366430758002,-0.3420201433256687,0.5299192642332049,-0.9702957262759965,0.8660254037844386,-0.7431448254773942,0.0697564737441253,0.13917310096006544,-0.788010753606722,0.898794046299167,-0.9510565162951535,0.8660254037844386,-0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.788010753606722,0.9945218953682733,-0.9510565162951535,0.46947156278589075,0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.9945218953682733,0.788010753606722,-0.6427876096865394,-0.0697564737441253,0.27563735581699916,-0.8660254037844386,0.9510565162951535,-0.898794046299167,0.788010753606722,-0.13917310096006544,-0.5877852522924731,0.7431448254773942,-0.9993908270190958,0.9702957262759965,-0.5299192642332049,0.3420201433256687,0.4067366430758002,-0.5877852522924731,0.984807753012208,-0.9993908270190958,0.6946583704589973,-0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.9271838545667874,0.9271838545667874,-0.8290375725550417,0.20791169081775934,-0.0,-0.6946583704589973,0.8290375725550417,-0.984807753012208,0.9271838545667874,-0.4067366430758002,0.20791169081775934,0.5299192642332049,-0.9702957262759965,0.9993908270190958,-0.7431448254773942,0.5877852522924731,0.13917310096006544,-0.3420201433256687,0.898794046299167,-0.9702957262759965,0.8660254037844386,-0.7431448254773942,0.0697564737441253,0.13917310096006544,-0.788010753606722,0.9945218953682733,-0.9510565162951535,0.46947156278589075,-0.27563735581699916,-0.46947156278589075,0.6427876096865394,-0.9945218953682733,0.9945218953682733,-0.6427876096865394,0.46947156278589075,0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.898794046299167,0.788010753606722,-0.13917310096006544,-0.0697564737441253,0.7431448254773942,-0.8660254037844386,0.9702957262759965,-0.898794046299167,0.3420201433256687,-0.13917310096006544,-0.5877852522924731,0.7431448254773942,-0.9993908270190958,0.6946583704589973,-0.5299192642332049,-0.20791169081775934,0.4067366430758002,-0.9271838545667874,0.984807753012208,-0.8290375725550417,0.6946583704589973,-0.0,-0.20791169081775934,0.8290375725550417,-0.9271838545667874,0.9271838545667874,-0.4067366430758002,0.20791169081775934,0.5299192642332049,-0.6946583704589973,0.9993908270190958,-0.984807753012208,0.5877852522924731,-0.4067366430758002,-0.3420201433256687,0.5299192642332049,-0.9702957262759965,0.9993908270190958,-0.7431448254773942,0.0697564737441253,0.13917310096006544,-0.788010753606722,0.898794046299167,-0.9510565162951535,0.8660254037844386,-0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.788010753606722,0.9945218953682733,-0.9510565162951535,0.46947156278589075,0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.9945218953682733,0.788010753606722,-0.6427876096865394,-0.0697564737441253,0.27563735581699916,-0.8660254037844386,0.9510565162951535,-0.898794046299167,0.788010753606722,-0.13917310096006544,-0.0697564737441253,0.7431448254773942,-0.9993908270190958,0.9702957262759965,-0.5299192642332049,0.3420201433256687,0.4067366430758002,-0.5877852522924731,0.984807753012208,-0.9993908270190958,0.6946583704589973,-0.5299192642332049,-0.20791169081775934,0.4067366430758002,-0.9271838545667874,0.9271838545667874,-0.8290375725550417,0.20791169081775934,-0.0,-0.6946583704589973,0.8290375725550417,-0.984807753012208,0.9271838545667874,-0.4067366430758002,0.20791169081775934,0.5299192642332049,-0.6946583704589973,0.9993908270190958,-0.7431448254773942,0.5877852522924731,0.13917310096006544,-0.3420201433256687,0.898794046299167,-0.9702957262759965,0.8660254037844386,-0.7431448254773942,0.0697564737441253,0.13917310096006544,-0.788010753606722,0.898794046299167,-0.9510565162951535,0.46947156278589075,-0.27563735581699916,-0.46947156278589075,0.6427876096865394,-0.9945218953682733,0.9945218953682733,-0.6427876096865394,0.46947156278589075,0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.9945218953682733,0.788010753606722,-0.13917310096006544,-0.0697564737441253,0.7431448254773942,-0.8660254037844386,0.9702957262759965,-0.898794046299167,0.3420201433256687,-0.13917310096006544,-0.5877852522924731,0.7431448254773942,-0.9993908270190958,0.9702957262759965,-0.5299192642332049,-0.20791169081775934,0.4067366430758002,-0.9271838545667874,0.984807753012208,-0.8290375725550417,0.6946583704589973,-0.0,-0.20791169081775934,0.8290375725550417,-0.9271838545667874,0.9271838545667874,-0.8290375725550417,0.20791169081775934,0.5299192642332049,-0.6946583704589973,0.9993908270190958,-0.984807753012208,0.5877852522924731,-0.4067366430758002,-0.3420201433256687,0.5299192642332049,-0.9702957262759965,0.9993908270190958,-0.7431448254773942,0.5877852522924731,0.13917310096006544,-0.788010753606722,0.898794046299167,-0.9510565162951535,0.8660254037844386,-0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.788010753606722,0.9945218953682733,-0.9510565162951535,0.46947156278589075,-0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.9945218953682733,0.788010753606722,-0.6427876096865394,-0.0697564737441253,0.27563735581699916,-0.8660254037844386,0.9510565162951535,-0.898794046299167,0.788010753606722,-0.13917310096006544,-0.0697564737441253,0.7431448254773942,-0.9993908270190958,0.9702957262759965,-0.5299192642332049,0.3420201433256687,0.4067366430758002,-0.5877852522924731,0.984807753012208,-0.9993908270190958,0.6946583704589973,-0.5299192642332049,-0.20791169081775934,0.4067366430758002,-0.9271838545667874,0.984807753012208,-0.8290375725550417,0.20791169081775934,-0.0,-0.6946583704589973,0.8290375725550417,-0.984807753012208,0.9271838545667874,-0.4067366430758002,0.20791169081775934,0.5299192642332049,-0.6946583704589973,0.9993908270190958,-0.984807753012208,0.5877852522924731,0.13917310096006544,-0.3420201433256687,0.898794046299167,-0.9702957262759965,0.8660254037844386,-0.7431448254773942,0.0697564737441253,0.13917310096006544,-0.788010753606722,0.898794046299167,-0.9510565162951535,0.8660254037844386,-0.27563735581699916,-0.46947156278589075,0.6427876096865394,-0.9945218953682733,0.9945218953682733,-0.6427876096865394,0.46947156278589075,0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.9945218953682733,0.788010753606722,-0.6427876096865394,-0.0697564737441253,0.7431448254773942,-0.8660254037844386,0.9702957262759965,-0.898794046299167,0.3420201433256687,-0.13917310096006544,-0.5877852522924731,0.7431448254773942,-0.9993908270190958,0.9702957262759965,-0.5299192642332049,0.3420201433256687,0.4067366430758002,-0.9271838545667874,0.984807753012208,-0.8290375725550417,0.6946583704589973,-0.0,-0.20791169081775934,0.8290375725550417,-0.9271838545667874,0.9271838545667874,-0.8290375725550417,0.20791169081775934,-0.0,-0.6946583704589973,0.9993908270190958,-0.984807753012208,0.5877852522924731,-0.4067366430758002,-0.3420201433256687,0.5299192642332049,-0.9702957262759965,0.9993908270190958,-0.7431448254773942,0.5877852522924731,0.13917310096006544,-0.3420201433256687,0.898794046299167,-0.9510565162951535,0.8660254037844386,-0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.788010753606722,0.9945218953682733,-0.9510565162951535,0.46947156278589075,-0.27563735581699916,-0.46947156278589075,0.6427876096865394,-0.9945218953682733,0.788010753606722,-0.6427876096865394,-0.0697564737441253,0.27563735581699916,-0.8660254037844386,0.9510565162951535,-0.898794046299167,0.788010753606722,-0.13917310096006544,-0.0697564737441253,0.7431448254773942,-0.8660254037844386,0.9702957262759965,-0.5299192642332049,0.3420201433256687,0.4067366430758002,-0.5877852522924731,0.984807753012208,-0.9993908270190958,0.6946583704589973,-0.5299192642332049,-0.20791169081775934,0.4067366430758002,-0.9271838545667874,0.984807753012208,-0.8290375725550417,0.20791169081775934,-0.0,-0.6946583704589973,0.8290375725550417,-0.984807753012208,0.9271838545667874,-0.4067366430758002,0.20791169081775934,0.5299192642332049,-0.6946583704589973,0.9993908270190958,-0.984807753012208,0.5877852522924731,-0.4067366430758002,-0.3420201433256687,0.898794046299167,-0.9702957262759965,0.8660254037844386,-0.7431448254773942,0.0697564737441253,0.13917310096006544,-0.788010753606722,0.898794046299167,-0.9510565162951535,0.8660254037844386,-0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.9945218953682733,0.9945218953682733,-0.6427876096865394,0.46947156278589075,0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.9945218953682733,0.788010753606722,-0.6427876096865394,-0.0697564737441253,0.27563735581699916,-0.8660254037844386,0.9702957262759965,-0.898794046299167,0.3420201433256687,-0.13917310096006544,-0.5877852522924731,0.7431448254773942,-0.9993908270190958,0.9702957262759965,-0.5299192642332049,0.3420201433256687,0.4067366430758002,-0.5877852522924731,0.984807753012208,-0.8290375725550417,0.6946583704589973,-0.0,-0.20791169081775934,0.8290375725550417,-0.9271838545667874,0.9271838545667874,-0.8290375725550417,0.20791169081775934,-0.0,-0.6946583704589973,0.8290375725550417,-0.984807753012208,0.5877852522924731,-0.4067366430758002,-0.3420201433256687,0.5299192642332049,-0.9702957262759965,0.9993908270190958,-0.7431448254773942,0.5877852522924731,0.13917310096006544,-0.3420201433256687,0.898794046299167,-0.9702957262759965,0.8660254037844386,-0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.788010753606722,0.9945218953682733,-0.9510565162951535,0.46947156278589075,-0.27563735581699916,-0.46947156278589075,0.6427876096865394,-0.9945218953682733,0.9945218953682733,-0.6427876096865394,-0.0697564737441253,0.27563735581699916,-0.8660254037844386,0.9510565162951535,-0.898794046299167,0.788010753606722,-0.13917310096006544,-0.0697564737441253,0.7431448254773942,-0.8660254037844386,0.9702957262759965,-0.898794046299167,0.3420201433256687,0.4067366430758002,-0.5877852522924731,0.984807753012208,-0.9993908270190958,0.6946583704589973,-0.5299192642332049,-0.20791169081775934,0.4067366430758002,-0.9271838545667874,0.984807753012208,-0.8290375725550417,0.6946583704589973,-0.0,-0.6946583704589973,0.8290375725550417,-0.984807753012208,0.9271838545667874,-0.4067366430758002,0.20791169081775934,0.5299192642332049,-0.6946583704589973,0.9993908270190958,-0.984807753012208,0.5877852522924731,-0.4067366430758002,-0.3420201433256687,0.898794046299167,-0.9702957262759965,0.8660254037844386,-0.7431448254773942,0.0697564737441253,0.13917310096006544,-0.788010753606722,0.898794046299167,-0.9510565162951535,0.8660254037844386,-0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.9945218953682733,0.9945218953682733,-0.6427876096865394,0.46947156278589075,0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.9945218953682733,0.788010753606722,-0.6427876096865394,-0.0697564737441253,0.27563735581699916,-0.8660254037844386,0.9510565162951535,-0.898794046299167,0.3420201433256687,-0.13917310096006544,-0.5877852522924731,0.7431448254773942,-0.9993908270190958,0.9702957262759965,-0.5299192642332049,0.3420201433256687,0.4067366430758002,-0.5877852522924731,0.984807753012208,-0.9993908270190958,0.6946583704589973,-0.0,-0.20791169081775934,0.8290375725550417,-0.9271838545667874,0.9271838545667874,-0.8290375725550417,0.20791169081775934,-0.0,-0.6946583704589973,0.8290375725550417,-0.984807753012208,0.9271838545667874,-0.4067366430758002,-0.3420201433256687,0.5299192642332049,-0.9702957262759965,0.9993908270190958,-0.7431448254773942,0.5877852522924731,0.13917310096006544,-0.3420201433256687,0.898794046299167,-0.9702957262759965,0.8660254037844386,-0.7431448254773942,0.0697564737441253,0.6427876096865394,-0.788010753606722,0.9945218953682733,-0.9510565162951535,0.46947156278589075,-0.27563735581699916,-0.46947156278589075,0.6427876096865394,-0.9945218953682733,0.9945218953682733,-0.6427876096865394,0.46947156278589075,0.27563735581699916,-0.8660254037844386,0.9510565162951535,-0.898794046299167,0.788010753606722,-0.13917310096006544,-0.0697564737441253,0.7431448254773942,-0.8660254037844386,0.9702957262759965,-0.898794046299167,0.3420201433256687,-0.13917310096006544,-0.5877852522924731,0.984807753012208,-0.9993908270190958,0.6946583704589973,-0.5299192642332049,-0.20791169081775934,0.4067366430758002,-0.9271838545667874,0.984807753012208,-0.8290375725550417,0.6946583704589973,-0.0,-0.20791169081775934,0.8290375725550417,-0.984807753012208,0.9271838545667874,-0.4067366430758002,0.20791169081775934,0.5299192642332049,-0.6946583704589973,0.9993908270190958,-0.984807753012208,0.5877852522924731,-0.4067366430758002,-0.3420201433256687,0.5299192642332049,-0.9702957262759965,0.8660254037844386,-0.7431448254773942,0.0697564737441253,0.13917310096006544,-0.788010753606722,0.898794046299167,-0.9510565162951535,0.46947156278589075,-0.7431448254773942,0.0697564737441253,0.6427876096865394,-0.9945218953682733,0.898794046299167,-0.9510565162951535,0.46947156278589075,0.27563735581699916,-0.8660254037844386,0.6427876096865394,-0.9945218953682733,0.788010753606722,-0.13917310096006544,0.46947156278589075,0.27563735581699916,-0.8660254037844386,0.9702957262759965,-0.9945218953682733,0.788010753606722,-0.13917310096006544,-0.5877852522924731,0.984807753012208,-0.8660254037844386,0.9702957262759965,-0.5299192642332049,-0.20791169081775934,-0.13917310096006544,-0.5877852522924731,0.984807753012208,-0.8290375725550417,0.9702957262759965,-0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.984807753012208,0.984807753012208,-0.8290375725550417,0.20791169081775934,0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.984807753012208,0.5877852522924731,-0.8290375725550417,0.20791169081775934,0.5299192642332049,-0.9702957262759965,0.8660254037844386,-0.984807753012208,0.5877852522924731,0.13917310096006544,-0.788010753606722,0.5299192642332049,-0.9702957262759965,0.8660254037844386,-0.27563735581699916,0.5877852522924731,0.13917310096006544,-0.788010753606722,0.9945218953682733,-0.6427876096865394,0.8660254037844386,-0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.788010753606722,0.9945218953682733,-0.6427876096865394,-0.0697564737441253,-0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.898794046299167,0.3420201433256687,-0.6427876096865394,-0.0697564737441253,0.7431448254773942,-0.9993908270190958,0.9510565162951535,-0.898794046299167,0.3420201433256687,0.4067366430758002,-0.0697564737441253,0.7431448254773942,-0.9993908270190958,0.6946583704589973,-0.0,0.3420201433256687,0.4067366430758002,-0.9271838545667874,0.9271838545667874,-0.9993908270190958,0.6946583704589973,-0.0,-0.6946583704589973,0.4067366430758002,-0.9271838545667874,0.9271838545667874,-0.4067366430758002,-0.3420201433256687,-0.0,-0.6946583704589973,0.9993908270190958,-0.7431448254773942,0.9271838545667874,-0.4067366430758002,-0.3420201433256687,0.898794046299167,-0.6946583704589973,0.9993908270190958,-0.7431448254773942,0.0697564737441253,0.6427876096865394,-0.3420201433256687,0.898794046299167,-0.9510565162951535,0.46947156278589075,-0.7431448254773942,0.0697564737441253,0.6427876096865394,-0.9945218953682733,0.898794046299167,-0.9510565162951535,0.46947156278589075,0.27563735581699916,-0.8660254037844386,0.6427876096865394,-0.9945218953682733,0.788010753606722,-0.13917310096006544,0.46947156278589075,0.27563735581699916,-0.8660254037844386,0.9702957262759965,-0.9945218953682733,0.788010753606722,-0.13917310096006544,-0.5877852522924731,0.984807753012208,-0.8660254037844386,0.9702957262759965,-0.5299192642332049,-0.20791169081775934,-0.13917310096006544,-0.5877852522924731,0.984807753012208,-0.8290375725550417,0.9702957262759965,-0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.984807753012208,0.984807753012208,-0.8290375725550417,0.20791169081775934,0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.984807753012208,0.5877852522924731,-0.8290375725550417,0.20791169081775934,0.5299192642332049,-0.9702957262759965,0.8660254037844386,-0.984807753012208,0.5877852522924731,0.13917310096006544,-0.788010753606722,0.5299192642332049,-0.9702957262759965,0.8660254037844386,-0.27563735581699916,0.5877852522924731,0.13917310096006544,-0.788010753606722,0.9945218953682733,-0.6427876096865394,0.8660254037844386,-0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.788010753606722,0.9945218953682733,-0.6427876096865394,-0.0697564737441253,-0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.898794046299167,0.3420201433256687,-0.6427876096865394,-0.0697564737441253,0.7431448254773942,-0.9993908270190958,0.9510565162951535,-0.898794046299167,0.3420201433256687,0.4067366430758002,-0.0697564737441253,0.7431448254773942,-0.9993908270190958,0.6946583704589973,-0.0,0.3420201433256687,0.4067366430758002,-0.9271838545667874,0.9271838545667874,-0.9993908270190958,0.6946583704589973,-0.0,-0.6946583704589973,0.4067366430758002,-0.9271838545667874,0.9271838545667874,-0.4067366430758002,-0.3420201433256687,-0.0,-0.6946583704589973,0.9993908270190958,-0.7431448254773942,0.9271838545667874,-0.4067366430758002,-0.3420201433256687,0.898794046299167,-0.6946583704589973,0.9993908270190958,-0.7431448254773942,0.0697564737441253,-0.4067366430758002,-0.3420201433256687,0.898794046299167,-0.9510565162951535,0.46947156278589075,-0.7431448254773942,0.0697564737441253,0.6427876096865394,-0.9945218953682733,0.898794046299167,-0.9510565162951535,0.46947156278589075,0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.9945218953682733,0.788010753606722,-0.13917310096006544,0.46947156278589075,0.27563735581699916,-0.8660254037844386,0.9702957262759965,-0.9945218953682733,0.788010753606722,-0.13917310096006544,-0.5877852522924731,0.27563735581699916,-0.8660254037844386,0.9702957262759965,-0.5299192642332049,-0.20791169081775934,-0.13917310096006544,-0.5877852522924731,0.984807753012208,-0.8290375725550417,0.9702957262759965,-0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.5877852522924731,0.984807753012208,-0.8290375725550417,0.20791169081775934,0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.984807753012208,0.5877852522924731,-0.8290375725550417,0.20791169081775934,0.5299192642332049,-0.9702957262759965,0.8290375725550417,-0.984807753012208,0.5877852522924731,0.13917310096006544,-0.788010753606722,0.5299192642332049,-0.9702957262759965,0.8660254037844386,-0.27563735581699916,0.5877852522924731,0.13917310096006544,-0.788010753606722,0.9945218953682733,-0.9702957262759965,0.8660254037844386,-0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.788010753606722,0.9945218953682733,-0.6427876096865394,-0.0697564737441253,-0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.898794046299167,0.9945218953682733,-0.6427876096865394,-0.0697564737441253,0.7431448254773942,-0.9993908270190958,0.9510565162951535,-0.898794046299167,0.3420201433256687,0.4067366430758002,-0.0697564737441253,0.7431448254773942,-0.9993908270190958,0.6946583704589973,-0.898794046299167,0.3420201433256687,0.4067366430758002,-0.9271838545667874,0.9271838545667874,-0.9993908270190958,0.6946583704589973,-0.0,-0.6946583704589973,0.4067366430758002,-0.9271838545667874,0.9271838545667874,-0.4067366430758002,0.6946583704589973,-0.0,-0.6946583704589973,0.9993908270190958,-0.7431448254773942,0.9271838545667874,-0.4067366430758002,-0.3420201433256687,0.898794046299167,-0.6946583704589973,0.9993908270190958,-0.7431448254773942,0.0697564737441253,-0.4067366430758002,-0.3420201433256687,0.898794046299167,-0.9510565162951535,0.46947156278589075,-0.7431448254773942,0.0697564737441253,0.6427876096865394,-0.9945218953682733,0.898794046299167,-0.9510565162951535,0.46947156278589075,0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.9945218953682733,0.788010753606722,-0.13917310096006544,0.46947156278589075,0.27563735581699916,-0.8660254037844386,0.9702957262759965,-0.9945218953682733,0.788010753606722,-0.13917310096006544,-0.5877852522924731,0.27563735581699916,-0.8660254037844386,0.9702957262759965,-0.5299192642332049,-0.20791169081775934,-0.13917310096006544,-0.5877852522924731,0.984807753012208,-0.8290375725550417,0.9702957262759965,-0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.5877852522924731,0.984807753012208,-0.8290375725550417,0.20791169081775934,0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.984807753012208,0.5877852522924731,-0.8290375725550417,0.20791169081775934,0.5299192642332049,-0.9702957262759965,0.8290375725550417,-0.984807753012208,0.5877852522924731,0.13917310096006544,-0.788010753606722,0.5299192642332049,-0.9702957262759965,0.8660254037844386,-0.27563735581699916,0.5877852522924731,0.13917310096006544,-0.788010753606722,0.9945218953682733,-0.9702957262759965,0.8660254037844386,-0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.788010753606722,0.9945218953682733,-0.6427876096865394,-0.0697564737441253,-0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.898794046299167,0.9945218953682733,-0.6427876096865394,-0.0697564737441253,0.7431448254773942,-0.9993908270190958,0.9510565162951535,-0.898794046299167,0.3420201433256687,0.4067366430758002,-0.0697564737441253,0.7431448254773942,-0.9993908270190958,0.6946583704589973,-0.898794046299167,0.3420201433256687,0.4067366430758002,-0.9271838545667874,0.9271838545667874,-0.9993908270190958,0.6946583704589973,-0.0,-0.6946583704589973,0.4067366430758002,-0.9271838545667874,0.9271838545667874,-0.4067366430758002,0.6946583704589973,-0.0,-0.6946583704589973,0.9993908270190958,-0.7431448254773942,0.9271838545667874,-0.4067366430758002,-0.3420201433256687,0.898794046299167,-0.6946583704589973,0.9993908270190958,-0.7431448254773942,0.0697564737441253,-0.4067366430758002,-0.3420201433256687,0.898794046299167,-0.9510565162951535,0.46947156278589075,-0.7431448254773942,0.0697564737441253,0.6427876096865394,-0.9945218953682733,0.898794046299167,-0.9510565162951535,0.46947156278589075,0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.9945218953682733,0.788010753606722,-0.13917310096006544,0.46947156278589075,0.27563735581699916,-0.8660254037844386,0.9702957262759965,-0.9945218953682733,0.788010753606722,-0.13917310096006544,-0.5877852522924731,0.27563735581699916,-0.8660254037844386,0.9702957262759965,-0.5299192642332049,0.788010753606722,-0.13917310096006544,-0.5877852522924731,0.984807753012208,-0.8290375725550417,0.9702957262759965,-0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.5877852522924731,0.984807753012208,-0.8290375725550417,0.20791169081775934,-0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.984807753012208,0.5877852522924731,-0.8290375725550417,0.20791169081775934,0.5299192642332049,-0.9702957262759965,0.8290375725550417,-0.984807753012208,0.5877852522924731,0.13917310096006544,0.20791169081775934,0.5299192642332049,-0.9702957262759965,0.8660254037844386,-0.27563735581699916,0.5877852522924731,0.13917310096006544,-0.788010753606722,0.9945218953682733,-0.9702957262759965,0.8660254037844386,-0.27563735581699916,-0.46947156278589075,0.13917310096006544,-0.788010753606722,0.9945218953682733,-0.6427876096865394,-0.0697564737441253,-0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.898794046299167,0.9945218953682733,-0.6427876096865394,-0.0697564737441253,0.7431448254773942,-0.46947156278589075,0.9510565162951535,-0.898794046299167,0.3420201433256687,0.4067366430758002,-0.0697564737441253,0.7431448254773942,-0.9993908270190958,0.6946583704589973,-0.898794046299167,0.3420201433256687,0.4067366430758002,-0.9271838545667874,0.7431448254773942,-0.9993908270190958,0.6946583704589973,-0.0,-0.6946583704589973,0.4067366430758002,-0.9271838545667874,0.9271838545667874,-0.4067366430758002,0.6946583704589973,-0.0,-0.6946583704589973,0.9993908270190958,-0.9271838545667874,0.9271838545667874,-0.4067366430758002,-0.3420201433256687,0.898794046299167,-0.6946583704589973,0.9993908270190958,-0.7431448254773942,0.0697564737441253,-0.4067366430758002,-0.3420201433256687,0.898794046299167,-0.9510565162951535,0.9993908270190958,-0.7431448254773942,0.0697564737441253,0.6427876096865394,-0.9945218953682733,0.898794046299167,-0.9510565162951535,0.46947156278589075,0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.9945218953682733,0.788010753606722,-0.9510565162951535,0.46947156278589075,0.27563735581699916,-0.8660254037844386,0.9702957262759965,-0.9945218953682733,0.788010753606722,-0.13917310096006544,-0.5877852522924731,0.27563735581699916,-0.8660254037844386,0.9702957262759965,-0.5299192642332049,0.788010753606722,-0.13917310096006544,-0.5877852522924731,0.984807753012208,-0.8290375725550417,0.9702957262759965,-0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.5877852522924731,0.984807753012208,-0.8290375725550417,0.20791169081775934,-0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.984807753012208,0.5877852522924731,-0.8290375725550417,0.20791169081775934,0.5299192642332049,-0.9702957262759965,0.8290375725550417,-0.984807753012208,0.5877852522924731,0.13917310096006544,0.20791169081775934,0.5299192642332049,-0.9702957262759965,0.8660254037844386,-0.27563735581699916,0.5877852522924731,0.13917310096006544,-0.788010753606722,0.9945218953682733,-0.9702957262759965,0.8660254037844386,-0.27563735581699916,-0.46947156278589075,0.13917310096006544,-0.788010753606722,0.9945218953682733,-0.6427876096865394,-0.0697564737441253,-0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.898794046299167,0.9945218953682733,-0.6427876096865394,-0.0697564737441253,0.7431448254773942,-0.46947156278589075,0.9510565162951535,-0.898794046299167,0.3420201433256687,0.4067366430758002,-0.0697564737441253,0.7431448254773942,-0.9993908270190958,0.6946583704589973,-0.898794046299167,0.3420201433256687,0.4067366430758002,-0.9271838545667874,0.7431448254773942,-0.9993908270190958,0.6946583704589973,-0.0,-0.6946583704589973,0.4067366430758002,-0.9271838545667874,0.9271838545667874,-0.4067366430758002,0.6946583704589973,-0.0,-0.6946583704589973,0.9993908270190958,-0.9271838545667874,0.9271838545667874,-0.4067366430758002,-0.3420201433256687,0.898794046299167,-0.6946583704589973,0.9993908270190958,-0.7431448254773942,0.0697564737441253,-0.4067366430758002,-0.3420201433256687,0.898794046299167,-0.9510565162951535,0.9993908270190958,-0.7431448254773942,0.0697564737441253,0.6427876096865394,-0.9945218953682733,0.898794046299167,-0.9510565162951535,0.46947156278589075,0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.9945218953682733,0.788010753606722,-0.9510565162951535,0.46947156278589075,0.27563735581699916,-0.8660254037844386,0.9702957262759965,-0.9945218953682733,0.788010753606722,-0.13917310096006544,-0.5877852522924731,0.27563735581699916,-0.8660254037844386,0.9702957262759965,-0.5299192642332049,0.788010753606722,-0.13917310096006544,-0.5877852522924731,0.984807753012208,-0.8290375725550417,0.9702957262759965,-0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.5877852522924731,0.984807753012208,-0.8290375725550417,0.20791169081775934,-0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.984807753012208,0.5877852522924731,-0.8290375725550417,0.20791169081775934,0.5299192642332049,-0.9702957262759965,0.8290375725550417,-0.984807753012208,0.5877852522924731,0.13917310096006544,0.20791169081775934,0.5299192642332049,-0.9702957262759965,0.8660254037844386,-0.984807753012208,0.5877852522924731,0.13917310096006544,-0.788010753606722,0.9945218953682733,-0.9702957262759965,0.8660254037844386,-0.27563735581699916,-0.46947156278589075,0.13917310096006544,-0.788010753606722,0.9945218953682733,-0.6427876096865394,0.8660254037844386,-0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.898794046299167,0.9945218953682733,-0.6427876096865394,-0.0697564737441253,0.7431448254773942,-0.46947156278589075,0.9510565162951535,-0.898794046299167,0.3420201433256687,-0.6427876096865394,-0.0697564737441253,0.7431448254773942,-0.9993908270190958,0.6946583704589973,-0.898794046299167,0.3420201433256687,0.4067366430758002,-0.9271838545667874,0.7431448254773942,-0.9993908270190958,0.6946583704589973,-0.0,0.3420201433256687,0.4067366430758002,-0.9271838545667874,0.9271838545667874,-0.4067366430758002,0.6946583704589973,-0.0,-0.6946583704589973,0.9993908270190958,-0.9271838545667874,0.9271838545667874,-0.4067366430758002,-0.3420201433256687,-0.0,-0.6946583704589973,0.9993908270190958,-0.7431448254773942,0.0697564737441253,-0.4067366430758002,-0.3420201433256687,0.898794046299167,-0.9510565162951535,0.9993908270190958,-0.7431448254773942,0.0697564737441253,0.6427876096865394,-0.3420201433256687,0.898794046299167,-0.9510565162951535,0.46947156278589075,0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.9945218953682733,0.788010753606722,-0.9510565162951535,0.46947156278589075,0.27563735581699916,-0.8660254037844386,0.6427876096865394,-0.9945218953682733,0.788010753606722,-0.13917310096006544,-0.5877852522924731,0.27563735581699916,-0.8660254037844386,0.9702957262759965,-0.5299192642332049,0.788010753606722,-0.13917310096006544,-0.5877852522924731,0.984807753012208,-0.8660254037844386,0.9702957262759965,-0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.5877852522924731,0.984807753012208,-0.8290375725550417,0.20791169081775934,-0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.984807753012208,0.984807753012208,-0.8290375725550417,0.20791169081775934,0.5299192642332049,-0.9702957262759965,0.8290375725550417,-0.984807753012208,0.5877852522924731,0.13917310096006544,0.20791169081775934,0.5299192642332049,-0.9702957262759965,0.8660254037844386,-0.984807753012208,0.5877852522924731,0.13917310096006544,-0.788010753606722,0.9945218953682733,-0.9702957262759965,0.8660254037844386,-0.27563735581699916,-0.46947156278589075,0.13917310096006544,-0.788010753606722,0.9945218953682733,-0.6427876096865394,0.8660254037844386,-0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.898794046299167,0.9945218953682733,-0.6427876096865394,-0.0697564737441253,0.7431448254773942,-0.46947156278589075,0.9510565162951535,-0.898794046299167,0.3420201433256687,-0.6427876096865394,-0.0697564737441253,0.7431448254773942,-0.9993908270190958,0.6946583704589973,-0.898794046299167,0.3420201433256687,0.4067366430758002,-0.9271838545667874,0.7431448254773942,-0.9993908270190958,0.6946583704589973,-0.0,0.3420201433256687,0.4067366430758002,-0.9271838545667874,0.9271838545667874,-0.4067366430758002,0.6946583704589973,-0.0,-0.6946583704589973,0.9993908270190958,-0.9271838545667874,0.9271838545667874,-0.4067366430758002,-0.3420201433256687,-0.0,-0.6946583704589973,0.9993908270190958,-0.7431448254773942,0.0697564737441253,-0.4067366430758002,-0.3420201433256687,0.898794046299167,-0.9510565162951535,0.9993908270190958,-0.7431448254773942,0.0697564737441253,0.6427876096865394,-0.3420201433256687,0.898794046299167,-0.9510565162951535,0.46947156278589075,0.27563735581699916,0.0697564737441253,0.6427876096865394,-0.9945218953682733,0.788010753606722,-0.9510565162951535,0.46947156278589075,0.27563735581699916,-0.8660254037844386,0.6427876096865394,-0.9945218953682733,0.788010753606722,-0.13917310096006544,-0.5877852522924731,0.27563735581699916,-0.8660254037844386,0.9702957262759965,-0.5299192642332049,0.788010753606722,-0.13917310096006544,-0.5877852522924731,0.984807753012208,-0.8660254037844386,0.9702957262759965,-0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.5877852522924731,0.984807753012208,-0.8290375725550417,0.20791169081775934,-0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.984807753012208,0.984807753012208,-0.8290375725550417,0.20791169081775934,0.5299192642332049,-0.9702957262759965,0.8290375725550417,-0.984807753012208,0.5877852522924731,0.13917310096006544,0.20791169081775934,0.5299192642332049,-0.9702957262759965,0.8660254037844386,-0.984807753012208,0.5877852522924731,0.13917310096006544,-0.788010753606722,0.9945218953682733,-0.9702957262759965,0.8660254037844386,-0.27563735581699916,-0.46947156278589075,0.13917310096006544,-0.788010753606722,0.9945218953682733,-0.6427876096865394,0.8660254037844386,-0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.898794046299167,0.9945218953682733,-0.6427876096865394,-0.0697564737441253,0.7431448254773942,-0.46947156278589075,0.9510565162951535,-0.898794046299167,0.3420201433256687,-0.6427876096865394,-0.0697564737441253,0.7431448254773942,-0.9993908270190958,0.9510565162951535,-0.898794046299167,0.3420201433256687,0.4067366430758002,-0.9271838545667874,0.7431448254773942,-0.9993908270190958,0.6946583704589973,-0.0,0.3420201433256687,0.4067366430758002,-0.9271838545667874,0.9271838545667874,-0.9993908270190958,0.6946583704589973,-0.0,-0.6946583704589973,0.9993908270190958,-0.9271838545667874,0.9271838545667874,-0.4067366430758002,-0.3420201433256687,-0.0,-0.6946583704589973,0.9993908270190958,-0.7431448254773942,0.9271838545667874,-0.4067366430758002,-0.3420201433256687,0.898794046299167,-0.9510565162951535,0.9993908270190958,-0.7431448254773942,0.0697564737441253,0.6427876096865394,-0.3420201433256687,0.898794046299167,-0.9510565162951535,0.46947156278589075,-0.7431448254773942,0.0697564737441253,0.6427876096865394,-0.9945218953682733,0.788010753606722,-0.9510565162951535,0.46947156278589075,0.27563735581699916,-0.8660254037844386,0.6427876096865394,-0.9945218953682733,0.788010753606722,-0.13917310096006544,0.46947156278589075,0.27563735581699916,-0.8660254037844386,0.9702957262759965,-0.5299192642332049,0.788010753606722,-0.13917310096006544,-0.5877852522924731,0.984807753012208,-0.8660254037844386,0.9702957262759965,-0.5299192642332049,-0.20791169081775934,-0.13917310096006544,-0.5877852522924731,0.984807753012208,-0.8290375725550417,0.20791169081775934,-0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.984807753012208,0.984807753012208,-0.8290375725550417,0.20791169081775934,0.5299192642332049,-0.20791169081775934,0.8290375725550417,-0.984807753012208,0.5877852522924731,0.13917310096006544,0.20791169081775934,0.5299192642332049,-0.9702957262759965,0.8660254037844386,-0.984807753012208,0.5877852522924731,0.13917310096006544,-0.788010753606722,0.5299192642332049,-0.9702957262759965,0.8660254037844386,-0.27563735581699916,-0.46947156278589075,0.13917310096006544,-0.788010753606722,0.9945218953682733,-0.6427876096865394,0.8660254037844386,-0.27563735581699916,-0.46947156278589075,0.9510565162951535,-0.788010753606722,0.9945218953682733,-0.6427876096865394,-0.0697564737441253,0.7431448254773942,-0.46947156278589075,0.9510565162951535,-0.898794046299167,0.3420201433256687,-0.6427876096865394,-0.0697564737441253,0.7431448254773942,-0.9993908270190958,0.9510565162951535,-0.898794046299167,0.3420201433256687,0.4067366430758002,-0.9271838545667874,0.7431448254773942,-0.9993908270190958,0.6946583704589973,-0.0,0.3420201433256687,0.4067366430758002,-0.9271838545667874,0.9271838545667874,-0.9993908270190958,0.6946583704589973,-0.0],"x":[-1.0376293541461623e20,-2.411497240479221e299,-4.822994480958442e299,-7.234491721437664e299,-9.645988961916884e299,-1.2057486202396106e300,-1.4468983442875328e300,-1.688048068335455e300,-1.929197792383377e300,-2.1703475164312992e300,-2.4114972404792213e300,-2.6526469645271433e300,-2.8937966885750656e300,-3.1349464126229877e300,-3.37609613667091e300,-3.617245860718832e300,-3.858395584766754e300,-4.0995453088146764e300,-4.3406950328625985e300,-4.5818447569105205e300,-4.8229944809584425e300,-5.0641442050063646e300,-5.3052939290542866e300,-5.546443653102209e300,-5.787593377150131e300,-6.028743101198053e300,-6.269892825245975e300,-6.511042549293898e300,-6.75219227334182e300,-6.993341997389742e300,-7.234491721437664e300,-7.475641445485586e300,-7.716791169533508e300,-7.95794089358143e300,-8.199090617629353e300,-8.440240341677274e300,-8.681390065725197e300,-8.922539789773118e300,-9.163689513821041e300,-9.404839237868962e300,-9.645988961916885e300,-9.887138685964808e300,-1.0128288410012729e301,-1.0369438134060652e301,-1.0610587858108573e301,-1.0851737582156495e301,-1.1092887306204417e301,-1.133403703025234e301,-1.1575186754300263e301,-1.1816336478348185e301,-1.2057486202396105e301,-1.2298635926444028e301,-1.253978565049195e301,-1.2780935374539873e301,-1.3022085098587796e301,-1.3263234822635716e301,-1.350438454668364e301,-1.3745534270731562e301,-1.3986683994779484e301,-1.4227833718827404e301,-1.4468983442875327e301,-1.471013316692325e301,-1.4951282890971172e301,-1.5192432615019095e301,-1.5433582339067015e301,-1.5674732063114938e301,-1.591588178716286e301,-1.6157031511210783e301,-1.6398181235258706e301,-1.6639330959306626e301,-1.6880480683354549e301,-1.7121630407402471e301,-1.7362780131450394e301,-1.7603929855498317e301,-1.7845079579546237e301,-1.808622930359416e301,-1.8327379027642082e301,-1.8568528751690005e301,-1.8809678475737925e301,-1.9050828199785848e301,-1.929197792383377e301,-1.9533127647881693e301,-1.9774277371929615e301,-2.0015427095977536e301,-2.0256576820025458e301,-2.049772654407338e301,-2.0738876268121304e301,-2.0980025992169226e301,-2.1221175716217146e301,-2.146232544026507e301,-2.170347516431299e301,-2.1944624888360914e301,-2.2185774612408835e301,-2.242692433645676e301,-2.266807406050468e301,-2.29092237845526e301,-2.3150373508600525e301,-2.3391523232648445e301,-2.363267295669637e301,-2.387382268074429e301,-2.411497240479221e301,-2.4356122128840136e301,-2.4597271852888056e301,-2.483842157693598e301,-2.50795713009839e301,-2.532072102503182e301,-2.5561870749079747e301,-2.5803020473127667e301,-2.604417019717559e301,-2.628531992122351e301,-2.6526469645271433e301,-2.6767619369319358e301,-2.700876909336728e301,-2.7249918817415203e301,-2.7491068541463123e301,-2.7732218265511043e301,-2.797336798955897e301,-2.821451771360689e301,-2.845566743765481e301,-2.8696817161702734e301,-2.8937966885750654e301,-2.917911660979858e301,-2.94202663338465e301,-2.966141605789442e301,-2.9902565781942345e301,-3.0143715505990265e301,-3.038486523003819e301,-3.062601495408611e301,-3.086716467813403e301,-3.1108314402181955e301,-3.1349464126229876e301,-3.15906138502778e301,-3.183176357432572e301,-3.207291329837364e301,-3.2314063022421566e301,-3.2555212746469486e301,-3.279636247051741e301,-3.303751219456533e301,-3.327866191861325e301,-3.3519811642661177e301,-3.3760961366709097e301,-3.400211109075702e301,-3.4243260814804942e301,-3.4484410538852863e301,-3.472556026290079e301,-3.496670998694871e301,-3.5207859710996633e301,-3.5449009435044553e301,-3.5690159159092474e301,-3.59313088831404e301,-3.617245860718832e301,-3.641360833123624e301,-3.6654758055284164e301,-3.6895907779332084e301,-3.713705750338001e301,-3.737820722742793e301,-3.761935695147585e301,-3.7860506675523775e301,-3.8101656399571695e301,-3.834280612361962e301,-3.858395584766754e301,-3.882510557171546e301,-3.9066255295763386e301,-3.9307405019811306e301,-3.954855474385923e301,-3.978970446790715e301,-4.003085419195507e301,-4.0272003916002996e301,-4.0513153640050917e301,-4.075430336409884e301,-4.099545308814676e301,-4.123660281219468e301,-4.1477752536242607e301,-4.1718902260290527e301,-4.1960051984338452e301,-4.2201201708386373e301,-4.2442351432434293e301,-4.268350115648222e301,-4.292465088053014e301,-4.316580060457806e301,-4.340695032862598e301,-4.36481000526739e301,-4.388924977672183e301,-4.413039950076975e301,-4.437154922481767e301,-4.461269894886559e301,-4.485384867291352e301,-4.5094998396961435e301,-4.533614812100936e301,-4.5577297845057285e301,-4.58184475691052e301,-4.605959729315313e301,-4.630074701720105e301,-4.654189674124898e301,-4.678304646529689e301,-4.702419618934482e301,-4.726534591339274e301,-4.750649563744066e301,-4.774764536148858e301,-4.798879508553651e301,-4.822994480958442e301,-4.847109453363235e301,-4.871224425768027e301,-4.895339398172819e301,-4.919454370577611e301,-4.943569342982404e301,-4.967684315387196e301,-4.991799287791988e301,-5.01591426019678e301,-5.040029232601573e301,-5.064144205006364e301,-5.088259177411157e301,-5.112374149815949e301,-5.136489122220741e301,-5.160604094625533e301,-5.184719067030326e301,-5.208834039435118e301,-5.23294901183991e301,-5.257063984244702e301,-5.281178956649495e301,-5.3052939290542865e301,-5.329408901459079e301,-5.3535238738638715e301,-5.377638846268663e301,-5.401753818673456e301,-5.425868791078248e301,-5.449983763483041e301,-5.474098735887832e301,-5.498213708292625e301,-5.522328680697417e301,-5.546443653102209e301,-5.570558625507001e301,-5.594673597911794e301,-5.618788570316585e301,-5.642903542721378e301,-5.66701851512617e301,-5.691133487530962e301,-5.715248459935754e301,-5.739363432340547e301,-5.763478404745339e301,-5.787593377150131e301,-5.811708349554923e301,-5.835823321959716e301,-5.859938294364507e301,-5.8840532667693e301,-5.908168239174092e301,-5.932283211578884e301,-5.956398183983676e301,-5.980513156388469e301,-6.004628128793261e301,-6.028743101198053e301,-6.052858073602845e301,-6.076973046007638e301,-6.10108801841243e301,-6.125202990817222e301,-6.149317963222015e301,-6.173432935626806e301,-6.197547908031599e301,-6.221662880436391e301,-6.245777852841184e301,-6.269892825245975e301,-6.294007797650768e301,-6.31812277005556e301,-6.342237742460352e301,-6.366352714865144e301,-6.390467687269937e301,-6.414582659674728e301,-6.438697632079521e301,-6.462812604484313e301,-6.486927576889105e301,-6.511042549293897e301,-6.53515752169869e301,-6.559272494103482e301,-6.583387466508274e301,-6.607502438913066e301,-6.631617411317859e301,-6.65573238372265e301,-6.679847356127443e301,-6.703962328532235e301,-6.728077300937027e301,-6.752192273341819e301,-6.776307245746612e301,-6.800422218151404e301,-6.824537190556196e301,-6.8486521629609885e301,-6.872767135365781e301,-6.896882107770573e301,-6.920997080175365e301,-6.945112052580158e301,-6.969227024984949e301,-6.993341997389742e301,-7.017456969794534e301,-7.041571942199327e301,-7.065686914604118e301,-7.089801887008911e301,-7.113916859413703e301,-7.138031831818495e301,-7.162146804223287e301,-7.18626177662808e301,-7.210376749032871e301,-7.234491721437664e301,-7.258606693842456e301,-7.282721666247248e301,-7.30683663865204e301,-7.330951611056833e301,-7.355066583461625e301,-7.379181555866417e301,-7.403296528271209e301,-7.427411500676002e301,-7.451526473080793e301,-7.475641445485586e301,-7.499756417890378e301,-7.52387139029517e301,-7.547986362699962e301,-7.572101335104755e301,-7.596216307509547e301,-7.620331279914339e301,-7.6444462523191315e301,-7.668561224723924e301,-7.692676197128716e301,-7.716791169533508e301,-7.740906141938301e301,-7.765021114343092e301,-7.789136086747885e301,-7.813251059152677e301,-7.83736603155747e301,-7.861481003962261e301,-7.885595976367054e301,-7.909710948771846e301,-7.933825921176638e301,-7.95794089358143e301,-7.982055865986223e301,-8.006170838391014e301,-8.030285810795807e301,-8.054400783200599e301,-8.078515755605391e301,-8.102630728010183e301,-8.126745700414976e301,-8.150860672819768e301,-8.17497564522456e301,-8.199090617629352e301,-8.223205590034145e301,-8.247320562438936e301,-8.271435534843729e301,-8.295550507248521e301,-8.319665479653313e301,-8.3437804520581055e301,-8.367895424462898e301,-8.3920103968676905e301,-8.416125369272482e301,-8.440240341677275e301,-8.464355314082067e301,-8.488470286486859e301,-8.512585258891651e301,-8.536700231296444e301,-8.560815203701235e301,-8.584930176106028e301,-8.60904514851082e301,-8.633160120915613e301,-8.657275093320405e301,-8.681390065725196e301,-8.705505038129988e301,-8.72962001053478e301,-8.753734982939573e301,-8.777849955344366e301,-8.801964927749158e301,-8.82607990015395e301,-8.850194872558741e301,-8.874309844963534e301,-8.898424817368326e301,-8.922539789773119e301,-8.946654762177911e301,-8.970769734582704e301,-8.994884706987494e301,-9.018999679392287e301,-9.04311465179708e301,-9.067229624201872e301,-9.091344596606664e301,-9.115459569011457e301,-9.13957454141625e301,-9.16368951382104e301,-9.187804486225833e301,-9.211919458630625e301,-9.236034431035418e301,-9.26014940344021e301,-9.284264375845003e301,-9.308379348249795e301,-9.332494320654586e301,-9.356609293059378e301,-9.38072426546417e301,-9.404839237868963e301,-9.428954210273756e301,-9.453069182678548e301,-9.477184155083339e301,-9.501299127488131e301,-9.525414099892924e301,-9.549529072297716e301,-9.573644044702509e301,-9.597759017107301e301,-9.621873989512094e301,-9.645988961916884e301,-9.670103934321677e301,-9.69421890672647e301,-9.718333879131262e301,-9.742448851536054e301,-9.766563823940847e301,-9.790678796345637e301,-9.81479376875043e301,-9.838908741155222e301,-9.863023713560015e301,-9.887138685964807e301,-9.9112536583696e301,-9.935368630774392e301,-9.959483603179183e301,-9.983598575583976e301,-1.0007713547988768e302,-1.003182852039356e302,-1.0055943492798353e302,-1.0080058465203146e302,-1.0104173437607938e302,-1.0128288410012729e302,-1.0152403382417521e302,-1.0176518354822314e302,-1.0200633327227106e302,-1.0224748299631899e302,-1.0248863272036691e302,-1.0272978244441482e302,-1.0297093216846274e302,-1.0321208189251067e302,-1.034532316165586e302,-1.0369438134060652e302,-1.0393553106465444e302,-1.0417668078870237e302,-1.0441783051275027e302,-1.046589802367982e302,-1.0490012996084612e302,-1.0514127968489405e302,-1.0538242940894197e302,-1.056235791329899e302,-1.058647288570378e302,-1.0610587858108573e302,-1.0634702830513366e302,-1.0658817802918158e302,-1.068293277532295e302,-1.0707047747727743e302,-1.0731162720132536e302,-1.0755277692537326e302,-1.0779392664942119e302,-1.0803507637346911e302,-1.0827622609751704e302,-1.0851737582156496e302,-1.0875852554561289e302,-1.0899967526966081e302,-1.0924082499370872e302,-1.0948197471775664e302,-1.0972312444180457e302,-1.099642741658525e302,-1.1020542388990042e302,-1.1044657361394834e302,-1.1068772333799625e302,-1.1092887306204417e302,-1.111700227860921e302,-1.1141117251014002e302,-1.1165232223418795e302,-1.1189347195823587e302,-1.121346216822838e302,-1.123757714063317e302,-1.1261692113037963e302,-1.1285807085442755e302,-1.1309922057847548e302,-1.133403703025234e302,-1.1358152002657133e302,-1.1382266975061924e302,-1.1406381947466716e302,-1.1430496919871509e302,-1.1454611892276301e302,-1.1478726864681094e302,-1.1502841837085886e302,-1.1526956809490679e302,-1.155107178189547e302,-1.1575186754300262e302,-1.1599301726705054e302,-1.1623416699109847e302,-1.164753167151464e302,-1.1671646643919432e302,-1.1695761616324224e302,-1.1719876588729015e302,-1.1743991561133807e302,-1.17681065335386e302,-1.1792221505943392e302,-1.1816336478348185e302,-1.1840451450752977e302,-1.1864566423157768e302,-1.188868139556256e302,-1.1912796367967353e302,-1.1936911340372145e302,-1.1961026312776938e302,-1.198514128518173e302,-1.2009256257586523e302,-1.2033371229991313e302,-1.2057486202396106e302,-1.2081601174800898e302,-1.210571614720569e302,-1.2129831119610483e302,-1.2153946092015276e302,-1.2178061064420067e302,-1.220217603682486e302,-1.2226291009229652e302,-1.2250405981634444e302,-1.2274520954039237e302,-1.229863592644403e302,-1.2322750898848822e302,-1.2346865871253612e302,-1.2370980843658405e302,-1.2395095816063197e302,-1.241921078846799e302,-1.2443325760872782e302,-1.2467440733277575e302,-1.2491555705682367e302,-1.2515670678087158e302,-1.253978565049195e302,-1.2563900622896743e302,-1.2588015595301535e302,-1.2612130567706328e302,-1.263624554011112e302,-1.266036051251591e302,-1.2684475484920703e302,-1.2708590457325496e302,-1.2732705429730288e302,-1.275682040213508e302,-1.2780935374539873e302,-1.2805050346944666e302,-1.2829165319349456e302,-1.2853280291754249e302,-1.2877395264159041e302,-1.2901510236563834e302,-1.2925625208968626e302,-1.2949740181373419e302,-1.297385515377821e302,-1.2997970126183002e302,-1.3022085098587795e302,-1.3046200070992587e302,-1.307031504339738e302,-1.3094430015802172e302,-1.3118544988206965e302,-1.3142659960611755e302,-1.3166774933016548e302,-1.319088990542134e302,-1.3215004877826133e302,-1.3239119850230925e302,-1.3263234822635718e302,-1.328734979504051e302,-1.33114647674453e302,-1.3335579739850093e302,-1.3359694712254886e302,-1.3383809684659678e302,-1.340792465706447e302,-1.3432039629469263e302,-1.3456154601874054e302,-1.3480269574278846e302,-1.3504384546683639e302,-1.3528499519088431e302,-1.3552614491493224e302,-1.3576729463898016e302,-1.3600844436302809e302,-1.36249594087076e302,-1.3649074381112392e302,-1.3673189353517184e302,-1.3697304325921977e302,-1.372141929832677e302,-1.3745534270731562e302,-1.3769649243136353e302,-1.3793764215541145e302,-1.3817879187945938e302,-1.384199416035073e302,-1.3866109132755523e302,-1.3890224105160315e302,-1.3914339077565108e302,-1.3938454049969898e302,-1.396256902237469e302,-1.3986683994779483e302,-1.4010798967184276e302,-1.4034913939589068e302,-1.405902891199386e302,-1.4083143884398653e302,-1.4107258856803444e302,-1.4131373829208236e302,-1.4155488801613029e302,-1.4179603774017821e302,-1.4203718746422614e302,-1.4227833718827406e302,-1.4251948691232197e302,-1.427606366363699e302,-1.4300178636041782e302,-1.4324293608446574e302,-1.4348408580851367e302,-1.437252355325616e302,-1.4396638525660952e302,-1.4420753498065743e302,-1.4444868470470535e302,-1.4468983442875328e302,-1.449309841528012e302,-1.4517213387684913e302,-1.4541328360089705e302,-1.4565443332494496e302,-1.4589558304899288e302,-1.461367327730408e302,-1.4637788249708873e302,-1.4661903222113666e302,-1.4686018194518458e302,-1.471013316692325e302,-1.4734248139328041e302,-1.4758363111732834e302,-1.4782478084137626e302,-1.4806593056542419e302,-1.4830708028947211e302,-1.4854823001352004e302,-1.4878937973756796e302,-1.4903052946161587e302,-1.492716791856638e302,-1.4951282890971172e302,-1.4975397863375964e302,-1.4999512835780757e302,-1.502362780818555e302,-1.504774278059034e302,-1.5071857752995132e302,-1.5095972725399925e302,-1.5120087697804717e302,-1.514420267020951e302,-1.5168317642614302e302,-1.5192432615019095e302,-1.5216547587423886e302,-1.5240662559828678e302,-1.526477753223347e302,-1.5288892504638263e302,-1.5313007477043056e302,-1.5337122449447848e302,-1.5361237421852639e302,-1.5385352394257431e302,-1.5409467366662224e302,-1.5433582339067016e302,-1.5457697311471809e302,-1.5481812283876601e302,-1.5505927256281394e302,-1.5530042228686184e302,-1.5554157201090977e302,-1.557827217349577e302,-1.5602387145900562e302,-1.5626502118305354e302,-1.5650617090710147e302,-1.567473206311494e302,-1.569884703551973e302,-1.5722962007924522e302,-1.5747076980329315e302,-1.5771191952734107e302,-1.57953069251389e302,-1.5819421897543692e302,-1.5843536869948483e302,-1.5867651842353275e302,-1.5891766814758068e302,-1.591588178716286e302,-1.5939996759567653e302,-1.5964111731972445e302,-1.5988226704377238e302,-1.6012341676782029e302,-1.6036456649186821e302,-1.6060571621591614e302,-1.6084686593996406e302,-1.6108801566401199e302,-1.6132916538805991e302,-1.6157031511210782e302,-1.6181146483615574e302,-1.6205261456020367e302,-1.622937642842516e302,-1.6253491400829952e302,-1.6277606373234744e302,-1.6301721345639537e302,-1.6325836318044327e302,-1.634995129044912e302,-1.6374066262853912e302,-1.6398181235258705e302,-1.6422296207663497e302,-1.644641118006829e302,-1.647052615247308e302,-1.6494641124877873e302,-1.6518756097282665e302,-1.6542871069687458e302,-1.656698604209225e302,-1.6591101014497043e302,-1.6615215986901835e302,-1.6639330959306626e302,-1.6663445931711418e302,-1.6687560904116211e302,-1.6711675876521003e302,-1.6735790848925796e302,-1.6759905821330588e302,-1.6784020793735381e302,-1.6808135766140172e302,-1.6832250738544964e302,-1.6856365710949757e302,-1.688048068335455e302,-1.6904595655759342e302,-1.6928710628164134e302,-1.6952825600568925e302,-1.6976940572973717e302,-1.700105554537851e302,-1.7025170517783302e302,-1.7049285490188095e302,-1.7073400462592887e302,-1.709751543499768e302,-1.712163040740247e302,-1.7145745379807263e302,-1.7169860352212055e302,-1.7193975324616848e302,-1.721809029702164e302,-1.7242205269426433e302,-1.7266320241831225e302,-1.7290435214236018e302,-1.731455018664081e302,-1.7338665159045603e302,-1.736278013145039e302,-1.7386895103855184e302,-1.7411010076259977e302,-1.743512504866477e302,-1.745924002106956e302,-1.7483354993474354e302,-1.7507469965879147e302,-1.753158493828394e302,-1.755569991068873e302,-1.7579814883093524e302,-1.7603929855498317e302,-1.762804482790311e302,-1.76521598003079e302,-1.767627477271269e302,-1.7700389745117483e302,-1.7724504717522275e302,-1.7748619689927068e302,-1.777273466233186e302,-1.7796849634736653e302,-1.7820964607141445e302,-1.7845079579546238e302,-1.786919455195103e302,-1.7893309524355823e302,-1.7917424496760615e302,-1.7941539469165408e302,-1.79656544415702e302,-1.798976941397499e302,-1.801388438637978e302,-1.8037999358784574e302,-1.8062114331189366e302,-1.808622930359416e302,-1.811034427599895e302,-1.8134459248403744e302,-1.8158574220808536e302,-1.818268919321333e302,-1.820680416561812e302,-1.8230919138022914e302,-1.8255034110427706e302,-1.82791490828325e302,-1.8303264055237288e302,-1.832737902764208e302,-1.8351494000046873e302,-1.8375608972451665e302,-1.8399723944856458e302,-1.842383891726125e302,-1.8447953889666043e302,-1.8472068862070835e302,-1.8496183834475628e302,-1.852029880688042e302,-1.8544413779285213e302,-1.8568528751690005e302,-1.8592643724094798e302,-1.861675869649959e302,-1.864087366890438e302,-1.866498864130917e302,-1.8689103613713964e302,-1.8713218586118756e302,-1.873733355852355e302,-1.876144853092834e302,-1.8785563503333134e302,-1.8809678475737926e302,-1.883379344814272e302,-1.885790842054751e302,-1.8882023392952304e302,-1.8906138365357096e302,-1.893025333776189e302,-1.8954368310166678e302,-1.897848328257147e302,-1.9002598254976263e302,-1.9026713227381055e302,-1.9050828199785848e302,-1.907494317219064e302,-1.9099058144595433e302,-1.9123173117000225e302,-1.9147288089405018e302,-1.917140306180981e302,-1.9195518034214603e302,-1.9219633006619395e302,-1.9243747979024188e302,-1.9267862951428976e302,-1.929197792383377e302,-1.931609289623856e302,-1.9340207868643354e302,-1.9364322841048146e302,-1.938843781345294e302,-1.941255278585773e302,-1.9436667758262524e302,-1.9460782730667316e302,-1.948489770307211e302,-1.95090126754769e302,-1.9533127647881694e302,-1.9557242620286486e302,-1.9581357592691275e302,-1.9605472565096067e302,-1.962958753750086e302,-1.9653702509905652e302,-1.9677817482310445e302,-1.9701932454715237e302,-1.972604742712003e302,-1.9750162399524822e302,-1.9774277371929615e302,-1.9798392344334407e302,-1.98225073167392e302,-1.9846622289143992e302,-1.9870737261548785e302,-1.9894852233953574e302,-1.9918967206358366e302,-1.994308217876316e302,-1.996719715116795e302,-1.9991312123572744e302,-2.0015427095977536e302,-2.003954206838233e302,-2.006365704078712e302,-2.0087772013191914e302,-2.0111886985596706e302,-2.01360019580015e302,-2.016011693040629e302,-2.0184231902811084e302,-2.0208346875215876e302,-2.0232461847620665e302,-2.0256576820025457e302,-2.028069179243025e302,-2.0304806764835042e302,-2.0328921737239835e302,-2.0353036709644627e302,-2.037715168204942e302,-2.0401266654454212e302,-2.0425381626859005e302,-2.0449496599263797e302,-2.047361157166859e302,-2.0497726544073382e302,-2.0521841516478175e302,-2.0545956488882964e302,-2.0570071461287756e302,-2.059418643369255e302,-2.061830140609734e302,-2.0642416378502134e302,-2.0666531350906926e302,-2.069064632331172e302,-2.071476129571651e302,-2.0738876268121304e302,-2.0762991240526096e302,-2.078710621293089e302,-2.081122118533568e302,-2.0835336157740474e302,-2.0859451130145262e302,-2.0883566102550055e302,-2.0907681074954847e302,-2.093179604735964e302,-2.0955911019764432e302,-2.0980025992169225e302,-2.1004140964574017e302,-2.102825593697881e302,-2.1052370909383602e302,-2.1076485881788395e302,-2.1100600854193187e302,-2.112471582659798e302,-2.1148830799002772e302,-2.117294577140756e302,-2.1197060743812354e302,-2.1221175716217146e302,-2.124529068862194e302,-2.126940566102673e302,-2.1293520633431524e302,-2.1317635605836316e302,-2.134175057824111e302,-2.13658655506459e302,-2.1389980523050694e302,-2.1414095495455486e302,-2.143821046786028e302,-2.146232544026507e302,-2.148644041266986e302,-2.1510555385074652e302,-2.1534670357479445e302,-2.1558785329884237e302,-2.158290030228903e302,-2.1607015274693822e302,-2.1631130247098615e302,-2.1655245219503407e302,-2.16793601919082e302,-2.1703475164312992e302,-2.1727590136717785e302,-2.1751705109122577e302,-2.177582008152737e302,-2.1799935053932162e302,-2.182405002633695e302,-2.1848164998741743e302,-2.1872279971146536e302,-2.189639494355133e302,-2.192050991595612e302,-2.1944624888360913e302,-2.1968739860765706e302,-2.19928548331705e302,-2.201696980557529e302,-2.2041084777980083e302,-2.2065199750384876e302,-2.208931472278967e302,-2.211342969519446e302,-2.213754466759925e302,-2.2161659640004042e302,-2.2185774612408835e302,-2.2209889584813627e302,-2.223400455721842e302,-2.2258119529623212e302,-2.2282234502028005e302,-2.2306349474432797e302,-2.233046444683759e302,-2.2354579419242382e302,-2.2378694391647175e302,-2.2402809364051967e302,-2.242692433645676e302,-2.245103930886155e302,-2.247515428126634e302,-2.2499269253671133e302,-2.2523384226075926e302,-2.254749919848072e302,-2.257161417088551e302,-2.2595729143290303e302,-2.2619844115695096e302,-2.264395908809989e302,-2.266807406050468e302,-2.2692189032909473e302,-2.2716304005314266e302,-2.274041897771906e302,-2.2764533950123847e302,-2.278864892252864e302,-2.2812763894933432e302,-2.2836878867338225e302,-2.2860993839743017e302,-2.288510881214781e302,-2.2909223784552602e302,-2.2933338756957395e302,-2.2957453729362187e302,-2.298156870176698e302,-2.3005683674171772e302,-2.3029798646576565e302,-2.3053913618981357e302,-2.3078028591386146e302,-2.310214356379094e302,-2.312625853619573e302,-2.3150373508600523e302,-2.3174488481005316e302,-2.319860345341011e302,-2.32227184258149e302,-2.3246833398219693e302,-2.3270948370624486e302,-2.329506334302928e302,-2.331917831543407e302,-2.3343293287838863e302,-2.3367408260243656e302,-2.339152323264845e302,-2.3415638205053237e302,-2.343975317745803e302,-2.3463868149862822e302,-2.3487983122267614e302,-2.3512098094672407e302,-2.35362130670772e302,-2.3560328039481992e302,-2.3584443011886784e302,-2.3608557984291577e302,-2.363267295669637e302,-2.3656787929101162e302,-2.3680902901505954e302,-2.3705017873910747e302,-2.3729132846315536e302,-2.375324781872033e302,-2.377736279112512e302,-2.3801477763529913e302,-2.3825592735934706e302,-2.38497077083395e302,-2.387382268074429e302,-2.3897937653149083e302,-2.3922052625553876e302,-2.394616759795867e302,-2.397028257036346e302,-2.3994397542768253e302,-2.4018512515173046e302,-2.4042627487577834e302,-2.4066742459982627e302,-2.409085743238742e302,-2.411497240479221e302,-2.4139087377197004e302,-2.4163202349601797e302,-2.418731732200659e302,-2.421143229441138e302,-2.4235547266816174e302,-2.4259662239220967e302,-2.428377721162576e302,-2.4307892184030552e302,-2.4332007156435344e302,-2.4356122128840133e302,-2.4380237101244926e302,-2.440435207364972e302,-2.442846704605451e302,-2.4452582018459303e302,-2.4476696990864096e302,-2.450081196326889e302,-2.452492693567368e302,-2.4549041908078473e302,-2.4573156880483266e302,-2.459727185288806e302,-2.462138682529285e302,-2.4645501797697643e302,-2.466961677010243e302,-2.4693731742507224e302,-2.4717846714912017e302,-2.474196168731681e302,-2.47660766597216e302,-2.4790191632126394e302,-2.4814306604531187e302,-2.483842157693598e302,-2.486253654934077e302,-2.4886651521745564e302,-2.4910766494150357e302,-2.493488146655515e302,-2.495899643895994e302,-2.4983111411364734e302,-2.5007226383769523e302,-2.5031341356174316e302,-2.5055456328579108e302,-2.50795713009839e302,-2.5103686273388693e302,-2.5127801245793486e302,-2.5151916218198278e302,-2.517603119060307e302,-2.5200146163007863e302,-2.5224261135412656e302,-2.5248376107817448e302,-2.527249108022224e302,-2.5296606052627033e302,-2.532072102503182e302,-2.5344835997436614e302,-2.5368950969841407e302,-2.53930659422462e302,-2.541718091465099e302,-2.5441295887055784e302,-2.5465410859460577e302,-2.548952583186537e302,-2.551364080427016e302,-2.5537755776674954e302,-2.5561870749079747e302,-2.558598572148454e302,-2.561010069388933e302,-2.563421566629412e302,-2.5658330638698913e302,-2.5682445611103705e302,-2.5706560583508498e302,-2.573067555591329e302,-2.5754790528318083e302,-2.5778905500722875e302,-2.5803020473127668e302,-2.582713544553246e302,-2.5851250417937253e302,-2.5875365390342045e302,-2.5899480362746838e302,-2.592359533515163e302,-2.594771030755642e302,-2.597182527996121e302,-2.5995940252366004e302,-2.6020055224770797e302,-2.604417019717559e302,-2.606828516958038e302,-2.6092400141985174e302,-2.6116515114389967e302,-2.614063008679476e302,-2.616474505919955e302,-2.6188860031604344e302,-2.6212975004009137e302,-2.623708997641393e302,-2.6261204948818718e302,-2.628531992122351e302,-2.6309434893628303e302,-2.6333549866033095e302,-2.6357664838437888e302,-2.638177981084268e302,-2.6405894783247473e302,-2.6430009755652265e302,-2.6454124728057058e302,-2.647823970046185e302,-2.6502354672866643e302,-2.6526469645271435e302,-2.6550584617676228e302,-2.657469959008102e302,-2.659881456248581e302,-2.66229295348906e302,-2.6647044507295394e302,-2.6671159479700187e302,-2.669527445210498e302,-2.671938942450977e302,-2.6743504396914564e302,-2.6767619369319357e302,-2.679173434172415e302,-2.681584931412894e302,-2.6839964286533734e302,-2.6864079258938527e302,-2.688819423134332e302,-2.6912309203748108e302,-2.69364241761529e302,-2.6960539148557693e302,-2.6984654120962485e302,-2.7008769093367278e302,-2.703288406577207e302,-2.7056999038176863e302,-2.7081114010581655e302,-2.7105228982986448e302,-2.712934395539124e302,-2.7153458927796033e302,-2.7177573900200825e302,-2.7201688872605618e302,-2.7225803845010406e302,-2.72499188174152e302,-2.727403378981999e302,-2.7298148762224784e302,-2.7322263734629576e302,-2.734637870703437e302,-2.737049367943916e302,-2.7394608651843954e302,-2.7418723624248746e302,-2.744283859665354e302,-2.746695356905833e302,-2.7491068541463124e302,-2.7515183513867916e302,-2.7539298486272705e302,-2.7563413458677498e302,-2.758752843108229e302,-2.7611643403487083e302,-2.7635758375891875e302,-2.7659873348296668e302,-2.768398832070146e302,-2.7708103293106253e302,-2.7732218265511045e302,-2.7756333237915838e302,-2.778044821032063e302,-2.7804563182725423e302,-2.7828678155130215e302,-2.7852793127535004e302,-2.7876908099939796e302,-2.790102307234459e302,-2.792513804474938e302,-2.7949253017154174e302,-2.7973367989558966e302,-2.799748296196376e302,-2.802159793436855e302,-2.8045712906773344e302,-2.8069827879178136e302,-2.809394285158293e302,-2.811805782398772e302,-2.8142172796392514e302,-2.8166287768797306e302,-2.8190402741202095e302,-2.8214517713606888e302,-2.823863268601168e302,-2.8262747658416473e302,-2.8286862630821265e302,-2.8310977603226058e302,-2.833509257563085e302,-2.8359207548035643e302,-2.8383322520440435e302,-2.8407437492845228e302,-2.843155246525002e302,-2.8455667437654813e302,-2.8479782410059605e302,-2.8503897382464394e302,-2.8528012354869186e302,-2.855212732727398e302,-2.857624229967877e302,-2.8600357272083564e302,-2.8624472244488356e302,-2.864858721689315e302,-2.867270218929794e302,-2.8696817161702734e302,-2.8720932134107526e302,-2.874504710651232e302,-2.876916207891711e302,-2.8793277051321904e302,-2.8817392023726693e302,-2.8841506996131485e302,-2.8865621968536278e302,-2.888973694094107e302,-2.8913851913345863e302,-2.8937966885750655e302,-2.8962081858155448e302,-2.898619683056024e302,-2.9010311802965033e302,-2.9034426775369825e302,-2.9058541747774618e302,-2.908265672017941e302,-2.9106771692584203e302,-2.913088666498899e302,-2.9155001637393784e302,-2.9179116609798576e302,-2.920323158220337e302,-2.922734655460816e302,-2.9251461527012954e302,-2.9275576499417746e302,-2.929969147182254e302,-2.932380644422733e302,-2.9347921416632124e302,-2.9372036389036916e302,-2.939615136144171e302,-2.94202663338465e302,-2.944438130625129e302,-2.9468496278656082e302,-2.9492611251060875e302,-2.9516726223465667e302,-2.954084119587046e302,-2.9564956168275252e302,-2.9589071140680045e302,-2.9613186113084837e302,-2.963730108548963e302,-2.9661416057894422e302,-2.9685531030299215e302,-2.9709646002704007e302,-2.97337609751088e302,-2.9757875947513592e302,-2.978199091991838e302,-2.9806105892323174e302,-2.9830220864727966e302,-2.985433583713276e302,-2.987845080953755e302,-2.9902565781942344e302,-2.9926680754347136e302,-2.995079572675193e302,-2.997491069915672e302,-2.9999025671561514e302,-3.0023140643966306e302,-3.00472556163711e302,-3.007137058877589e302,-3.009548556118068e302,-3.0119600533585472e302,-3.0143715505990265e302,-3.0167830478395057e302,-3.019194545079985e302,-3.0216060423204642e302,-3.0240175395609435e302,-3.0264290368014227e302,-3.028840534041902e302,-3.0312520312823812e302,-3.0336635285228605e302,-3.0360750257633397e302,-3.038486523003819e302,-3.040898020244298e302,-3.043309517484777e302,-3.0457210147252564e302,-3.0481325119657356e302,-3.050544009206215e302,-3.052955506446694e302,-3.0553670036871734e302,-3.0577785009276526e302,-3.060189998168132e302,-3.062601495408611e302,-3.0650129926490904e302,-3.0674244898895696e302,-3.069835987130049e302,-3.0722474843705277e302,-3.074658981611007e302,-3.0770704788514862e302,-3.0794819760919655e302,-3.0818934733324447e302,-3.084304970572924e302,-3.0867164678134032e302,-3.0891279650538825e302,-3.0915394622943617e302,-3.093950959534841e302,-3.0963624567753202e302,-3.0987739540157995e302,-3.1011854512562787e302,-3.1035969484967576e302,-3.106008445737237e302,-3.108419942977716e302,-3.1108314402181953e302,-3.1132429374586746e302,-3.115654434699154e302,-3.118065931939633e302,-3.1204774291801124e302,-3.1228889264205916e302,-3.125300423661071e302,-3.12771192090155e302,-3.1301234181420294e302,-3.1325349153825086e302,-3.134946412622988e302,-3.1373579098634667e302,-3.139769407103946e302,-3.1421809043444252e302,-3.1445924015849045e302,-3.1470038988253837e302,-3.149415396065863e302,-3.1518268933063422e302,-3.1542383905468215e302,-3.1566498877873007e302,-3.15906138502778e302,-3.1614728822682592e302,-3.1638843795087385e302,-3.1662958767492177e302,-3.1687073739896966e302,-3.171118871230176e302,-3.173530368470655e302,-3.1759418657111343e302,-3.1783533629516136e302,-3.180764860192093e302,-3.183176357432572e302,-3.1855878546730513e302,-3.1879993519135306e302,-3.19041084915401e302,-3.192822346394489e302,-3.1952338436349683e302,-3.1976453408754476e302,-3.2000568381159265e302,-3.2024683353564057e302,-3.204879832596885e302,-3.2072913298373642e302,-3.2097028270778435e302,-3.2121143243183227e302,-3.214525821558802e302,-3.2169373187992812e302,-3.2193488160397605e302,-3.2217603132802397e302,-3.224171810520719e302,-3.2265833077611982e302,-3.2289948050016775e302,-3.2314063022421563e302,-3.2338177994826356e302,-3.236229296723115e302,-3.238640793963594e302,-3.2410522912040733e302,-3.2434637884445526e302,-3.245875285685032e302,-3.248286782925511e302,-3.2506982801659903e302,-3.2531097774064696e302,-3.255521274646949e302,-3.257932771887428e302,-3.2603442691279073e302,-3.2627557663683862e302,-3.2651672636088655e302,-3.2675787608493447e302,-3.269990258089824e302,-3.2724017553303032e302,-3.2748132525707825e302,-3.2772247498112617e302,-3.279636247051741e302,-3.2820477442922202e302,-3.2844592415326995e302,-3.2868707387731787e302,-3.289282236013658e302,-3.2916937332541372e302,-3.294105230494616e302,-3.2965167277350953e302,-3.2989282249755746e302,-3.301339722216054e302,-3.303751219456533e302,-3.3061627166970123e302,-3.3085742139374916e302,-3.310985711177971e302,-3.31339720841845e302,-3.3158087056589293e302,-3.3182202028994086e302,-3.320631700139888e302,-3.323043197380367e302,-3.3254546946208463e302,-3.3278661918613252e302,-3.3302776891018044e302,-3.3326891863422837e302,-3.335100683582763e302,-3.3375121808232422e302,-3.3399236780637214e302,-3.3423351753042007e302,-3.34474667254468e302,-3.3471581697851592e302,-3.3495696670256384e302,-3.3519811642661177e302,-3.354392661506597e302,-3.3568041587470762e302,-3.359215655987555e302,-3.3616271532280343e302,-3.3640386504685136e302,-3.366450147708993e302,-3.368861644949472e302,-3.3712731421899513e302,-3.3736846394304306e302,-3.37609613667091e302,-3.378507633911389e302,-3.3809191311518683e302,-3.3833306283923476e302,-3.385742125632827e302,-3.388153622873306e302,-3.390565120113785e302,-3.392976617354264e302,-3.3953881145947434e302,-3.3977996118352227e302,-3.400211109075702e302,-3.402622606316181e302,-3.4050341035566604e302,-3.4074456007971397e302,-3.409857098037619e302,-3.412268595278098e302,-3.4146800925185774e302,-3.4170915897590567e302,-3.419503086999536e302,-3.4219145842400148e302,-3.424326081480494e302,-3.4267375787209733e302,-3.4291490759614526e302,-3.431560573201932e302,-3.433972070442411e302,-3.436383567682891e302,-3.4387950649233696e302,-3.4412065621638484e302,-3.443618059404328e302,-3.446029556644807e302,-3.4484410538852866e302,-3.4508525511257654e302,-3.453264048366245e302,-3.455675545606724e302,-3.4580870428472036e302,-3.4604985400876824e302,-3.462910037328162e302,-3.465321534568641e302,-3.4677330318091206e302,-3.4701445290495994e302,-3.472556026290078e302,-3.474967523530558e302,-3.477379020771037e302,-3.4797905180115164e302,-3.482202015251995e302,-3.484613512492475e302,-3.487025009732954e302,-3.4894365069734334e302,-3.491848004213912e302,-3.494259501454392e302,-3.496670998694871e302,-3.4990824959353504e302,-3.501493993175829e302,-3.503905490416308e302,-3.506316987656788e302,-3.508728484897267e302,-3.511139982137746e302,-3.513551479378225e302,-3.515962976618705e302,-3.518374473859184e302,-3.520785971099663e302,-3.523197468340142e302,-3.525608965580622e302,-3.528020462821101e302,-3.53043196006158e302,-3.532843457302059e302,-3.535254954542538e302,-3.537666451783018e302,-3.5400779490234965e302,-3.542489446263976e302,-3.544900943504455e302,-3.547312440744935e302,-3.5497239379854135e302,-3.552135435225893e302,-3.554546932466372e302,-3.556958429706852e302,-3.5593699269473305e302,-3.56178142418781e302,-3.564192921428289e302,-3.566604418668768e302,-3.5690159159092475e302,-3.5714274131497264e302,-3.573838910390206e302,-3.576250407630685e302,-3.5786619048711645e302,-3.5810734021116434e302,-3.583484899352123e302,-3.585896396592602e302,-3.5883078938330815e302,-3.5907193910735604e302,-3.59313088831404e302,-3.595542385554519e302,-3.597953882794998e302,-3.6003653800354774e302,-3.602776877275956e302,-3.605188374516436e302,-3.607599871756915e302,-3.6100113689973944e302,-3.612422866237873e302,-3.614834363478353e302,-3.617245860718832e302,-3.6196573579593114e302,-3.62206885519979e302,-3.62448035244027e302,-3.626891849680749e302,-3.629303346921228e302,-3.631714844161707e302,-3.634126341402186e302,-3.636537838642666e302,-3.638949335883145e302,-3.641360833123624e302,-3.643772330364103e302,-3.646183827604583e302,-3.648595324845062e302,-3.651006822085541e302,-3.65341831932602e302,-3.6558298165665e302,-3.658241313806979e302,-3.6606528110474575e302,-3.663064308287937e302,-3.665475805528416e302,-3.667887302768896e302,-3.6702988000093745e302,-3.672710297249854e302,-3.675121794490333e302,-3.677533291730813e302,-3.6799447889712915e302,-3.682356286211771e302,-3.68476778345225e302,-3.68717928069273e302,-3.6895907779332085e302,-3.6920022751736874e302,-3.694413772414167e302,-3.696825269654646e302,-3.6992367668951255e302,-3.7016482641356044e302,-3.704059761376084e302,-3.706471258616563e302,-3.7088827558570425e302,-3.7112942530975214e302,-3.713705750338001e302,-3.71611724757848e302,-3.7185287448189595e302,-3.7209402420594384e302,-3.723351739299918e302,-3.725763236540397e302,-3.728174733780876e302,-3.7305862310213554e302,-3.732997728261834e302,-3.735409225502314e302,-3.737820722742793e302,-3.7402322199832724e302,-3.742643717223751e302,-3.745055214464231e302,-3.74746671170471e302,-3.7498782089451894e302,-3.752289706185668e302,-3.754701203426148e302,-3.757112700666627e302,-3.759524197907106e302,-3.761935695147585e302,-3.764347192388064e302,-3.766758689628544e302,-3.769170186869023e302,-3.771581684109502e302,-3.773993181349981e302,-3.776404678590461e302,-3.77881617583094e302,-3.781227673071419e302,-3.783639170311898e302,-3.786050667552378e302,-3.788462164792857e302,-3.7908736620333355e302,-3.793285159273815e302,-3.795696656514294e302,-3.798108153754774e302,-3.8005196509952525e302,-3.802931148235732e302,-3.805342645476211e302,-3.807754142716691e302,-3.8101656399571695e302,-3.812577137197649e302,-3.814988634438128e302,-3.817400131678608e302,-3.8198116289190865e302,-3.822223126159565e302,-3.824634623400045e302,-3.827046120640524e302,-3.8294576178810035e302,-3.831869115121482e302,-3.834280612361962e302,-3.836692109602441e302,-3.8391036068429205e302,-3.8415151040833994e302,-3.843926601323879e302,-3.846338098564358e302,-3.8487495958048375e302,-3.8511610930453164e302,-3.853572590285795e302,-3.855984087526275e302,-3.858395584766754e302,-3.8608070820072334e302,-3.863218579247712e302,-3.865630076488192e302,-3.868041573728671e302,-3.8704530709691504e302,-3.872864568209629e302,-3.875276065450109e302,-3.877687562690588e302,-3.8800990599310674e302,-3.882510557171546e302,-3.884922054412025e302,-3.887333551652505e302,-3.889745048892984e302,-3.892156546133463e302,-3.894568043373942e302,-3.896979540614422e302,-3.899391037854901e302,-3.90180253509538e302,-3.904214032335859e302,-3.906625529576339e302,-3.909037026816818e302,-3.911448524057297e302,-3.913860021297776e302,-3.916271518538255e302,-3.918683015778735e302,-3.9210945130192135e302,-3.923506010259693e302,-3.925917507500172e302,-3.928329004740652e302,-3.9307405019811305e302,-3.93315199922161e302,-3.935563496462089e302,-3.937974993702569e302,-3.9403864909430475e302,-3.942797988183527e302,-3.945209485424006e302,-3.947620982664485e302,-3.9500324799049645e302,-3.952443977145443e302,-3.954855474385923e302,-3.957266971626402e302,-3.9596784688668815e302,-3.96208996610736e302,-3.96450146334784e302,-3.966912960588319e302,-3.9693244578287985e302,-3.971735955069277e302,-3.974147452309757e302,-3.976558949550236e302,-3.978970446790715e302,-3.981381944031194e302,-3.983793441271673e302,-3.986204938512153e302,-3.988616435752632e302,-3.991027932993111e302,-3.99343943023359e302,-3.99585092747407e302,-3.998262424714549e302,-4.000673921955028e302,-4.003085419195507e302,-4.005496916435987e302,-4.007908413676466e302,-4.0103199109169446e302,-4.012731408157424e302,-4.015142905397903e302,-4.017554402638383e302,-4.0199658998788616e302,-4.022377397119341e302,-4.02478889435982e302,-4.0272003916003e302,-4.0296118888407786e302,-4.032023386081258e302,-4.034434883321737e302,-4.036846380562217e302,-4.0392578778026956e302,-4.041669375043175e302,-4.044080872283654e302,-4.046492369524133e302,-4.0489038667646126e302,-4.0513153640050915e302,-4.053726861245571e302,-4.05613835848605e302,-4.0585498557265296e302,-4.0609613529670085e302,-4.063372850207488e302,-4.065784347447967e302,-4.0681958446884466e302,-4.0706073419289255e302,-4.073018839169405e302,-4.075430336409884e302,-4.077841833650363e302,-4.0802533308908425e302,-4.082664828131321e302,-4.085076325371801e302,-4.08748782261228e302,-4.0898993198527595e302,-4.092310817093238e302,-4.094722314333718e302,-4.097133811574197e302,-4.0995453088146765e302,-4.101956806055155e302,-4.104368303295635e302,-4.106779800536114e302,-4.109191297776593e302,-4.111602795017072e302,-4.114014292257551e302,-4.116425789498031e302,-4.11883728673851e302,-4.121248783978989e302,-4.123660281219468e302,-4.126071778459948e302,-4.128483275700427e302,-4.130894772940906e302,-4.133306270181385e302,-4.135717767421865e302,-4.138129264662344e302,-4.1405407619028226e302,-4.142952259143302e302,-4.145363756383781e302,-4.147775253624261e302,-4.1501867508647396e302,-4.152598248105219e302,-4.155009745345698e302,-4.157421242586178e302,-4.1598327398266566e302,-4.162244237067136e302,-4.164655734307615e302,-4.167067231548095e302,-4.1694787287885736e302,-4.1718902260290525e302,-4.174301723269532e302,-4.176713220510011e302,-4.1791247177504906e302,-4.1815362149909695e302,-4.183947712231449e302,-4.186359209471928e302,-4.1887707067124076e302,-4.1911822039528865e302,-4.193593701193366e302,-4.196005198433845e302,-4.1984166956743246e302,-4.2008281929148035e302,-4.203239690155282e302,-4.205651187395762e302,-4.208062684636241e302,-4.2104741818767205e302,-4.212885679117199e302,-4.215297176357679e302,-4.217708673598158e302,-4.2201201708386375e302,-4.222531668079116e302,-4.224943165319596e302,-4.227354662560075e302,-4.2297661598005545e302,-4.232177657041033e302,-4.234589154281512e302,-4.237000651521992e302,-4.239412148762471e302,-4.24182364600295e302,-4.244235143243429e302,-4.246646640483909e302,-4.249058137724388e302,-4.251469634964867e302,-4.253881132205346e302,-4.256292629445826e302,-4.258704126686305e302,-4.261115623926784e302,-4.263527121167263e302,-4.265938618407742e302,-4.268350115648222e302,-4.2707616128887006e302,-4.27317311012918e302,-4.275584607369659e302,-4.277996104610139e302,-4.2804076018506176e302,-4.282819099091097e302,-4.285230596331576e302,-4.287642093572056e302,-4.2900535908125346e302,-4.292465088053014e302,-4.294876585293493e302,-4.297288082533972e302,-4.2996995797744516e302,-4.3021110770149304e302,-4.30452257425541e302,-4.306934071495889e302,-4.3093455687363686e302,-4.3117570659768474e302,-4.314168563217327e302,-4.316580060457806e302,-4.3189915576982856e302,-4.3214030549387644e302,-4.323814552179244e302,-4.326226049419723e302,-4.328637546660202e302,-4.3310490439006814e302,-4.33346054114116e302,-4.33587203838164e302,-4.338283535622119e302,-4.3406950328625984e302,-4.343106530103077e302,-4.345518027343557e302,-4.347929524584036e302,-4.3503410218245154e302,-4.352752519064994e302,-4.355164016305474e302,-4.357575513545953e302,-4.3599870107864324e302,-4.362398508026911e302,-4.36481000526739e302,-4.36722150250787e302,-4.369632999748349e302,-4.372044496988828e302,-4.374455994229307e302,-4.376867491469787e302,-4.379278988710266e302,-4.381690485950745e302,-4.384101983191224e302,-4.386513480431704e302,-4.388924977672183e302,-4.391336474912662e302,-4.393747972153141e302,-4.39615946939362e302,-4.3985709666341e302,-4.4009824638745786e302,-4.403393961115058e302,-4.405805458355537e302,-4.408216955596017e302,-4.4106284528364956e302,-4.413039950076975e302,-4.415451447317454e302,-4.417862944557934e302,-4.4202744417984126e302,-4.422685939038892e302,-4.425097436279371e302,-4.42750893351985e302,-4.4299204307603296e302,-4.4323319280008084e302,-4.434743425241288e302,-4.437154922481767e302,-4.4395664197222466e302,-4.4419779169627254e302,-4.444389414203205e302,-4.446800911443684e302,-4.4492124086841636e302,-4.4516239059246424e302,-4.454035403165122e302,-4.456446900405601e302,-4.45885839764608e302,-4.4612698948865594e302,-4.463681392127038e302,-4.466092889367518e302,-4.468504386607997e302,-4.4709158838484764e302,-4.473327381088955e302,-4.475738878329435e302,-4.478150375569914e302,-4.4805618728103934e302,-4.482973370050872e302,-4.485384867291352e302,-4.487796364531831e302,-4.49020786177231e302,-4.492619359012789e302,-4.495030856253268e302,-4.497442353493748e302,-4.499853850734227e302,-4.502265347974706e302,-4.504676845215185e302,-4.507088342455665e302,-4.509499839696144e302,-4.511911336936623e302,-4.514322834177102e302,-4.516734331417582e302,-4.519145828658061e302,-4.5215573258985395e302,-4.523968823139019e302,-4.526380320379498e302,-4.528791817619978e302,-4.5312033148604565e302,-4.533614812100936e302,-4.536026309341415e302,-4.538437806581895e302,-4.5408493038223735e302,-4.543260801062853e302,-4.545672298303332e302,-4.548083795543812e302,-4.5504952927842905e302,-4.5529067900247694e302,-4.555318287265249e302,-4.557729784505728e302,-4.5601412817462075e302,-4.5625527789866864e302,-4.564964276227166e302,-4.567375773467645e302,-4.5697872707081245e302,-4.5721987679486034e302,-4.574610265189083e302,-4.577021762429562e302,-4.5794332596700415e302,-4.5818447569105204e302,-4.584256254150999e302,-4.586667751391479e302,-4.589079248631958e302,-4.5914907458724374e302,-4.593902243112916e302,-4.596313740353396e302,-4.598725237593875e302,-4.6011367348343544e302,-4.603548232074833e302,-4.605959729315313e302,-4.608371226555792e302,-4.6107827237962714e302,-4.61319422103675e302,-4.615605718277229e302,-4.618017215517709e302,-4.620428712758188e302,-4.622840209998667e302,-4.625251707239146e302,-4.627663204479626e302,-4.630074701720105e302,-4.632486198960584e302,-4.634897696201063e302,-4.637309193441543e302,-4.639720690682022e302,-4.642132187922501e302,-4.64454368516298e302,-4.646955182403459e302,-4.649366679643939e302,-4.6517781768844175e302,-4.654189674124897e302,-4.656601171365376e302,-4.659012668605856e302,-4.6614241658463345e302,-4.663835663086814e302,-4.666247160327293e302,-4.668658657567773e302,-4.6710701548082515e302,-4.673481652048731e302,-4.67589314928921e302,-4.67830464652969e302,-4.6807161437701685e302,-4.6831276410106474e302,-4.685539138251127e302,-4.687950635491606e302,-4.6903621327320855e302,-4.6927736299725644e302,-4.695185127213044e302,-4.697596624453523e302,-4.7000081216940025e302,-4.7024196189344814e302,-4.704831116174961e302,-4.70724261341544e302,-4.7096541106559195e302,-4.7120656078963984e302,-4.714477105136877e302,-4.716888602377357e302,-4.719300099617836e302,-4.7217115968583154e302,-4.724123094098794e302,-4.726534591339274e302,-4.728946088579753e302,-4.7313575858202324e302,-4.733769083060711e302,-4.736180580301191e302,-4.73859207754167e302,-4.7410035747821494e302,-4.743415072022628e302,-4.745826569263107e302,-4.748238066503587e302,-4.750649563744066e302,-4.753061060984545e302,-4.755472558225024e302,-4.757884055465504e302,-4.760295552705983e302,-4.762707049946462e302,-4.765118547186941e302,-4.767530044427421e302,-4.7699415416679e302,-4.772353038908379e302,-4.774764536148858e302,-4.777176033389337e302,-4.779587530629817e302,-4.7819990278702955e302,-4.784410525110775e302,-4.786822022351254e302,-4.789233519591734e302,-4.7916450168322125e302,-4.794056514072692e302,-4.796468011313171e302,-4.798879508553651e302,-4.8012910057941295e302,-4.803702503034609e302,-4.806114000275088e302,-4.808525497515567e302,-4.8109369947560465e302,-4.813348491996525e302,-4.815759989237005e302,-4.818171486477484e302,-4.8205829837179635e302,-4.822994480958442e302,-4.825405978198922e302,-4.827817475439401e302,-4.8302289726798805e302,-4.832640469920359e302,-4.835051967160839e302,-4.837463464401318e302,-4.839874961641797e302,-4.842286458882276e302,-4.844697956122755e302,-4.847109453363235e302,-4.849520950603714e302,-4.851932447844193e302,-4.854343945084672e302,-4.856755442325152e302,-4.859166939565631e302,-4.8615784368061104e302,-4.863989934046589e302,-4.866401431287069e302,-4.868812928527548e302,-4.871224425768027e302,-4.873635923008506e302,-4.876047420248985e302,-4.878458917489465e302,-4.880870414729944e302,-4.883281911970423e302,-4.885693409210902e302,-4.888104906451382e302,-4.890516403691861e302,-4.89292790093234e302,-4.895339398172819e302,-4.897750895413299e302,-4.900162392653778e302,-4.9025738898942565e302,-4.904985387134736e302,-4.907396884375215e302,-4.909808381615695e302,-4.9122198788561735e302,-4.914631376096653e302,-4.917042873337132e302,-4.919454370577612e302,-4.9218658678180905e302,-4.92427736505857e302,-4.926688862299049e302,-4.929100359539529e302,-4.9315118567800075e302,-4.933923354020486e302,-4.936334851260966e302,-4.938746348501445e302,-4.9411578457419245e302,-4.943569342982403e302,-4.945980840222883e302,-4.948392337463362e302,-4.9508038347038415e302,-4.95321533194432e302,-4.9556268291848e302,-4.958038326425279e302,-4.9604498236657585e302,-4.962861320906237e302,-4.965272818146716e302,-4.967684315387196e302,-4.970095812627675e302,-4.972507309868154e302,-4.974918807108633e302,-4.977330304349113e302,-4.979741801589592e302,-4.982153298830071e302,-4.98456479607055e302,-4.98697629331103e302,-4.989387790551509e302,-4.991799287791988e302,-4.994210785032467e302,-4.996622282272947e302,-4.999033779513426e302,-5.0014452767539046e302,-5.003856773994384e302,-5.006268271234863e302,-5.008679768475343e302,-5.0110912657158216e302,-5.013502762956301e302,-5.01591426019678e302,-5.01832575743726e302,-5.0207372546777386e302,-5.023148751918218e302,-5.025560249158697e302,-5.027971746399177e302,-5.0303832436396556e302,-5.0327947408801345e302,-5.035206238120614e302,-5.037617735361093e302,-5.0400292326015726e302,-5.0424407298420515e302,-5.044852227082531e302,-5.04726372432301e302,-5.0496752215634896e302,-5.0520867188039685e302,-5.054498216044448e302,-5.056909713284927e302,-5.0593212105254066e302,-5.0617327077658855e302,-5.064144205006364e302,-5.066555702246844e302,-5.068967199487323e302,-5.0713786967278025e302,-5.073790193968281e302,-5.076201691208761e302,-5.07861318844924e302,-5.0810246856897195e302,-5.083436182930198e302,-5.085847680170678e302,-5.088259177411157e302,-5.0906706746516365e302,-5.093082171892115e302,-5.095493669132594e302,-5.097905166373074e302,-5.100316663613553e302,-5.102728160854032e302,-5.105139658094511e302,-5.107551155334991e302,-5.10996265257547e302,-5.112374149815949e302,-5.114785647056428e302,-5.117197144296908e302,-5.119608641537387e302,-5.122020138777866e302,-5.124431636018345e302,-5.126843133258824e302,-5.129254630499304e302,-5.1316661277397826e302,-5.134077624980262e302,-5.136489122220741e302,-5.138900619461221e302,-5.1413121167016996e302,-5.143723613942179e302,-5.146135111182658e302,-5.148546608423138e302,-5.1509581056636166e302,-5.153369602904096e302,-5.155781100144575e302,-5.158192597385054e302,-5.1606040946255336e302,-5.1630155918660125e302,-5.165427089106492e302,-5.167838586346971e302,-5.1702500835874506e302,-5.1726615808279295e302,-5.175073078068409e302,-5.177484575308888e302,-5.1798960725493676e302,-5.1823075697898465e302,-5.184719067030326e302,-5.187130564270805e302,-5.189542061511284e302,-5.1919535587517635e302,-5.194365055992242e302,-5.196776553232722e302,-5.199188050473201e302,-5.2015995477136805e302,-5.204011044954159e302,-5.206422542194639e302,-5.208834039435118e302,-5.2112455366755975e302,-5.213657033916076e302,-5.216068531156556e302,-5.218480028397035e302,-5.220891525637514e302,-5.223303022877993e302,-5.225714520118472e302,-5.228126017358952e302,-5.230537514599431e302,-5.23294901183991e302,-5.235360509080389e302,-5.237772006320869e302,-5.240183503561348e302,-5.242595000801827e302,-5.245006498042306e302,-5.247417995282786e302,-5.249829492523265e302,-5.2522409897637436e302,-5.254652487004223e302,-5.257063984244702e302,-5.259475481485182e302,-5.2618869787256606e302,-5.26429847596614e302,-5.266709973206619e302,-5.269121470447099e302,-5.2715329676875776e302,-5.273944464928057e302,-5.276355962168536e302,-5.278767459409016e302,-5.2811789566494946e302,-5.2835904538899734e302,-5.286001951130453e302,-5.288413448370932e302,-5.2908249456114116e302,-5.2932364428518904e302,-5.29564794009237e302,-5.298059437332849e302,-5.3004709345733286e302,-5.3028824318138074e302,-5.305293929054287e302,-5.307705426294766e302,-5.3101169235352456e302,-5.3125284207757244e302,-5.314939918016204e302,-5.317351415256683e302,-5.319762912497162e302,-5.3221744097376414e302,-5.32458590697812e302,-5.3269974042186e302,-5.329408901459079e302,-5.3318203986995584e302,-5.334231895940037e302,-5.336643393180517e302,-5.339054890420996e302,-5.3414663876614754e302,-5.343877884901954e302,-5.346289382142434e302,-5.348700879382913e302,-5.351112376623392e302,-5.353523873863871e302,-5.35593537110435e302,-5.35834686834483e302,-5.360758365585309e302,-5.363169862825788e302,-5.365581360066267e302,-5.367992857306747e302,-5.370404354547226e302,-5.372815851787705e302,-5.375227349028184e302,-5.377638846268664e302,-5.380050343509143e302,-5.3824618407496216e302,-5.384873337990101e302,-5.38728483523058e302,-5.38969633247106e302,-5.3921078297115386e302,-5.394519326952018e302,-5.396930824192497e302,-5.399342321432977e302,-5.4017538186734556e302,-5.404165315913935e302,-5.406576813154414e302,-5.408988310394894e302,-5.4113998076353726e302,-5.4138113048758514e302,-5.416222802116331e302,-5.41863429935681e302,-5.4210457965972896e302,-5.4234572938377684e302,-5.425868791078248e302,-5.428280288318727e302,-5.4306917855592066e302,-5.4331032827996854e302,-5.435514780040165e302,-5.437926277280644e302,-5.4403377745211236e302,-5.4427492717616024e302,-5.445160769002081e302,-5.447572266242561e302,-5.44998376348304e302,-5.4523952607235194e302,-5.454806757963998e302,-5.457218255204478e302,-5.459629752444957e302,-5.4620412496854364e302,-5.464452746925915e302,-5.466864244166395e302,-5.469275741406874e302,-5.4716872386473534e302,-5.474098735887832e302,-5.476510233128311e302,-5.478921730368791e302,-5.48133322760927e302,-5.483744724849749e302,-5.486156222090228e302,-5.488567719330708e302,-5.490979216571187e302,-5.493390713811666e302,-5.495802211052145e302,-5.498213708292625e302,-5.500625205533104e302,-5.503036702773583e302,-5.505448200014062e302,-5.507859697254541e302,-5.510271194495021e302,-5.5126826917354995e302,-5.515094188975979e302,-5.517505686216458e302,-5.519917183456938e302,-5.5223286806974165e302,-5.524740177937896e302,-5.527151675178375e302,-5.529563172418855e302,-5.5319746696593335e302,-5.534386166899813e302,-5.536797664140292e302,-5.539209161380771e302,-5.5416206586212505e302,-5.5440321558617294e302,-5.546443653102209e302,-5.548855150342688e302,-5.5512666475831675e302,-5.5536781448236464e302,-5.556089642064126e302,-5.558501139304605e302,-5.5609126365450845e302,-5.5633241337855634e302,-5.565735631026043e302,-5.568147128266522e302,-5.570558625507001e302,-5.5729701227474804e302,-5.575381619987959e302,-5.577793117228439e302,-5.580204614468918e302,-5.5826161117093974e302,-5.585027608949876e302,-5.587439106190356e302,-5.589850603430835e302,-5.5922621006713144e302,-5.594673597911793e302,-5.597085095152273e302,-5.599496592392752e302,-5.601908089633231e302,-5.60431958687371e302,-5.606731084114189e302,-5.609142581354669e302,-5.611554078595148e302,-5.613965575835627e302,-5.616377073076106e302,-5.618788570316586e302,-5.621200067557065e302,-5.623611564797544e302,-5.626023062038023e302,-5.628434559278503e302,-5.630846056518982e302,-5.633257553759461e302,-5.63566905099994e302,-5.638080548240419e302,-5.640492045480899e302,-5.6429035427213775e302,-5.645315039961857e302,-5.647726537202336e302,-5.650138034442816e302,-5.6525495316832945e302,-5.654961028923774e302,-5.657372526164253e302,-5.659784023404733e302,-5.6621955206452115e302,-5.664607017885691e302,-5.66701851512617e302,-5.669430012366649e302,-5.6718415096071285e302,-5.6742530068476074e302,-5.676664504088087e302,-5.679076001328566e302,-5.6814874985690455e302,-5.6838989958095244e302,-5.686310493050004e302,-5.688721990290483e302,-5.6911334875309625e302,-5.6935449847714414e302,-5.695956482011921e302,-5.6983679792524e302,-5.700779476492879e302,-5.7031909737333584e302,-5.705602470973837e302,-5.708013968214317e302,-5.710425465454796e302,-5.7128369626952754e302,-5.715248459935754e302,-5.717659957176234e302,-5.720071454416713e302,-5.7224829516571924e302,-5.724894448897671e302,-5.727305946138151e302,-5.72971744337863e302,-5.732128940619109e302,-5.734540437859588e302,-5.736951935100067e302,-5.739363432340547e302,-5.741774929581026e302,-5.744186426821505e302,-5.746597924061984e302,-5.749009421302464e302,-5.751420918542943e302,-5.753832415783422e302,-5.756243913023901e302,-5.758655410264381e302,-5.76106690750486e302,-5.7634784047453385e302,-5.765889901985818e302,-5.768301399226297e302,-5.770712896466777e302,-5.7731243937072555e302,-5.775535890947735e302,-5.777947388188214e302,-5.780358885428694e302,-5.7827703826691725e302,-5.785181879909652e302,-5.787593377150131e302,-5.790004874390611e302,-5.7924163716310895e302,-5.794827868871568e302,-5.797239366112048e302,-5.799650863352527e302,-5.8020623605930065e302,-5.804473857833485e302,-5.806885355073965e302,-5.809296852314444e302,-5.8117083495549235e302,-5.814119846795402e302,-5.816531344035882e302,-5.818942841276361e302,-5.8213543385168405e302,-5.823765835757319e302,-5.826177332997798e302,-5.828588830238278e302,-5.831000327478757e302,-5.833411824719236e302,-5.835823321959715e302,-5.838234819200195e302,-5.840646316440674e302,-5.843057813681153e302,-5.845469310921632e302,-5.847880808162112e302,-5.850292305402591e302,-5.85270380264307e302,-5.855115299883549e302,-5.857526797124028e302,-5.859938294364508e302,-5.8623497916049866e302,-5.864761288845466e302,-5.867172786085945e302,-5.869584283326425e302,-5.8719957805669036e302,-5.874407277807383e302,-5.876818775047862e302,-5.879230272288342e302,-5.881641769528821e302,-5.8840532667693e302,-5.886464764009779e302,-5.888876261250258e302,-5.891287758490738e302,-5.8936992557312165e302,-5.896110752971696e302,-5.898522250212175e302,-5.900933747452655e302,-5.9033452446931335e302,-5.905756741933613e302,-5.908168239174092e302,-5.910579736414572e302,-5.9129912336550505e302,-5.91540273089553e302,-5.917814228136009e302,-5.920225725376488e302,-5.9226372226169675e302,-5.925048719857446e302,-5.927460217097926e302,-5.929871714338405e302,-5.9322832115788845e302,-5.934694708819363e302,-5.937106206059843e302,-5.939517703300322e302,-5.9419292005408015e302,-5.94434069778128e302,-5.94675219502176e302,-5.949163692262239e302,-5.9515751895027185e302,-5.953986686743197e302,-5.956398183983676e302,-5.958809681224156e302,-5.961221178464635e302,-5.963632675705114e302,-5.966044172945593e302,-5.968455670186073e302,-5.970867167426552e302,-5.973278664667031e302,-5.97569016190751e302,-5.97810165914799e302,-5.980513156388469e302,-5.982924653628948e302,-5.985336150869427e302,-5.987747648109906e302,-5.990159145350386e302,-5.9925706425908646e302,-5.994982139831344e302,-5.997393637071823e302,-5.999805134312303e302,-6.0022166315527816e302,-6.004628128793261e302,-6.00703962603374e302,-6.00945112327422e302,-6.0118626205146986e302,-6.014274117755178e302,-6.016685614995657e302,-6.019097112236136e302,-6.0215086094766156e302,-6.0239201067170945e302,-6.026331603957574e302,-6.028743101198053e302,-6.0311545984385326e302,-6.0335660956790115e302,-6.035977592919491e302,-6.03838909015997e302,-6.0408005874004496e302,-6.0432120846409285e302,-6.045623581881408e302,-6.048035079121887e302,-6.050446576362366e302,-6.0528580736028455e302,-6.055269570843324e302,-6.057681068083804e302,-6.060092565324283e302,-6.0625040625647625e302,-6.064915559805241e302,-6.067327057045721e302,-6.0697385542862e302,-6.0721500515266795e302,-6.074561548767158e302,-6.076973046007638e302,-6.079384543248117e302,-6.081796040488596e302,-6.084207537729075e302,-6.086619034969554e302,-6.089030532210034e302,-6.091442029450513e302,-6.093853526690992e302,-6.096265023931471e302,-6.098676521171951e302,-6.10108801841243e302,-6.103499515652909e302,-6.105911012893388e302,-6.108322510133868e302,-6.110734007374347e302,-6.1131455046148256e302,-6.115557001855305e302,-6.117968499095784e302,-6.120379996336264e302,-6.1227914935767426e302,-6.125202990817222e302,-6.127614488057701e302,-6.130025985298181e302,-6.1324374825386596e302,-6.134848979779139e302,-6.137260477019618e302,-6.139671974260098e302,-6.1420834715005766e302,-6.1444949687410555e302,-6.146906465981535e302,-6.149317963222014e302,-6.1517294604624936e302,-6.1541409577029725e302,-6.156552454943452e302,-6.158963952183931e302,-6.1613754494244106e302,-6.1637869466648895e302,-6.166198443905369e302,-6.168609941145848e302,-6.1710214383863276e302,-6.1734329356268065e302,-6.175844432867285e302,-6.178255930107765e302,-6.180667427348244e302,-6.1830789245887235e302,-6.185490421829202e302,-6.187901919069682e302,-6.190313416310161e302,-6.1927249135506405e302,-6.195136410791119e302,-6.197547908031599e302,-6.199959405272078e302,-6.2023709025125575e302,-6.204782399753036e302,-6.207193896993515e302,-6.209605394233995e302,-6.212016891474474e302,-6.214428388714953e302,-6.216839885955432e302,-6.219251383195912e302,-6.221662880436391e302,-6.22407437767687e302,-6.226485874917349e302,-6.228897372157829e302,-6.231308869398308e302,-6.233720366638787e302,-6.236131863879266e302,-6.238543361119745e302,-6.240954858360225e302,-6.2433663556007036e302,-6.245777852841183e302,-6.248189350081662e302,-6.250600847322142e302,-6.2530123445626206e302,-6.2554238418031e302,-6.257835339043579e302,-6.260246836284059e302,-6.2626583335245376e302,-6.265069830765017e302,-6.267481328005496e302,-6.269892825245976e302,-6.2723043224864546e302,-6.2747158197269334e302,-6.277127316967413e302,-6.279538814207892e302,-6.2819503114483716e302,-6.2843618086888504e302,-6.28677330592933e302,-6.289184803169809e302,-6.2915963004102886e302,-6.2940077976507674e302,-6.296419294891247e302,-6.298830792131726e302,-6.3012422893722056e302,-6.3036537866126844e302,-6.306065283853163e302,-6.308476781093643e302,-6.310888278334122e302,-6.3132997755746014e302,-6.31571127281508e302,-6.31812277005556e302,-6.320534267296039e302,-6.3229457645365184e302,-6.325357261776997e302,-6.327768759017477e302,-6.330180256257956e302,-6.3325917534984354e302,-6.335003250738914e302,-6.337414747979393e302,-6.339826245219873e302,-6.342237742460352e302,-6.344649239700831e302,-6.34706073694131e302,-6.34947223418179e302,-6.351883731422269e302,-6.354295228662748e302,-6.356706725903227e302,-6.359118223143707e302,-6.361529720384186e302,-6.363941217624665e302,-6.366352714865144e302,-6.368764212105623e302,-6.371175709346103e302,-6.3735872065865816e302,-6.375998703827061e302,-6.37841020106754e302,-6.38082169830802e302,-6.3832331955484986e302,-6.385644692788978e302,-6.388056190029457e302,-6.390467687269937e302,-6.3928791845104156e302,-6.395290681750895e302,-6.397702178991374e302,-6.400113676231853e302,-6.4025251734723326e302,-6.4049366707128114e302,-6.407348167953291e302,-6.40975966519377e302,-6.4121711624342496e302,-6.4145826596747284e302,-6.416994156915208e302,-6.419405654155687e302,-6.4218171513961666e302,-6.4242286486366454e302,-6.426640145877125e302,-6.429051643117604e302,-6.431463140358083e302,-6.4338746375985624e302,-6.436286134839041e302,-6.438697632079521e302,-6.44110912932e302,-6.4435206265604794e302,-6.445932123800958e302,-6.448343621041438e302,-6.450755118281917e302,-6.4531666155223964e302,-6.455578112762875e302,-6.457989610003355e302,-6.460401107243834e302,-6.462812604484313e302,-6.465224101724792e302,-6.467635598965271e302,-6.470047096205751e302,-6.47245859344623e302,-6.474870090686709e302,-6.477281587927188e302,-6.479693085167668e302,-6.482104582408147e302,-6.484516079648626e302,-6.486927576889105e302,-6.489339074129585e302,-6.491750571370064e302,-6.4941620686105425e302,-6.496573565851022e302,-6.498985063091501e302,-6.501396560331981e302,-6.5038080575724595e302,-6.506219554812939e302,-6.508631052053418e302,-6.511042549293898e302,-6.5134540465343765e302,-6.515865543774856e302,-6.518277041015335e302,-6.520688538255815e302,-6.5231000354962935e302,-6.5255115327367724e302,-6.527923029977252e302,-6.530334527217731e302,-6.5327460244582105e302,-6.5351575216986894e302,-6.537569018939169e302,-6.539980516179648e302,-6.5423920134201275e302,-6.5448035106606064e302,-6.547215007901086e302,-6.549626505141565e302,-6.5520380023820445e302,-6.5544494996225234e302,-6.556860996863002e302,-6.559272494103482e302,-6.561683991343961e302,-6.5640954885844404e302,-6.566506985824919e302,-6.568918483065399e302,-6.571329980305878e302,-6.5737414775463574e302,-6.576152974786836e302,-6.578564472027316e302,-6.580975969267795e302,-6.5833874665082744e302,-6.585798963748753e302,-6.588210460989232e302,-6.590621958229712e302,-6.593033455470191e302,-6.59544495271067e302,-6.597856449951149e302,-6.600267947191629e302,-6.602679444432108e302,-6.605090941672587e302,-6.607502438913066e302,-6.609913936153546e302,-6.612325433394025e302,-6.614736930634504e302,-6.617148427874983e302,-6.619559925115463e302,-6.621971422355942e302,-6.6243829195964205e302,-6.6267944168369e302,-6.629205914077379e302,-6.631617411317859e302,-6.6340289085583375e302,-6.636440405798817e302,-6.638851903039296e302,-6.641263400279776e302,-6.6436748975202545e302,-6.646086394760734e302,-6.648497892001213e302,-6.650909389241693e302,-6.6533208864821715e302,-6.6557323837226504e302,-6.65814388096313e302,-6.660555378203609e302,-6.6629668754440885e302,-6.6653783726845674e302,-6.667789869925047e302,-6.670201367165526e302,-6.6726128644060055e302,-6.6750243616464844e302,-6.677435858886964e302,-6.679847356127443e302,-6.6822588533679225e302,-6.6846703506084014e302,-6.68708184784888e302,-6.68949334508936e302,-6.691904842329839e302,-6.6943163395703184e302,-6.696727836810797e302,-6.699139334051277e302,-6.701550831291756e302,-6.7039623285322354e302,-6.706373825772714e302,-6.708785323013194e302,-6.711196820253673e302,-6.7136083174941524e302,-6.716019814734631e302,-6.71843131197511e302,-6.72084280921559e302,-6.723254306456069e302,-6.725665803696548e302,-6.728077300937027e302,-6.730488798177507e302,-6.732900295417986e302,-6.735311792658465e302,-6.737723289898944e302,-6.740134787139424e302,-6.742546284379903e302,-6.744957781620382e302,-6.747369278860861e302,-6.74978077610134e302,-6.75219227334182e302,-6.7546037705822985e302,-6.757015267822778e302,-6.759426765063257e302,-6.761838262303737e302,-6.7642497595442155e302,-6.766661256784695e302,-6.769072754025174e302,-6.771484251265654e302,-6.7738957485061325e302,-6.776307245746612e302,-6.778718742987091e302,-6.78113024022757e302,-6.7835417374680495e302,-6.785953234708528e302,-6.788364731949008e302,-6.790776229189487e302,-6.7931877264299665e302,-6.795599223670445e302,-6.798010720910925e302,-6.800422218151404e302,-6.8028337153918835e302,-6.805245212632362e302,-6.807656709872842e302,-6.810068207113321e302,-6.8124797043538e302,-6.814891201594279e302,-6.817302698834758e302,-6.819714196075238e302,-6.822125693315717e302,-6.824537190556196e302,-6.826948687796675e302,-6.829360185037155e302,-6.831771682277634e302,-6.834183179518113e302,-6.836594676758592e302,-6.839006173999072e302,-6.841417671239551e302,-6.8438291684800296e302,-6.846240665720509e302,-6.848652162960988e302,-6.851063660201468e302,-6.8534751574419466e302,-6.855886654682426e302,-6.858298151922905e302,-6.860709649163384e302,-6.863121146403864e302,-6.865532643644343e302,-6.867944140884822e302,-6.870355638125301e302,-6.872767135365781e302,-6.87517863260626e302,-6.877590129846739e302,-6.880001627087218e302,-6.882413124327697e302,-6.884824621568177e302,-6.887236118808656e302,-6.889647616049135e302,-6.892059113289614e302,-6.894470610530094e302,-6.896882107770573e302,-6.899293605011052e302,-6.901705102251531e302,-6.904116599492011e302,-6.90652809673249e302,-6.908939593972969e302,-6.911351091213448e302,-6.913762588453927e302,-6.916174085694407e302,-6.918585582934886e302,-6.920997080175365e302,-6.923408577415844e302,-6.925820074656324e302,-6.928231571896803e302,-6.930643069137282e302,-6.93305456637776e302,-6.935466063618241e302,-6.93787756085872e302,-6.940289058099199e302,-6.942700555339678e302,-6.945112052580157e302,-6.947523549820637e302,-6.949935047061116e302,-6.952346544301595e302,-6.954758041542074e302,-6.957169538782554e302,-6.959581036023033e302,-6.961992533263512e302,-6.96440403050399e302,-6.966815527744471e302,-6.96922702498495e302,-6.971638522225429e302,-6.974050019465908e302,-6.976461516706386e302,-6.978873013946867e302,-6.981284511187346e302,-6.983696008427825e302,-6.986107505668303e302,-6.988519002908784e302,-6.990930500149263e302,-6.993341997389742e302,-6.99575349463022e302,-6.998164991870701e302,-7.00057648911118e302,-7.002987986351659e302,-7.005399483592137e302,-7.007810980832616e302,-7.010222478073097e302,-7.012633975313576e302,-7.015045472554054e302,-7.017456969794533e302,-7.019868467035014e302,-7.022279964275493e302,-7.024691461515971e302,-7.02710295875645e302,-7.02951445599693e302,-7.03192595323741e302,-7.034337450477888e302,-7.036748947718367e302,-7.039160444958846e302,-7.041571942199327e302,-7.043983439439805e302,-7.046394936680284e302,-7.048806433920763e302,-7.051217931161244e302,-7.053629428401722e302,-7.056040925642201e302,-7.05845242288268e302,-7.06086392012316e302,-7.06327541736364e302,-7.065686914604118e302,-7.068098411844597e302,-7.070509909085076e302,-7.072921406325556e302,-7.075332903566035e302,-7.077744400806514e302,-7.080155898046993e302,-7.082567395287473e302,-7.084978892527952e302,-7.087390389768431e302,-7.08980188700891e302,-7.09221338424939e302,-7.09462488148987e302,-7.097036378730348e302,-7.099447875970827e302,-7.101859373211306e302,-7.104270870451786e302,-7.106682367692265e302,-7.109093864932744e302,-7.111505362173223e302,-7.113916859413703e302,-7.116328356654182e302,-7.118739853894661e302,-7.12115135113514e302,-7.12356284837562e302,-7.125974345616099e302,-7.128385842856578e302,-7.130797340097057e302,-7.133208837337536e302,-7.135620334578016e302,-7.138031831818495e302,-7.140443329058974e302,-7.142854826299453e302,-7.145266323539933e302,-7.147677820780412e302,-7.150089318020891e302,-7.15250081526137e302,-7.15491231250185e302,-7.157323809742329e302,-7.159735306982808e302,-7.162146804223287e302,-7.164558301463766e302,-7.166969798704246e302,-7.169381295944725e302,-7.171792793185204e302,-7.174204290425683e302,-7.176615787666163e302,-7.179027284906642e302,-7.181438782147121e302,-7.1838502793876e302,-7.18626177662808e302,-7.188673273868559e302,-7.191084771109038e302,-7.193496268349517e302,-7.195907765589996e302,-7.198319262830476e302,-7.200730760070955e302,-7.203142257311434e302,-7.205553754551913e302,-7.207965251792393e302,-7.210376749032872e302,-7.21278824627335e302,-7.21519974351383e302,-7.21761124075431e302,-7.220022737994789e302,-7.222434235235268e302,-7.224845732475747e302,-7.227257229716225e302,-7.229668726956706e302,-7.232080224197185e302,-7.234491721437664e302,-7.236903218678142e302,-7.239314715918623e302,-7.241726213159102e302,-7.24413771039958e302,-7.24654920764006e302,-7.24896070488054e302,-7.251372202121019e302,-7.253783699361498e302,-7.256195196601976e302,-7.258606693842455e302,-7.261018191082936e302,-7.263429688323415e302,-7.265841185563893e302,-7.268252682804372e302,-7.270664180044853e302,-7.273075677285332e302,-7.27548717452581e302,-7.27789867176629e302,-7.28031016900677e302,-7.282721666247249e302,-7.285133163487727e302,-7.287544660728206e302,-7.289956157968685e302,-7.292367655209166e302,-7.294779152449644e302,-7.297190649690123e302,-7.299602146930602e302,-7.302013644171083e302,-7.304425141411561e302,-7.30683663865204e302,-7.309248135892519e302,-7.311659633133e302,-7.314071130373478e302,-7.316482627613957e302,-7.318894124854436e302,-7.321305622094915e302,-7.323717119335395e302,-7.326128616575874e302,-7.328540113816353e302,-7.330951611056832e302,-7.333363108297312e302,-7.335774605537791e302,-7.33818610277827e302,-7.340597600018749e302,-7.34300909725923e302,-7.345420594499708e302,-7.347832091740187e302,-7.350243588980666e302,-7.352655086221145e302,-7.355066583461625e302,-7.357478080702104e302,-7.359889577942583e302,-7.362301075183062e302,-7.364712572423542e302,-7.367124069664021e302,-7.3695355669045e302,-7.371947064144979e302,-7.37435856138546e302,-7.376770058625938e302,-7.379181555866417e302,-7.381593053106896e302,-7.384004550347375e302,-7.386416047587855e302,-7.388827544828334e302,-7.391239042068813e302,-7.393650539309292e302,-7.396062036549772e302,-7.398473533790251e302,-7.40088503103073e302,-7.403296528271209e302,-7.405708025511689e302,-7.408119522752168e302,-7.410531019992647e302,-7.412942517233126e302,-7.415354014473606e302,-7.417765511714085e302,-7.420177008954564e302,-7.422588506195043e302,-7.425000003435522e302,-7.427411500676002e302,-7.429822997916481e302,-7.43223449515696e302,-7.434645992397439e302,-7.437057489637919e302,-7.439468986878398e302,-7.441880484118877e302,-7.444291981359356e302,-7.446703478599836e302,-7.449114975840315e302,-7.451526473080794e302,-7.453937970321273e302,-7.456349467561752e302,-7.458760964802232e302,-7.461172462042711e302,-7.46358395928319e302,-7.465995456523669e302,-7.468406953764149e302,-7.470818451004628e302,-7.473229948245107e302,-7.475641445485586e302,-7.478052942726066e302,-7.480464439966545e302,-7.482875937207024e302,-7.485287434447503e302,-7.487698931687981e302,-7.490110428928462e302,-7.49252192616894e302,-7.49493342340942e302,-7.497344920649898e302,-7.499756417890379e302,-7.502167915130858e302,-7.504579412371337e302,-7.506990909611815e302,-7.509402406852296e302,-7.511813904092775e302,-7.514225401333254e302,-7.516636898573732e302,-7.519048395814211e302,-7.521459893054692e302,-7.52387139029517e302,-7.52628288753565e302,-7.528694384776128e302,-7.531105882016609e302,-7.533517379257088e302,-7.535928876497566e302,-7.538340373738045e302,-7.540751870978526e302,-7.543163368219005e302,-7.545574865459483e302,-7.547986362699962e302,-7.550397859940441e302,-7.552809357180922e302,-7.5552208544214e302,-7.55763235166188e302,-7.560043848902358e302,-7.562455346142839e302,-7.564866843383317e302,-7.567278340623796e302,-7.569689837864275e302,-7.572101335104756e302,-7.574512832345234e302,-7.576924329585713e302,-7.579335826826192e302,-7.581747324066671e302,-7.584158821307151e302,-7.58657031854763e302,-7.588981815788109e302,-7.591393313028588e302,-7.593804810269068e302,-7.596216307509547e302,-7.598627804750026e302,-7.601039301990505e302,-7.603450799230985e302,-7.605862296471464e302,-7.608273793711943e302,-7.610685290952422e302,-7.613096788192901e302,-7.615508285433381e302,-7.61791978267386e302,-7.620331279914339e302,-7.622742777154818e302,-7.625154274395298e302,-7.627565771635777e302,-7.629977268876256e302,-7.632388766116735e302,-7.634800263357215e302,-7.637211760597694e302,-7.639623257838173e302,-7.642034755078652e302,-7.64444625231913e302,-7.646857749559611e302,-7.64926924680009e302,-7.651680744040569e302,-7.654092241281048e302,-7.656503738521528e302,-7.658915235762007e302,-7.661326733002486e302,-7.663738230242965e302,-7.666149727483445e302,-7.668561224723924e302,-7.670972721964403e302,-7.673384219204882e302,-7.67579571644536e302,-7.678207213685841e302,-7.68061871092632e302,-7.683030208166799e302,-7.685441705407278e302,-7.687853202647758e302,-7.690264699888237e302,-7.692676197128716e302,-7.695087694369195e302,-7.697499191609675e302,-7.699910688850154e302,-7.702322186090633e302,-7.704733683331112e302,-7.70714518057159e302,-7.709556677812071e302,-7.71196817505255e302,-7.714379672293029e302,-7.716791169533508e302,-7.719202666773988e302,-7.721614164014467e302,-7.724025661254946e302,-7.726437158495425e302,-7.728848655735905e302,-7.731260152976384e302,-7.733671650216863e302,-7.736083147457342e302,-7.73849464469782e302,-7.740906141938301e302,-7.74331763917878e302,-7.745729136419259e302,-7.748140633659737e302,-7.750552130900218e302,-7.752963628140697e302,-7.755375125381176e302,-7.757786622621654e302,-7.760198119862135e302,-7.762609617102614e302,-7.765021114343093e302,-7.767432611583571e302,-7.76984410882405e302,-7.77225560606453e302,-7.77466710330501e302,-7.777078600545488e302,-7.779490097785967e302,-7.781901595026448e302,-7.784313092266927e302,-7.786724589507405e302,-7.789136086747884e302,-7.791547583988365e302,-7.793959081228844e302,-7.796370578469322e302,-7.798782075709801e302,-7.80119357295028e302,-7.80360507019076e302,-7.80601656743124e302,-7.808428064671718e302,-7.810839561912197e302,-7.813251059152678e302,-7.815662556393156e302,-7.818074053633635e302,-7.820485550874114e302,-7.822897048114595e302,-7.825308545355073e302,-7.827720042595552e302,-7.830131539836031e302,-7.83254303707651e302,-7.83495453431699e302,-7.83736603155747e302,-7.839777528797948e302,-7.842189026038427e302,-7.844600523278907e302,-7.847012020519386e302,-7.849423517759865e302,-7.851835015000344e302,-7.854246512240824e302,-7.856658009481303e302,-7.859069506721782e302,-7.861481003962261e302,-7.86389250120274e302,-7.86630399844322e302,-7.868715495683699e302,-7.871126992924178e302,-7.873538490164657e302,-7.875949987405137e302,-7.878361484645616e302,-7.880772981886095e302,-7.883184479126574e302,-7.885595976367054e302,-7.888007473607533e302,-7.890418970848012e302,-7.892830468088491e302,-7.89524196532897e302,-7.89765346256945e302,-7.900064959809929e302,-7.902476457050408e302,-7.904887954290887e302,-7.907299451531367e302,-7.909710948771846e302,-7.912122446012325e302,-7.914533943252804e302,-7.916945440493284e302,-7.919356937733763e302,-7.921768434974242e302,-7.92417993221472e302,-7.9265914294552e302,-7.92900292669568e302,-7.931414423936159e302,-7.933825921176638e302,-7.936237418417117e302,-7.938648915657597e302,-7.941060412898076e302,-7.943471910138555e302,-7.945883407379034e302,-7.948294904619514e302,-7.950706401859993e302,-7.953117899100472e302,-7.95552939634095e302,-7.95794089358143e302,-7.96035239082191e302,-7.962763888062389e302,-7.965175385302868e302,-7.967586882543346e302,-7.969998379783827e302,-7.972409877024306e302,-7.974821374264785e302,-7.977232871505263e302,-7.979644368745744e302,-7.982055865986223e302,-7.984467363226702e302,-7.98687886046718e302,-7.98929035770766e302,-7.99170185494814e302,-7.994113352188619e302,-7.996524849429097e302,-7.998936346669576e302,-8.001347843910057e302,-8.003759341150536e302,-8.006170838391014e302,-8.008582335631493e302,-8.010993832871974e302,-8.013405330112453e302,-8.015816827352931e302,-8.01822832459341e302,-8.020639821833889e302,-8.02305131907437e302,-8.025462816314848e302,-8.027874313555327e302,-8.030285810795806e302,-8.032697308036287e302,-8.035108805276765e302,-8.037520302517244e302,-8.039931799757723e302,-8.042343296998204e302,-8.044754794238682e302,-8.047166291479161e302,-8.04957778871964e302,-8.05198928596012e302,-8.0544007832006e302,-8.056812280441078e302,-8.059223777681557e302,-8.061635274922036e302,-8.064046772162516e302,-8.066458269402995e302,-8.068869766643474e302,-8.071281263883953e302,-8.073692761124433e302,-8.076104258364912e302,-8.078515755605391e302,-8.08092725284587e302,-8.08333875008635e302,-8.08575024732683e302,-8.088161744567308e302,-8.090573241807787e302,-8.092984739048266e302,-8.095396236288746e302,-8.097807733529225e302,-8.100219230769704e302,-8.102630728010183e302,-8.105042225250663e302,-8.107453722491142e302,-8.109865219731621e302,-8.1122767169721e302,-8.11468821421258e302,-8.117099711453059e302,-8.119511208693538e302,-8.121922705934017e302,-8.124334203174496e302,-8.126745700414976e302,-8.129157197655455e302,-8.131568694895934e302,-8.133980192136413e302,-8.136391689376893e302,-8.138803186617372e302,-8.141214683857851e302,-8.14362618109833e302,-8.14603767833881e302,-8.148449175579289e302,-8.150860672819768e302,-8.153272170060247e302,-8.155683667300726e302,-8.158095164541206e302,-8.160506661781685e302,-8.162918159022164e302,-8.165329656262643e302,-8.167741153503123e302,-8.170152650743602e302,-8.172564147984081e302,-8.17497564522456e302,-8.17738714246504e302,-8.179798639705519e302,-8.182210136945998e302,-8.184621634186477e302,-8.187033131426956e302,-8.189444628667436e302,-8.191856125907915e302,-8.194267623148394e302,-8.196679120388873e302,-8.199090617629353e302,-8.201502114869832e302,-8.20391361211031e302,-8.20632510935079e302,-8.20873660659127e302,-8.211148103831749e302,-8.213559601072228e302,-8.215971098312707e302,-8.218382595553185e302,-8.220794092793666e302,-8.223205590034145e302,-8.225617087274624e302,-8.228028584515102e302,-8.230440081755583e302,-8.232851578996062e302,-8.23526307623654e302,-8.23767457347702e302,-8.2400860707175e302,-8.242497567957979e302,-8.244909065198458e302,-8.247320562438936e302,-8.249732059679415e302,-8.252143556919896e302,-8.254555054160375e302,-8.256966551400853e302,-8.259378048641332e302,-8.261789545881813e302,-8.264201043122292e302,-8.26661254036277e302,-8.26902403760325e302,-8.27143553484373e302,-8.273847032084209e302,-8.276258529324687e302,-8.278670026565166e302,-8.281081523805645e302,-8.283493021046126e302,-8.285904518286604e302,-8.288316015527083e302,-8.290727512767562e302,-8.293139010008043e302,-8.295550507248521e302,-8.297962004489e302,-8.300373501729479e302,-8.30278499896996e302,-8.305196496210438e302,-8.307607993450917e302,-8.310019490691396e302,-8.312430987931875e302,-8.314842485172355e302,-8.317253982412834e302,-8.319665479653313e302,-8.322076976893792e302,-8.324488474134272e302,-8.326899971374751e302,-8.32931146861523e302,-8.331722965855709e302,-8.33413446309619e302,-8.336545960336668e302,-8.338957457577147e302,-8.341368954817626e302,-8.343780452058105e302,-8.346191949298585e302,-8.348603446539064e302,-8.351014943779543e302,-8.353426441020022e302,-8.355837938260502e302,-8.358249435500981e302,-8.36066093274146e302,-8.363072429981939e302,-8.36548392722242e302,-8.367895424462898e302,-8.370306921703377e302,-8.372718418943856e302,-8.375129916184335e302,-8.377541413424815e302,-8.379952910665294e302,-8.382364407905773e302,-8.384775905146252e302,-8.387187402386732e302,-8.389598899627211e302,-8.39201039686769e302,-8.394421894108169e302,-8.396833391348649e302,-8.399244888589128e302,-8.401656385829607e302,-8.404067883070086e302,-8.406479380310565e302,-8.408890877551045e302,-8.411302374791524e302,-8.413713872032003e302,-8.416125369272482e302,-8.418536866512962e302,-8.420948363753441e302,-8.42335986099392e302,-8.425771358234399e302,-8.428182855474879e302,-8.430594352715358e302,-8.433005849955837e302,-8.435417347196316e302,-8.437828844436795e302,-8.440240341677275e302,-8.442651838917754e302,-8.445063336158233e302,-8.447474833398712e302,-8.449886330639192e302,-8.452297827879671e302,-8.45470932512015e302,-8.457120822360629e302,-8.459532319601109e302,-8.461943816841588e302,-8.464355314082067e302,-8.466766811322546e302,-8.469178308563024e302,-8.471589805803505e302,-8.474001303043984e302,-8.476412800284463e302,-8.478824297524941e302,-8.481235794765422e302,-8.4836472920059e302,-8.48605878924638e302,-8.488470286486858e302,-8.490881783727339e302,-8.493293280967818e302,-8.495704778208297e302,-8.498116275448775e302,-8.500527772689254e302,-8.502939269929735e302,-8.505350767170214e302,-8.507762264410692e302,-8.510173761651171e302,-8.512585258891652e302,-8.51499675613213e302,-8.51740825337261e302,-8.519819750613088e302,-8.522231247853569e302,-8.524642745094048e302,-8.527054242334526e302,-8.529465739575005e302,-8.531877236815484e302,-8.534288734055965e302,-8.536700231296443e302,-8.539111728536922e302,-8.541523225777401e302,-8.543934723017882e302,-8.54634622025836e302,-8.54875771749884e302,-8.551169214739318e302,-8.553580711979799e302,-8.555992209220277e302,-8.558403706460756e302,-8.560815203701235e302,-8.563226700941714e302,-8.565638198182194e302,-8.568049695422673e302,-8.570461192663152e302,-8.572872689903631e302,-8.575284187144111e302,-8.57769568438459e302,-8.580107181625069e302,-8.582518678865548e302,-8.584930176106028e302,-8.587341673346507e302,-8.589753170586986e302,-8.592164667827465e302,-8.594576165067944e302,-8.596987662308424e302,-8.599399159548903e302,-8.601810656789382e302,-8.604222154029861e302,-8.606633651270341e302,-8.60904514851082e302,-8.611456645751299e302,-8.613868142991778e302,-8.616279640232258e302,-8.618691137472737e302,-8.621102634713216e302,-8.623514131953695e302,-8.625925629194174e302,-8.628337126434654e302,-8.630748623675133e302,-8.633160120915612e302,-8.63557161815609e302,-8.637983115396571e302,-8.64039461263705e302,-8.642806109877529e302,-8.645217607118008e302,-8.647629104358488e302,-8.650040601598967e302,-8.652452098839446e302,-8.654863596079925e302,-8.657275093320404e302,-8.659686590560884e302,-8.662098087801363e302,-8.664509585041842e302,-8.66692108228232e302,-8.669332579522801e302,-8.67174407676328e302,-8.674155574003759e302,-8.676567071244238e302,-8.678978568484718e302,-8.681390065725197e302,-8.683801562965676e302,-8.686213060206155e302,-8.688624557446635e302,-8.691036054687114e302,-8.693447551927593e302,-8.695859049168072e302,-8.69827054640855e302,-8.700682043649031e302,-8.70309354088951e302,-8.705505038129989e302,-8.707916535370468e302,-8.710328032610948e302,-8.712739529851427e302,-8.715151027091906e302,-8.717562524332385e302,-8.719974021572865e302,-8.722385518813344e302,-8.724797016053823e302,-8.727208513294302e302,-8.72962001053478e302,-8.732031507775261e302,-8.73444300501574e302,-8.736854502256219e302,-8.739265999496697e302,-8.741677496737178e302,-8.744088993977657e302,-8.746500491218136e302,-8.748911988458614e302,-8.751323485699095e302,-8.753734982939574e302,-8.756146480180053e302,-8.758557977420531e302,-8.76096947466101e302,-8.76338097190149e302,-8.76579246914197e302,-8.768203966382448e302,-8.770615463622927e302,-8.773026960863408e302,-8.775438458103887e302,-8.777849955344365e302,-8.780261452584844e302,-8.782672949825325e302,-8.785084447065804e302,-8.787495944306282e302,-8.789907441546761e302,-8.79231893878724e302,-8.79473043602772e302,-8.7971419332682e302,-8.799553430508678e302,-8.801964927749157e302,-8.804376424989638e302,-8.806787922230116e302,-8.809199419470595e302,-8.811610916711074e302,-8.814022413951555e302,-8.816433911192033e302,-8.818845408432512e302,-8.821256905672991e302,-8.82366840291347e302,-8.82607990015395e302,-8.82849139739443e302,-8.830902894634908e302,-8.833314391875387e302,-8.835725889115867e302,-8.838137386356346e302,-8.840548883596825e302,-8.842960380837304e302,-8.845371878077784e302,-8.847783375318263e302,-8.850194872558742e302,-8.852606369799221e302,-8.8550178670397e302,-8.85742936428018e302,-8.859840861520659e302,-8.862252358761138e302,-8.864663856001617e302,-8.867075353242097e302,-8.869486850482576e302,-8.871898347723055e302,-8.874309844963534e302,-8.876721342204014e302,-8.879132839444493e302,-8.881544336684972e302,-8.883955833925451e302,-8.88636733116593e302,-8.88877882840641e302,-8.891190325646889e302,-8.893601822887368e302,-8.896013320127847e302,-8.898424817368327e302,-8.900836314608806e302,-8.903247811849285e302,-8.905659309089764e302,-8.908070806330244e302,-8.910482303570723e302,-8.912893800811202e302,-8.91530529805168e302,-8.91771679529216e302,-8.92012829253264e302,-8.922539789773119e302,-8.924951287013598e302,-8.927362784254077e302,-8.929774281494557e302,-8.932185778735036e302,-8.934597275975515e302,-8.937008773215994e302,-8.939420270456474e302,-8.941831767696953e302,-8.944243264937432e302,-8.94665476217791e302,-8.94906625941839e302,-8.95147775665887e302,-8.953889253899349e302,-8.956300751139828e302,-8.958712248380306e302,-8.961123745620787e302,-8.963535242861266e302,-8.965946740101745e302,-8.968358237342223e302,-8.970769734582704e302,-8.973181231823183e302,-8.975592729063662e302,-8.97800422630414e302,-8.98041572354462e302,-8.9828272207851e302,-8.985238718025579e302,-8.987650215266057e302,-8.990061712506536e302,-8.992473209747017e302,-8.994884706987496e302,-8.997296204227974e302,-8.999707701468453e302,-9.002119198708934e302,-9.004530695949413e302,-9.006942193189891e302,-9.00935369043037e302,-9.011765187670849e302,-9.01417668491133e302,-9.016588182151808e302,-9.018999679392287e302,-9.021411176632766e302,-9.023822673873247e302,-9.026234171113725e302,-9.028645668354204e302,-9.031057165594683e302,-9.033468662835164e302,-9.035880160075642e302,-9.038291657316121e302,-9.0407031545566e302,-9.043114651797079e302,-9.04552614903756e302,-9.047937646278038e302,-9.050349143518517e302,-9.052760640758996e302,-9.055172137999476e302,-9.057583635239955e302,-9.059995132480434e302,-9.062406629720913e302,-9.064818126961393e302,-9.067229624201872e302,-9.069641121442351e302,-9.07205261868283e302,-9.074464115923309e302,-9.07687561316379e302,-9.079287110404268e302,-9.081698607644747e302,-9.084110104885226e302,-9.086521602125706e302,-9.088933099366185e302,-9.091344596606664e302,-9.093756093847143e302,-9.096167591087623e302,-9.098579088328102e302,-9.100990585568581e302,-9.10340208280906e302,-9.105813580049539e302,-9.108225077290019e302,-9.110636574530498e302,-9.113048071770977e302,-9.115459569011456e302,-9.117871066251936e302,-9.120282563492415e302,-9.122694060732894e302,-9.125105557973373e302,-9.127517055213853e302,-9.129928552454332e302,-9.132340049694811e302,-9.13475154693529e302,-9.137163044175769e302,-9.139574541416249e302,-9.141986038656728e302,-9.144397535897207e302,-9.146809033137686e302,-9.149220530378166e302,-9.151632027618645e302,-9.154043524859124e302,-9.156455022099603e302,-9.158866519340083e302,-9.161278016580562e302,-9.163689513821041e302,-9.16610101106152e302,-9.168512508301999e302,-9.170924005542479e302,-9.173335502782958e302,-9.175747000023437e302,-9.178158497263916e302,-9.180569994504396e302,-9.182981491744875e302,-9.185392988985354e302,-9.187804486225833e302,-9.190215983466313e302,-9.192627480706792e302,-9.19503897794727e302,-9.19745047518775e302,-9.199861972428228e302,-9.202273469668709e302,-9.204684966909188e302,-9.207096464149667e302,-9.209507961390145e302,-9.211919458630626e302,-9.214330955871105e302,-9.216742453111584e302,-9.219153950352062e302,-9.221565447592543e302,-9.223976944833022e302,-9.2263884420735e302,-9.22879993931398e302,-9.231211436554458e302,-9.233622933794939e302,-9.236034431035418e302,-9.238445928275896e302,-9.240857425516375e302,-9.243268922756856e302,-9.245680419997335e302,-9.248091917237813e302,-9.250503414478292e302,-9.252914911718773e302,-9.255326408959252e302,-9.25773790619973e302,-9.26014940344021e302,-9.262560900680688e302,-9.264972397921169e302,-9.267383895161647e302,-9.269795392402126e302,-9.272206889642605e302,-9.274618386883086e302,-9.277029884123564e302,-9.279441381364043e302,-9.281852878604522e302,-9.284264375845003e302,-9.286675873085481e302,-9.28908737032596e302,-9.291498867566439e302,-9.293910364806918e302,-9.296321862047398e302,-9.298733359287877e302,-9.301144856528356e302,-9.303556353768835e302,-9.305967851009315e302,-9.308379348249794e302,-9.310790845490273e302,-9.313202342730752e302,-9.315613839971232e302,-9.318025337211711e302,-9.32043683445219e302,-9.322848331692669e302,-9.32525982893315e302,-9.327671326173628e302,-9.330082823414107e302,-9.332494320654586e302,-9.334905817895065e302,-9.337317315135545e302,-9.339728812376024e302,-9.342140309616503e302,-9.344551806856982e302,-9.346963304097462e302,-9.349374801337941e302,-9.35178629857842e302,-9.354197795818899e302,-9.35660929305938e302,-9.359020790299858e302,-9.361432287540337e302,-9.363843784780816e302,-9.366255282021295e302,-9.368666779261775e302,-9.371078276502254e302,-9.373489773742733e302,-9.375901270983212e302,-9.378312768223692e302,-9.380724265464171e302,-9.38313576270465e302,-9.385547259945129e302,-9.387958757185609e302,-9.390370254426088e302,-9.392781751666567e302,-9.395193248907046e302,-9.397604746147525e302,-9.400016243388005e302,-9.402427740628484e302,-9.404839237868963e302,-9.407250735109442e302,-9.409662232349922e302,-9.412073729590401e302,-9.41448522683088e302,-9.416896724071359e302,-9.419308221311839e302,-9.421719718552318e302,-9.424131215792797e302,-9.426542713033276e302,-9.428954210273755e302,-9.431365707514235e302,-9.433777204754714e302,-9.436188701995193e302,-9.438600199235672e302,-9.441011696476152e302,-9.443423193716631e302,-9.44583469095711e302,-9.448246188197589e302,-9.450657685438069e302,-9.453069182678548e302,-9.455480679919027e302,-9.457892177159506e302,-9.460303674399984e302,-9.462715171640465e302,-9.465126668880944e302,-9.467538166121423e302,-9.469949663361901e302,-9.472361160602382e302,-9.47477265784286e302,-9.47718415508334e302,-9.479595652323818e302,-9.482007149564299e302,-9.484418646804778e302,-9.486830144045257e302,-9.489241641285735e302,-9.491653138526214e302,-9.494064635766695e302,-9.496476133007174e302,-9.498887630247652e302,-9.501299127488131e302,-9.503710624728612e302,-9.50612212196909e302,-9.50853361920957e302,-9.510945116450048e302,-9.513356613690529e302,-9.515768110931008e302,-9.518179608171486e302,-9.520591105411965e302,-9.523002602652444e302,-9.525414099892925e302,-9.527825597133403e302,-9.530237094373882e302,-9.532648591614361e302,-9.535060088854842e302,-9.53747158609532e302,-9.5398830833358e302,-9.542294580576278e302,-9.544706077816759e302,-9.547117575057237e302,-9.549529072297716e302,-9.551940569538195e302,-9.554352066778674e302,-9.556763564019154e302,-9.559175061259633e302,-9.561586558500112e302,-9.563998055740591e302,-9.566409552981071e302,-9.56882105022155e302,-9.571232547462029e302,-9.573644044702508e302,-9.576055541942988e302,-9.578467039183467e302,-9.580878536423946e302,-9.583290033664425e302,-9.585701530904904e302,-9.588113028145384e302,-9.590524525385863e302,-9.592936022626342e302,-9.595347519866821e302,-9.597759017107301e302,-9.60017051434778e302,-9.602582011588259e302,-9.604993508828738e302,-9.607405006069218e302,-9.609816503309697e302,-9.612228000550176e302,-9.614639497790655e302,-9.617050995031134e302,-9.619462492271614e302,-9.621873989512093e302,-9.624285486752572e302,-9.62669698399305e302,-9.629108481233531e302,-9.63151997847401e302,-9.633931475714489e302,-9.636342972954968e302,-9.638754470195448e302,-9.641165967435927e302,-9.643577464676406e302],"cosine":[1.0,-0.9396926207859084,0.766044443118978,0.9902680687415704,0.17364817766693036,0.6691306063588582,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,0.9135454576426009,0.6691306063588582,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,-0.9781476007338057,-0.882947592858927,-0.7193398003386511,0.9902680687415704,0.9902680687415704,-0.7193398003386511,-0.882947592858927,0.17364817766693036,0.4383711467890774,0.6691306063588582,0.17364817766693036,-0.10452846326765347,-0.7193398003386511,-0.5,0.9902680687415704,0.9135454576426009,0.766044443118978,-0.9781476007338057,-0.9975640502598242,0.6691306063588582,0.17364817766693036,-0.10452846326765347,-0.374606593415912,-0.6156614753256583,-0.8090169943749475,0.9135454576426009,0.766044443118978,0.5591929034707468,0.30901699437494745,0.03489949670250097,0.848048096156426,0.9612616959383189,1.0,0.9612616959383189,-0.24192189559966773,0.03489949670250097,0.30901699437494745,0.5591929034707468,0.766044443118978,-0.9396926207859084,-0.8090169943749475,-0.6156614753256583,-0.374606593415912,-0.10452846326765347,-0.8090169943749475,-0.9396926207859084,-0.9975640502598242,-0.9781476007338057,-0.882947592858927,0.03489949670250097,-0.24192189559966773,-0.5,-0.7193398003386511,0.9612616959383189,0.848048096156426,0.6691306063588582,0.4383711467890774,0.17364817766693036,0.766044443118978,0.9135454576426009,0.9902680687415704,0.9902680687415704,0.9135454576426009,-0.10452846326765347,0.17364817766693036,-0.9396926207859084,0.6691306063588582,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,-0.24192189559966773,-0.24192189559966773,-0.7193398003386511,0.30901699437494745,-0.9781476007338057,0.6691306063588582,-0.9396926207859084,0.17364817766693036,-0.6156614753256583,-0.374606593415912,0.9902680687415704,-0.8090169943749475,0.9135454576426009,-0.9975640502598242,0.5591929034707468,0.4383711467890774,0.03489949670250097,0.848048096156426,-0.5,1.0,-0.5,0.848048096156426,0.03489949670250097,-0.882947592858927,0.5591929034707468,-0.9975640502598242,0.9135454576426009,-0.8090169943749475,-0.10452846326765347,-0.374606593415912,-0.6156614753256583,0.17364817766693036,-0.9396926207859084,0.766044443118978,-0.9781476007338057,0.30901699437494745,-0.7193398003386511,-0.24192189559966773,0.9612616959383189,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.6691306063588582,0.30901699437494745,0.17364817766693036,0.766044443118978,-0.374606593415912,0.9902680687415704,-0.6156614753256583,0.9135454576426009,-0.10452846326765347,0.5591929034707468,0.4383711467890774,-0.9975640502598242,0.848048096156426,-0.882947592858927,0.03489949670250097,-0.5,-0.5,0.03489949670250097,-0.882947592858927,0.848048096156426,-0.9975640502598242,0.4383711467890774,-0.8090169943749475,-0.10452846326765347,0.9135454576426009,-0.6156614753256583,0.9902680687415704,-0.9396926207859084,0.766044443118978,0.17364817766693036,0.30901699437494745,0.6691306063588582,-0.24192189559966773,0.9612616959383189,-0.7193398003386511,0.9612616959383189,-0.24192189559966773,0.6691306063588582,0.30901699437494745,-0.9781476007338057,0.766044443118978,-0.9396926207859084,0.9902680687415704,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,0.9135454576426009,-0.9975640502598242,0.848048096156426,0.4383711467890774,0.03489949670250097,-0.5,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,0.03489949670250097,0.4383711467890774,-0.8090169943749475,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,-0.10452846326765347,-0.374606593415912,0.766044443118978,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,0.30901699437494745,-0.7193398003386511,0.9612616959383189,0.9612616959383189,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,0.766044443118978,-0.374606593415912,-0.10452846326765347,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,-0.882947592858927,1.0,-0.882947592858927,-0.5,0.03489949670250097,0.4383711467890774,0.848048096156426,-0.9975640502598242,0.9135454576426009,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,0.9902680687415704,-0.9396926207859084,0.6691306063588582,0.17364817766693036,0.30901699437494745,-0.7193398003386511,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,-0.9781476007338057,0.766044443118978,-0.374606593415912,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,-0.8090169943749475,0.4383711467890774,0.03489949670250097,0.5591929034707468,-0.882947592858927,1.0,0.848048096156426,-0.5,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,0.5591929034707468,-0.10452846326765347,-0.374606593415912,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,0.17364817766693036,-0.6156614753256583,0.9135454576426009,0.9902680687415704,-0.8090169943749475,0.4383711467890774,-0.10452846326765347,0.5591929034707468,-0.882947592858927,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,-0.882947592858927,0.5591929034707468,-0.10452846326765347,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,-0.6156614753256583,0.17364817766693036,0.30901699437494745,0.766044443118978,-0.9781476007338057,0.9612616959383189,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,0.9612616959383189,-0.9781476007338057,0.766044443118978,0.30901699437494745,0.17364817766693036,-0.6156614753256583,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,-0.5,0.848048096156426,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,0.4383711467890774,-0.8090169943749475,0.9902680687415704,0.9135454576426009,-0.6156614753256583,0.17364817766693036,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.10452846326765347,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.5,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.882947592858927,0.9612616959383189,-0.5,-0.24192189559966773,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.17364817766693036,-0.5,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.24192189559966773,-0.5,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,0.848048096156426,-0.24192189559966773,-0.5,0.9612616959383189,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.5,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.766044443118978,-0.9975640502598242,0.6691306063588582,0.03489949670250097,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.7193398003386511,1.0,-0.9396926207859084,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.03489949670250097,-0.7193398003386511,1.0,-0.7193398003386511,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.9396926207859084,1.0,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.4383711467890774,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.9396926207859084,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.10452846326765347,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.5,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.882947592858927,0.9612616959383189,-0.5,-0.24192189559966773,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.17364817766693036,-0.5,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.24192189559966773,-0.5,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,0.848048096156426,-0.24192189559966773,-0.5,0.9612616959383189,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.5,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.766044443118978,-0.9975640502598242,0.6691306063588582,0.03489949670250097,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.7193398003386511,1.0,-0.9396926207859084,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.03489949670250097,-0.7193398003386511,1.0,-0.7193398003386511,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.9396926207859084,1.0,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.4383711467890774,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9135454576426009,-0.9396926207859084,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.10452846326765347,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.882947592858927,0.9612616959383189,-0.5,-0.24192189559966773,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.9612616959383189,-0.5,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.5591929034707468,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.24192189559966773,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,0.848048096156426,-0.24192189559966773,-0.5,0.9612616959383189,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,-0.24192189559966773,-0.5,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.6691306063588582,0.03489949670250097,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.7193398003386511,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.03489949670250097,-0.7193398003386511,1.0,-0.7193398003386511,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.7193398003386511,1.0,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.4383711467890774,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9135454576426009,-0.9396926207859084,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.10452846326765347,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.882947592858927,0.9612616959383189,-0.5,-0.24192189559966773,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.9612616959383189,-0.5,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.5591929034707468,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.24192189559966773,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,0.848048096156426,-0.24192189559966773,-0.5,0.9612616959383189,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,-0.24192189559966773,-0.5,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.6691306063588582,0.03489949670250097,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.7193398003386511,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.03489949670250097,-0.7193398003386511,1.0,-0.7193398003386511,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.7193398003386511,1.0,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.4383711467890774,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9135454576426009,-0.9396926207859084,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.10452846326765347,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.882947592858927,0.9612616959383189,-0.5,-0.24192189559966773,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.9612616959383189,-0.5,-0.24192189559966773,0.848048096156426,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.5591929034707468,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.24192189559966773,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.9781476007338057,0.848048096156426,-0.24192189559966773,-0.5,0.9612616959383189,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,-0.24192189559966773,-0.5,0.9612616959383189,-0.882947592858927,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.6691306063588582,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.7193398003386511,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.374606593415912,0.6691306063588582,0.03489949670250097,-0.7193398003386511,1.0,-0.7193398003386511,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.7193398003386511,1.0,-0.7193398003386511,0.03489949670250097,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.4383711467890774,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9135454576426009,-0.9396926207859084,0.4383711467890774,0.30901699437494745,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.10452846326765347,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.5,-0.24192189559966773,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.9612616959383189,-0.5,-0.24192189559966773,0.848048096156426,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.5591929034707468,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.24192189559966773,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.9781476007338057,0.848048096156426,-0.24192189559966773,-0.5,0.9612616959383189,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,-0.24192189559966773,-0.5,0.9612616959383189,-0.882947592858927,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.6691306063588582,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.7193398003386511,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.374606593415912,0.6691306063588582,0.03489949670250097,-0.7193398003386511,1.0,-0.7193398003386511,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.7193398003386511,1.0,-0.7193398003386511,0.03489949670250097,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.4383711467890774,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9135454576426009,-0.9396926207859084,0.4383711467890774,0.30901699437494745,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.10452846326765347,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.5,-0.24192189559966773,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.9612616959383189,-0.5,-0.24192189559966773,0.848048096156426,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.5591929034707468,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.24192189559966773,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.9781476007338057,0.848048096156426,-0.24192189559966773,-0.5,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,-0.24192189559966773,-0.5,0.9612616959383189,-0.882947592858927,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.5,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.6691306063588582,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.766044443118978,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.7193398003386511,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.374606593415912,0.6691306063588582,0.03489949670250097,-0.7193398003386511,1.0,-0.9396926207859084,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.7193398003386511,1.0,-0.7193398003386511,0.03489949670250097,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.9396926207859084,1.0,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9135454576426009,-0.9396926207859084,0.4383711467890774,0.30901699437494745,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.9396926207859084,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.5,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.9612616959383189,-0.5,-0.24192189559966773,0.848048096156426,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.17364817766693036,-0.5,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.5591929034707468,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.24192189559966773,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.9781476007338057,0.848048096156426,-0.24192189559966773,-0.5,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,-0.24192189559966773,-0.5,0.9612616959383189,-0.882947592858927,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.5,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.6691306063588582,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.766044443118978,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.7193398003386511,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.374606593415912,0.6691306063588582,0.03489949670250097,-0.7193398003386511,1.0,-0.9396926207859084,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.7193398003386511,1.0,-0.7193398003386511,0.03489949670250097,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.9396926207859084,1.0,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9135454576426009,-0.9396926207859084,0.4383711467890774,0.30901699437494745,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.9396926207859084,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.5,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.9612616959383189,-0.5,-0.24192189559966773,0.848048096156426,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.17364817766693036,-0.5,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.5591929034707468,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.24192189559966773,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.9781476007338057,0.848048096156426,-0.24192189559966773,-0.5,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,-0.24192189559966773,-0.5,0.9612616959383189,-0.882947592858927,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.5,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.6691306063588582,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.766044443118978,-0.9975640502598242,0.6691306063588582,0.03489949670250097,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.374606593415912,0.6691306063588582,0.03489949670250097,-0.7193398003386511,1.0,-0.9396926207859084,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.03489949670250097,-0.7193398003386511,1.0,-0.7193398003386511,0.03489949670250097,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.9396926207859084,1.0,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.4383711467890774,0.30901699437494745,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.9396926207859084,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.5,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.882947592858927,0.9612616959383189,-0.5,-0.24192189559966773,0.848048096156426,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.17364817766693036,-0.5,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.9781476007338057,0.848048096156426,-0.24192189559966773,-0.5,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,0.848048096156426,-0.24192189559966773,-0.5,0.9612616959383189,-0.882947592858927,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.5,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.6691306063588582,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.766044443118978,-0.9975640502598242,0.6691306063588582,0.03489949670250097,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.374606593415912,0.6691306063588582,0.03489949670250097,-0.7193398003386511,1.0,-0.9396926207859084,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.03489949670250097,-0.7193398003386511,1.0]}
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/huge_positive.json b/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/huge_positive.json
new file mode 100644
index 000000000000..5c4e149dbae9
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/huge_positive.json
@@ -0,0 +1 @@
+{"sine":[0.0,-0.3420201433256687,0.6427876096865394,0.13917310096006544,0.984807753012208,0.7431448254773942,0.27563735581699916,0.9993908270190958,0.3420201433256687,0.4067366430758002,0.9945218953682733,0.20791169081775934,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,0.898794046299167,-0.20791169081775934,-0.46947156278589075,-0.6946583704589973,-0.13917310096006544,0.13917310096006544,0.6946583704589973,0.46947156278589075,-0.984807753012208,-0.898794046299167,-0.7431448254773942,0.984807753012208,0.9945218953682733,-0.6946583704589973,-0.8660254037844386,0.13917310096006544,0.4067366430758002,0.6427876096865394,0.20791169081775934,-0.0697564737441253,-0.7431448254773942,0.984807753012208,0.9945218953682733,0.9271838545667874,0.788010753606722,0.5877852522924731,0.4067366430758002,0.6427876096865394,0.8290375725550417,0.9510565162951535,0.9993908270190958,-0.5299192642332049,-0.27563735581699916,0.0,0.27563735581699916,-0.9702957262759965,-0.9993908270190958,-0.9510565162951535,-0.8290375725550417,-0.6427876096865394,-0.3420201433256687,-0.5877852522924731,-0.788010753606722,-0.9271838545667874,-0.9945218953682733,0.5877852522924731,0.3420201433256687,0.0697564737441253,-0.20791169081775934,-0.46947156278589075,0.9993908270190958,0.9702957262759965,0.8660254037844386,0.6946583704589973,0.27563735581699916,0.5299192642332049,0.7431448254773942,0.898794046299167,0.984807753012208,-0.6427876096865394,-0.4067366430758002,-0.13917310096006544,0.13917310096006544,0.4067366430758002,-0.9945218953682733,-0.984807753012208,0.3420201433256687,-0.7431448254773942,-0.20791169081775934,-0.27563735581699916,-0.6946583704589973,0.9702957262759965,-0.9702957262759965,0.6946583704589973,-0.9510565162951535,0.20791169081775934,0.7431448254773942,-0.3420201433256687,0.984807753012208,-0.788010753606722,0.9271838545667874,-0.13917310096006544,0.5877852522924731,0.4067366430758002,0.0697564737441253,0.8290375725550417,-0.898794046299167,0.9993908270190958,-0.5299192642332049,0.8660254037844386,0.0,-0.8660254037844386,0.5299192642332049,-0.9993908270190958,0.46947156278589075,-0.8290375725550417,-0.0697564737441253,-0.4067366430758002,-0.5877852522924731,0.9945218953682733,-0.9271838545667874,0.788010753606722,-0.984807753012208,0.3420201433256687,0.6427876096865394,-0.20791169081775934,0.9510565162951535,-0.6946583704589973,0.9702957262759965,-0.27563735581699916,0.6946583704589973,0.27563735581699916,0.20791169081775934,0.7431448254773942,-0.9510565162951535,0.984807753012208,-0.6427876096865394,0.9271838545667874,-0.13917310096006544,-0.788010753606722,0.4067366430758002,-0.9945218953682733,0.8290375725550417,-0.898794046299167,0.0697564737441253,-0.5299192642332049,-0.46947156278589075,0.9993908270190958,-0.8660254037844386,0.8660254037844386,-0.9993908270190958,0.46947156278589075,0.5299192642332049,-0.0697564737441253,0.898794046299167,-0.5877852522924731,0.9945218953682733,-0.4067366430758002,0.788010753606722,0.13917310096006544,0.3420201433256687,0.6427876096865394,-0.984807753012208,0.9510565162951535,-0.7431448254773942,0.9702957262759965,-0.27563735581699916,-0.6946583704589973,0.27563735581699916,-0.9702957262759965,0.7431448254773942,-0.9510565162951535,0.20791169081775934,-0.6427876096865394,-0.3420201433256687,-0.13917310096006544,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,0.8290375725550417,0.4067366430758002,0.0697564737441253,-0.5299192642332049,-0.898794046299167,0.9993908270190958,-0.8660254037844386,-0.46947156278589075,0.0,0.46947156278589075,-0.8290375725550417,-0.9993908270190958,0.898794046299167,-0.5877852522924731,-0.0697564737441253,-0.4067366430758002,0.788010753606722,0.9945218953682733,-0.9271838545667874,0.6427876096865394,0.13917310096006544,0.3420201433256687,-0.7431448254773942,0.9702957262759965,0.9510565162951535,-0.6946583704589973,0.27563735581699916,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,-0.788010753606722,0.4067366430758002,0.0697564737441253,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.8660254037844386,-0.46947156278589075,0.0,0.46947156278589075,0.8660254037844386,-0.9993908270190958,0.898794046299167,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.6427876096865394,0.13917310096006544,0.3420201433256687,-0.7431448254773942,-0.984807753012208,0.9510565162951535,-0.6946583704589973,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,0.20791169081775934,-0.6427876096865394,0.9271838545667874,0.984807753012208,-0.788010753606722,0.4067366430758002,0.0697564737441253,0.5877852522924731,-0.898794046299167,0.9993908270190958,0.8290375725550417,-0.46947156278589075,0.0,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,-0.5877852522924731,0.13917310096006544,0.3420201433256687,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.6946583704589973,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,0.9702957262759965,-0.9702957262759965,0.7431448254773942,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9271838545667874,0.984807753012208,-0.788010753606722,0.4067366430758002,-0.13917310096006544,0.5877852522924731,-0.898794046299167,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,0.46947156278589075,-0.8290375725550417,0.9945218953682733,0.898794046299167,-0.5877852522924731,0.13917310096006544,0.3420201433256687,0.788010753606722,-0.984807753012208,0.9510565162951535,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.7431448254773942,0.27563735581699916,0.20791169081775934,-0.6427876096865394,-0.9510565162951535,0.984807753012208,-0.788010753606722,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,0.9271838545667874,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,0.0697564737441253,-0.5299192642332049,0.8660254037844386,0.9993908270190958,-0.8660254037844386,0.5299192642332049,0.0,0.46947156278589075,-0.8290375725550417,0.9945218953682733,0.898794046299167,-0.5877852522924731,0.13917310096006544,-0.4067366430758002,0.788010753606722,-0.984807753012208,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.984807753012208,0.9510565162951535,-0.6946583704589973,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9271838545667874,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.984807753012208,-0.788010753606722,0.4067366430758002,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,0.8290375725550417,-0.46947156278589075,0.0,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.5877852522924731,0.13917310096006544,0.3420201433256687,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.7431448254773942,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,0.984807753012208,-0.788010753606722,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,0.898794046299167,-0.5877852522924731,0.13917310096006544,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.6946583704589973,0.27563735581699916,0.20791169081775934,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.9510565162951535,0.984807753012208,-0.788010753606722,0.4067366430758002,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,0.0,0.46947156278589075,-0.8290375725550417,0.9993908270190958,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,0.788010753606722,-0.984807753012208,0.898794046299167,-0.5877852522924731,0.13917310096006544,0.3420201433256687,-0.7431448254773942,0.9702957262759965,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,0.984807753012208,-0.6946583704589973,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,0.8290375725550417,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.4067366430758002,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,0.898794046299167,-0.5877852522924731,0.0,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.6427876096865394,-0.0697564737441253,-0.4067366430758002,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.6946583704589973,0.27563735581699916,0.3420201433256687,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.6946583704589973,-0.9510565162951535,0.984807753012208,-0.788010753606722,0.4067366430758002,0.0697564737441253,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,0.0,0.46947156278589075,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,0.8660254037844386,-0.9993908270190958,0.898794046299167,-0.5877852522924731,0.13917310096006544,0.3420201433256687,-0.7431448254773942,0.9945218953682733,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,0.9510565162951535,-0.6946583704589973,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9271838545667874,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.788010753606722,0.4067366430758002,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,0.8290375725550417,-0.46947156278589075,0.0,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.6946583704589973,0.13917310096006544,0.3420201433256687,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.7431448254773942,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,0.984807753012208,-0.788010753606722,0.4067366430758002,0.20791169081775934,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,0.898794046299167,-0.5877852522924731,0.13917310096006544,0.3420201433256687,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.6946583704589973,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9702957262759965,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.9510565162951535,0.984807753012208,-0.788010753606722,0.4067366430758002,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,0.0,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,0.788010753606722,-0.984807753012208,0.898794046299167,-0.5877852522924731,0.13917310096006544,0.3420201433256687,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,0.984807753012208,-0.6946583704589973,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,0.8290375725550417,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.4067366430758002,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,0.898794046299167,-0.5877852522924731,0.0,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.4067366430758002,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.6946583704589973,0.27563735581699916,0.3420201433256687,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.6946583704589973,-0.9510565162951535,0.984807753012208,-0.788010753606722,0.4067366430758002,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,0.898794046299167,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.6946583704589973,0.0,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,0.984807753012208,-0.788010753606722,0.4067366430758002,0.3420201433256687,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,0.0,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9993908270190958,0.898794046299167,-0.5877852522924731,0.13917310096006544,0.3420201433256687,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9510565162951535,-0.6946583704589973,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,0.0,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.788010753606722,0.4067366430758002,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,0.898794046299167,-0.5877852522924731,0.13917310096006544,0.3420201433256687,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.6946583704589973,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,0.8290375725550417,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,0.984807753012208,-0.788010753606722,0.4067366430758002,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,0.898794046299167,-0.5877852522924731,0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.6946583704589973,0.27563735581699916,0.20791169081775934,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,0.984807753012208,-0.788010753606722,0.4067366430758002,0.0697564737441253,-0.5299192642332049,0.9702957262759965,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,0.788010753606722,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,0.0,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,0.898794046299167,-0.5877852522924731,0.13917310096006544,0.3420201433256687,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,0.0,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.6427876096865394,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,0.898794046299167,-0.5877852522924731,0.13917310096006544,0.3420201433256687,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.4067366430758002,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.6946583704589973,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,0.0,0.6946583704589973,-0.9510565162951535,0.984807753012208,-0.788010753606722,0.4067366430758002,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,0.898794046299167,-0.5877852522924731,0.13917310096006544,0.3420201433256687,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.6946583704589973,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9271838545667874,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,0.984807753012208,-0.788010753606722,0.4067366430758002,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.46947156278589075,0.0,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,0.984807753012208,-0.788010753606722,0.13917310096006544,0.3420201433256687,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.5299192642332049,0.20791169081775934,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,0.0,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.8660254037844386,-0.9993908270190958,0.898794046299167,-0.5877852522924731,0.13917310096006544,0.3420201433256687,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.984807753012208,0.9510565162951535,-0.6946583704589973,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,0.0,0.46947156278589075,-0.8290375725550417,0.984807753012208,-0.788010753606722,0.4067366430758002,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,0.898794046299167,-0.5877852522924731,0.13917310096006544,0.3420201433256687,-0.7431448254773942,0.9702957262759965,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.6946583704589973,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,0.984807753012208,-0.788010753606722,0.4067366430758002,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,0.898794046299167,-0.5877852522924731,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.6946583704589973,0.27563735581699916,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,0.984807753012208,-0.788010753606722,0.4067366430758002,0.0697564737441253,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,0.9271838545667874,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,0.0,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9993908270190958,0.898794046299167,-0.5877852522924731,0.13917310096006544,0.3420201433256687,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.6946583704589973,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,0.0,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.4067366430758002,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,0.898794046299167,-0.5877852522924731,0.13917310096006544,0.3420201433256687,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.7431448254773942,-0.0697564737441253,-0.4067366430758002,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.6946583704589973,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,0.984807753012208,-0.788010753606722,0.4067366430758002,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,0.898794046299167,-0.5877852522924731,0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.6946583704589973,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9945218953682733,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,0.984807753012208,-0.788010753606722,0.4067366430758002,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,0.788010753606722,-0.984807753012208,0.8290375725550417,-0.46947156278589075,0.0,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,0.984807753012208,-0.5877852522924731,0.13917310096006544,0.3420201433256687,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,0.0,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,0.898794046299167,-0.5877852522924731,0.13917310096006544,0.3420201433256687,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.6946583704589973,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,0.0,0.46947156278589075,-0.9510565162951535,0.984807753012208,-0.788010753606722,0.4067366430758002,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,0.898794046299167,-0.5877852522924731,0.13917310096006544,0.3420201433256687,-0.7431448254773942,0.9993908270190958,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.6946583704589973,0.27563735581699916,0.20791169081775934,-0.6427876096865394,0.9271838545667874,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,0.984807753012208,-0.788010753606722,0.4067366430758002,0.0697564737441253,-0.5299192642332049,0.8660254037844386,-0.9993908270190958,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.4067366430758002,0.788010753606722,-0.984807753012208,0.9510565162951535,-0.6946583704589973,0.0,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.6946583704589973,-0.9510565162951535,0.984807753012208,-0.788010753606722,0.4067366430758002,0.3420201433256687,-0.7431448254773942,0.9702957262759965,-0.9702957262759965,0.7431448254773942,-0.3420201433256687,-0.13917310096006544,0.5877852522924731,-0.898794046299167,0.9993908270190958,-0.8660254037844386,0.5299192642332049,-0.0697564737441253,-0.6427876096865394,0.9271838545667874,-0.9945218953682733,0.8290375725550417,-0.46947156278589075,0.0,0.46947156278589075,-0.8290375725550417,0.9945218953682733,-0.9271838545667874,0.6427876096865394,-0.20791169081775934,-0.27563735581699916,0.8660254037844386,-0.9993908270190958,0.898794046299167,-0.5877852522924731,0.4067366430758002,0.3420201433256687,-0.5299192642332049,0.9702957262759965,-0.8660254037844386,0.7431448254773942,-0.0697564737441253,-0.13917310096006544,0.788010753606722,-0.898794046299167,0.9510565162951535,-0.8660254037844386,0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.788010753606722,-0.9945218953682733,0.6427876096865394,-0.46947156278589075,-0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.9945218953682733,-0.788010753606722,0.6427876096865394,0.0697564737441253,-0.27563735581699916,0.8660254037844386,-0.9510565162951535,0.898794046299167,-0.3420201433256687,0.13917310096006544,0.5877852522924731,-0.7431448254773942,0.9993908270190958,-0.9702957262759965,0.5299192642332049,-0.3420201433256687,-0.4067366430758002,0.5877852522924731,-0.984807753012208,0.9993908270190958,-0.6946583704589973,0.0,0.20791169081775934,-0.8290375725550417,0.9271838545667874,-0.9271838545667874,0.8290375725550417,-0.20791169081775934,0.0,0.6946583704589973,-0.8290375725550417,0.984807753012208,-0.9271838545667874,0.4067366430758002,0.3420201433256687,-0.5299192642332049,0.9702957262759965,-0.9993908270190958,0.7431448254773942,-0.5877852522924731,-0.13917310096006544,0.3420201433256687,-0.898794046299167,0.9702957262759965,-0.8660254037844386,0.7431448254773942,-0.0697564737441253,-0.6427876096865394,0.788010753606722,-0.9945218953682733,0.9510565162951535,-0.46947156278589075,0.27563735581699916,0.46947156278589075,-0.6427876096865394,0.9945218953682733,-0.9945218953682733,0.6427876096865394,-0.46947156278589075,-0.27563735581699916,0.8660254037844386,-0.9510565162951535,0.898794046299167,-0.788010753606722,0.13917310096006544,0.0697564737441253,-0.7431448254773942,0.8660254037844386,-0.9702957262759965,0.898794046299167,-0.3420201433256687,0.13917310096006544,0.5877852522924731,-0.984807753012208,0.9993908270190958,-0.6946583704589973,0.5299192642332049,0.20791169081775934,-0.4067366430758002,0.9271838545667874,-0.984807753012208,0.8290375725550417,-0.6946583704589973,0.0,0.20791169081775934,-0.8290375725550417,0.984807753012208,-0.9271838545667874,0.4067366430758002,-0.20791169081775934,-0.5299192642332049,0.6946583704589973,-0.9993908270190958,0.984807753012208,-0.5877852522924731,0.4067366430758002,0.3420201433256687,-0.5299192642332049,0.9702957262759965,-0.9993908270190958,0.7431448254773942,-0.0697564737441253,-0.13917310096006544,0.788010753606722,-0.898794046299167,0.9510565162951535,-0.8660254037844386,0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.788010753606722,-0.9945218953682733,0.9510565162951535,-0.46947156278589075,-0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.9945218953682733,-0.788010753606722,0.6427876096865394,0.0697564737441253,-0.27563735581699916,0.8660254037844386,-0.9510565162951535,0.898794046299167,-0.788010753606722,0.13917310096006544,0.5877852522924731,-0.7431448254773942,0.9993908270190958,-0.9702957262759965,0.5299192642332049,-0.3420201433256687,-0.4067366430758002,0.5877852522924731,-0.984807753012208,0.9993908270190958,-0.6946583704589973,0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.9271838545667874,-0.9271838545667874,0.8290375725550417,-0.20791169081775934,0.0,0.6946583704589973,-0.8290375725550417,0.984807753012208,-0.9271838545667874,0.4067366430758002,-0.20791169081775934,-0.5299192642332049,0.9702957262759965,-0.9993908270190958,0.7431448254773942,-0.5877852522924731,-0.13917310096006544,0.3420201433256687,-0.898794046299167,0.9702957262759965,-0.8660254037844386,0.7431448254773942,-0.0697564737441253,-0.13917310096006544,0.788010753606722,-0.9945218953682733,0.9510565162951535,-0.46947156278589075,0.27563735581699916,0.46947156278589075,-0.6427876096865394,0.9945218953682733,-0.9945218953682733,0.6427876096865394,-0.46947156278589075,-0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.898794046299167,-0.788010753606722,0.13917310096006544,0.0697564737441253,-0.7431448254773942,0.8660254037844386,-0.9702957262759965,0.898794046299167,-0.3420201433256687,0.13917310096006544,0.5877852522924731,-0.7431448254773942,0.9993908270190958,-0.6946583704589973,0.5299192642332049,0.20791169081775934,-0.4067366430758002,0.9271838545667874,-0.984807753012208,0.8290375725550417,-0.6946583704589973,0.0,0.20791169081775934,-0.8290375725550417,0.9271838545667874,-0.9271838545667874,0.4067366430758002,-0.20791169081775934,-0.5299192642332049,0.6946583704589973,-0.9993908270190958,0.984807753012208,-0.5877852522924731,0.4067366430758002,0.3420201433256687,-0.5299192642332049,0.9702957262759965,-0.9993908270190958,0.7431448254773942,-0.0697564737441253,-0.13917310096006544,0.788010753606722,-0.898794046299167,0.9510565162951535,-0.8660254037844386,0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.788010753606722,-0.9945218953682733,0.9510565162951535,-0.46947156278589075,0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.9945218953682733,-0.788010753606722,0.6427876096865394,0.0697564737441253,-0.27563735581699916,0.8660254037844386,-0.9510565162951535,0.898794046299167,-0.788010753606722,0.13917310096006544,0.0697564737441253,-0.7431448254773942,0.9993908270190958,-0.9702957262759965,0.5299192642332049,-0.3420201433256687,-0.4067366430758002,0.5877852522924731,-0.984807753012208,0.9993908270190958,-0.6946583704589973,0.5299192642332049,0.20791169081775934,-0.4067366430758002,0.9271838545667874,-0.9271838545667874,0.8290375725550417,-0.20791169081775934,0.0,0.6946583704589973,-0.8290375725550417,0.984807753012208,-0.9271838545667874,0.4067366430758002,-0.20791169081775934,-0.5299192642332049,0.6946583704589973,-0.9993908270190958,0.7431448254773942,-0.5877852522924731,-0.13917310096006544,0.3420201433256687,-0.898794046299167,0.9702957262759965,-0.8660254037844386,0.7431448254773942,-0.0697564737441253,-0.13917310096006544,0.788010753606722,-0.898794046299167,0.9510565162951535,-0.46947156278589075,0.27563735581699916,0.46947156278589075,-0.6427876096865394,0.9945218953682733,-0.9945218953682733,0.6427876096865394,-0.46947156278589075,-0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.9945218953682733,-0.788010753606722,0.13917310096006544,0.0697564737441253,-0.7431448254773942,0.8660254037844386,-0.9702957262759965,0.898794046299167,-0.3420201433256687,0.13917310096006544,0.5877852522924731,-0.7431448254773942,0.9993908270190958,-0.9702957262759965,0.5299192642332049,0.20791169081775934,-0.4067366430758002,0.9271838545667874,-0.984807753012208,0.8290375725550417,-0.6946583704589973,0.0,0.20791169081775934,-0.8290375725550417,0.9271838545667874,-0.9271838545667874,0.8290375725550417,-0.20791169081775934,-0.5299192642332049,0.6946583704589973,-0.9993908270190958,0.984807753012208,-0.5877852522924731,0.4067366430758002,0.3420201433256687,-0.5299192642332049,0.9702957262759965,-0.9993908270190958,0.7431448254773942,-0.5877852522924731,-0.13917310096006544,0.788010753606722,-0.898794046299167,0.9510565162951535,-0.8660254037844386,0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.788010753606722,-0.9945218953682733,0.9510565162951535,-0.46947156278589075,0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.9945218953682733,-0.788010753606722,0.6427876096865394,0.0697564737441253,-0.27563735581699916,0.8660254037844386,-0.9510565162951535,0.898794046299167,-0.788010753606722,0.13917310096006544,0.0697564737441253,-0.7431448254773942,0.8660254037844386,-0.9702957262759965,0.5299192642332049,-0.3420201433256687,-0.4067366430758002,0.5877852522924731,-0.984807753012208,0.9993908270190958,-0.6946583704589973,0.5299192642332049,0.20791169081775934,-0.4067366430758002,0.9271838545667874,-0.984807753012208,0.8290375725550417,-0.20791169081775934,0.0,0.6946583704589973,-0.8290375725550417,0.984807753012208,-0.9271838545667874,0.4067366430758002,-0.20791169081775934,-0.5299192642332049,0.6946583704589973,-0.9993908270190958,0.984807753012208,-0.5877852522924731,-0.13917310096006544,0.3420201433256687,-0.898794046299167,0.9702957262759965,-0.8660254037844386,0.7431448254773942,-0.0697564737441253,-0.13917310096006544,0.788010753606722,-0.898794046299167,0.9510565162951535,-0.8660254037844386,0.27563735581699916,0.46947156278589075,-0.6427876096865394,0.9945218953682733,-0.9945218953682733,0.6427876096865394,-0.46947156278589075,-0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.9945218953682733,-0.788010753606722,0.6427876096865394,0.0697564737441253,-0.7431448254773942,0.8660254037844386,-0.9702957262759965,0.898794046299167,-0.3420201433256687,0.13917310096006544,0.5877852522924731,-0.7431448254773942,0.9993908270190958,-0.9702957262759965,0.5299192642332049,-0.3420201433256687,-0.4067366430758002,0.9271838545667874,-0.984807753012208,0.8290375725550417,-0.6946583704589973,0.0,0.20791169081775934,-0.8290375725550417,0.9271838545667874,-0.9271838545667874,0.8290375725550417,-0.20791169081775934,0.0,0.6946583704589973,-0.9993908270190958,0.984807753012208,-0.5877852522924731,0.4067366430758002,0.3420201433256687,-0.5299192642332049,0.9702957262759965,-0.9993908270190958,0.7431448254773942,-0.5877852522924731,-0.13917310096006544,0.3420201433256687,-0.898794046299167,0.9510565162951535,-0.8660254037844386,0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.788010753606722,-0.9945218953682733,0.9510565162951535,-0.46947156278589075,0.27563735581699916,0.46947156278589075,-0.6427876096865394,0.9945218953682733,-0.788010753606722,0.6427876096865394,0.0697564737441253,-0.27563735581699916,0.8660254037844386,-0.9510565162951535,0.898794046299167,-0.788010753606722,0.13917310096006544,0.0697564737441253,-0.7431448254773942,0.8660254037844386,-0.9702957262759965,0.5299192642332049,-0.3420201433256687,-0.4067366430758002,0.5877852522924731,-0.984807753012208,0.9993908270190958,-0.6946583704589973,0.5299192642332049,0.20791169081775934,-0.4067366430758002,0.9271838545667874,-0.984807753012208,0.8290375725550417,-0.6946583704589973,0.0,0.6946583704589973,-0.8290375725550417,0.984807753012208,-0.9271838545667874,0.4067366430758002,-0.20791169081775934,-0.5299192642332049,0.6946583704589973,-0.9993908270190958,0.984807753012208,-0.5877852522924731,0.4067366430758002,0.3420201433256687,-0.898794046299167,0.9702957262759965,-0.8660254037844386,0.7431448254773942,-0.0697564737441253,-0.13917310096006544,0.788010753606722,-0.898794046299167,0.9510565162951535,-0.8660254037844386,0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.9945218953682733,-0.9945218953682733,0.6427876096865394,-0.46947156278589075,-0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.9945218953682733,-0.788010753606722,0.6427876096865394,0.0697564737441253,-0.27563735581699916,0.8660254037844386,-0.9702957262759965,0.898794046299167,-0.3420201433256687,0.13917310096006544,0.5877852522924731,-0.7431448254773942,0.9993908270190958,-0.9702957262759965,0.5299192642332049,-0.3420201433256687,-0.4067366430758002,0.5877852522924731,-0.984807753012208,0.8290375725550417,-0.6946583704589973,0.0,0.20791169081775934,-0.8290375725550417,0.9271838545667874,-0.9271838545667874,0.8290375725550417,-0.20791169081775934,0.0,0.6946583704589973,-0.8290375725550417,0.984807753012208,-0.5877852522924731,0.4067366430758002,0.3420201433256687,-0.5299192642332049,0.9702957262759965,-0.9993908270190958,0.7431448254773942,-0.5877852522924731,-0.13917310096006544,0.3420201433256687,-0.898794046299167,0.9702957262759965,-0.8660254037844386,0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.788010753606722,-0.9945218953682733,0.9510565162951535,-0.46947156278589075,0.27563735581699916,0.46947156278589075,-0.6427876096865394,0.9945218953682733,-0.9945218953682733,0.6427876096865394,0.0697564737441253,-0.27563735581699916,0.8660254037844386,-0.9510565162951535,0.898794046299167,-0.788010753606722,0.13917310096006544,0.0697564737441253,-0.7431448254773942,0.8660254037844386,-0.9702957262759965,0.898794046299167,-0.3420201433256687,-0.4067366430758002,0.5877852522924731,-0.984807753012208,0.9993908270190958,-0.6946583704589973,0.5299192642332049,0.20791169081775934,-0.4067366430758002,0.9271838545667874,-0.984807753012208,0.8290375725550417,-0.6946583704589973,0.0,0.6946583704589973,-0.8290375725550417,0.984807753012208,-0.9271838545667874,0.4067366430758002,-0.20791169081775934,-0.5299192642332049,0.6946583704589973,-0.9993908270190958,0.984807753012208,-0.5877852522924731,0.4067366430758002,0.3420201433256687,-0.5299192642332049,0.9702957262759965,-0.8660254037844386,0.7431448254773942,-0.0697564737441253,-0.13917310096006544,0.788010753606722,-0.898794046299167,0.9510565162951535,-0.8660254037844386,0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.788010753606722,-0.9945218953682733,0.6427876096865394,-0.46947156278589075,-0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.9945218953682733,-0.788010753606722,0.6427876096865394,0.0697564737441253,-0.27563735581699916,0.8660254037844386,-0.9510565162951535,0.898794046299167,-0.3420201433256687,0.13917310096006544,0.5877852522924731,-0.7431448254773942,0.9993908270190958,-0.9702957262759965,0.5299192642332049,-0.3420201433256687,-0.4067366430758002,0.5877852522924731,-0.984807753012208,0.9993908270190958,-0.6946583704589973,0.0,0.20791169081775934,-0.8290375725550417,0.9271838545667874,-0.9271838545667874,0.8290375725550417,-0.20791169081775934,0.0,0.6946583704589973,-0.8290375725550417,0.984807753012208,-0.9271838545667874,0.4067366430758002,0.3420201433256687,-0.5299192642332049,0.9702957262759965,-0.9993908270190958,0.7431448254773942,-0.5877852522924731,-0.13917310096006544,0.3420201433256687,-0.898794046299167,0.9702957262759965,-0.8660254037844386,0.7431448254773942,-0.0697564737441253,-0.6427876096865394,0.788010753606722,-0.9945218953682733,0.9510565162951535,-0.46947156278589075,0.27563735581699916,0.46947156278589075,-0.6427876096865394,0.9945218953682733,-0.9945218953682733,0.6427876096865394,-0.46947156278589075,-0.27563735581699916,0.8660254037844386,-0.9510565162951535,0.898794046299167,-0.788010753606722,0.13917310096006544,0.0697564737441253,-0.7431448254773942,0.8660254037844386,-0.9702957262759965,0.898794046299167,-0.3420201433256687,0.13917310096006544,0.5877852522924731,-0.984807753012208,0.9993908270190958,-0.6946583704589973,0.5299192642332049,0.20791169081775934,-0.4067366430758002,0.9271838545667874,-0.984807753012208,0.8290375725550417,-0.6946583704589973,0.0,0.20791169081775934,-0.8290375725550417,0.984807753012208,-0.9271838545667874,0.4067366430758002,-0.20791169081775934,-0.5299192642332049,0.6946583704589973,-0.9993908270190958,0.984807753012208,-0.5877852522924731,0.4067366430758002,0.3420201433256687,-0.5299192642332049,0.9702957262759965,-0.8660254037844386,0.7431448254773942,-0.0697564737441253,-0.13917310096006544,0.788010753606722,-0.898794046299167,0.9510565162951535,-0.8660254037844386,0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.788010753606722,-0.9945218953682733,0.9510565162951535,-0.46947156278589075,-0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.9945218953682733,-0.788010753606722,0.6427876096865394,0.0697564737441253,-0.27563735581699916,0.8660254037844386,-0.9510565162951535,0.898794046299167,-0.788010753606722,0.13917310096006544,0.5877852522924731,-0.7431448254773942,0.9993908270190958,-0.9702957262759965,0.5299192642332049,-0.3420201433256687,-0.4067366430758002,0.5877852522924731,-0.984807753012208,0.9993908270190958,-0.6946583704589973,0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.9271838545667874,-0.9271838545667874,0.8290375725550417,-0.20791169081775934,0.0,0.6946583704589973,-0.8290375725550417,0.984807753012208,-0.9271838545667874,0.4067366430758002,-0.20791169081775934,-0.5299192642332049,0.9702957262759965,-0.9993908270190958,0.7431448254773942,-0.5877852522924731,-0.13917310096006544,0.3420201433256687,-0.898794046299167,0.9702957262759965,-0.8660254037844386,0.7431448254773942,-0.0697564737441253,-0.13917310096006544,0.788010753606722,-0.9945218953682733,0.9510565162951535,-0.46947156278589075,0.27563735581699916,0.46947156278589075,-0.6427876096865394,0.9945218953682733,-0.9945218953682733,0.6427876096865394,-0.46947156278589075,-0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.898794046299167,-0.788010753606722,0.13917310096006544,0.0697564737441253,-0.7431448254773942,0.8660254037844386,-0.9702957262759965,0.898794046299167,-0.3420201433256687,0.13917310096006544,0.5877852522924731,-0.7431448254773942,0.9993908270190958,-0.6946583704589973,0.5299192642332049,0.20791169081775934,-0.4067366430758002,0.9271838545667874,-0.984807753012208,0.8290375725550417,-0.6946583704589973,0.0,0.20791169081775934,-0.8290375725550417,0.9271838545667874,-0.9271838545667874,0.4067366430758002,-0.20791169081775934,-0.5299192642332049,0.6946583704589973,-0.9993908270190958,0.984807753012208,-0.5877852522924731,0.4067366430758002,0.3420201433256687,-0.5299192642332049,0.9702957262759965,-0.9993908270190958,0.7431448254773942,-0.0697564737441253,-0.13917310096006544,0.788010753606722,-0.898794046299167,0.9510565162951535,-0.8660254037844386,0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.788010753606722,-0.9945218953682733,0.9510565162951535,-0.46947156278589075,-0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.9945218953682733,-0.788010753606722,0.6427876096865394,0.0697564737441253,-0.27563735581699916,0.8660254037844386,-0.9510565162951535,0.898794046299167,-0.788010753606722,0.13917310096006544,0.0697564737441253,-0.7431448254773942,0.9993908270190958,-0.9702957262759965,0.5299192642332049,-0.3420201433256687,-0.4067366430758002,0.5877852522924731,-0.984807753012208,0.9993908270190958,-0.6946583704589973,0.5299192642332049,0.20791169081775934,-0.4067366430758002,0.9271838545667874,-0.9271838545667874,0.8290375725550417,-0.20791169081775934,0.0,0.6946583704589973,-0.8290375725550417,0.984807753012208,-0.9271838545667874,0.4067366430758002,-0.20791169081775934,-0.5299192642332049,0.6946583704589973,-0.9993908270190958,0.7431448254773942,-0.5877852522924731,-0.13917310096006544,0.3420201433256687,-0.898794046299167,0.9702957262759965,-0.8660254037844386,0.7431448254773942,-0.0697564737441253,-0.13917310096006544,0.788010753606722,-0.898794046299167,0.9510565162951535,-0.46947156278589075,0.27563735581699916,0.46947156278589075,-0.6427876096865394,0.9945218953682733,-0.9945218953682733,0.6427876096865394,-0.46947156278589075,-0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.9945218953682733,-0.788010753606722,0.13917310096006544,0.0697564737441253,-0.7431448254773942,0.8660254037844386,-0.9702957262759965,0.898794046299167,-0.3420201433256687,0.13917310096006544,0.5877852522924731,-0.7431448254773942,0.9993908270190958,-0.9702957262759965,0.5299192642332049,0.20791169081775934,-0.4067366430758002,0.9271838545667874,-0.984807753012208,0.8290375725550417,-0.6946583704589973,0.0,0.20791169081775934,-0.8290375725550417,0.9271838545667874,-0.9271838545667874,0.8290375725550417,-0.20791169081775934,-0.5299192642332049,0.6946583704589973,-0.9993908270190958,0.984807753012208,-0.5877852522924731,0.4067366430758002,0.3420201433256687,-0.5299192642332049,0.9702957262759965,-0.9993908270190958,0.7431448254773942,-0.5877852522924731,-0.13917310096006544,0.788010753606722,-0.898794046299167,0.9510565162951535,-0.8660254037844386,0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.788010753606722,-0.9945218953682733,0.9510565162951535,-0.46947156278589075,0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.9945218953682733,-0.788010753606722,0.6427876096865394,0.0697564737441253,-0.27563735581699916,0.8660254037844386,-0.9510565162951535,0.898794046299167,-0.788010753606722,0.13917310096006544,0.0697564737441253,-0.7431448254773942,0.9993908270190958,-0.9702957262759965,0.5299192642332049,-0.3420201433256687,-0.4067366430758002,0.5877852522924731,-0.984807753012208,0.9993908270190958,-0.6946583704589973,0.5299192642332049,0.20791169081775934,-0.4067366430758002,0.9271838545667874,-0.984807753012208,0.8290375725550417,-0.20791169081775934,0.0,0.6946583704589973,-0.8290375725550417,0.984807753012208,-0.9271838545667874,0.4067366430758002,-0.20791169081775934,-0.5299192642332049,0.6946583704589973,-0.9993908270190958,0.984807753012208,-0.5877852522924731,-0.13917310096006544,0.3420201433256687,-0.898794046299167,0.9702957262759965,-0.8660254037844386,0.7431448254773942,-0.0697564737441253,-0.13917310096006544,0.788010753606722,-0.898794046299167,0.9510565162951535,-0.8660254037844386,0.27563735581699916,0.46947156278589075,-0.6427876096865394,0.9945218953682733,-0.9945218953682733,0.6427876096865394,-0.46947156278589075,-0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.9945218953682733,-0.788010753606722,0.6427876096865394,0.0697564737441253,-0.7431448254773942,0.8660254037844386,-0.9702957262759965,0.898794046299167,-0.3420201433256687,0.13917310096006544,0.5877852522924731,-0.7431448254773942,0.9993908270190958,-0.9702957262759965,0.5299192642332049,-0.3420201433256687,-0.4067366430758002,0.9271838545667874,-0.984807753012208,0.8290375725550417,-0.6946583704589973,0.0,0.20791169081775934,-0.8290375725550417,0.9271838545667874,-0.9271838545667874,0.8290375725550417,-0.20791169081775934,0.0,0.6946583704589973,-0.9993908270190958,0.984807753012208,-0.5877852522924731,0.4067366430758002,0.3420201433256687,-0.5299192642332049,0.9702957262759965,-0.9993908270190958,0.7431448254773942,-0.5877852522924731,-0.13917310096006544,0.3420201433256687,-0.898794046299167,0.9510565162951535,-0.8660254037844386,0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.788010753606722,-0.9945218953682733,0.9510565162951535,-0.46947156278589075,0.27563735581699916,0.46947156278589075,-0.6427876096865394,0.9945218953682733,-0.788010753606722,0.6427876096865394,0.0697564737441253,-0.27563735581699916,0.8660254037844386,-0.9510565162951535,0.898794046299167,-0.788010753606722,0.13917310096006544,0.0697564737441253,-0.7431448254773942,0.8660254037844386,-0.9702957262759965,0.5299192642332049,-0.3420201433256687,-0.4067366430758002,0.5877852522924731,-0.984807753012208,0.9993908270190958,-0.6946583704589973,0.5299192642332049,0.20791169081775934,-0.4067366430758002,0.9271838545667874,-0.984807753012208,0.8290375725550417,-0.20791169081775934,0.0,0.6946583704589973,-0.8290375725550417,0.984807753012208,-0.9271838545667874,0.4067366430758002,-0.20791169081775934,-0.5299192642332049,0.6946583704589973,-0.9993908270190958,0.984807753012208,-0.5877852522924731,0.4067366430758002,0.3420201433256687,-0.898794046299167,0.9702957262759965,-0.8660254037844386,0.7431448254773942,-0.0697564737441253,-0.13917310096006544,0.788010753606722,-0.898794046299167,0.9510565162951535,-0.8660254037844386,0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.9945218953682733,-0.9945218953682733,0.6427876096865394,-0.46947156278589075,-0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.9945218953682733,-0.788010753606722,0.6427876096865394,0.0697564737441253,-0.27563735581699916,0.8660254037844386,-0.9702957262759965,0.898794046299167,-0.3420201433256687,0.13917310096006544,0.5877852522924731,-0.7431448254773942,0.9993908270190958,-0.9702957262759965,0.5299192642332049,-0.3420201433256687,-0.4067366430758002,0.5877852522924731,-0.984807753012208,0.8290375725550417,-0.6946583704589973,0.0,0.20791169081775934,-0.8290375725550417,0.9271838545667874,-0.9271838545667874,0.8290375725550417,-0.20791169081775934,0.0,0.6946583704589973,-0.8290375725550417,0.984807753012208,-0.5877852522924731,0.4067366430758002,0.3420201433256687,-0.5299192642332049,0.9702957262759965,-0.9993908270190958,0.7431448254773942,-0.5877852522924731,-0.13917310096006544,0.3420201433256687,-0.898794046299167,0.9702957262759965,-0.8660254037844386,0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.788010753606722,-0.9945218953682733,0.9510565162951535,-0.46947156278589075,0.27563735581699916,0.46947156278589075,-0.6427876096865394,0.9945218953682733,-0.9945218953682733,0.6427876096865394,0.0697564737441253,-0.27563735581699916,0.8660254037844386,-0.9510565162951535,0.898794046299167,-0.788010753606722,0.13917310096006544,0.0697564737441253,-0.7431448254773942,0.8660254037844386,-0.9702957262759965,0.898794046299167,-0.3420201433256687,-0.4067366430758002,0.5877852522924731,-0.984807753012208,0.9993908270190958,-0.6946583704589973,0.5299192642332049,0.20791169081775934,-0.4067366430758002,0.9271838545667874,-0.984807753012208,0.8290375725550417,-0.6946583704589973,0.0,0.6946583704589973,-0.8290375725550417,0.984807753012208,-0.9271838545667874,0.4067366430758002,-0.20791169081775934,-0.5299192642332049,0.6946583704589973,-0.9993908270190958,0.984807753012208,-0.5877852522924731,0.4067366430758002,0.3420201433256687,-0.898794046299167,0.9702957262759965,-0.8660254037844386,0.7431448254773942,-0.0697564737441253,-0.13917310096006544,0.788010753606722,-0.898794046299167,0.9510565162951535,-0.8660254037844386,0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.9945218953682733,-0.9945218953682733,0.6427876096865394,-0.46947156278589075,-0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.9945218953682733,-0.788010753606722,0.6427876096865394,0.0697564737441253,-0.27563735581699916,0.8660254037844386,-0.9510565162951535,0.898794046299167,-0.3420201433256687,0.13917310096006544,0.5877852522924731,-0.7431448254773942,0.9993908270190958,-0.9702957262759965,0.5299192642332049,-0.3420201433256687,-0.4067366430758002,0.5877852522924731,-0.984807753012208,0.9993908270190958,-0.6946583704589973,0.0,0.20791169081775934,-0.8290375725550417,0.9271838545667874,-0.9271838545667874,0.8290375725550417,-0.20791169081775934,0.0,0.6946583704589973,-0.8290375725550417,0.984807753012208,-0.9271838545667874,0.4067366430758002,0.3420201433256687,-0.5299192642332049,0.9702957262759965,-0.9993908270190958,0.7431448254773942,-0.5877852522924731,-0.13917310096006544,0.3420201433256687,-0.898794046299167,0.9702957262759965,-0.8660254037844386,0.7431448254773942,-0.0697564737441253,-0.6427876096865394,0.788010753606722,-0.9945218953682733,0.9510565162951535,-0.46947156278589075,0.27563735581699916,0.46947156278589075,-0.6427876096865394,0.9945218953682733,-0.9945218953682733,0.6427876096865394,-0.46947156278589075,-0.27563735581699916,0.8660254037844386,-0.9510565162951535,0.898794046299167,-0.788010753606722,0.13917310096006544,0.0697564737441253,-0.7431448254773942,0.8660254037844386,-0.9702957262759965,0.898794046299167,-0.3420201433256687,0.13917310096006544,0.5877852522924731,-0.984807753012208,0.9993908270190958,-0.6946583704589973,0.5299192642332049,0.20791169081775934,-0.4067366430758002,0.9271838545667874,-0.984807753012208,0.8290375725550417,-0.6946583704589973,0.0,0.20791169081775934,-0.8290375725550417,0.984807753012208,-0.9271838545667874,0.4067366430758002,-0.20791169081775934,-0.5299192642332049,0.6946583704589973,-0.9993908270190958,0.984807753012208,-0.5877852522924731,0.4067366430758002,0.3420201433256687,-0.5299192642332049,0.9702957262759965,-0.8660254037844386,0.7431448254773942,-0.0697564737441253,-0.13917310096006544,0.788010753606722,-0.898794046299167,0.9510565162951535,-0.46947156278589075,0.7431448254773942,-0.0697564737441253,-0.6427876096865394,0.9945218953682733,-0.898794046299167,0.9510565162951535,-0.46947156278589075,-0.27563735581699916,0.8660254037844386,-0.6427876096865394,0.9945218953682733,-0.788010753606722,0.13917310096006544,-0.46947156278589075,-0.27563735581699916,0.8660254037844386,-0.9702957262759965,0.9945218953682733,-0.788010753606722,0.13917310096006544,0.5877852522924731,-0.984807753012208,0.8660254037844386,-0.9702957262759965,0.5299192642332049,0.20791169081775934,0.13917310096006544,0.5877852522924731,-0.984807753012208,0.8290375725550417,-0.9702957262759965,0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.984807753012208,-0.984807753012208,0.8290375725550417,-0.20791169081775934,-0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.984807753012208,-0.5877852522924731,0.8290375725550417,-0.20791169081775934,-0.5299192642332049,0.9702957262759965,-0.8660254037844386,0.984807753012208,-0.5877852522924731,-0.13917310096006544,0.788010753606722,-0.5299192642332049,0.9702957262759965,-0.8660254037844386,0.27563735581699916,-0.5877852522924731,-0.13917310096006544,0.788010753606722,-0.9945218953682733,0.6427876096865394,-0.8660254037844386,0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.788010753606722,-0.9945218953682733,0.6427876096865394,0.0697564737441253,0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.898794046299167,-0.3420201433256687,0.6427876096865394,0.0697564737441253,-0.7431448254773942,0.9993908270190958,-0.9510565162951535,0.898794046299167,-0.3420201433256687,-0.4067366430758002,0.0697564737441253,-0.7431448254773942,0.9993908270190958,-0.6946583704589973,0.0,-0.3420201433256687,-0.4067366430758002,0.9271838545667874,-0.9271838545667874,0.9993908270190958,-0.6946583704589973,0.0,0.6946583704589973,-0.4067366430758002,0.9271838545667874,-0.9271838545667874,0.4067366430758002,0.3420201433256687,0.0,0.6946583704589973,-0.9993908270190958,0.7431448254773942,-0.9271838545667874,0.4067366430758002,0.3420201433256687,-0.898794046299167,0.6946583704589973,-0.9993908270190958,0.7431448254773942,-0.0697564737441253,-0.6427876096865394,0.3420201433256687,-0.898794046299167,0.9510565162951535,-0.46947156278589075,0.7431448254773942,-0.0697564737441253,-0.6427876096865394,0.9945218953682733,-0.898794046299167,0.9510565162951535,-0.46947156278589075,-0.27563735581699916,0.8660254037844386,-0.6427876096865394,0.9945218953682733,-0.788010753606722,0.13917310096006544,-0.46947156278589075,-0.27563735581699916,0.8660254037844386,-0.9702957262759965,0.9945218953682733,-0.788010753606722,0.13917310096006544,0.5877852522924731,-0.984807753012208,0.8660254037844386,-0.9702957262759965,0.5299192642332049,0.20791169081775934,0.13917310096006544,0.5877852522924731,-0.984807753012208,0.8290375725550417,-0.9702957262759965,0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.984807753012208,-0.984807753012208,0.8290375725550417,-0.20791169081775934,-0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.984807753012208,-0.5877852522924731,0.8290375725550417,-0.20791169081775934,-0.5299192642332049,0.9702957262759965,-0.8660254037844386,0.984807753012208,-0.5877852522924731,-0.13917310096006544,0.788010753606722,-0.5299192642332049,0.9702957262759965,-0.8660254037844386,0.27563735581699916,-0.5877852522924731,-0.13917310096006544,0.788010753606722,-0.9945218953682733,0.6427876096865394,-0.8660254037844386,0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.788010753606722,-0.9945218953682733,0.6427876096865394,0.0697564737441253,0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.898794046299167,-0.3420201433256687,0.6427876096865394,0.0697564737441253,-0.7431448254773942,0.9993908270190958,-0.9510565162951535,0.898794046299167,-0.3420201433256687,-0.4067366430758002,0.0697564737441253,-0.7431448254773942,0.9993908270190958,-0.6946583704589973,0.0,-0.3420201433256687,-0.4067366430758002,0.9271838545667874,-0.9271838545667874,0.9993908270190958,-0.6946583704589973,0.0,0.6946583704589973,-0.4067366430758002,0.9271838545667874,-0.9271838545667874,0.4067366430758002,0.3420201433256687,0.0,0.6946583704589973,-0.9993908270190958,0.7431448254773942,-0.9271838545667874,0.4067366430758002,0.3420201433256687,-0.898794046299167,0.6946583704589973,-0.9993908270190958,0.7431448254773942,-0.0697564737441253,0.4067366430758002,0.3420201433256687,-0.898794046299167,0.9510565162951535,-0.46947156278589075,0.7431448254773942,-0.0697564737441253,-0.6427876096865394,0.9945218953682733,-0.898794046299167,0.9510565162951535,-0.46947156278589075,-0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.9945218953682733,-0.788010753606722,0.13917310096006544,-0.46947156278589075,-0.27563735581699916,0.8660254037844386,-0.9702957262759965,0.9945218953682733,-0.788010753606722,0.13917310096006544,0.5877852522924731,-0.27563735581699916,0.8660254037844386,-0.9702957262759965,0.5299192642332049,0.20791169081775934,0.13917310096006544,0.5877852522924731,-0.984807753012208,0.8290375725550417,-0.9702957262759965,0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.5877852522924731,-0.984807753012208,0.8290375725550417,-0.20791169081775934,-0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.984807753012208,-0.5877852522924731,0.8290375725550417,-0.20791169081775934,-0.5299192642332049,0.9702957262759965,-0.8290375725550417,0.984807753012208,-0.5877852522924731,-0.13917310096006544,0.788010753606722,-0.5299192642332049,0.9702957262759965,-0.8660254037844386,0.27563735581699916,-0.5877852522924731,-0.13917310096006544,0.788010753606722,-0.9945218953682733,0.9702957262759965,-0.8660254037844386,0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.788010753606722,-0.9945218953682733,0.6427876096865394,0.0697564737441253,0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.898794046299167,-0.9945218953682733,0.6427876096865394,0.0697564737441253,-0.7431448254773942,0.9993908270190958,-0.9510565162951535,0.898794046299167,-0.3420201433256687,-0.4067366430758002,0.0697564737441253,-0.7431448254773942,0.9993908270190958,-0.6946583704589973,0.898794046299167,-0.3420201433256687,-0.4067366430758002,0.9271838545667874,-0.9271838545667874,0.9993908270190958,-0.6946583704589973,0.0,0.6946583704589973,-0.4067366430758002,0.9271838545667874,-0.9271838545667874,0.4067366430758002,-0.6946583704589973,0.0,0.6946583704589973,-0.9993908270190958,0.7431448254773942,-0.9271838545667874,0.4067366430758002,0.3420201433256687,-0.898794046299167,0.6946583704589973,-0.9993908270190958,0.7431448254773942,-0.0697564737441253,0.4067366430758002,0.3420201433256687,-0.898794046299167,0.9510565162951535,-0.46947156278589075,0.7431448254773942,-0.0697564737441253,-0.6427876096865394,0.9945218953682733,-0.898794046299167,0.9510565162951535,-0.46947156278589075,-0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.9945218953682733,-0.788010753606722,0.13917310096006544,-0.46947156278589075,-0.27563735581699916,0.8660254037844386,-0.9702957262759965,0.9945218953682733,-0.788010753606722,0.13917310096006544,0.5877852522924731,-0.27563735581699916,0.8660254037844386,-0.9702957262759965,0.5299192642332049,0.20791169081775934,0.13917310096006544,0.5877852522924731,-0.984807753012208,0.8290375725550417,-0.9702957262759965,0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.5877852522924731,-0.984807753012208,0.8290375725550417,-0.20791169081775934,-0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.984807753012208,-0.5877852522924731,0.8290375725550417,-0.20791169081775934,-0.5299192642332049,0.9702957262759965,-0.8290375725550417,0.984807753012208,-0.5877852522924731,-0.13917310096006544,0.788010753606722,-0.5299192642332049,0.9702957262759965,-0.8660254037844386,0.27563735581699916,-0.5877852522924731,-0.13917310096006544,0.788010753606722,-0.9945218953682733,0.9702957262759965,-0.8660254037844386,0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.788010753606722,-0.9945218953682733,0.6427876096865394,0.0697564737441253,0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.898794046299167,-0.9945218953682733,0.6427876096865394,0.0697564737441253,-0.7431448254773942,0.9993908270190958,-0.9510565162951535,0.898794046299167,-0.3420201433256687,-0.4067366430758002,0.0697564737441253,-0.7431448254773942,0.9993908270190958,-0.6946583704589973,0.898794046299167,-0.3420201433256687,-0.4067366430758002,0.9271838545667874,-0.9271838545667874,0.9993908270190958,-0.6946583704589973,0.0,0.6946583704589973,-0.4067366430758002,0.9271838545667874,-0.9271838545667874,0.4067366430758002,-0.6946583704589973,0.0,0.6946583704589973,-0.9993908270190958,0.7431448254773942,-0.9271838545667874,0.4067366430758002,0.3420201433256687,-0.898794046299167,0.6946583704589973,-0.9993908270190958,0.7431448254773942,-0.0697564737441253,0.4067366430758002,0.3420201433256687,-0.898794046299167,0.9510565162951535,-0.46947156278589075,0.7431448254773942,-0.0697564737441253,-0.6427876096865394,0.9945218953682733,-0.898794046299167,0.9510565162951535,-0.46947156278589075,-0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.9945218953682733,-0.788010753606722,0.13917310096006544,-0.46947156278589075,-0.27563735581699916,0.8660254037844386,-0.9702957262759965,0.9945218953682733,-0.788010753606722,0.13917310096006544,0.5877852522924731,-0.27563735581699916,0.8660254037844386,-0.9702957262759965,0.5299192642332049,-0.788010753606722,0.13917310096006544,0.5877852522924731,-0.984807753012208,0.8290375725550417,-0.9702957262759965,0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.5877852522924731,-0.984807753012208,0.8290375725550417,-0.20791169081775934,0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.984807753012208,-0.5877852522924731,0.8290375725550417,-0.20791169081775934,-0.5299192642332049,0.9702957262759965,-0.8290375725550417,0.984807753012208,-0.5877852522924731,-0.13917310096006544,-0.20791169081775934,-0.5299192642332049,0.9702957262759965,-0.8660254037844386,0.27563735581699916,-0.5877852522924731,-0.13917310096006544,0.788010753606722,-0.9945218953682733,0.9702957262759965,-0.8660254037844386,0.27563735581699916,0.46947156278589075,-0.13917310096006544,0.788010753606722,-0.9945218953682733,0.6427876096865394,0.0697564737441253,0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.898794046299167,-0.9945218953682733,0.6427876096865394,0.0697564737441253,-0.7431448254773942,0.46947156278589075,-0.9510565162951535,0.898794046299167,-0.3420201433256687,-0.4067366430758002,0.0697564737441253,-0.7431448254773942,0.9993908270190958,-0.6946583704589973,0.898794046299167,-0.3420201433256687,-0.4067366430758002,0.9271838545667874,-0.7431448254773942,0.9993908270190958,-0.6946583704589973,0.0,0.6946583704589973,-0.4067366430758002,0.9271838545667874,-0.9271838545667874,0.4067366430758002,-0.6946583704589973,0.0,0.6946583704589973,-0.9993908270190958,0.9271838545667874,-0.9271838545667874,0.4067366430758002,0.3420201433256687,-0.898794046299167,0.6946583704589973,-0.9993908270190958,0.7431448254773942,-0.0697564737441253,0.4067366430758002,0.3420201433256687,-0.898794046299167,0.9510565162951535,-0.9993908270190958,0.7431448254773942,-0.0697564737441253,-0.6427876096865394,0.9945218953682733,-0.898794046299167,0.9510565162951535,-0.46947156278589075,-0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.9945218953682733,-0.788010753606722,0.9510565162951535,-0.46947156278589075,-0.27563735581699916,0.8660254037844386,-0.9702957262759965,0.9945218953682733,-0.788010753606722,0.13917310096006544,0.5877852522924731,-0.27563735581699916,0.8660254037844386,-0.9702957262759965,0.5299192642332049,-0.788010753606722,0.13917310096006544,0.5877852522924731,-0.984807753012208,0.8290375725550417,-0.9702957262759965,0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.5877852522924731,-0.984807753012208,0.8290375725550417,-0.20791169081775934,0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.984807753012208,-0.5877852522924731,0.8290375725550417,-0.20791169081775934,-0.5299192642332049,0.9702957262759965,-0.8290375725550417,0.984807753012208,-0.5877852522924731,-0.13917310096006544,-0.20791169081775934,-0.5299192642332049,0.9702957262759965,-0.8660254037844386,0.27563735581699916,-0.5877852522924731,-0.13917310096006544,0.788010753606722,-0.9945218953682733,0.9702957262759965,-0.8660254037844386,0.27563735581699916,0.46947156278589075,-0.13917310096006544,0.788010753606722,-0.9945218953682733,0.6427876096865394,0.0697564737441253,0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.898794046299167,-0.9945218953682733,0.6427876096865394,0.0697564737441253,-0.7431448254773942,0.46947156278589075,-0.9510565162951535,0.898794046299167,-0.3420201433256687,-0.4067366430758002,0.0697564737441253,-0.7431448254773942,0.9993908270190958,-0.6946583704589973,0.898794046299167,-0.3420201433256687,-0.4067366430758002,0.9271838545667874,-0.7431448254773942,0.9993908270190958,-0.6946583704589973,0.0,0.6946583704589973,-0.4067366430758002,0.9271838545667874,-0.9271838545667874,0.4067366430758002,-0.6946583704589973,0.0,0.6946583704589973,-0.9993908270190958,0.9271838545667874,-0.9271838545667874,0.4067366430758002,0.3420201433256687,-0.898794046299167,0.6946583704589973,-0.9993908270190958,0.7431448254773942,-0.0697564737441253,0.4067366430758002,0.3420201433256687,-0.898794046299167,0.9510565162951535,-0.9993908270190958,0.7431448254773942,-0.0697564737441253,-0.6427876096865394,0.9945218953682733,-0.898794046299167,0.9510565162951535,-0.46947156278589075,-0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.9945218953682733,-0.788010753606722,0.9510565162951535,-0.46947156278589075,-0.27563735581699916,0.8660254037844386,-0.9702957262759965,0.9945218953682733,-0.788010753606722,0.13917310096006544,0.5877852522924731,-0.27563735581699916,0.8660254037844386,-0.9702957262759965,0.5299192642332049,-0.788010753606722,0.13917310096006544,0.5877852522924731,-0.984807753012208,0.8290375725550417,-0.9702957262759965,0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.5877852522924731,-0.984807753012208,0.8290375725550417,-0.20791169081775934,0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.984807753012208,-0.5877852522924731,0.8290375725550417,-0.20791169081775934,-0.5299192642332049,0.9702957262759965,-0.8290375725550417,0.984807753012208,-0.5877852522924731,-0.13917310096006544,-0.20791169081775934,-0.5299192642332049,0.9702957262759965,-0.8660254037844386,0.984807753012208,-0.5877852522924731,-0.13917310096006544,0.788010753606722,-0.9945218953682733,0.9702957262759965,-0.8660254037844386,0.27563735581699916,0.46947156278589075,-0.13917310096006544,0.788010753606722,-0.9945218953682733,0.6427876096865394,-0.8660254037844386,0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.898794046299167,-0.9945218953682733,0.6427876096865394,0.0697564737441253,-0.7431448254773942,0.46947156278589075,-0.9510565162951535,0.898794046299167,-0.3420201433256687,0.6427876096865394,0.0697564737441253,-0.7431448254773942,0.9993908270190958,-0.6946583704589973,0.898794046299167,-0.3420201433256687,-0.4067366430758002,0.9271838545667874,-0.7431448254773942,0.9993908270190958,-0.6946583704589973,0.0,-0.3420201433256687,-0.4067366430758002,0.9271838545667874,-0.9271838545667874,0.4067366430758002,-0.6946583704589973,0.0,0.6946583704589973,-0.9993908270190958,0.9271838545667874,-0.9271838545667874,0.4067366430758002,0.3420201433256687,0.0,0.6946583704589973,-0.9993908270190958,0.7431448254773942,-0.0697564737441253,0.4067366430758002,0.3420201433256687,-0.898794046299167,0.9510565162951535,-0.9993908270190958,0.7431448254773942,-0.0697564737441253,-0.6427876096865394,0.3420201433256687,-0.898794046299167,0.9510565162951535,-0.46947156278589075,-0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.9945218953682733,-0.788010753606722,0.9510565162951535,-0.46947156278589075,-0.27563735581699916,0.8660254037844386,-0.6427876096865394,0.9945218953682733,-0.788010753606722,0.13917310096006544,0.5877852522924731,-0.27563735581699916,0.8660254037844386,-0.9702957262759965,0.5299192642332049,-0.788010753606722,0.13917310096006544,0.5877852522924731,-0.984807753012208,0.8660254037844386,-0.9702957262759965,0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.5877852522924731,-0.984807753012208,0.8290375725550417,-0.20791169081775934,0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.984807753012208,-0.984807753012208,0.8290375725550417,-0.20791169081775934,-0.5299192642332049,0.9702957262759965,-0.8290375725550417,0.984807753012208,-0.5877852522924731,-0.13917310096006544,-0.20791169081775934,-0.5299192642332049,0.9702957262759965,-0.8660254037844386,0.984807753012208,-0.5877852522924731,-0.13917310096006544,0.788010753606722,-0.9945218953682733,0.9702957262759965,-0.8660254037844386,0.27563735581699916,0.46947156278589075,-0.13917310096006544,0.788010753606722,-0.9945218953682733,0.6427876096865394,-0.8660254037844386,0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.898794046299167,-0.9945218953682733,0.6427876096865394,0.0697564737441253,-0.7431448254773942,0.46947156278589075,-0.9510565162951535,0.898794046299167,-0.3420201433256687,0.6427876096865394,0.0697564737441253,-0.7431448254773942,0.9993908270190958,-0.6946583704589973,0.898794046299167,-0.3420201433256687,-0.4067366430758002,0.9271838545667874,-0.7431448254773942,0.9993908270190958,-0.6946583704589973,0.0,-0.3420201433256687,-0.4067366430758002,0.9271838545667874,-0.9271838545667874,0.4067366430758002,-0.6946583704589973,0.0,0.6946583704589973,-0.9993908270190958,0.9271838545667874,-0.9271838545667874,0.4067366430758002,0.3420201433256687,0.0,0.6946583704589973,-0.9993908270190958,0.7431448254773942,-0.0697564737441253,0.4067366430758002,0.3420201433256687,-0.898794046299167,0.9510565162951535,-0.9993908270190958,0.7431448254773942,-0.0697564737441253,-0.6427876096865394,0.3420201433256687,-0.898794046299167,0.9510565162951535,-0.46947156278589075,-0.27563735581699916,-0.0697564737441253,-0.6427876096865394,0.9945218953682733,-0.788010753606722,0.9510565162951535,-0.46947156278589075,-0.27563735581699916,0.8660254037844386,-0.6427876096865394,0.9945218953682733,-0.788010753606722,0.13917310096006544,0.5877852522924731,-0.27563735581699916,0.8660254037844386,-0.9702957262759965,0.5299192642332049,-0.788010753606722,0.13917310096006544,0.5877852522924731,-0.984807753012208,0.8660254037844386,-0.9702957262759965,0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.5877852522924731,-0.984807753012208,0.8290375725550417,-0.20791169081775934,0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.984807753012208,-0.984807753012208,0.8290375725550417,-0.20791169081775934,-0.5299192642332049,0.9702957262759965,-0.8290375725550417,0.984807753012208,-0.5877852522924731,-0.13917310096006544,-0.20791169081775934,-0.5299192642332049,0.9702957262759965,-0.8660254037844386,0.984807753012208,-0.5877852522924731,-0.13917310096006544,0.788010753606722,-0.9945218953682733,0.9702957262759965,-0.8660254037844386,0.27563735581699916,0.46947156278589075,-0.13917310096006544,0.788010753606722,-0.9945218953682733,0.6427876096865394,-0.8660254037844386,0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.898794046299167,-0.9945218953682733,0.6427876096865394,0.0697564737441253,-0.7431448254773942,0.46947156278589075,-0.9510565162951535,0.898794046299167,-0.3420201433256687,0.6427876096865394,0.0697564737441253,-0.7431448254773942,0.9993908270190958,-0.9510565162951535,0.898794046299167,-0.3420201433256687,-0.4067366430758002,0.9271838545667874,-0.7431448254773942,0.9993908270190958,-0.6946583704589973,0.0,-0.3420201433256687,-0.4067366430758002,0.9271838545667874,-0.9271838545667874,0.9993908270190958,-0.6946583704589973,0.0,0.6946583704589973,-0.9993908270190958,0.9271838545667874,-0.9271838545667874,0.4067366430758002,0.3420201433256687,0.0,0.6946583704589973,-0.9993908270190958,0.7431448254773942,-0.9271838545667874,0.4067366430758002,0.3420201433256687,-0.898794046299167,0.9510565162951535,-0.9993908270190958,0.7431448254773942,-0.0697564737441253,-0.6427876096865394,0.3420201433256687,-0.898794046299167,0.9510565162951535,-0.46947156278589075,0.7431448254773942,-0.0697564737441253,-0.6427876096865394,0.9945218953682733,-0.788010753606722,0.9510565162951535,-0.46947156278589075,-0.27563735581699916,0.8660254037844386,-0.6427876096865394,0.9945218953682733,-0.788010753606722,0.13917310096006544,-0.46947156278589075,-0.27563735581699916,0.8660254037844386,-0.9702957262759965,0.5299192642332049,-0.788010753606722,0.13917310096006544,0.5877852522924731,-0.984807753012208,0.8660254037844386,-0.9702957262759965,0.5299192642332049,0.20791169081775934,0.13917310096006544,0.5877852522924731,-0.984807753012208,0.8290375725550417,-0.20791169081775934,0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.984807753012208,-0.984807753012208,0.8290375725550417,-0.20791169081775934,-0.5299192642332049,0.20791169081775934,-0.8290375725550417,0.984807753012208,-0.5877852522924731,-0.13917310096006544,-0.20791169081775934,-0.5299192642332049,0.9702957262759965,-0.8660254037844386,0.984807753012208,-0.5877852522924731,-0.13917310096006544,0.788010753606722,-0.5299192642332049,0.9702957262759965,-0.8660254037844386,0.27563735581699916,0.46947156278589075,-0.13917310096006544,0.788010753606722,-0.9945218953682733,0.6427876096865394,-0.8660254037844386,0.27563735581699916,0.46947156278589075,-0.9510565162951535,0.788010753606722,-0.9945218953682733,0.6427876096865394,0.0697564737441253,-0.7431448254773942,0.46947156278589075,-0.9510565162951535,0.898794046299167,-0.3420201433256687,0.6427876096865394,0.0697564737441253,-0.7431448254773942,0.9993908270190958,-0.9510565162951535,0.898794046299167,-0.3420201433256687,-0.4067366430758002,0.9271838545667874,-0.7431448254773942,0.9993908270190958,-0.6946583704589973,0.0,-0.3420201433256687,-0.4067366430758002,0.9271838545667874,-0.9271838545667874,0.9993908270190958,-0.6946583704589973,0.0],"x":[1.0376293541461623e20,2.411497240479221e299,4.822994480958442e299,7.234491721437664e299,9.645988961916884e299,1.2057486202396106e300,1.4468983442875328e300,1.688048068335455e300,1.929197792383377e300,2.1703475164312992e300,2.4114972404792213e300,2.6526469645271433e300,2.8937966885750656e300,3.1349464126229877e300,3.37609613667091e300,3.617245860718832e300,3.858395584766754e300,4.0995453088146764e300,4.3406950328625985e300,4.5818447569105205e300,4.8229944809584425e300,5.0641442050063646e300,5.3052939290542866e300,5.546443653102209e300,5.787593377150131e300,6.028743101198053e300,6.269892825245975e300,6.511042549293898e300,6.75219227334182e300,6.993341997389742e300,7.234491721437664e300,7.475641445485586e300,7.716791169533508e300,7.95794089358143e300,8.199090617629353e300,8.440240341677274e300,8.681390065725197e300,8.922539789773118e300,9.163689513821041e300,9.404839237868962e300,9.645988961916885e300,9.887138685964808e300,1.0128288410012729e301,1.0369438134060652e301,1.0610587858108573e301,1.0851737582156495e301,1.1092887306204417e301,1.133403703025234e301,1.1575186754300263e301,1.1816336478348185e301,1.2057486202396105e301,1.2298635926444028e301,1.253978565049195e301,1.2780935374539873e301,1.3022085098587796e301,1.3263234822635716e301,1.350438454668364e301,1.3745534270731562e301,1.3986683994779484e301,1.4227833718827404e301,1.4468983442875327e301,1.471013316692325e301,1.4951282890971172e301,1.5192432615019095e301,1.5433582339067015e301,1.5674732063114938e301,1.591588178716286e301,1.6157031511210783e301,1.6398181235258706e301,1.6639330959306626e301,1.6880480683354549e301,1.7121630407402471e301,1.7362780131450394e301,1.7603929855498317e301,1.7845079579546237e301,1.808622930359416e301,1.8327379027642082e301,1.8568528751690005e301,1.8809678475737925e301,1.9050828199785848e301,1.929197792383377e301,1.9533127647881693e301,1.9774277371929615e301,2.0015427095977536e301,2.0256576820025458e301,2.049772654407338e301,2.0738876268121304e301,2.0980025992169226e301,2.1221175716217146e301,2.146232544026507e301,2.170347516431299e301,2.1944624888360914e301,2.2185774612408835e301,2.242692433645676e301,2.266807406050468e301,2.29092237845526e301,2.3150373508600525e301,2.3391523232648445e301,2.363267295669637e301,2.387382268074429e301,2.411497240479221e301,2.4356122128840136e301,2.4597271852888056e301,2.483842157693598e301,2.50795713009839e301,2.532072102503182e301,2.5561870749079747e301,2.5803020473127667e301,2.604417019717559e301,2.628531992122351e301,2.6526469645271433e301,2.6767619369319358e301,2.700876909336728e301,2.7249918817415203e301,2.7491068541463123e301,2.7732218265511043e301,2.797336798955897e301,2.821451771360689e301,2.845566743765481e301,2.8696817161702734e301,2.8937966885750654e301,2.917911660979858e301,2.94202663338465e301,2.966141605789442e301,2.9902565781942345e301,3.0143715505990265e301,3.038486523003819e301,3.062601495408611e301,3.086716467813403e301,3.1108314402181955e301,3.1349464126229876e301,3.15906138502778e301,3.183176357432572e301,3.207291329837364e301,3.2314063022421566e301,3.2555212746469486e301,3.279636247051741e301,3.303751219456533e301,3.327866191861325e301,3.3519811642661177e301,3.3760961366709097e301,3.400211109075702e301,3.4243260814804942e301,3.4484410538852863e301,3.472556026290079e301,3.496670998694871e301,3.5207859710996633e301,3.5449009435044553e301,3.5690159159092474e301,3.59313088831404e301,3.617245860718832e301,3.641360833123624e301,3.6654758055284164e301,3.6895907779332084e301,3.713705750338001e301,3.737820722742793e301,3.761935695147585e301,3.7860506675523775e301,3.8101656399571695e301,3.834280612361962e301,3.858395584766754e301,3.882510557171546e301,3.9066255295763386e301,3.9307405019811306e301,3.954855474385923e301,3.978970446790715e301,4.003085419195507e301,4.0272003916002996e301,4.0513153640050917e301,4.075430336409884e301,4.099545308814676e301,4.123660281219468e301,4.1477752536242607e301,4.1718902260290527e301,4.1960051984338452e301,4.2201201708386373e301,4.2442351432434293e301,4.268350115648222e301,4.292465088053014e301,4.316580060457806e301,4.340695032862598e301,4.36481000526739e301,4.388924977672183e301,4.413039950076975e301,4.437154922481767e301,4.461269894886559e301,4.485384867291352e301,4.5094998396961435e301,4.533614812100936e301,4.5577297845057285e301,4.58184475691052e301,4.605959729315313e301,4.630074701720105e301,4.654189674124898e301,4.678304646529689e301,4.702419618934482e301,4.726534591339274e301,4.750649563744066e301,4.774764536148858e301,4.798879508553651e301,4.822994480958442e301,4.847109453363235e301,4.871224425768027e301,4.895339398172819e301,4.919454370577611e301,4.943569342982404e301,4.967684315387196e301,4.991799287791988e301,5.01591426019678e301,5.040029232601573e301,5.064144205006364e301,5.088259177411157e301,5.112374149815949e301,5.136489122220741e301,5.160604094625533e301,5.184719067030326e301,5.208834039435118e301,5.23294901183991e301,5.257063984244702e301,5.281178956649495e301,5.3052939290542865e301,5.329408901459079e301,5.3535238738638715e301,5.377638846268663e301,5.401753818673456e301,5.425868791078248e301,5.449983763483041e301,5.474098735887832e301,5.498213708292625e301,5.522328680697417e301,5.546443653102209e301,5.570558625507001e301,5.594673597911794e301,5.618788570316585e301,5.642903542721378e301,5.66701851512617e301,5.691133487530962e301,5.715248459935754e301,5.739363432340547e301,5.763478404745339e301,5.787593377150131e301,5.811708349554923e301,5.835823321959716e301,5.859938294364507e301,5.8840532667693e301,5.908168239174092e301,5.932283211578884e301,5.956398183983676e301,5.980513156388469e301,6.004628128793261e301,6.028743101198053e301,6.052858073602845e301,6.076973046007638e301,6.10108801841243e301,6.125202990817222e301,6.149317963222015e301,6.173432935626806e301,6.197547908031599e301,6.221662880436391e301,6.245777852841184e301,6.269892825245975e301,6.294007797650768e301,6.31812277005556e301,6.342237742460352e301,6.366352714865144e301,6.390467687269937e301,6.414582659674728e301,6.438697632079521e301,6.462812604484313e301,6.486927576889105e301,6.511042549293897e301,6.53515752169869e301,6.559272494103482e301,6.583387466508274e301,6.607502438913066e301,6.631617411317859e301,6.65573238372265e301,6.679847356127443e301,6.703962328532235e301,6.728077300937027e301,6.752192273341819e301,6.776307245746612e301,6.800422218151404e301,6.824537190556196e301,6.8486521629609885e301,6.872767135365781e301,6.896882107770573e301,6.920997080175365e301,6.945112052580158e301,6.969227024984949e301,6.993341997389742e301,7.017456969794534e301,7.041571942199327e301,7.065686914604118e301,7.089801887008911e301,7.113916859413703e301,7.138031831818495e301,7.162146804223287e301,7.18626177662808e301,7.210376749032871e301,7.234491721437664e301,7.258606693842456e301,7.282721666247248e301,7.30683663865204e301,7.330951611056833e301,7.355066583461625e301,7.379181555866417e301,7.403296528271209e301,7.427411500676002e301,7.451526473080793e301,7.475641445485586e301,7.499756417890378e301,7.52387139029517e301,7.547986362699962e301,7.572101335104755e301,7.596216307509547e301,7.620331279914339e301,7.6444462523191315e301,7.668561224723924e301,7.692676197128716e301,7.716791169533508e301,7.740906141938301e301,7.765021114343092e301,7.789136086747885e301,7.813251059152677e301,7.83736603155747e301,7.861481003962261e301,7.885595976367054e301,7.909710948771846e301,7.933825921176638e301,7.95794089358143e301,7.982055865986223e301,8.006170838391014e301,8.030285810795807e301,8.054400783200599e301,8.078515755605391e301,8.102630728010183e301,8.126745700414976e301,8.150860672819768e301,8.17497564522456e301,8.199090617629352e301,8.223205590034145e301,8.247320562438936e301,8.271435534843729e301,8.295550507248521e301,8.319665479653313e301,8.3437804520581055e301,8.367895424462898e301,8.3920103968676905e301,8.416125369272482e301,8.440240341677275e301,8.464355314082067e301,8.488470286486859e301,8.512585258891651e301,8.536700231296444e301,8.560815203701235e301,8.584930176106028e301,8.60904514851082e301,8.633160120915613e301,8.657275093320405e301,8.681390065725196e301,8.705505038129988e301,8.72962001053478e301,8.753734982939573e301,8.777849955344366e301,8.801964927749158e301,8.82607990015395e301,8.850194872558741e301,8.874309844963534e301,8.898424817368326e301,8.922539789773119e301,8.946654762177911e301,8.970769734582704e301,8.994884706987494e301,9.018999679392287e301,9.04311465179708e301,9.067229624201872e301,9.091344596606664e301,9.115459569011457e301,9.13957454141625e301,9.16368951382104e301,9.187804486225833e301,9.211919458630625e301,9.236034431035418e301,9.26014940344021e301,9.284264375845003e301,9.308379348249795e301,9.332494320654586e301,9.356609293059378e301,9.38072426546417e301,9.404839237868963e301,9.428954210273756e301,9.453069182678548e301,9.477184155083339e301,9.501299127488131e301,9.525414099892924e301,9.549529072297716e301,9.573644044702509e301,9.597759017107301e301,9.621873989512094e301,9.645988961916884e301,9.670103934321677e301,9.69421890672647e301,9.718333879131262e301,9.742448851536054e301,9.766563823940847e301,9.790678796345637e301,9.81479376875043e301,9.838908741155222e301,9.863023713560015e301,9.887138685964807e301,9.9112536583696e301,9.935368630774392e301,9.959483603179183e301,9.983598575583976e301,1.0007713547988768e302,1.003182852039356e302,1.0055943492798353e302,1.0080058465203146e302,1.0104173437607938e302,1.0128288410012729e302,1.0152403382417521e302,1.0176518354822314e302,1.0200633327227106e302,1.0224748299631899e302,1.0248863272036691e302,1.0272978244441482e302,1.0297093216846274e302,1.0321208189251067e302,1.034532316165586e302,1.0369438134060652e302,1.0393553106465444e302,1.0417668078870237e302,1.0441783051275027e302,1.046589802367982e302,1.0490012996084612e302,1.0514127968489405e302,1.0538242940894197e302,1.056235791329899e302,1.058647288570378e302,1.0610587858108573e302,1.0634702830513366e302,1.0658817802918158e302,1.068293277532295e302,1.0707047747727743e302,1.0731162720132536e302,1.0755277692537326e302,1.0779392664942119e302,1.0803507637346911e302,1.0827622609751704e302,1.0851737582156496e302,1.0875852554561289e302,1.0899967526966081e302,1.0924082499370872e302,1.0948197471775664e302,1.0972312444180457e302,1.099642741658525e302,1.1020542388990042e302,1.1044657361394834e302,1.1068772333799625e302,1.1092887306204417e302,1.111700227860921e302,1.1141117251014002e302,1.1165232223418795e302,1.1189347195823587e302,1.121346216822838e302,1.123757714063317e302,1.1261692113037963e302,1.1285807085442755e302,1.1309922057847548e302,1.133403703025234e302,1.1358152002657133e302,1.1382266975061924e302,1.1406381947466716e302,1.1430496919871509e302,1.1454611892276301e302,1.1478726864681094e302,1.1502841837085886e302,1.1526956809490679e302,1.155107178189547e302,1.1575186754300262e302,1.1599301726705054e302,1.1623416699109847e302,1.164753167151464e302,1.1671646643919432e302,1.1695761616324224e302,1.1719876588729015e302,1.1743991561133807e302,1.17681065335386e302,1.1792221505943392e302,1.1816336478348185e302,1.1840451450752977e302,1.1864566423157768e302,1.188868139556256e302,1.1912796367967353e302,1.1936911340372145e302,1.1961026312776938e302,1.198514128518173e302,1.2009256257586523e302,1.2033371229991313e302,1.2057486202396106e302,1.2081601174800898e302,1.210571614720569e302,1.2129831119610483e302,1.2153946092015276e302,1.2178061064420067e302,1.220217603682486e302,1.2226291009229652e302,1.2250405981634444e302,1.2274520954039237e302,1.229863592644403e302,1.2322750898848822e302,1.2346865871253612e302,1.2370980843658405e302,1.2395095816063197e302,1.241921078846799e302,1.2443325760872782e302,1.2467440733277575e302,1.2491555705682367e302,1.2515670678087158e302,1.253978565049195e302,1.2563900622896743e302,1.2588015595301535e302,1.2612130567706328e302,1.263624554011112e302,1.266036051251591e302,1.2684475484920703e302,1.2708590457325496e302,1.2732705429730288e302,1.275682040213508e302,1.2780935374539873e302,1.2805050346944666e302,1.2829165319349456e302,1.2853280291754249e302,1.2877395264159041e302,1.2901510236563834e302,1.2925625208968626e302,1.2949740181373419e302,1.297385515377821e302,1.2997970126183002e302,1.3022085098587795e302,1.3046200070992587e302,1.307031504339738e302,1.3094430015802172e302,1.3118544988206965e302,1.3142659960611755e302,1.3166774933016548e302,1.319088990542134e302,1.3215004877826133e302,1.3239119850230925e302,1.3263234822635718e302,1.328734979504051e302,1.33114647674453e302,1.3335579739850093e302,1.3359694712254886e302,1.3383809684659678e302,1.340792465706447e302,1.3432039629469263e302,1.3456154601874054e302,1.3480269574278846e302,1.3504384546683639e302,1.3528499519088431e302,1.3552614491493224e302,1.3576729463898016e302,1.3600844436302809e302,1.36249594087076e302,1.3649074381112392e302,1.3673189353517184e302,1.3697304325921977e302,1.372141929832677e302,1.3745534270731562e302,1.3769649243136353e302,1.3793764215541145e302,1.3817879187945938e302,1.384199416035073e302,1.3866109132755523e302,1.3890224105160315e302,1.3914339077565108e302,1.3938454049969898e302,1.396256902237469e302,1.3986683994779483e302,1.4010798967184276e302,1.4034913939589068e302,1.405902891199386e302,1.4083143884398653e302,1.4107258856803444e302,1.4131373829208236e302,1.4155488801613029e302,1.4179603774017821e302,1.4203718746422614e302,1.4227833718827406e302,1.4251948691232197e302,1.427606366363699e302,1.4300178636041782e302,1.4324293608446574e302,1.4348408580851367e302,1.437252355325616e302,1.4396638525660952e302,1.4420753498065743e302,1.4444868470470535e302,1.4468983442875328e302,1.449309841528012e302,1.4517213387684913e302,1.4541328360089705e302,1.4565443332494496e302,1.4589558304899288e302,1.461367327730408e302,1.4637788249708873e302,1.4661903222113666e302,1.4686018194518458e302,1.471013316692325e302,1.4734248139328041e302,1.4758363111732834e302,1.4782478084137626e302,1.4806593056542419e302,1.4830708028947211e302,1.4854823001352004e302,1.4878937973756796e302,1.4903052946161587e302,1.492716791856638e302,1.4951282890971172e302,1.4975397863375964e302,1.4999512835780757e302,1.502362780818555e302,1.504774278059034e302,1.5071857752995132e302,1.5095972725399925e302,1.5120087697804717e302,1.514420267020951e302,1.5168317642614302e302,1.5192432615019095e302,1.5216547587423886e302,1.5240662559828678e302,1.526477753223347e302,1.5288892504638263e302,1.5313007477043056e302,1.5337122449447848e302,1.5361237421852639e302,1.5385352394257431e302,1.5409467366662224e302,1.5433582339067016e302,1.5457697311471809e302,1.5481812283876601e302,1.5505927256281394e302,1.5530042228686184e302,1.5554157201090977e302,1.557827217349577e302,1.5602387145900562e302,1.5626502118305354e302,1.5650617090710147e302,1.567473206311494e302,1.569884703551973e302,1.5722962007924522e302,1.5747076980329315e302,1.5771191952734107e302,1.57953069251389e302,1.5819421897543692e302,1.5843536869948483e302,1.5867651842353275e302,1.5891766814758068e302,1.591588178716286e302,1.5939996759567653e302,1.5964111731972445e302,1.5988226704377238e302,1.6012341676782029e302,1.6036456649186821e302,1.6060571621591614e302,1.6084686593996406e302,1.6108801566401199e302,1.6132916538805991e302,1.6157031511210782e302,1.6181146483615574e302,1.6205261456020367e302,1.622937642842516e302,1.6253491400829952e302,1.6277606373234744e302,1.6301721345639537e302,1.6325836318044327e302,1.634995129044912e302,1.6374066262853912e302,1.6398181235258705e302,1.6422296207663497e302,1.644641118006829e302,1.647052615247308e302,1.6494641124877873e302,1.6518756097282665e302,1.6542871069687458e302,1.656698604209225e302,1.6591101014497043e302,1.6615215986901835e302,1.6639330959306626e302,1.6663445931711418e302,1.6687560904116211e302,1.6711675876521003e302,1.6735790848925796e302,1.6759905821330588e302,1.6784020793735381e302,1.6808135766140172e302,1.6832250738544964e302,1.6856365710949757e302,1.688048068335455e302,1.6904595655759342e302,1.6928710628164134e302,1.6952825600568925e302,1.6976940572973717e302,1.700105554537851e302,1.7025170517783302e302,1.7049285490188095e302,1.7073400462592887e302,1.709751543499768e302,1.712163040740247e302,1.7145745379807263e302,1.7169860352212055e302,1.7193975324616848e302,1.721809029702164e302,1.7242205269426433e302,1.7266320241831225e302,1.7290435214236018e302,1.731455018664081e302,1.7338665159045603e302,1.736278013145039e302,1.7386895103855184e302,1.7411010076259977e302,1.743512504866477e302,1.745924002106956e302,1.7483354993474354e302,1.7507469965879147e302,1.753158493828394e302,1.755569991068873e302,1.7579814883093524e302,1.7603929855498317e302,1.762804482790311e302,1.76521598003079e302,1.767627477271269e302,1.7700389745117483e302,1.7724504717522275e302,1.7748619689927068e302,1.777273466233186e302,1.7796849634736653e302,1.7820964607141445e302,1.7845079579546238e302,1.786919455195103e302,1.7893309524355823e302,1.7917424496760615e302,1.7941539469165408e302,1.79656544415702e302,1.798976941397499e302,1.801388438637978e302,1.8037999358784574e302,1.8062114331189366e302,1.808622930359416e302,1.811034427599895e302,1.8134459248403744e302,1.8158574220808536e302,1.818268919321333e302,1.820680416561812e302,1.8230919138022914e302,1.8255034110427706e302,1.82791490828325e302,1.8303264055237288e302,1.832737902764208e302,1.8351494000046873e302,1.8375608972451665e302,1.8399723944856458e302,1.842383891726125e302,1.8447953889666043e302,1.8472068862070835e302,1.8496183834475628e302,1.852029880688042e302,1.8544413779285213e302,1.8568528751690005e302,1.8592643724094798e302,1.861675869649959e302,1.864087366890438e302,1.866498864130917e302,1.8689103613713964e302,1.8713218586118756e302,1.873733355852355e302,1.876144853092834e302,1.8785563503333134e302,1.8809678475737926e302,1.883379344814272e302,1.885790842054751e302,1.8882023392952304e302,1.8906138365357096e302,1.893025333776189e302,1.8954368310166678e302,1.897848328257147e302,1.9002598254976263e302,1.9026713227381055e302,1.9050828199785848e302,1.907494317219064e302,1.9099058144595433e302,1.9123173117000225e302,1.9147288089405018e302,1.917140306180981e302,1.9195518034214603e302,1.9219633006619395e302,1.9243747979024188e302,1.9267862951428976e302,1.929197792383377e302,1.931609289623856e302,1.9340207868643354e302,1.9364322841048146e302,1.938843781345294e302,1.941255278585773e302,1.9436667758262524e302,1.9460782730667316e302,1.948489770307211e302,1.95090126754769e302,1.9533127647881694e302,1.9557242620286486e302,1.9581357592691275e302,1.9605472565096067e302,1.962958753750086e302,1.9653702509905652e302,1.9677817482310445e302,1.9701932454715237e302,1.972604742712003e302,1.9750162399524822e302,1.9774277371929615e302,1.9798392344334407e302,1.98225073167392e302,1.9846622289143992e302,1.9870737261548785e302,1.9894852233953574e302,1.9918967206358366e302,1.994308217876316e302,1.996719715116795e302,1.9991312123572744e302,2.0015427095977536e302,2.003954206838233e302,2.006365704078712e302,2.0087772013191914e302,2.0111886985596706e302,2.01360019580015e302,2.016011693040629e302,2.0184231902811084e302,2.0208346875215876e302,2.0232461847620665e302,2.0256576820025457e302,2.028069179243025e302,2.0304806764835042e302,2.0328921737239835e302,2.0353036709644627e302,2.037715168204942e302,2.0401266654454212e302,2.0425381626859005e302,2.0449496599263797e302,2.047361157166859e302,2.0497726544073382e302,2.0521841516478175e302,2.0545956488882964e302,2.0570071461287756e302,2.059418643369255e302,2.061830140609734e302,2.0642416378502134e302,2.0666531350906926e302,2.069064632331172e302,2.071476129571651e302,2.0738876268121304e302,2.0762991240526096e302,2.078710621293089e302,2.081122118533568e302,2.0835336157740474e302,2.0859451130145262e302,2.0883566102550055e302,2.0907681074954847e302,2.093179604735964e302,2.0955911019764432e302,2.0980025992169225e302,2.1004140964574017e302,2.102825593697881e302,2.1052370909383602e302,2.1076485881788395e302,2.1100600854193187e302,2.112471582659798e302,2.1148830799002772e302,2.117294577140756e302,2.1197060743812354e302,2.1221175716217146e302,2.124529068862194e302,2.126940566102673e302,2.1293520633431524e302,2.1317635605836316e302,2.134175057824111e302,2.13658655506459e302,2.1389980523050694e302,2.1414095495455486e302,2.143821046786028e302,2.146232544026507e302,2.148644041266986e302,2.1510555385074652e302,2.1534670357479445e302,2.1558785329884237e302,2.158290030228903e302,2.1607015274693822e302,2.1631130247098615e302,2.1655245219503407e302,2.16793601919082e302,2.1703475164312992e302,2.1727590136717785e302,2.1751705109122577e302,2.177582008152737e302,2.1799935053932162e302,2.182405002633695e302,2.1848164998741743e302,2.1872279971146536e302,2.189639494355133e302,2.192050991595612e302,2.1944624888360913e302,2.1968739860765706e302,2.19928548331705e302,2.201696980557529e302,2.2041084777980083e302,2.2065199750384876e302,2.208931472278967e302,2.211342969519446e302,2.213754466759925e302,2.2161659640004042e302,2.2185774612408835e302,2.2209889584813627e302,2.223400455721842e302,2.2258119529623212e302,2.2282234502028005e302,2.2306349474432797e302,2.233046444683759e302,2.2354579419242382e302,2.2378694391647175e302,2.2402809364051967e302,2.242692433645676e302,2.245103930886155e302,2.247515428126634e302,2.2499269253671133e302,2.2523384226075926e302,2.254749919848072e302,2.257161417088551e302,2.2595729143290303e302,2.2619844115695096e302,2.264395908809989e302,2.266807406050468e302,2.2692189032909473e302,2.2716304005314266e302,2.274041897771906e302,2.2764533950123847e302,2.278864892252864e302,2.2812763894933432e302,2.2836878867338225e302,2.2860993839743017e302,2.288510881214781e302,2.2909223784552602e302,2.2933338756957395e302,2.2957453729362187e302,2.298156870176698e302,2.3005683674171772e302,2.3029798646576565e302,2.3053913618981357e302,2.3078028591386146e302,2.310214356379094e302,2.312625853619573e302,2.3150373508600523e302,2.3174488481005316e302,2.319860345341011e302,2.32227184258149e302,2.3246833398219693e302,2.3270948370624486e302,2.329506334302928e302,2.331917831543407e302,2.3343293287838863e302,2.3367408260243656e302,2.339152323264845e302,2.3415638205053237e302,2.343975317745803e302,2.3463868149862822e302,2.3487983122267614e302,2.3512098094672407e302,2.35362130670772e302,2.3560328039481992e302,2.3584443011886784e302,2.3608557984291577e302,2.363267295669637e302,2.3656787929101162e302,2.3680902901505954e302,2.3705017873910747e302,2.3729132846315536e302,2.375324781872033e302,2.377736279112512e302,2.3801477763529913e302,2.3825592735934706e302,2.38497077083395e302,2.387382268074429e302,2.3897937653149083e302,2.3922052625553876e302,2.394616759795867e302,2.397028257036346e302,2.3994397542768253e302,2.4018512515173046e302,2.4042627487577834e302,2.4066742459982627e302,2.409085743238742e302,2.411497240479221e302,2.4139087377197004e302,2.4163202349601797e302,2.418731732200659e302,2.421143229441138e302,2.4235547266816174e302,2.4259662239220967e302,2.428377721162576e302,2.4307892184030552e302,2.4332007156435344e302,2.4356122128840133e302,2.4380237101244926e302,2.440435207364972e302,2.442846704605451e302,2.4452582018459303e302,2.4476696990864096e302,2.450081196326889e302,2.452492693567368e302,2.4549041908078473e302,2.4573156880483266e302,2.459727185288806e302,2.462138682529285e302,2.4645501797697643e302,2.466961677010243e302,2.4693731742507224e302,2.4717846714912017e302,2.474196168731681e302,2.47660766597216e302,2.4790191632126394e302,2.4814306604531187e302,2.483842157693598e302,2.486253654934077e302,2.4886651521745564e302,2.4910766494150357e302,2.493488146655515e302,2.495899643895994e302,2.4983111411364734e302,2.5007226383769523e302,2.5031341356174316e302,2.5055456328579108e302,2.50795713009839e302,2.5103686273388693e302,2.5127801245793486e302,2.5151916218198278e302,2.517603119060307e302,2.5200146163007863e302,2.5224261135412656e302,2.5248376107817448e302,2.527249108022224e302,2.5296606052627033e302,2.532072102503182e302,2.5344835997436614e302,2.5368950969841407e302,2.53930659422462e302,2.541718091465099e302,2.5441295887055784e302,2.5465410859460577e302,2.548952583186537e302,2.551364080427016e302,2.5537755776674954e302,2.5561870749079747e302,2.558598572148454e302,2.561010069388933e302,2.563421566629412e302,2.5658330638698913e302,2.5682445611103705e302,2.5706560583508498e302,2.573067555591329e302,2.5754790528318083e302,2.5778905500722875e302,2.5803020473127668e302,2.582713544553246e302,2.5851250417937253e302,2.5875365390342045e302,2.5899480362746838e302,2.592359533515163e302,2.594771030755642e302,2.597182527996121e302,2.5995940252366004e302,2.6020055224770797e302,2.604417019717559e302,2.606828516958038e302,2.6092400141985174e302,2.6116515114389967e302,2.614063008679476e302,2.616474505919955e302,2.6188860031604344e302,2.6212975004009137e302,2.623708997641393e302,2.6261204948818718e302,2.628531992122351e302,2.6309434893628303e302,2.6333549866033095e302,2.6357664838437888e302,2.638177981084268e302,2.6405894783247473e302,2.6430009755652265e302,2.6454124728057058e302,2.647823970046185e302,2.6502354672866643e302,2.6526469645271435e302,2.6550584617676228e302,2.657469959008102e302,2.659881456248581e302,2.66229295348906e302,2.6647044507295394e302,2.6671159479700187e302,2.669527445210498e302,2.671938942450977e302,2.6743504396914564e302,2.6767619369319357e302,2.679173434172415e302,2.681584931412894e302,2.6839964286533734e302,2.6864079258938527e302,2.688819423134332e302,2.6912309203748108e302,2.69364241761529e302,2.6960539148557693e302,2.6984654120962485e302,2.7008769093367278e302,2.703288406577207e302,2.7056999038176863e302,2.7081114010581655e302,2.7105228982986448e302,2.712934395539124e302,2.7153458927796033e302,2.7177573900200825e302,2.7201688872605618e302,2.7225803845010406e302,2.72499188174152e302,2.727403378981999e302,2.7298148762224784e302,2.7322263734629576e302,2.734637870703437e302,2.737049367943916e302,2.7394608651843954e302,2.7418723624248746e302,2.744283859665354e302,2.746695356905833e302,2.7491068541463124e302,2.7515183513867916e302,2.7539298486272705e302,2.7563413458677498e302,2.758752843108229e302,2.7611643403487083e302,2.7635758375891875e302,2.7659873348296668e302,2.768398832070146e302,2.7708103293106253e302,2.7732218265511045e302,2.7756333237915838e302,2.778044821032063e302,2.7804563182725423e302,2.7828678155130215e302,2.7852793127535004e302,2.7876908099939796e302,2.790102307234459e302,2.792513804474938e302,2.7949253017154174e302,2.7973367989558966e302,2.799748296196376e302,2.802159793436855e302,2.8045712906773344e302,2.8069827879178136e302,2.809394285158293e302,2.811805782398772e302,2.8142172796392514e302,2.8166287768797306e302,2.8190402741202095e302,2.8214517713606888e302,2.823863268601168e302,2.8262747658416473e302,2.8286862630821265e302,2.8310977603226058e302,2.833509257563085e302,2.8359207548035643e302,2.8383322520440435e302,2.8407437492845228e302,2.843155246525002e302,2.8455667437654813e302,2.8479782410059605e302,2.8503897382464394e302,2.8528012354869186e302,2.855212732727398e302,2.857624229967877e302,2.8600357272083564e302,2.8624472244488356e302,2.864858721689315e302,2.867270218929794e302,2.8696817161702734e302,2.8720932134107526e302,2.874504710651232e302,2.876916207891711e302,2.8793277051321904e302,2.8817392023726693e302,2.8841506996131485e302,2.8865621968536278e302,2.888973694094107e302,2.8913851913345863e302,2.8937966885750655e302,2.8962081858155448e302,2.898619683056024e302,2.9010311802965033e302,2.9034426775369825e302,2.9058541747774618e302,2.908265672017941e302,2.9106771692584203e302,2.913088666498899e302,2.9155001637393784e302,2.9179116609798576e302,2.920323158220337e302,2.922734655460816e302,2.9251461527012954e302,2.9275576499417746e302,2.929969147182254e302,2.932380644422733e302,2.9347921416632124e302,2.9372036389036916e302,2.939615136144171e302,2.94202663338465e302,2.944438130625129e302,2.9468496278656082e302,2.9492611251060875e302,2.9516726223465667e302,2.954084119587046e302,2.9564956168275252e302,2.9589071140680045e302,2.9613186113084837e302,2.963730108548963e302,2.9661416057894422e302,2.9685531030299215e302,2.9709646002704007e302,2.97337609751088e302,2.9757875947513592e302,2.978199091991838e302,2.9806105892323174e302,2.9830220864727966e302,2.985433583713276e302,2.987845080953755e302,2.9902565781942344e302,2.9926680754347136e302,2.995079572675193e302,2.997491069915672e302,2.9999025671561514e302,3.0023140643966306e302,3.00472556163711e302,3.007137058877589e302,3.009548556118068e302,3.0119600533585472e302,3.0143715505990265e302,3.0167830478395057e302,3.019194545079985e302,3.0216060423204642e302,3.0240175395609435e302,3.0264290368014227e302,3.028840534041902e302,3.0312520312823812e302,3.0336635285228605e302,3.0360750257633397e302,3.038486523003819e302,3.040898020244298e302,3.043309517484777e302,3.0457210147252564e302,3.0481325119657356e302,3.050544009206215e302,3.052955506446694e302,3.0553670036871734e302,3.0577785009276526e302,3.060189998168132e302,3.062601495408611e302,3.0650129926490904e302,3.0674244898895696e302,3.069835987130049e302,3.0722474843705277e302,3.074658981611007e302,3.0770704788514862e302,3.0794819760919655e302,3.0818934733324447e302,3.084304970572924e302,3.0867164678134032e302,3.0891279650538825e302,3.0915394622943617e302,3.093950959534841e302,3.0963624567753202e302,3.0987739540157995e302,3.1011854512562787e302,3.1035969484967576e302,3.106008445737237e302,3.108419942977716e302,3.1108314402181953e302,3.1132429374586746e302,3.115654434699154e302,3.118065931939633e302,3.1204774291801124e302,3.1228889264205916e302,3.125300423661071e302,3.12771192090155e302,3.1301234181420294e302,3.1325349153825086e302,3.134946412622988e302,3.1373579098634667e302,3.139769407103946e302,3.1421809043444252e302,3.1445924015849045e302,3.1470038988253837e302,3.149415396065863e302,3.1518268933063422e302,3.1542383905468215e302,3.1566498877873007e302,3.15906138502778e302,3.1614728822682592e302,3.1638843795087385e302,3.1662958767492177e302,3.1687073739896966e302,3.171118871230176e302,3.173530368470655e302,3.1759418657111343e302,3.1783533629516136e302,3.180764860192093e302,3.183176357432572e302,3.1855878546730513e302,3.1879993519135306e302,3.19041084915401e302,3.192822346394489e302,3.1952338436349683e302,3.1976453408754476e302,3.2000568381159265e302,3.2024683353564057e302,3.204879832596885e302,3.2072913298373642e302,3.2097028270778435e302,3.2121143243183227e302,3.214525821558802e302,3.2169373187992812e302,3.2193488160397605e302,3.2217603132802397e302,3.224171810520719e302,3.2265833077611982e302,3.2289948050016775e302,3.2314063022421563e302,3.2338177994826356e302,3.236229296723115e302,3.238640793963594e302,3.2410522912040733e302,3.2434637884445526e302,3.245875285685032e302,3.248286782925511e302,3.2506982801659903e302,3.2531097774064696e302,3.255521274646949e302,3.257932771887428e302,3.2603442691279073e302,3.2627557663683862e302,3.2651672636088655e302,3.2675787608493447e302,3.269990258089824e302,3.2724017553303032e302,3.2748132525707825e302,3.2772247498112617e302,3.279636247051741e302,3.2820477442922202e302,3.2844592415326995e302,3.2868707387731787e302,3.289282236013658e302,3.2916937332541372e302,3.294105230494616e302,3.2965167277350953e302,3.2989282249755746e302,3.301339722216054e302,3.303751219456533e302,3.3061627166970123e302,3.3085742139374916e302,3.310985711177971e302,3.31339720841845e302,3.3158087056589293e302,3.3182202028994086e302,3.320631700139888e302,3.323043197380367e302,3.3254546946208463e302,3.3278661918613252e302,3.3302776891018044e302,3.3326891863422837e302,3.335100683582763e302,3.3375121808232422e302,3.3399236780637214e302,3.3423351753042007e302,3.34474667254468e302,3.3471581697851592e302,3.3495696670256384e302,3.3519811642661177e302,3.354392661506597e302,3.3568041587470762e302,3.359215655987555e302,3.3616271532280343e302,3.3640386504685136e302,3.366450147708993e302,3.368861644949472e302,3.3712731421899513e302,3.3736846394304306e302,3.37609613667091e302,3.378507633911389e302,3.3809191311518683e302,3.3833306283923476e302,3.385742125632827e302,3.388153622873306e302,3.390565120113785e302,3.392976617354264e302,3.3953881145947434e302,3.3977996118352227e302,3.400211109075702e302,3.402622606316181e302,3.4050341035566604e302,3.4074456007971397e302,3.409857098037619e302,3.412268595278098e302,3.4146800925185774e302,3.4170915897590567e302,3.419503086999536e302,3.4219145842400148e302,3.424326081480494e302,3.4267375787209733e302,3.4291490759614526e302,3.431560573201932e302,3.433972070442411e302,3.436383567682891e302,3.4387950649233696e302,3.4412065621638484e302,3.443618059404328e302,3.446029556644807e302,3.4484410538852866e302,3.4508525511257654e302,3.453264048366245e302,3.455675545606724e302,3.4580870428472036e302,3.4604985400876824e302,3.462910037328162e302,3.465321534568641e302,3.4677330318091206e302,3.4701445290495994e302,3.472556026290078e302,3.474967523530558e302,3.477379020771037e302,3.4797905180115164e302,3.482202015251995e302,3.484613512492475e302,3.487025009732954e302,3.4894365069734334e302,3.491848004213912e302,3.494259501454392e302,3.496670998694871e302,3.4990824959353504e302,3.501493993175829e302,3.503905490416308e302,3.506316987656788e302,3.508728484897267e302,3.511139982137746e302,3.513551479378225e302,3.515962976618705e302,3.518374473859184e302,3.520785971099663e302,3.523197468340142e302,3.525608965580622e302,3.528020462821101e302,3.53043196006158e302,3.532843457302059e302,3.535254954542538e302,3.537666451783018e302,3.5400779490234965e302,3.542489446263976e302,3.544900943504455e302,3.547312440744935e302,3.5497239379854135e302,3.552135435225893e302,3.554546932466372e302,3.556958429706852e302,3.5593699269473305e302,3.56178142418781e302,3.564192921428289e302,3.566604418668768e302,3.5690159159092475e302,3.5714274131497264e302,3.573838910390206e302,3.576250407630685e302,3.5786619048711645e302,3.5810734021116434e302,3.583484899352123e302,3.585896396592602e302,3.5883078938330815e302,3.5907193910735604e302,3.59313088831404e302,3.595542385554519e302,3.597953882794998e302,3.6003653800354774e302,3.602776877275956e302,3.605188374516436e302,3.607599871756915e302,3.6100113689973944e302,3.612422866237873e302,3.614834363478353e302,3.617245860718832e302,3.6196573579593114e302,3.62206885519979e302,3.62448035244027e302,3.626891849680749e302,3.629303346921228e302,3.631714844161707e302,3.634126341402186e302,3.636537838642666e302,3.638949335883145e302,3.641360833123624e302,3.643772330364103e302,3.646183827604583e302,3.648595324845062e302,3.651006822085541e302,3.65341831932602e302,3.6558298165665e302,3.658241313806979e302,3.6606528110474575e302,3.663064308287937e302,3.665475805528416e302,3.667887302768896e302,3.6702988000093745e302,3.672710297249854e302,3.675121794490333e302,3.677533291730813e302,3.6799447889712915e302,3.682356286211771e302,3.68476778345225e302,3.68717928069273e302,3.6895907779332085e302,3.6920022751736874e302,3.694413772414167e302,3.696825269654646e302,3.6992367668951255e302,3.7016482641356044e302,3.704059761376084e302,3.706471258616563e302,3.7088827558570425e302,3.7112942530975214e302,3.713705750338001e302,3.71611724757848e302,3.7185287448189595e302,3.7209402420594384e302,3.723351739299918e302,3.725763236540397e302,3.728174733780876e302,3.7305862310213554e302,3.732997728261834e302,3.735409225502314e302,3.737820722742793e302,3.7402322199832724e302,3.742643717223751e302,3.745055214464231e302,3.74746671170471e302,3.7498782089451894e302,3.752289706185668e302,3.754701203426148e302,3.757112700666627e302,3.759524197907106e302,3.761935695147585e302,3.764347192388064e302,3.766758689628544e302,3.769170186869023e302,3.771581684109502e302,3.773993181349981e302,3.776404678590461e302,3.77881617583094e302,3.781227673071419e302,3.783639170311898e302,3.786050667552378e302,3.788462164792857e302,3.7908736620333355e302,3.793285159273815e302,3.795696656514294e302,3.798108153754774e302,3.8005196509952525e302,3.802931148235732e302,3.805342645476211e302,3.807754142716691e302,3.8101656399571695e302,3.812577137197649e302,3.814988634438128e302,3.817400131678608e302,3.8198116289190865e302,3.822223126159565e302,3.824634623400045e302,3.827046120640524e302,3.8294576178810035e302,3.831869115121482e302,3.834280612361962e302,3.836692109602441e302,3.8391036068429205e302,3.8415151040833994e302,3.843926601323879e302,3.846338098564358e302,3.8487495958048375e302,3.8511610930453164e302,3.853572590285795e302,3.855984087526275e302,3.858395584766754e302,3.8608070820072334e302,3.863218579247712e302,3.865630076488192e302,3.868041573728671e302,3.8704530709691504e302,3.872864568209629e302,3.875276065450109e302,3.877687562690588e302,3.8800990599310674e302,3.882510557171546e302,3.884922054412025e302,3.887333551652505e302,3.889745048892984e302,3.892156546133463e302,3.894568043373942e302,3.896979540614422e302,3.899391037854901e302,3.90180253509538e302,3.904214032335859e302,3.906625529576339e302,3.909037026816818e302,3.911448524057297e302,3.913860021297776e302,3.916271518538255e302,3.918683015778735e302,3.9210945130192135e302,3.923506010259693e302,3.925917507500172e302,3.928329004740652e302,3.9307405019811305e302,3.93315199922161e302,3.935563496462089e302,3.937974993702569e302,3.9403864909430475e302,3.942797988183527e302,3.945209485424006e302,3.947620982664485e302,3.9500324799049645e302,3.952443977145443e302,3.954855474385923e302,3.957266971626402e302,3.9596784688668815e302,3.96208996610736e302,3.96450146334784e302,3.966912960588319e302,3.9693244578287985e302,3.971735955069277e302,3.974147452309757e302,3.976558949550236e302,3.978970446790715e302,3.981381944031194e302,3.983793441271673e302,3.986204938512153e302,3.988616435752632e302,3.991027932993111e302,3.99343943023359e302,3.99585092747407e302,3.998262424714549e302,4.000673921955028e302,4.003085419195507e302,4.005496916435987e302,4.007908413676466e302,4.0103199109169446e302,4.012731408157424e302,4.015142905397903e302,4.017554402638383e302,4.0199658998788616e302,4.022377397119341e302,4.02478889435982e302,4.0272003916003e302,4.0296118888407786e302,4.032023386081258e302,4.034434883321737e302,4.036846380562217e302,4.0392578778026956e302,4.041669375043175e302,4.044080872283654e302,4.046492369524133e302,4.0489038667646126e302,4.0513153640050915e302,4.053726861245571e302,4.05613835848605e302,4.0585498557265296e302,4.0609613529670085e302,4.063372850207488e302,4.065784347447967e302,4.0681958446884466e302,4.0706073419289255e302,4.073018839169405e302,4.075430336409884e302,4.077841833650363e302,4.0802533308908425e302,4.082664828131321e302,4.085076325371801e302,4.08748782261228e302,4.0898993198527595e302,4.092310817093238e302,4.094722314333718e302,4.097133811574197e302,4.0995453088146765e302,4.101956806055155e302,4.104368303295635e302,4.106779800536114e302,4.109191297776593e302,4.111602795017072e302,4.114014292257551e302,4.116425789498031e302,4.11883728673851e302,4.121248783978989e302,4.123660281219468e302,4.126071778459948e302,4.128483275700427e302,4.130894772940906e302,4.133306270181385e302,4.135717767421865e302,4.138129264662344e302,4.1405407619028226e302,4.142952259143302e302,4.145363756383781e302,4.147775253624261e302,4.1501867508647396e302,4.152598248105219e302,4.155009745345698e302,4.157421242586178e302,4.1598327398266566e302,4.162244237067136e302,4.164655734307615e302,4.167067231548095e302,4.1694787287885736e302,4.1718902260290525e302,4.174301723269532e302,4.176713220510011e302,4.1791247177504906e302,4.1815362149909695e302,4.183947712231449e302,4.186359209471928e302,4.1887707067124076e302,4.1911822039528865e302,4.193593701193366e302,4.196005198433845e302,4.1984166956743246e302,4.2008281929148035e302,4.203239690155282e302,4.205651187395762e302,4.208062684636241e302,4.2104741818767205e302,4.212885679117199e302,4.215297176357679e302,4.217708673598158e302,4.2201201708386375e302,4.222531668079116e302,4.224943165319596e302,4.227354662560075e302,4.2297661598005545e302,4.232177657041033e302,4.234589154281512e302,4.237000651521992e302,4.239412148762471e302,4.24182364600295e302,4.244235143243429e302,4.246646640483909e302,4.249058137724388e302,4.251469634964867e302,4.253881132205346e302,4.256292629445826e302,4.258704126686305e302,4.261115623926784e302,4.263527121167263e302,4.265938618407742e302,4.268350115648222e302,4.2707616128887006e302,4.27317311012918e302,4.275584607369659e302,4.277996104610139e302,4.2804076018506176e302,4.282819099091097e302,4.285230596331576e302,4.287642093572056e302,4.2900535908125346e302,4.292465088053014e302,4.294876585293493e302,4.297288082533972e302,4.2996995797744516e302,4.3021110770149304e302,4.30452257425541e302,4.306934071495889e302,4.3093455687363686e302,4.3117570659768474e302,4.314168563217327e302,4.316580060457806e302,4.3189915576982856e302,4.3214030549387644e302,4.323814552179244e302,4.326226049419723e302,4.328637546660202e302,4.3310490439006814e302,4.33346054114116e302,4.33587203838164e302,4.338283535622119e302,4.3406950328625984e302,4.343106530103077e302,4.345518027343557e302,4.347929524584036e302,4.3503410218245154e302,4.352752519064994e302,4.355164016305474e302,4.357575513545953e302,4.3599870107864324e302,4.362398508026911e302,4.36481000526739e302,4.36722150250787e302,4.369632999748349e302,4.372044496988828e302,4.374455994229307e302,4.376867491469787e302,4.379278988710266e302,4.381690485950745e302,4.384101983191224e302,4.386513480431704e302,4.388924977672183e302,4.391336474912662e302,4.393747972153141e302,4.39615946939362e302,4.3985709666341e302,4.4009824638745786e302,4.403393961115058e302,4.405805458355537e302,4.408216955596017e302,4.4106284528364956e302,4.413039950076975e302,4.415451447317454e302,4.417862944557934e302,4.4202744417984126e302,4.422685939038892e302,4.425097436279371e302,4.42750893351985e302,4.4299204307603296e302,4.4323319280008084e302,4.434743425241288e302,4.437154922481767e302,4.4395664197222466e302,4.4419779169627254e302,4.444389414203205e302,4.446800911443684e302,4.4492124086841636e302,4.4516239059246424e302,4.454035403165122e302,4.456446900405601e302,4.45885839764608e302,4.4612698948865594e302,4.463681392127038e302,4.466092889367518e302,4.468504386607997e302,4.4709158838484764e302,4.473327381088955e302,4.475738878329435e302,4.478150375569914e302,4.4805618728103934e302,4.482973370050872e302,4.485384867291352e302,4.487796364531831e302,4.49020786177231e302,4.492619359012789e302,4.495030856253268e302,4.497442353493748e302,4.499853850734227e302,4.502265347974706e302,4.504676845215185e302,4.507088342455665e302,4.509499839696144e302,4.511911336936623e302,4.514322834177102e302,4.516734331417582e302,4.519145828658061e302,4.5215573258985395e302,4.523968823139019e302,4.526380320379498e302,4.528791817619978e302,4.5312033148604565e302,4.533614812100936e302,4.536026309341415e302,4.538437806581895e302,4.5408493038223735e302,4.543260801062853e302,4.545672298303332e302,4.548083795543812e302,4.5504952927842905e302,4.5529067900247694e302,4.555318287265249e302,4.557729784505728e302,4.5601412817462075e302,4.5625527789866864e302,4.564964276227166e302,4.567375773467645e302,4.5697872707081245e302,4.5721987679486034e302,4.574610265189083e302,4.577021762429562e302,4.5794332596700415e302,4.5818447569105204e302,4.584256254150999e302,4.586667751391479e302,4.589079248631958e302,4.5914907458724374e302,4.593902243112916e302,4.596313740353396e302,4.598725237593875e302,4.6011367348343544e302,4.603548232074833e302,4.605959729315313e302,4.608371226555792e302,4.6107827237962714e302,4.61319422103675e302,4.615605718277229e302,4.618017215517709e302,4.620428712758188e302,4.622840209998667e302,4.625251707239146e302,4.627663204479626e302,4.630074701720105e302,4.632486198960584e302,4.634897696201063e302,4.637309193441543e302,4.639720690682022e302,4.642132187922501e302,4.64454368516298e302,4.646955182403459e302,4.649366679643939e302,4.6517781768844175e302,4.654189674124897e302,4.656601171365376e302,4.659012668605856e302,4.6614241658463345e302,4.663835663086814e302,4.666247160327293e302,4.668658657567773e302,4.6710701548082515e302,4.673481652048731e302,4.67589314928921e302,4.67830464652969e302,4.6807161437701685e302,4.6831276410106474e302,4.685539138251127e302,4.687950635491606e302,4.6903621327320855e302,4.6927736299725644e302,4.695185127213044e302,4.697596624453523e302,4.7000081216940025e302,4.7024196189344814e302,4.704831116174961e302,4.70724261341544e302,4.7096541106559195e302,4.7120656078963984e302,4.714477105136877e302,4.716888602377357e302,4.719300099617836e302,4.7217115968583154e302,4.724123094098794e302,4.726534591339274e302,4.728946088579753e302,4.7313575858202324e302,4.733769083060711e302,4.736180580301191e302,4.73859207754167e302,4.7410035747821494e302,4.743415072022628e302,4.745826569263107e302,4.748238066503587e302,4.750649563744066e302,4.753061060984545e302,4.755472558225024e302,4.757884055465504e302,4.760295552705983e302,4.762707049946462e302,4.765118547186941e302,4.767530044427421e302,4.7699415416679e302,4.772353038908379e302,4.774764536148858e302,4.777176033389337e302,4.779587530629817e302,4.7819990278702955e302,4.784410525110775e302,4.786822022351254e302,4.789233519591734e302,4.7916450168322125e302,4.794056514072692e302,4.796468011313171e302,4.798879508553651e302,4.8012910057941295e302,4.803702503034609e302,4.806114000275088e302,4.808525497515567e302,4.8109369947560465e302,4.813348491996525e302,4.815759989237005e302,4.818171486477484e302,4.8205829837179635e302,4.822994480958442e302,4.825405978198922e302,4.827817475439401e302,4.8302289726798805e302,4.832640469920359e302,4.835051967160839e302,4.837463464401318e302,4.839874961641797e302,4.842286458882276e302,4.844697956122755e302,4.847109453363235e302,4.849520950603714e302,4.851932447844193e302,4.854343945084672e302,4.856755442325152e302,4.859166939565631e302,4.8615784368061104e302,4.863989934046589e302,4.866401431287069e302,4.868812928527548e302,4.871224425768027e302,4.873635923008506e302,4.876047420248985e302,4.878458917489465e302,4.880870414729944e302,4.883281911970423e302,4.885693409210902e302,4.888104906451382e302,4.890516403691861e302,4.89292790093234e302,4.895339398172819e302,4.897750895413299e302,4.900162392653778e302,4.9025738898942565e302,4.904985387134736e302,4.907396884375215e302,4.909808381615695e302,4.9122198788561735e302,4.914631376096653e302,4.917042873337132e302,4.919454370577612e302,4.9218658678180905e302,4.92427736505857e302,4.926688862299049e302,4.929100359539529e302,4.9315118567800075e302,4.933923354020486e302,4.936334851260966e302,4.938746348501445e302,4.9411578457419245e302,4.943569342982403e302,4.945980840222883e302,4.948392337463362e302,4.9508038347038415e302,4.95321533194432e302,4.9556268291848e302,4.958038326425279e302,4.9604498236657585e302,4.962861320906237e302,4.965272818146716e302,4.967684315387196e302,4.970095812627675e302,4.972507309868154e302,4.974918807108633e302,4.977330304349113e302,4.979741801589592e302,4.982153298830071e302,4.98456479607055e302,4.98697629331103e302,4.989387790551509e302,4.991799287791988e302,4.994210785032467e302,4.996622282272947e302,4.999033779513426e302,5.0014452767539046e302,5.003856773994384e302,5.006268271234863e302,5.008679768475343e302,5.0110912657158216e302,5.013502762956301e302,5.01591426019678e302,5.01832575743726e302,5.0207372546777386e302,5.023148751918218e302,5.025560249158697e302,5.027971746399177e302,5.0303832436396556e302,5.0327947408801345e302,5.035206238120614e302,5.037617735361093e302,5.0400292326015726e302,5.0424407298420515e302,5.044852227082531e302,5.04726372432301e302,5.0496752215634896e302,5.0520867188039685e302,5.054498216044448e302,5.056909713284927e302,5.0593212105254066e302,5.0617327077658855e302,5.064144205006364e302,5.066555702246844e302,5.068967199487323e302,5.0713786967278025e302,5.073790193968281e302,5.076201691208761e302,5.07861318844924e302,5.0810246856897195e302,5.083436182930198e302,5.085847680170678e302,5.088259177411157e302,5.0906706746516365e302,5.093082171892115e302,5.095493669132594e302,5.097905166373074e302,5.100316663613553e302,5.102728160854032e302,5.105139658094511e302,5.107551155334991e302,5.10996265257547e302,5.112374149815949e302,5.114785647056428e302,5.117197144296908e302,5.119608641537387e302,5.122020138777866e302,5.124431636018345e302,5.126843133258824e302,5.129254630499304e302,5.1316661277397826e302,5.134077624980262e302,5.136489122220741e302,5.138900619461221e302,5.1413121167016996e302,5.143723613942179e302,5.146135111182658e302,5.148546608423138e302,5.1509581056636166e302,5.153369602904096e302,5.155781100144575e302,5.158192597385054e302,5.1606040946255336e302,5.1630155918660125e302,5.165427089106492e302,5.167838586346971e302,5.1702500835874506e302,5.1726615808279295e302,5.175073078068409e302,5.177484575308888e302,5.1798960725493676e302,5.1823075697898465e302,5.184719067030326e302,5.187130564270805e302,5.189542061511284e302,5.1919535587517635e302,5.194365055992242e302,5.196776553232722e302,5.199188050473201e302,5.2015995477136805e302,5.204011044954159e302,5.206422542194639e302,5.208834039435118e302,5.2112455366755975e302,5.213657033916076e302,5.216068531156556e302,5.218480028397035e302,5.220891525637514e302,5.223303022877993e302,5.225714520118472e302,5.228126017358952e302,5.230537514599431e302,5.23294901183991e302,5.235360509080389e302,5.237772006320869e302,5.240183503561348e302,5.242595000801827e302,5.245006498042306e302,5.247417995282786e302,5.249829492523265e302,5.2522409897637436e302,5.254652487004223e302,5.257063984244702e302,5.259475481485182e302,5.2618869787256606e302,5.26429847596614e302,5.266709973206619e302,5.269121470447099e302,5.2715329676875776e302,5.273944464928057e302,5.276355962168536e302,5.278767459409016e302,5.2811789566494946e302,5.2835904538899734e302,5.286001951130453e302,5.288413448370932e302,5.2908249456114116e302,5.2932364428518904e302,5.29564794009237e302,5.298059437332849e302,5.3004709345733286e302,5.3028824318138074e302,5.305293929054287e302,5.307705426294766e302,5.3101169235352456e302,5.3125284207757244e302,5.314939918016204e302,5.317351415256683e302,5.319762912497162e302,5.3221744097376414e302,5.32458590697812e302,5.3269974042186e302,5.329408901459079e302,5.3318203986995584e302,5.334231895940037e302,5.336643393180517e302,5.339054890420996e302,5.3414663876614754e302,5.343877884901954e302,5.346289382142434e302,5.348700879382913e302,5.351112376623392e302,5.353523873863871e302,5.35593537110435e302,5.35834686834483e302,5.360758365585309e302,5.363169862825788e302,5.365581360066267e302,5.367992857306747e302,5.370404354547226e302,5.372815851787705e302,5.375227349028184e302,5.377638846268664e302,5.380050343509143e302,5.3824618407496216e302,5.384873337990101e302,5.38728483523058e302,5.38969633247106e302,5.3921078297115386e302,5.394519326952018e302,5.396930824192497e302,5.399342321432977e302,5.4017538186734556e302,5.404165315913935e302,5.406576813154414e302,5.408988310394894e302,5.4113998076353726e302,5.4138113048758514e302,5.416222802116331e302,5.41863429935681e302,5.4210457965972896e302,5.4234572938377684e302,5.425868791078248e302,5.428280288318727e302,5.4306917855592066e302,5.4331032827996854e302,5.435514780040165e302,5.437926277280644e302,5.4403377745211236e302,5.4427492717616024e302,5.445160769002081e302,5.447572266242561e302,5.44998376348304e302,5.4523952607235194e302,5.454806757963998e302,5.457218255204478e302,5.459629752444957e302,5.4620412496854364e302,5.464452746925915e302,5.466864244166395e302,5.469275741406874e302,5.4716872386473534e302,5.474098735887832e302,5.476510233128311e302,5.478921730368791e302,5.48133322760927e302,5.483744724849749e302,5.486156222090228e302,5.488567719330708e302,5.490979216571187e302,5.493390713811666e302,5.495802211052145e302,5.498213708292625e302,5.500625205533104e302,5.503036702773583e302,5.505448200014062e302,5.507859697254541e302,5.510271194495021e302,5.5126826917354995e302,5.515094188975979e302,5.517505686216458e302,5.519917183456938e302,5.5223286806974165e302,5.524740177937896e302,5.527151675178375e302,5.529563172418855e302,5.5319746696593335e302,5.534386166899813e302,5.536797664140292e302,5.539209161380771e302,5.5416206586212505e302,5.5440321558617294e302,5.546443653102209e302,5.548855150342688e302,5.5512666475831675e302,5.5536781448236464e302,5.556089642064126e302,5.558501139304605e302,5.5609126365450845e302,5.5633241337855634e302,5.565735631026043e302,5.568147128266522e302,5.570558625507001e302,5.5729701227474804e302,5.575381619987959e302,5.577793117228439e302,5.580204614468918e302,5.5826161117093974e302,5.585027608949876e302,5.587439106190356e302,5.589850603430835e302,5.5922621006713144e302,5.594673597911793e302,5.597085095152273e302,5.599496592392752e302,5.601908089633231e302,5.60431958687371e302,5.606731084114189e302,5.609142581354669e302,5.611554078595148e302,5.613965575835627e302,5.616377073076106e302,5.618788570316586e302,5.621200067557065e302,5.623611564797544e302,5.626023062038023e302,5.628434559278503e302,5.630846056518982e302,5.633257553759461e302,5.63566905099994e302,5.638080548240419e302,5.640492045480899e302,5.6429035427213775e302,5.645315039961857e302,5.647726537202336e302,5.650138034442816e302,5.6525495316832945e302,5.654961028923774e302,5.657372526164253e302,5.659784023404733e302,5.6621955206452115e302,5.664607017885691e302,5.66701851512617e302,5.669430012366649e302,5.6718415096071285e302,5.6742530068476074e302,5.676664504088087e302,5.679076001328566e302,5.6814874985690455e302,5.6838989958095244e302,5.686310493050004e302,5.688721990290483e302,5.6911334875309625e302,5.6935449847714414e302,5.695956482011921e302,5.6983679792524e302,5.700779476492879e302,5.7031909737333584e302,5.705602470973837e302,5.708013968214317e302,5.710425465454796e302,5.7128369626952754e302,5.715248459935754e302,5.717659957176234e302,5.720071454416713e302,5.7224829516571924e302,5.724894448897671e302,5.727305946138151e302,5.72971744337863e302,5.732128940619109e302,5.734540437859588e302,5.736951935100067e302,5.739363432340547e302,5.741774929581026e302,5.744186426821505e302,5.746597924061984e302,5.749009421302464e302,5.751420918542943e302,5.753832415783422e302,5.756243913023901e302,5.758655410264381e302,5.76106690750486e302,5.7634784047453385e302,5.765889901985818e302,5.768301399226297e302,5.770712896466777e302,5.7731243937072555e302,5.775535890947735e302,5.777947388188214e302,5.780358885428694e302,5.7827703826691725e302,5.785181879909652e302,5.787593377150131e302,5.790004874390611e302,5.7924163716310895e302,5.794827868871568e302,5.797239366112048e302,5.799650863352527e302,5.8020623605930065e302,5.804473857833485e302,5.806885355073965e302,5.809296852314444e302,5.8117083495549235e302,5.814119846795402e302,5.816531344035882e302,5.818942841276361e302,5.8213543385168405e302,5.823765835757319e302,5.826177332997798e302,5.828588830238278e302,5.831000327478757e302,5.833411824719236e302,5.835823321959715e302,5.838234819200195e302,5.840646316440674e302,5.843057813681153e302,5.845469310921632e302,5.847880808162112e302,5.850292305402591e302,5.85270380264307e302,5.855115299883549e302,5.857526797124028e302,5.859938294364508e302,5.8623497916049866e302,5.864761288845466e302,5.867172786085945e302,5.869584283326425e302,5.8719957805669036e302,5.874407277807383e302,5.876818775047862e302,5.879230272288342e302,5.881641769528821e302,5.8840532667693e302,5.886464764009779e302,5.888876261250258e302,5.891287758490738e302,5.8936992557312165e302,5.896110752971696e302,5.898522250212175e302,5.900933747452655e302,5.9033452446931335e302,5.905756741933613e302,5.908168239174092e302,5.910579736414572e302,5.9129912336550505e302,5.91540273089553e302,5.917814228136009e302,5.920225725376488e302,5.9226372226169675e302,5.925048719857446e302,5.927460217097926e302,5.929871714338405e302,5.9322832115788845e302,5.934694708819363e302,5.937106206059843e302,5.939517703300322e302,5.9419292005408015e302,5.94434069778128e302,5.94675219502176e302,5.949163692262239e302,5.9515751895027185e302,5.953986686743197e302,5.956398183983676e302,5.958809681224156e302,5.961221178464635e302,5.963632675705114e302,5.966044172945593e302,5.968455670186073e302,5.970867167426552e302,5.973278664667031e302,5.97569016190751e302,5.97810165914799e302,5.980513156388469e302,5.982924653628948e302,5.985336150869427e302,5.987747648109906e302,5.990159145350386e302,5.9925706425908646e302,5.994982139831344e302,5.997393637071823e302,5.999805134312303e302,6.0022166315527816e302,6.004628128793261e302,6.00703962603374e302,6.00945112327422e302,6.0118626205146986e302,6.014274117755178e302,6.016685614995657e302,6.019097112236136e302,6.0215086094766156e302,6.0239201067170945e302,6.026331603957574e302,6.028743101198053e302,6.0311545984385326e302,6.0335660956790115e302,6.035977592919491e302,6.03838909015997e302,6.0408005874004496e302,6.0432120846409285e302,6.045623581881408e302,6.048035079121887e302,6.050446576362366e302,6.0528580736028455e302,6.055269570843324e302,6.057681068083804e302,6.060092565324283e302,6.0625040625647625e302,6.064915559805241e302,6.067327057045721e302,6.0697385542862e302,6.0721500515266795e302,6.074561548767158e302,6.076973046007638e302,6.079384543248117e302,6.081796040488596e302,6.084207537729075e302,6.086619034969554e302,6.089030532210034e302,6.091442029450513e302,6.093853526690992e302,6.096265023931471e302,6.098676521171951e302,6.10108801841243e302,6.103499515652909e302,6.105911012893388e302,6.108322510133868e302,6.110734007374347e302,6.1131455046148256e302,6.115557001855305e302,6.117968499095784e302,6.120379996336264e302,6.1227914935767426e302,6.125202990817222e302,6.127614488057701e302,6.130025985298181e302,6.1324374825386596e302,6.134848979779139e302,6.137260477019618e302,6.139671974260098e302,6.1420834715005766e302,6.1444949687410555e302,6.146906465981535e302,6.149317963222014e302,6.1517294604624936e302,6.1541409577029725e302,6.156552454943452e302,6.158963952183931e302,6.1613754494244106e302,6.1637869466648895e302,6.166198443905369e302,6.168609941145848e302,6.1710214383863276e302,6.1734329356268065e302,6.175844432867285e302,6.178255930107765e302,6.180667427348244e302,6.1830789245887235e302,6.185490421829202e302,6.187901919069682e302,6.190313416310161e302,6.1927249135506405e302,6.195136410791119e302,6.197547908031599e302,6.199959405272078e302,6.2023709025125575e302,6.204782399753036e302,6.207193896993515e302,6.209605394233995e302,6.212016891474474e302,6.214428388714953e302,6.216839885955432e302,6.219251383195912e302,6.221662880436391e302,6.22407437767687e302,6.226485874917349e302,6.228897372157829e302,6.231308869398308e302,6.233720366638787e302,6.236131863879266e302,6.238543361119745e302,6.240954858360225e302,6.2433663556007036e302,6.245777852841183e302,6.248189350081662e302,6.250600847322142e302,6.2530123445626206e302,6.2554238418031e302,6.257835339043579e302,6.260246836284059e302,6.2626583335245376e302,6.265069830765017e302,6.267481328005496e302,6.269892825245976e302,6.2723043224864546e302,6.2747158197269334e302,6.277127316967413e302,6.279538814207892e302,6.2819503114483716e302,6.2843618086888504e302,6.28677330592933e302,6.289184803169809e302,6.2915963004102886e302,6.2940077976507674e302,6.296419294891247e302,6.298830792131726e302,6.3012422893722056e302,6.3036537866126844e302,6.306065283853163e302,6.308476781093643e302,6.310888278334122e302,6.3132997755746014e302,6.31571127281508e302,6.31812277005556e302,6.320534267296039e302,6.3229457645365184e302,6.325357261776997e302,6.327768759017477e302,6.330180256257956e302,6.3325917534984354e302,6.335003250738914e302,6.337414747979393e302,6.339826245219873e302,6.342237742460352e302,6.344649239700831e302,6.34706073694131e302,6.34947223418179e302,6.351883731422269e302,6.354295228662748e302,6.356706725903227e302,6.359118223143707e302,6.361529720384186e302,6.363941217624665e302,6.366352714865144e302,6.368764212105623e302,6.371175709346103e302,6.3735872065865816e302,6.375998703827061e302,6.37841020106754e302,6.38082169830802e302,6.3832331955484986e302,6.385644692788978e302,6.388056190029457e302,6.390467687269937e302,6.3928791845104156e302,6.395290681750895e302,6.397702178991374e302,6.400113676231853e302,6.4025251734723326e302,6.4049366707128114e302,6.407348167953291e302,6.40975966519377e302,6.4121711624342496e302,6.4145826596747284e302,6.416994156915208e302,6.419405654155687e302,6.4218171513961666e302,6.4242286486366454e302,6.426640145877125e302,6.429051643117604e302,6.431463140358083e302,6.4338746375985624e302,6.436286134839041e302,6.438697632079521e302,6.44110912932e302,6.4435206265604794e302,6.445932123800958e302,6.448343621041438e302,6.450755118281917e302,6.4531666155223964e302,6.455578112762875e302,6.457989610003355e302,6.460401107243834e302,6.462812604484313e302,6.465224101724792e302,6.467635598965271e302,6.470047096205751e302,6.47245859344623e302,6.474870090686709e302,6.477281587927188e302,6.479693085167668e302,6.482104582408147e302,6.484516079648626e302,6.486927576889105e302,6.489339074129585e302,6.491750571370064e302,6.4941620686105425e302,6.496573565851022e302,6.498985063091501e302,6.501396560331981e302,6.5038080575724595e302,6.506219554812939e302,6.508631052053418e302,6.511042549293898e302,6.5134540465343765e302,6.515865543774856e302,6.518277041015335e302,6.520688538255815e302,6.5231000354962935e302,6.5255115327367724e302,6.527923029977252e302,6.530334527217731e302,6.5327460244582105e302,6.5351575216986894e302,6.537569018939169e302,6.539980516179648e302,6.5423920134201275e302,6.5448035106606064e302,6.547215007901086e302,6.549626505141565e302,6.5520380023820445e302,6.5544494996225234e302,6.556860996863002e302,6.559272494103482e302,6.561683991343961e302,6.5640954885844404e302,6.566506985824919e302,6.568918483065399e302,6.571329980305878e302,6.5737414775463574e302,6.576152974786836e302,6.578564472027316e302,6.580975969267795e302,6.5833874665082744e302,6.585798963748753e302,6.588210460989232e302,6.590621958229712e302,6.593033455470191e302,6.59544495271067e302,6.597856449951149e302,6.600267947191629e302,6.602679444432108e302,6.605090941672587e302,6.607502438913066e302,6.609913936153546e302,6.612325433394025e302,6.614736930634504e302,6.617148427874983e302,6.619559925115463e302,6.621971422355942e302,6.6243829195964205e302,6.6267944168369e302,6.629205914077379e302,6.631617411317859e302,6.6340289085583375e302,6.636440405798817e302,6.638851903039296e302,6.641263400279776e302,6.6436748975202545e302,6.646086394760734e302,6.648497892001213e302,6.650909389241693e302,6.6533208864821715e302,6.6557323837226504e302,6.65814388096313e302,6.660555378203609e302,6.6629668754440885e302,6.6653783726845674e302,6.667789869925047e302,6.670201367165526e302,6.6726128644060055e302,6.6750243616464844e302,6.677435858886964e302,6.679847356127443e302,6.6822588533679225e302,6.6846703506084014e302,6.68708184784888e302,6.68949334508936e302,6.691904842329839e302,6.6943163395703184e302,6.696727836810797e302,6.699139334051277e302,6.701550831291756e302,6.7039623285322354e302,6.706373825772714e302,6.708785323013194e302,6.711196820253673e302,6.7136083174941524e302,6.716019814734631e302,6.71843131197511e302,6.72084280921559e302,6.723254306456069e302,6.725665803696548e302,6.728077300937027e302,6.730488798177507e302,6.732900295417986e302,6.735311792658465e302,6.737723289898944e302,6.740134787139424e302,6.742546284379903e302,6.744957781620382e302,6.747369278860861e302,6.74978077610134e302,6.75219227334182e302,6.7546037705822985e302,6.757015267822778e302,6.759426765063257e302,6.761838262303737e302,6.7642497595442155e302,6.766661256784695e302,6.769072754025174e302,6.771484251265654e302,6.7738957485061325e302,6.776307245746612e302,6.778718742987091e302,6.78113024022757e302,6.7835417374680495e302,6.785953234708528e302,6.788364731949008e302,6.790776229189487e302,6.7931877264299665e302,6.795599223670445e302,6.798010720910925e302,6.800422218151404e302,6.8028337153918835e302,6.805245212632362e302,6.807656709872842e302,6.810068207113321e302,6.8124797043538e302,6.814891201594279e302,6.817302698834758e302,6.819714196075238e302,6.822125693315717e302,6.824537190556196e302,6.826948687796675e302,6.829360185037155e302,6.831771682277634e302,6.834183179518113e302,6.836594676758592e302,6.839006173999072e302,6.841417671239551e302,6.8438291684800296e302,6.846240665720509e302,6.848652162960988e302,6.851063660201468e302,6.8534751574419466e302,6.855886654682426e302,6.858298151922905e302,6.860709649163384e302,6.863121146403864e302,6.865532643644343e302,6.867944140884822e302,6.870355638125301e302,6.872767135365781e302,6.87517863260626e302,6.877590129846739e302,6.880001627087218e302,6.882413124327697e302,6.884824621568177e302,6.887236118808656e302,6.889647616049135e302,6.892059113289614e302,6.894470610530094e302,6.896882107770573e302,6.899293605011052e302,6.901705102251531e302,6.904116599492011e302,6.90652809673249e302,6.908939593972969e302,6.911351091213448e302,6.913762588453927e302,6.916174085694407e302,6.918585582934886e302,6.920997080175365e302,6.923408577415844e302,6.925820074656324e302,6.928231571896803e302,6.930643069137282e302,6.93305456637776e302,6.935466063618241e302,6.93787756085872e302,6.940289058099199e302,6.942700555339678e302,6.945112052580157e302,6.947523549820637e302,6.949935047061116e302,6.952346544301595e302,6.954758041542074e302,6.957169538782554e302,6.959581036023033e302,6.961992533263512e302,6.96440403050399e302,6.966815527744471e302,6.96922702498495e302,6.971638522225429e302,6.974050019465908e302,6.976461516706386e302,6.978873013946867e302,6.981284511187346e302,6.983696008427825e302,6.986107505668303e302,6.988519002908784e302,6.990930500149263e302,6.993341997389742e302,6.99575349463022e302,6.998164991870701e302,7.00057648911118e302,7.002987986351659e302,7.005399483592137e302,7.007810980832616e302,7.010222478073097e302,7.012633975313576e302,7.015045472554054e302,7.017456969794533e302,7.019868467035014e302,7.022279964275493e302,7.024691461515971e302,7.02710295875645e302,7.02951445599693e302,7.03192595323741e302,7.034337450477888e302,7.036748947718367e302,7.039160444958846e302,7.041571942199327e302,7.043983439439805e302,7.046394936680284e302,7.048806433920763e302,7.051217931161244e302,7.053629428401722e302,7.056040925642201e302,7.05845242288268e302,7.06086392012316e302,7.06327541736364e302,7.065686914604118e302,7.068098411844597e302,7.070509909085076e302,7.072921406325556e302,7.075332903566035e302,7.077744400806514e302,7.080155898046993e302,7.082567395287473e302,7.084978892527952e302,7.087390389768431e302,7.08980188700891e302,7.09221338424939e302,7.09462488148987e302,7.097036378730348e302,7.099447875970827e302,7.101859373211306e302,7.104270870451786e302,7.106682367692265e302,7.109093864932744e302,7.111505362173223e302,7.113916859413703e302,7.116328356654182e302,7.118739853894661e302,7.12115135113514e302,7.12356284837562e302,7.125974345616099e302,7.128385842856578e302,7.130797340097057e302,7.133208837337536e302,7.135620334578016e302,7.138031831818495e302,7.140443329058974e302,7.142854826299453e302,7.145266323539933e302,7.147677820780412e302,7.150089318020891e302,7.15250081526137e302,7.15491231250185e302,7.157323809742329e302,7.159735306982808e302,7.162146804223287e302,7.164558301463766e302,7.166969798704246e302,7.169381295944725e302,7.171792793185204e302,7.174204290425683e302,7.176615787666163e302,7.179027284906642e302,7.181438782147121e302,7.1838502793876e302,7.18626177662808e302,7.188673273868559e302,7.191084771109038e302,7.193496268349517e302,7.195907765589996e302,7.198319262830476e302,7.200730760070955e302,7.203142257311434e302,7.205553754551913e302,7.207965251792393e302,7.210376749032872e302,7.21278824627335e302,7.21519974351383e302,7.21761124075431e302,7.220022737994789e302,7.222434235235268e302,7.224845732475747e302,7.227257229716225e302,7.229668726956706e302,7.232080224197185e302,7.234491721437664e302,7.236903218678142e302,7.239314715918623e302,7.241726213159102e302,7.24413771039958e302,7.24654920764006e302,7.24896070488054e302,7.251372202121019e302,7.253783699361498e302,7.256195196601976e302,7.258606693842455e302,7.261018191082936e302,7.263429688323415e302,7.265841185563893e302,7.268252682804372e302,7.270664180044853e302,7.273075677285332e302,7.27548717452581e302,7.27789867176629e302,7.28031016900677e302,7.282721666247249e302,7.285133163487727e302,7.287544660728206e302,7.289956157968685e302,7.292367655209166e302,7.294779152449644e302,7.297190649690123e302,7.299602146930602e302,7.302013644171083e302,7.304425141411561e302,7.30683663865204e302,7.309248135892519e302,7.311659633133e302,7.314071130373478e302,7.316482627613957e302,7.318894124854436e302,7.321305622094915e302,7.323717119335395e302,7.326128616575874e302,7.328540113816353e302,7.330951611056832e302,7.333363108297312e302,7.335774605537791e302,7.33818610277827e302,7.340597600018749e302,7.34300909725923e302,7.345420594499708e302,7.347832091740187e302,7.350243588980666e302,7.352655086221145e302,7.355066583461625e302,7.357478080702104e302,7.359889577942583e302,7.362301075183062e302,7.364712572423542e302,7.367124069664021e302,7.3695355669045e302,7.371947064144979e302,7.37435856138546e302,7.376770058625938e302,7.379181555866417e302,7.381593053106896e302,7.384004550347375e302,7.386416047587855e302,7.388827544828334e302,7.391239042068813e302,7.393650539309292e302,7.396062036549772e302,7.398473533790251e302,7.40088503103073e302,7.403296528271209e302,7.405708025511689e302,7.408119522752168e302,7.410531019992647e302,7.412942517233126e302,7.415354014473606e302,7.417765511714085e302,7.420177008954564e302,7.422588506195043e302,7.425000003435522e302,7.427411500676002e302,7.429822997916481e302,7.43223449515696e302,7.434645992397439e302,7.437057489637919e302,7.439468986878398e302,7.441880484118877e302,7.444291981359356e302,7.446703478599836e302,7.449114975840315e302,7.451526473080794e302,7.453937970321273e302,7.456349467561752e302,7.458760964802232e302,7.461172462042711e302,7.46358395928319e302,7.465995456523669e302,7.468406953764149e302,7.470818451004628e302,7.473229948245107e302,7.475641445485586e302,7.478052942726066e302,7.480464439966545e302,7.482875937207024e302,7.485287434447503e302,7.487698931687981e302,7.490110428928462e302,7.49252192616894e302,7.49493342340942e302,7.497344920649898e302,7.499756417890379e302,7.502167915130858e302,7.504579412371337e302,7.506990909611815e302,7.509402406852296e302,7.511813904092775e302,7.514225401333254e302,7.516636898573732e302,7.519048395814211e302,7.521459893054692e302,7.52387139029517e302,7.52628288753565e302,7.528694384776128e302,7.531105882016609e302,7.533517379257088e302,7.535928876497566e302,7.538340373738045e302,7.540751870978526e302,7.543163368219005e302,7.545574865459483e302,7.547986362699962e302,7.550397859940441e302,7.552809357180922e302,7.5552208544214e302,7.55763235166188e302,7.560043848902358e302,7.562455346142839e302,7.564866843383317e302,7.567278340623796e302,7.569689837864275e302,7.572101335104756e302,7.574512832345234e302,7.576924329585713e302,7.579335826826192e302,7.581747324066671e302,7.584158821307151e302,7.58657031854763e302,7.588981815788109e302,7.591393313028588e302,7.593804810269068e302,7.596216307509547e302,7.598627804750026e302,7.601039301990505e302,7.603450799230985e302,7.605862296471464e302,7.608273793711943e302,7.610685290952422e302,7.613096788192901e302,7.615508285433381e302,7.61791978267386e302,7.620331279914339e302,7.622742777154818e302,7.625154274395298e302,7.627565771635777e302,7.629977268876256e302,7.632388766116735e302,7.634800263357215e302,7.637211760597694e302,7.639623257838173e302,7.642034755078652e302,7.64444625231913e302,7.646857749559611e302,7.64926924680009e302,7.651680744040569e302,7.654092241281048e302,7.656503738521528e302,7.658915235762007e302,7.661326733002486e302,7.663738230242965e302,7.666149727483445e302,7.668561224723924e302,7.670972721964403e302,7.673384219204882e302,7.67579571644536e302,7.678207213685841e302,7.68061871092632e302,7.683030208166799e302,7.685441705407278e302,7.687853202647758e302,7.690264699888237e302,7.692676197128716e302,7.695087694369195e302,7.697499191609675e302,7.699910688850154e302,7.702322186090633e302,7.704733683331112e302,7.70714518057159e302,7.709556677812071e302,7.71196817505255e302,7.714379672293029e302,7.716791169533508e302,7.719202666773988e302,7.721614164014467e302,7.724025661254946e302,7.726437158495425e302,7.728848655735905e302,7.731260152976384e302,7.733671650216863e302,7.736083147457342e302,7.73849464469782e302,7.740906141938301e302,7.74331763917878e302,7.745729136419259e302,7.748140633659737e302,7.750552130900218e302,7.752963628140697e302,7.755375125381176e302,7.757786622621654e302,7.760198119862135e302,7.762609617102614e302,7.765021114343093e302,7.767432611583571e302,7.76984410882405e302,7.77225560606453e302,7.77466710330501e302,7.777078600545488e302,7.779490097785967e302,7.781901595026448e302,7.784313092266927e302,7.786724589507405e302,7.789136086747884e302,7.791547583988365e302,7.793959081228844e302,7.796370578469322e302,7.798782075709801e302,7.80119357295028e302,7.80360507019076e302,7.80601656743124e302,7.808428064671718e302,7.810839561912197e302,7.813251059152678e302,7.815662556393156e302,7.818074053633635e302,7.820485550874114e302,7.822897048114595e302,7.825308545355073e302,7.827720042595552e302,7.830131539836031e302,7.83254303707651e302,7.83495453431699e302,7.83736603155747e302,7.839777528797948e302,7.842189026038427e302,7.844600523278907e302,7.847012020519386e302,7.849423517759865e302,7.851835015000344e302,7.854246512240824e302,7.856658009481303e302,7.859069506721782e302,7.861481003962261e302,7.86389250120274e302,7.86630399844322e302,7.868715495683699e302,7.871126992924178e302,7.873538490164657e302,7.875949987405137e302,7.878361484645616e302,7.880772981886095e302,7.883184479126574e302,7.885595976367054e302,7.888007473607533e302,7.890418970848012e302,7.892830468088491e302,7.89524196532897e302,7.89765346256945e302,7.900064959809929e302,7.902476457050408e302,7.904887954290887e302,7.907299451531367e302,7.909710948771846e302,7.912122446012325e302,7.914533943252804e302,7.916945440493284e302,7.919356937733763e302,7.921768434974242e302,7.92417993221472e302,7.9265914294552e302,7.92900292669568e302,7.931414423936159e302,7.933825921176638e302,7.936237418417117e302,7.938648915657597e302,7.941060412898076e302,7.943471910138555e302,7.945883407379034e302,7.948294904619514e302,7.950706401859993e302,7.953117899100472e302,7.95552939634095e302,7.95794089358143e302,7.96035239082191e302,7.962763888062389e302,7.965175385302868e302,7.967586882543346e302,7.969998379783827e302,7.972409877024306e302,7.974821374264785e302,7.977232871505263e302,7.979644368745744e302,7.982055865986223e302,7.984467363226702e302,7.98687886046718e302,7.98929035770766e302,7.99170185494814e302,7.994113352188619e302,7.996524849429097e302,7.998936346669576e302,8.001347843910057e302,8.003759341150536e302,8.006170838391014e302,8.008582335631493e302,8.010993832871974e302,8.013405330112453e302,8.015816827352931e302,8.01822832459341e302,8.020639821833889e302,8.02305131907437e302,8.025462816314848e302,8.027874313555327e302,8.030285810795806e302,8.032697308036287e302,8.035108805276765e302,8.037520302517244e302,8.039931799757723e302,8.042343296998204e302,8.044754794238682e302,8.047166291479161e302,8.04957778871964e302,8.05198928596012e302,8.0544007832006e302,8.056812280441078e302,8.059223777681557e302,8.061635274922036e302,8.064046772162516e302,8.066458269402995e302,8.068869766643474e302,8.071281263883953e302,8.073692761124433e302,8.076104258364912e302,8.078515755605391e302,8.08092725284587e302,8.08333875008635e302,8.08575024732683e302,8.088161744567308e302,8.090573241807787e302,8.092984739048266e302,8.095396236288746e302,8.097807733529225e302,8.100219230769704e302,8.102630728010183e302,8.105042225250663e302,8.107453722491142e302,8.109865219731621e302,8.1122767169721e302,8.11468821421258e302,8.117099711453059e302,8.119511208693538e302,8.121922705934017e302,8.124334203174496e302,8.126745700414976e302,8.129157197655455e302,8.131568694895934e302,8.133980192136413e302,8.136391689376893e302,8.138803186617372e302,8.141214683857851e302,8.14362618109833e302,8.14603767833881e302,8.148449175579289e302,8.150860672819768e302,8.153272170060247e302,8.155683667300726e302,8.158095164541206e302,8.160506661781685e302,8.162918159022164e302,8.165329656262643e302,8.167741153503123e302,8.170152650743602e302,8.172564147984081e302,8.17497564522456e302,8.17738714246504e302,8.179798639705519e302,8.182210136945998e302,8.184621634186477e302,8.187033131426956e302,8.189444628667436e302,8.191856125907915e302,8.194267623148394e302,8.196679120388873e302,8.199090617629353e302,8.201502114869832e302,8.20391361211031e302,8.20632510935079e302,8.20873660659127e302,8.211148103831749e302,8.213559601072228e302,8.215971098312707e302,8.218382595553185e302,8.220794092793666e302,8.223205590034145e302,8.225617087274624e302,8.228028584515102e302,8.230440081755583e302,8.232851578996062e302,8.23526307623654e302,8.23767457347702e302,8.2400860707175e302,8.242497567957979e302,8.244909065198458e302,8.247320562438936e302,8.249732059679415e302,8.252143556919896e302,8.254555054160375e302,8.256966551400853e302,8.259378048641332e302,8.261789545881813e302,8.264201043122292e302,8.26661254036277e302,8.26902403760325e302,8.27143553484373e302,8.273847032084209e302,8.276258529324687e302,8.278670026565166e302,8.281081523805645e302,8.283493021046126e302,8.285904518286604e302,8.288316015527083e302,8.290727512767562e302,8.293139010008043e302,8.295550507248521e302,8.297962004489e302,8.300373501729479e302,8.30278499896996e302,8.305196496210438e302,8.307607993450917e302,8.310019490691396e302,8.312430987931875e302,8.314842485172355e302,8.317253982412834e302,8.319665479653313e302,8.322076976893792e302,8.324488474134272e302,8.326899971374751e302,8.32931146861523e302,8.331722965855709e302,8.33413446309619e302,8.336545960336668e302,8.338957457577147e302,8.341368954817626e302,8.343780452058105e302,8.346191949298585e302,8.348603446539064e302,8.351014943779543e302,8.353426441020022e302,8.355837938260502e302,8.358249435500981e302,8.36066093274146e302,8.363072429981939e302,8.36548392722242e302,8.367895424462898e302,8.370306921703377e302,8.372718418943856e302,8.375129916184335e302,8.377541413424815e302,8.379952910665294e302,8.382364407905773e302,8.384775905146252e302,8.387187402386732e302,8.389598899627211e302,8.39201039686769e302,8.394421894108169e302,8.396833391348649e302,8.399244888589128e302,8.401656385829607e302,8.404067883070086e302,8.406479380310565e302,8.408890877551045e302,8.411302374791524e302,8.413713872032003e302,8.416125369272482e302,8.418536866512962e302,8.420948363753441e302,8.42335986099392e302,8.425771358234399e302,8.428182855474879e302,8.430594352715358e302,8.433005849955837e302,8.435417347196316e302,8.437828844436795e302,8.440240341677275e302,8.442651838917754e302,8.445063336158233e302,8.447474833398712e302,8.449886330639192e302,8.452297827879671e302,8.45470932512015e302,8.457120822360629e302,8.459532319601109e302,8.461943816841588e302,8.464355314082067e302,8.466766811322546e302,8.469178308563024e302,8.471589805803505e302,8.474001303043984e302,8.476412800284463e302,8.478824297524941e302,8.481235794765422e302,8.4836472920059e302,8.48605878924638e302,8.488470286486858e302,8.490881783727339e302,8.493293280967818e302,8.495704778208297e302,8.498116275448775e302,8.500527772689254e302,8.502939269929735e302,8.505350767170214e302,8.507762264410692e302,8.510173761651171e302,8.512585258891652e302,8.51499675613213e302,8.51740825337261e302,8.519819750613088e302,8.522231247853569e302,8.524642745094048e302,8.527054242334526e302,8.529465739575005e302,8.531877236815484e302,8.534288734055965e302,8.536700231296443e302,8.539111728536922e302,8.541523225777401e302,8.543934723017882e302,8.54634622025836e302,8.54875771749884e302,8.551169214739318e302,8.553580711979799e302,8.555992209220277e302,8.558403706460756e302,8.560815203701235e302,8.563226700941714e302,8.565638198182194e302,8.568049695422673e302,8.570461192663152e302,8.572872689903631e302,8.575284187144111e302,8.57769568438459e302,8.580107181625069e302,8.582518678865548e302,8.584930176106028e302,8.587341673346507e302,8.589753170586986e302,8.592164667827465e302,8.594576165067944e302,8.596987662308424e302,8.599399159548903e302,8.601810656789382e302,8.604222154029861e302,8.606633651270341e302,8.60904514851082e302,8.611456645751299e302,8.613868142991778e302,8.616279640232258e302,8.618691137472737e302,8.621102634713216e302,8.623514131953695e302,8.625925629194174e302,8.628337126434654e302,8.630748623675133e302,8.633160120915612e302,8.63557161815609e302,8.637983115396571e302,8.64039461263705e302,8.642806109877529e302,8.645217607118008e302,8.647629104358488e302,8.650040601598967e302,8.652452098839446e302,8.654863596079925e302,8.657275093320404e302,8.659686590560884e302,8.662098087801363e302,8.664509585041842e302,8.66692108228232e302,8.669332579522801e302,8.67174407676328e302,8.674155574003759e302,8.676567071244238e302,8.678978568484718e302,8.681390065725197e302,8.683801562965676e302,8.686213060206155e302,8.688624557446635e302,8.691036054687114e302,8.693447551927593e302,8.695859049168072e302,8.69827054640855e302,8.700682043649031e302,8.70309354088951e302,8.705505038129989e302,8.707916535370468e302,8.710328032610948e302,8.712739529851427e302,8.715151027091906e302,8.717562524332385e302,8.719974021572865e302,8.722385518813344e302,8.724797016053823e302,8.727208513294302e302,8.72962001053478e302,8.732031507775261e302,8.73444300501574e302,8.736854502256219e302,8.739265999496697e302,8.741677496737178e302,8.744088993977657e302,8.746500491218136e302,8.748911988458614e302,8.751323485699095e302,8.753734982939574e302,8.756146480180053e302,8.758557977420531e302,8.76096947466101e302,8.76338097190149e302,8.76579246914197e302,8.768203966382448e302,8.770615463622927e302,8.773026960863408e302,8.775438458103887e302,8.777849955344365e302,8.780261452584844e302,8.782672949825325e302,8.785084447065804e302,8.787495944306282e302,8.789907441546761e302,8.79231893878724e302,8.79473043602772e302,8.7971419332682e302,8.799553430508678e302,8.801964927749157e302,8.804376424989638e302,8.806787922230116e302,8.809199419470595e302,8.811610916711074e302,8.814022413951555e302,8.816433911192033e302,8.818845408432512e302,8.821256905672991e302,8.82366840291347e302,8.82607990015395e302,8.82849139739443e302,8.830902894634908e302,8.833314391875387e302,8.835725889115867e302,8.838137386356346e302,8.840548883596825e302,8.842960380837304e302,8.845371878077784e302,8.847783375318263e302,8.850194872558742e302,8.852606369799221e302,8.8550178670397e302,8.85742936428018e302,8.859840861520659e302,8.862252358761138e302,8.864663856001617e302,8.867075353242097e302,8.869486850482576e302,8.871898347723055e302,8.874309844963534e302,8.876721342204014e302,8.879132839444493e302,8.881544336684972e302,8.883955833925451e302,8.88636733116593e302,8.88877882840641e302,8.891190325646889e302,8.893601822887368e302,8.896013320127847e302,8.898424817368327e302,8.900836314608806e302,8.903247811849285e302,8.905659309089764e302,8.908070806330244e302,8.910482303570723e302,8.912893800811202e302,8.91530529805168e302,8.91771679529216e302,8.92012829253264e302,8.922539789773119e302,8.924951287013598e302,8.927362784254077e302,8.929774281494557e302,8.932185778735036e302,8.934597275975515e302,8.937008773215994e302,8.939420270456474e302,8.941831767696953e302,8.944243264937432e302,8.94665476217791e302,8.94906625941839e302,8.95147775665887e302,8.953889253899349e302,8.956300751139828e302,8.958712248380306e302,8.961123745620787e302,8.963535242861266e302,8.965946740101745e302,8.968358237342223e302,8.970769734582704e302,8.973181231823183e302,8.975592729063662e302,8.97800422630414e302,8.98041572354462e302,8.9828272207851e302,8.985238718025579e302,8.987650215266057e302,8.990061712506536e302,8.992473209747017e302,8.994884706987496e302,8.997296204227974e302,8.999707701468453e302,9.002119198708934e302,9.004530695949413e302,9.006942193189891e302,9.00935369043037e302,9.011765187670849e302,9.01417668491133e302,9.016588182151808e302,9.018999679392287e302,9.021411176632766e302,9.023822673873247e302,9.026234171113725e302,9.028645668354204e302,9.031057165594683e302,9.033468662835164e302,9.035880160075642e302,9.038291657316121e302,9.0407031545566e302,9.043114651797079e302,9.04552614903756e302,9.047937646278038e302,9.050349143518517e302,9.052760640758996e302,9.055172137999476e302,9.057583635239955e302,9.059995132480434e302,9.062406629720913e302,9.064818126961393e302,9.067229624201872e302,9.069641121442351e302,9.07205261868283e302,9.074464115923309e302,9.07687561316379e302,9.079287110404268e302,9.081698607644747e302,9.084110104885226e302,9.086521602125706e302,9.088933099366185e302,9.091344596606664e302,9.093756093847143e302,9.096167591087623e302,9.098579088328102e302,9.100990585568581e302,9.10340208280906e302,9.105813580049539e302,9.108225077290019e302,9.110636574530498e302,9.113048071770977e302,9.115459569011456e302,9.117871066251936e302,9.120282563492415e302,9.122694060732894e302,9.125105557973373e302,9.127517055213853e302,9.129928552454332e302,9.132340049694811e302,9.13475154693529e302,9.137163044175769e302,9.139574541416249e302,9.141986038656728e302,9.144397535897207e302,9.146809033137686e302,9.149220530378166e302,9.151632027618645e302,9.154043524859124e302,9.156455022099603e302,9.158866519340083e302,9.161278016580562e302,9.163689513821041e302,9.16610101106152e302,9.168512508301999e302,9.170924005542479e302,9.173335502782958e302,9.175747000023437e302,9.178158497263916e302,9.180569994504396e302,9.182981491744875e302,9.185392988985354e302,9.187804486225833e302,9.190215983466313e302,9.192627480706792e302,9.19503897794727e302,9.19745047518775e302,9.199861972428228e302,9.202273469668709e302,9.204684966909188e302,9.207096464149667e302,9.209507961390145e302,9.211919458630626e302,9.214330955871105e302,9.216742453111584e302,9.219153950352062e302,9.221565447592543e302,9.223976944833022e302,9.2263884420735e302,9.22879993931398e302,9.231211436554458e302,9.233622933794939e302,9.236034431035418e302,9.238445928275896e302,9.240857425516375e302,9.243268922756856e302,9.245680419997335e302,9.248091917237813e302,9.250503414478292e302,9.252914911718773e302,9.255326408959252e302,9.25773790619973e302,9.26014940344021e302,9.262560900680688e302,9.264972397921169e302,9.267383895161647e302,9.269795392402126e302,9.272206889642605e302,9.274618386883086e302,9.277029884123564e302,9.279441381364043e302,9.281852878604522e302,9.284264375845003e302,9.286675873085481e302,9.28908737032596e302,9.291498867566439e302,9.293910364806918e302,9.296321862047398e302,9.298733359287877e302,9.301144856528356e302,9.303556353768835e302,9.305967851009315e302,9.308379348249794e302,9.310790845490273e302,9.313202342730752e302,9.315613839971232e302,9.318025337211711e302,9.32043683445219e302,9.322848331692669e302,9.32525982893315e302,9.327671326173628e302,9.330082823414107e302,9.332494320654586e302,9.334905817895065e302,9.337317315135545e302,9.339728812376024e302,9.342140309616503e302,9.344551806856982e302,9.346963304097462e302,9.349374801337941e302,9.35178629857842e302,9.354197795818899e302,9.35660929305938e302,9.359020790299858e302,9.361432287540337e302,9.363843784780816e302,9.366255282021295e302,9.368666779261775e302,9.371078276502254e302,9.373489773742733e302,9.375901270983212e302,9.378312768223692e302,9.380724265464171e302,9.38313576270465e302,9.385547259945129e302,9.387958757185609e302,9.390370254426088e302,9.392781751666567e302,9.395193248907046e302,9.397604746147525e302,9.400016243388005e302,9.402427740628484e302,9.404839237868963e302,9.407250735109442e302,9.409662232349922e302,9.412073729590401e302,9.41448522683088e302,9.416896724071359e302,9.419308221311839e302,9.421719718552318e302,9.424131215792797e302,9.426542713033276e302,9.428954210273755e302,9.431365707514235e302,9.433777204754714e302,9.436188701995193e302,9.438600199235672e302,9.441011696476152e302,9.443423193716631e302,9.44583469095711e302,9.448246188197589e302,9.450657685438069e302,9.453069182678548e302,9.455480679919027e302,9.457892177159506e302,9.460303674399984e302,9.462715171640465e302,9.465126668880944e302,9.467538166121423e302,9.469949663361901e302,9.472361160602382e302,9.47477265784286e302,9.47718415508334e302,9.479595652323818e302,9.482007149564299e302,9.484418646804778e302,9.486830144045257e302,9.489241641285735e302,9.491653138526214e302,9.494064635766695e302,9.496476133007174e302,9.498887630247652e302,9.501299127488131e302,9.503710624728612e302,9.50612212196909e302,9.50853361920957e302,9.510945116450048e302,9.513356613690529e302,9.515768110931008e302,9.518179608171486e302,9.520591105411965e302,9.523002602652444e302,9.525414099892925e302,9.527825597133403e302,9.530237094373882e302,9.532648591614361e302,9.535060088854842e302,9.53747158609532e302,9.5398830833358e302,9.542294580576278e302,9.544706077816759e302,9.547117575057237e302,9.549529072297716e302,9.551940569538195e302,9.554352066778674e302,9.556763564019154e302,9.559175061259633e302,9.561586558500112e302,9.563998055740591e302,9.566409552981071e302,9.56882105022155e302,9.571232547462029e302,9.573644044702508e302,9.576055541942988e302,9.578467039183467e302,9.580878536423946e302,9.583290033664425e302,9.585701530904904e302,9.588113028145384e302,9.590524525385863e302,9.592936022626342e302,9.595347519866821e302,9.597759017107301e302,9.60017051434778e302,9.602582011588259e302,9.604993508828738e302,9.607405006069218e302,9.609816503309697e302,9.612228000550176e302,9.614639497790655e302,9.617050995031134e302,9.619462492271614e302,9.621873989512093e302,9.624285486752572e302,9.62669698399305e302,9.629108481233531e302,9.63151997847401e302,9.633931475714489e302,9.636342972954968e302,9.638754470195448e302,9.641165967435927e302,9.643577464676406e302],"cosine":[1.0,-0.9396926207859084,0.766044443118978,0.9902680687415704,0.17364817766693036,0.6691306063588582,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,0.9135454576426009,0.6691306063588582,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,-0.9781476007338057,-0.882947592858927,-0.7193398003386511,0.9902680687415704,0.9902680687415704,-0.7193398003386511,-0.882947592858927,0.17364817766693036,0.4383711467890774,0.6691306063588582,0.17364817766693036,-0.10452846326765347,-0.7193398003386511,-0.5,0.9902680687415704,0.9135454576426009,0.766044443118978,-0.9781476007338057,-0.9975640502598242,0.6691306063588582,0.17364817766693036,-0.10452846326765347,-0.374606593415912,-0.6156614753256583,-0.8090169943749475,0.9135454576426009,0.766044443118978,0.5591929034707468,0.30901699437494745,0.03489949670250097,0.848048096156426,0.9612616959383189,1.0,0.9612616959383189,-0.24192189559966773,0.03489949670250097,0.30901699437494745,0.5591929034707468,0.766044443118978,-0.9396926207859084,-0.8090169943749475,-0.6156614753256583,-0.374606593415912,-0.10452846326765347,-0.8090169943749475,-0.9396926207859084,-0.9975640502598242,-0.9781476007338057,-0.882947592858927,0.03489949670250097,-0.24192189559966773,-0.5,-0.7193398003386511,0.9612616959383189,0.848048096156426,0.6691306063588582,0.4383711467890774,0.17364817766693036,0.766044443118978,0.9135454576426009,0.9902680687415704,0.9902680687415704,0.9135454576426009,-0.10452846326765347,0.17364817766693036,-0.9396926207859084,0.6691306063588582,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,-0.24192189559966773,-0.24192189559966773,-0.7193398003386511,0.30901699437494745,-0.9781476007338057,0.6691306063588582,-0.9396926207859084,0.17364817766693036,-0.6156614753256583,-0.374606593415912,0.9902680687415704,-0.8090169943749475,0.9135454576426009,-0.9975640502598242,0.5591929034707468,0.4383711467890774,0.03489949670250097,0.848048096156426,-0.5,1.0,-0.5,0.848048096156426,0.03489949670250097,-0.882947592858927,0.5591929034707468,-0.9975640502598242,0.9135454576426009,-0.8090169943749475,-0.10452846326765347,-0.374606593415912,-0.6156614753256583,0.17364817766693036,-0.9396926207859084,0.766044443118978,-0.9781476007338057,0.30901699437494745,-0.7193398003386511,-0.24192189559966773,0.9612616959383189,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.6691306063588582,0.30901699437494745,0.17364817766693036,0.766044443118978,-0.374606593415912,0.9902680687415704,-0.6156614753256583,0.9135454576426009,-0.10452846326765347,0.5591929034707468,0.4383711467890774,-0.9975640502598242,0.848048096156426,-0.882947592858927,0.03489949670250097,-0.5,-0.5,0.03489949670250097,-0.882947592858927,0.848048096156426,-0.9975640502598242,0.4383711467890774,-0.8090169943749475,-0.10452846326765347,0.9135454576426009,-0.6156614753256583,0.9902680687415704,-0.9396926207859084,0.766044443118978,0.17364817766693036,0.30901699437494745,0.6691306063588582,-0.24192189559966773,0.9612616959383189,-0.7193398003386511,0.9612616959383189,-0.24192189559966773,0.6691306063588582,0.30901699437494745,-0.9781476007338057,0.766044443118978,-0.9396926207859084,0.9902680687415704,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,0.9135454576426009,-0.9975640502598242,0.848048096156426,0.4383711467890774,0.03489949670250097,-0.5,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,0.03489949670250097,0.4383711467890774,-0.8090169943749475,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,-0.10452846326765347,-0.374606593415912,0.766044443118978,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,0.30901699437494745,-0.7193398003386511,0.9612616959383189,0.9612616959383189,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,0.766044443118978,-0.374606593415912,-0.10452846326765347,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,-0.882947592858927,1.0,-0.882947592858927,-0.5,0.03489949670250097,0.4383711467890774,0.848048096156426,-0.9975640502598242,0.9135454576426009,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,0.9902680687415704,-0.9396926207859084,0.6691306063588582,0.17364817766693036,0.30901699437494745,-0.7193398003386511,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,-0.9781476007338057,0.766044443118978,-0.374606593415912,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,-0.8090169943749475,0.4383711467890774,0.03489949670250097,0.5591929034707468,-0.882947592858927,1.0,0.848048096156426,-0.5,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,0.5591929034707468,-0.10452846326765347,-0.374606593415912,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,0.17364817766693036,-0.6156614753256583,0.9135454576426009,0.9902680687415704,-0.8090169943749475,0.4383711467890774,-0.10452846326765347,0.5591929034707468,-0.882947592858927,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,-0.882947592858927,0.5591929034707468,-0.10452846326765347,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,-0.6156614753256583,0.17364817766693036,0.30901699437494745,0.766044443118978,-0.9781476007338057,0.9612616959383189,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,0.9612616959383189,-0.9781476007338057,0.766044443118978,0.30901699437494745,0.17364817766693036,-0.6156614753256583,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,-0.5,0.848048096156426,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,0.4383711467890774,-0.8090169943749475,0.9902680687415704,0.9135454576426009,-0.6156614753256583,0.17364817766693036,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.6691306063588582,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,0.9612616959383189,-0.9781476007338057,0.766044443118978,-0.374606593415912,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9975640502598242,0.848048096156426,-0.5,0.03489949670250097,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.9135454576426009,-0.6156614753256583,0.17364817766693036,0.30901699437494745,-0.7193398003386511,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.7193398003386511,0.30901699437494745,0.17364817766693036,-0.6156614753256583,0.9135454576426009,-0.9396926207859084,0.6691306063588582,-0.24192189559966773,-0.24192189559966773,0.6691306063588582,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.4383711467890774,0.03489949670250097,-0.5,0.848048096156426,-0.9975640502598242,0.766044443118978,-0.374606593415912,-0.10452846326765347,0.5591929034707468,-0.882947592858927,1.0,-0.882947592858927,0.5591929034707468,-0.10452846326765347,-0.374606593415912,0.766044443118978,-0.9781476007338057,0.9612616959383189,-0.5,0.03489949670250097,0.4383711467890774,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.5,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.10452846326765347,-0.6156614753256583,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.6691306063588582,0.03489949670250097,-0.24192189559966773,0.848048096156426,-0.9396926207859084,0.9135454576426009,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,-0.374606593415912,-0.374606593415912,0.5591929034707468,-0.9781476007338057,1.0,-0.7193398003386511,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,0.03489949670250097,0.6691306063588582,-0.8090169943749475,0.9902680687415704,-0.9396926207859084,0.4383711467890774,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.6156614753256583,-0.10452846326765347,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.882947592858927,0.766044443118978,-0.10452846326765347,-0.10452846326765347,0.766044443118978,-0.882947592858927,0.9612616959383189,-0.5,0.30901699437494745,0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.9975640502598242,0.6691306063588582,-0.5,-0.24192189559966773,0.4383711467890774,-0.9396926207859084,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.03489949670250097,-0.7193398003386511,0.848048096156426,-0.9781476007338057,0.9135454576426009,-0.374606593415912,0.17364817766693036,0.5591929034707468,-0.7193398003386511,1.0,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.374606593415912,0.9135454576426009,-0.9781476007338057,0.848048096156426,-0.7193398003386511,0.03489949670250097,0.17364817766693036,-0.8090169943749475,0.9135454576426009,-0.9396926207859084,0.848048096156426,-0.24192189559966773,-0.5,0.6691306063588582,-0.9975640502598242,0.9902680687415704,-0.6156614753256583,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.10452846326765347,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.5,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.882947592858927,0.9612616959383189,-0.5,-0.24192189559966773,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.17364817766693036,-0.5,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.24192189559966773,-0.5,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,0.848048096156426,-0.24192189559966773,-0.5,0.9612616959383189,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.5,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.766044443118978,-0.9975640502598242,0.6691306063588582,0.03489949670250097,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.7193398003386511,1.0,-0.9396926207859084,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.03489949670250097,-0.7193398003386511,1.0,-0.7193398003386511,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.9396926207859084,1.0,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.4383711467890774,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.9396926207859084,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.10452846326765347,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.5,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.882947592858927,0.9612616959383189,-0.5,-0.24192189559966773,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.17364817766693036,-0.5,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.24192189559966773,-0.5,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,0.848048096156426,-0.24192189559966773,-0.5,0.9612616959383189,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.5,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.766044443118978,-0.9975640502598242,0.6691306063588582,0.03489949670250097,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.7193398003386511,1.0,-0.9396926207859084,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.03489949670250097,-0.7193398003386511,1.0,-0.7193398003386511,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.9396926207859084,1.0,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.4383711467890774,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9135454576426009,-0.9396926207859084,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.10452846326765347,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.882947592858927,0.9612616959383189,-0.5,-0.24192189559966773,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.9612616959383189,-0.5,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.5591929034707468,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.24192189559966773,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,0.848048096156426,-0.24192189559966773,-0.5,0.9612616959383189,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,-0.24192189559966773,-0.5,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.6691306063588582,0.03489949670250097,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.7193398003386511,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.03489949670250097,-0.7193398003386511,1.0,-0.7193398003386511,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.7193398003386511,1.0,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.4383711467890774,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9135454576426009,-0.9396926207859084,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.10452846326765347,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.882947592858927,0.9612616959383189,-0.5,-0.24192189559966773,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.9612616959383189,-0.5,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.5591929034707468,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.24192189559966773,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,0.848048096156426,-0.24192189559966773,-0.5,0.9612616959383189,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,-0.24192189559966773,-0.5,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.6691306063588582,0.03489949670250097,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.7193398003386511,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.03489949670250097,-0.7193398003386511,1.0,-0.7193398003386511,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.7193398003386511,1.0,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.4383711467890774,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9135454576426009,-0.9396926207859084,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.10452846326765347,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.882947592858927,0.9612616959383189,-0.5,-0.24192189559966773,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.9612616959383189,-0.5,-0.24192189559966773,0.848048096156426,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.5591929034707468,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.24192189559966773,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.9781476007338057,0.848048096156426,-0.24192189559966773,-0.5,0.9612616959383189,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,-0.24192189559966773,-0.5,0.9612616959383189,-0.882947592858927,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.6691306063588582,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.7193398003386511,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.374606593415912,0.6691306063588582,0.03489949670250097,-0.7193398003386511,1.0,-0.7193398003386511,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.7193398003386511,1.0,-0.7193398003386511,0.03489949670250097,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.4383711467890774,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9135454576426009,-0.9396926207859084,0.4383711467890774,0.30901699437494745,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.10452846326765347,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.5,-0.24192189559966773,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.9612616959383189,-0.5,-0.24192189559966773,0.848048096156426,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.5591929034707468,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.24192189559966773,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.9781476007338057,0.848048096156426,-0.24192189559966773,-0.5,0.9612616959383189,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,-0.24192189559966773,-0.5,0.9612616959383189,-0.882947592858927,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.6691306063588582,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.7193398003386511,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.374606593415912,0.6691306063588582,0.03489949670250097,-0.7193398003386511,1.0,-0.7193398003386511,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.7193398003386511,1.0,-0.7193398003386511,0.03489949670250097,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.4383711467890774,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9135454576426009,-0.9396926207859084,0.4383711467890774,0.30901699437494745,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.10452846326765347,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.5,-0.24192189559966773,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.9612616959383189,-0.5,-0.24192189559966773,0.848048096156426,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.5591929034707468,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.24192189559966773,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.9781476007338057,0.848048096156426,-0.24192189559966773,-0.5,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,-0.24192189559966773,-0.5,0.9612616959383189,-0.882947592858927,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.5,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.6691306063588582,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.766044443118978,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.7193398003386511,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.374606593415912,0.6691306063588582,0.03489949670250097,-0.7193398003386511,1.0,-0.9396926207859084,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.7193398003386511,1.0,-0.7193398003386511,0.03489949670250097,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.9396926207859084,1.0,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9135454576426009,-0.9396926207859084,0.4383711467890774,0.30901699437494745,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.9396926207859084,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.5,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.9612616959383189,-0.5,-0.24192189559966773,0.848048096156426,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.17364817766693036,-0.5,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.5591929034707468,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.24192189559966773,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.9781476007338057,0.848048096156426,-0.24192189559966773,-0.5,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,-0.24192189559966773,-0.5,0.9612616959383189,-0.882947592858927,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.5,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.6691306063588582,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.766044443118978,-0.9975640502598242,0.6691306063588582,0.03489949670250097,-0.7193398003386511,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.374606593415912,0.6691306063588582,0.03489949670250097,-0.7193398003386511,1.0,-0.9396926207859084,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.7193398003386511,1.0,-0.7193398003386511,0.03489949670250097,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.9396926207859084,1.0,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.9135454576426009,-0.9396926207859084,0.4383711467890774,0.30901699437494745,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.9396926207859084,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.5,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.9612616959383189,-0.5,-0.24192189559966773,0.848048096156426,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.17364817766693036,-0.5,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.5591929034707468,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.24192189559966773,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.9781476007338057,0.848048096156426,-0.24192189559966773,-0.5,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,-0.24192189559966773,-0.5,0.9612616959383189,-0.882947592858927,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.5,0.9612616959383189,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.6691306063588582,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.766044443118978,-0.9975640502598242,0.6691306063588582,0.03489949670250097,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.374606593415912,0.6691306063588582,0.03489949670250097,-0.7193398003386511,1.0,-0.9396926207859084,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.03489949670250097,-0.7193398003386511,1.0,-0.7193398003386511,0.03489949670250097,-0.374606593415912,-0.374606593415912,0.9135454576426009,-0.9396926207859084,1.0,-0.7193398003386511,0.03489949670250097,0.6691306063588582,-0.374606593415912,0.9135454576426009,-0.9396926207859084,0.4383711467890774,0.30901699437494745,0.03489949670250097,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.9396926207859084,0.4383711467890774,0.30901699437494745,-0.882947592858927,0.6691306063588582,-0.9975640502598242,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.30901699437494745,-0.882947592858927,0.9612616959383189,-0.5,0.766044443118978,-0.10452846326765347,-0.6156614753256583,0.9902680687415704,-0.882947592858927,0.9612616959383189,-0.5,-0.24192189559966773,0.848048096156426,-0.6156614753256583,0.9902680687415704,-0.8090169943749475,0.17364817766693036,-0.5,-0.24192189559966773,0.848048096156426,-0.9781476007338057,0.9902680687415704,-0.8090169943749475,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,0.17364817766693036,0.5591929034707468,-0.9781476007338057,0.848048096156426,-0.9781476007338057,0.5591929034707468,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.9781476007338057,0.848048096156426,-0.24192189559966773,-0.5,0.17364817766693036,-0.8090169943749475,0.9902680687415704,-0.6156614753256583,0.848048096156426,-0.24192189559966773,-0.5,0.9612616959383189,-0.882947592858927,0.9902680687415704,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.5,0.9612616959383189,-0.882947592858927,0.30901699437494745,-0.6156614753256583,-0.10452846326765347,0.766044443118978,-0.9975640502598242,0.6691306063588582,-0.882947592858927,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.766044443118978,-0.9975640502598242,0.6691306063588582,0.03489949670250097,0.30901699437494745,0.4383711467890774,-0.9396926207859084,0.9135454576426009,-0.374606593415912,0.6691306063588582,0.03489949670250097,-0.7193398003386511,1.0,-0.9396926207859084,0.9135454576426009,-0.374606593415912,-0.374606593415912,0.03489949670250097,-0.7193398003386511,1.0]}
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/large_negative.json
new file mode 100644
index 000000000000..2808c8bb28eb
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/large_negative.json
@@ -0,0 +1 @@
+{"sine":[-0.0,0.898794046299167,-0.788010753606722,-0.13917310096006544,0.9702957262759965,-0.788010753606722,-0.27563735581699916,0.9945218953682733,-0.46947156278589075,-0.6427876096865394,0.9702957262759965,-0.5877852522924731,-0.5299192642332049,0.9271838545667874,-0.20791169081775934,-0.4067366430758002,0.8290375725550417,-0.3420201433256687,-0.984807753012208,0.898794046299167,-0.46947156278589075,-0.9510565162951535,0.9510565162951535,0.46947156278589075,-0.898794046299167,0.984807753012208,-0.6946583704589973,-0.8660254037844386,0.4067366430758002,0.20791169081775934,-0.7431448254773942,0.9945218953682733,0.9271838545667874,-0.9702957262759965,0.6427876096865394,-0.0697564737441253,-0.3420201433256687,-0.27563735581699916,0.788010753606722,-0.9993908270190958,0.8290375725550417,0.9510565162951535,-0.5877852522924731,-0.0,0.5877852522924731,-0.9510565162951535,-0.8290375725550417,-0.5877852522924731,-0.788010753606722,-0.9271838545667874,0.3420201433256687,0.0697564737441253,0.9993908270190958,0.9702957262759965,0.8660254037844386,0.5299192642332049,0.7431448254773942,-0.6427876096865394,-0.4067366430758002,-0.13917310096006544,-0.9945218953682733,-0.984807753012208,-0.20791169081775934,-0.46947156278589075,-0.6946583704589973,0.6946583704589973,0.46947156278589075,0.20791169081775934,0.984807753012208,0.9945218953682733,0.13917310096006544,0.4067366430758002,0.6427876096865394,-0.7431448254773942,-0.5299192642332049,-0.8660254037844386,-0.9702957262759965,-0.9993908270190958,-0.0697564737441253,-0.3420201433256687,0.9271838545667874,0.788010753606722,0.5877852522924731,0.8290375725550417,0.9510565162951535,-0.27563735581699916,-0.0,0.27563735581699916,-0.9510565162951535,-0.8290375725550417,-0.5877852522924731,-0.4067366430758002,-0.9271838545667874,0.3420201433256687,0.9510565162951535,-0.20791169081775934,0.9702957262759965,0.27563735581699916,0.6946583704589973,0.7431448254773942,-0.6427876096865394,0.984807753012208,-0.13917310096006544,-0.9945218953682733,0.0697564737441253,-0.898794046299167,-0.46947156278589075,0.8660254037844386,-0.8660254037844386,0.46947156278589075,0.898794046299167,-0.0697564737441253,0.9945218953682733,0.13917310096006544,-0.984807753012208,0.6427876096865394,-0.7431448254773942,-0.6946583704589973,-0.27563735581699916,-0.9702957262759965,0.20791169081775934,-0.9510565162951535,-0.3420201433256687,0.9271838545667874,0.4067366430758002,0.5877852522924731,0.8290375725550417,-0.5299192642332049,0.9993908270190958,-0.0,-0.9993908270190958,0.5299192642332049,-0.8290375725550417,-0.5877852522924731,-0.4067366430758002,-0.9271838545667874,0.3420201433256687,0.9510565162951535,-0.20791169081775934,0.9702957262759965,0.27563735581699916,0.6946583704589973,0.7431448254773942,-0.6427876096865394,0.984807753012208,-0.13917310096006544,-0.9945218953682733,0.0697564737441253,-0.898794046299167,-0.46947156278589075,0.8660254037844386,-0.8660254037844386,0.46947156278589075,0.898794046299167,-0.0697564737441253,0.9945218953682733,0.13917310096006544,-0.984807753012208,0.6427876096865394,-0.7431448254773942,-0.6946583704589973,-0.27563735581699916,-0.9702957262759965,0.20791169081775934,-0.9510565162951535,-0.3420201433256687,0.9271838545667874,0.4067366430758002,0.5877852522924731,0.8290375725550417,-0.5299192642332049,0.9993908270190958,-0.0,-0.9993908270190958,0.5299192642332049,-0.8290375725550417,-0.5877852522924731,-0.4067366430758002,-0.9271838545667874,0.13917310096006544,0.9510565162951535,-0.20791169081775934,-0.7431448254773942,0.27563735581699916,0.6946583704589973,-0.3420201433256687,-0.6427876096865394,0.984807753012208,0.5877852522924731,-0.9945218953682733,0.4067366430758002,0.9993908270190958,-0.46947156278589075,-0.5299192642332049,0.5299192642332049,0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.9945218953682733,-0.5877852522924731,-0.984807753012208,0.6427876096865394,0.3420201433256687,-0.6946583704589973,-0.27563735581699916,0.7431448254773942,0.20791169081775934,-0.9510565162951535,-0.13917310096006544,0.9271838545667874,-0.788010753606722,-0.898794046299167,0.8290375725550417,0.0697564737441253,-0.8660254037844386,-0.0,0.8660254037844386,-0.0697564737441253,-0.8290375725550417,0.898794046299167,0.788010753606722,-0.9271838545667874,0.13917310096006544,0.9510565162951535,-0.20791169081775934,-0.7431448254773942,0.27563735581699916,0.6946583704589973,-0.3420201433256687,-0.6427876096865394,0.984807753012208,0.5877852522924731,-0.9945218953682733,0.4067366430758002,0.9993908270190958,-0.46947156278589075,-0.5299192642332049,0.5299192642332049,0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.9945218953682733,-0.5877852522924731,-0.984807753012208,0.6427876096865394,0.3420201433256687,-0.6946583704589973,-0.27563735581699916,0.7431448254773942,0.20791169081775934,-0.9510565162951535,-0.13917310096006544,0.9271838545667874,-0.788010753606722,-0.898794046299167,0.8290375725550417,0.0697564737441253,-0.8660254037844386,-0.0,0.8660254037844386,-0.0697564737441253,-0.8290375725550417,0.898794046299167,0.788010753606722,-0.9271838545667874,0.13917310096006544,0.9510565162951535,-0.20791169081775934,-0.7431448254773942,0.27563735581699916,0.6946583704589973,-0.3420201433256687,-0.6427876096865394,0.984807753012208,0.5877852522924731,-0.9945218953682733,0.4067366430758002,0.9993908270190958,-0.46947156278589075,-0.5299192642332049,0.5299192642332049,0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.9945218953682733,-0.5877852522924731,-0.984807753012208,0.6427876096865394,0.3420201433256687,-0.6946583704589973,-0.27563735581699916,0.7431448254773942,0.20791169081775934,-0.9510565162951535,-0.13917310096006544,0.9271838545667874,-0.788010753606722,-0.898794046299167,0.8290375725550417,0.0697564737441253,-0.8660254037844386,-0.0,0.8660254037844386,-0.0697564737441253,-0.8290375725550417,0.898794046299167,0.788010753606722,-0.9271838545667874,0.13917310096006544,0.9510565162951535,-0.20791169081775934,-0.7431448254773942,0.27563735581699916,0.6946583704589973,-0.3420201433256687,-0.6427876096865394,0.984807753012208,0.5877852522924731,-0.9945218953682733,0.4067366430758002,0.9993908270190958,-0.46947156278589075,-0.5299192642332049,0.5299192642332049,0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.9945218953682733,-0.5877852522924731,-0.984807753012208,0.6427876096865394,0.3420201433256687,-0.6946583704589973,-0.27563735581699916,0.7431448254773942,0.20791169081775934,-0.9510565162951535,-0.13917310096006544,0.9271838545667874,-0.788010753606722,-0.898794046299167,0.8290375725550417,0.0697564737441253,-0.8660254037844386,-0.0,0.8660254037844386,-0.0697564737441253,-0.8290375725550417,0.898794046299167,0.788010753606722,-0.9271838545667874,0.13917310096006544,0.9510565162951535,-0.20791169081775934,-0.7431448254773942,0.27563735581699916,0.6946583704589973,-0.3420201433256687,0.27563735581699916,0.984807753012208,0.5877852522924731,-0.6427876096865394,0.4067366430758002,0.9993908270190958,-0.9945218953682733,-0.5299192642332049,0.5299192642332049,0.9945218953682733,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,-0.5877852522924731,-0.984807753012208,-0.27563735581699916,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,0.9702957262759965,0.20791169081775934,-0.788010753606722,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.13917310096006544,0.8290375725550417,0.8660254037844386,-0.898794046299167,-0.0,0.898794046299167,-0.8660254037844386,-0.8290375725550417,0.13917310096006544,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.788010753606722,-0.20791169081775934,-0.9702957262759965,0.9510565162951535,0.6946583704589973,-0.3420201433256687,0.27563735581699916,0.984807753012208,0.5877852522924731,-0.6427876096865394,0.4067366430758002,0.9993908270190958,-0.9945218953682733,-0.5299192642332049,0.5299192642332049,0.9945218953682733,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,-0.5877852522924731,-0.984807753012208,-0.27563735581699916,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,0.9702957262759965,0.20791169081775934,-0.788010753606722,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.13917310096006544,0.8290375725550417,0.8660254037844386,-0.898794046299167,-0.0,0.898794046299167,-0.8660254037844386,-0.8290375725550417,0.13917310096006544,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.788010753606722,-0.20791169081775934,-0.9702957262759965,0.9510565162951535,0.6946583704589973,-0.3420201433256687,0.27563735581699916,0.984807753012208,0.5877852522924731,-0.6427876096865394,0.4067366430758002,0.9993908270190958,-0.9945218953682733,-0.5299192642332049,0.5299192642332049,0.9945218953682733,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,-0.5877852522924731,-0.984807753012208,-0.27563735581699916,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,0.9702957262759965,0.20791169081775934,-0.788010753606722,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.13917310096006544,0.8290375725550417,0.8660254037844386,-0.898794046299167,-0.0,0.898794046299167,-0.8660254037844386,-0.8290375725550417,0.13917310096006544,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.788010753606722,-0.20791169081775934,-0.9702957262759965,0.9510565162951535,0.6946583704589973,-0.3420201433256687,0.27563735581699916,0.984807753012208,0.5877852522924731,-0.6427876096865394,0.4067366430758002,0.9993908270190958,-0.9945218953682733,-0.5299192642332049,0.5299192642332049,0.9945218953682733,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,-0.5877852522924731,-0.984807753012208,-0.27563735581699916,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,0.9702957262759965,0.20791169081775934,-0.788010753606722,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.13917310096006544,0.8290375725550417,0.8660254037844386,-0.898794046299167,-0.0,0.898794046299167,-0.8660254037844386,-0.8290375725550417,0.13917310096006544,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.788010753606722,-0.20791169081775934,-0.9702957262759965,0.9510565162951535,0.6946583704589973,-0.3420201433256687,0.27563735581699916,0.984807753012208,0.5877852522924731,-0.6427876096865394,0.4067366430758002,0.9993908270190958,-0.9945218953682733,-0.5299192642332049,0.5299192642332049,0.9945218953682733,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,-0.5877852522924731,-0.984807753012208,-0.27563735581699916,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,0.9702957262759965,0.20791169081775934,-0.788010753606722,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.13917310096006544,0.8290375725550417,0.8660254037844386,-0.898794046299167,-0.0,0.898794046299167,-0.8660254037844386,-0.8290375725550417,0.13917310096006544,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.788010753606722,-0.20791169081775934,-0.9702957262759965,0.9510565162951535,0.6946583704589973,-0.3420201433256687,0.27563735581699916,0.984807753012208,0.5877852522924731,-0.6427876096865394,0.4067366430758002,0.9993908270190958,-0.9945218953682733,-0.5299192642332049,0.5299192642332049,0.9945218953682733,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,-0.5877852522924731,-0.984807753012208,-0.27563735581699916,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,0.9702957262759965,0.20791169081775934,-0.788010753606722,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.13917310096006544,0.8290375725550417,0.8660254037844386,-0.898794046299167,-0.0,0.898794046299167,-0.8660254037844386,-0.8290375725550417,0.13917310096006544,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.788010753606722,-0.20791169081775934,-0.9702957262759965,0.9510565162951535,0.6946583704589973,-0.3420201433256687,0.27563735581699916,0.984807753012208,0.5877852522924731,-0.6427876096865394,0.4067366430758002,0.9993908270190958,-0.9945218953682733,-0.5299192642332049,0.5299192642332049,0.9945218953682733,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,-0.5877852522924731,-0.984807753012208,-0.27563735581699916,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,0.9702957262759965,0.20791169081775934,-0.788010753606722,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.13917310096006544,0.8290375725550417,0.8660254037844386,-0.898794046299167,-0.0,0.898794046299167,-0.8660254037844386,-0.8290375725550417,0.13917310096006544,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.788010753606722,-0.20791169081775934,-0.9702957262759965,0.9510565162951535,0.6946583704589973,-0.3420201433256687,0.27563735581699916,0.984807753012208,0.5877852522924731,-0.6427876096865394,0.4067366430758002,0.9993908270190958,-0.9945218953682733,-0.5299192642332049,0.5299192642332049,0.9945218953682733,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,-0.5877852522924731,-0.984807753012208,-0.27563735581699916,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,0.9702957262759965,0.20791169081775934,-0.788010753606722,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.13917310096006544,0.8290375725550417,0.8660254037844386,-0.898794046299167,-0.0,0.898794046299167,-0.8660254037844386,-0.8290375725550417,0.13917310096006544,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.788010753606722,-0.20791169081775934,-0.9702957262759965,0.9510565162951535,0.6946583704589973,-0.3420201433256687,0.27563735581699916,0.984807753012208,0.5877852522924731,-0.6427876096865394,0.4067366430758002,0.9993908270190958,-0.9945218953682733,-0.5299192642332049,0.5299192642332049,-0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,0.9702957262759965,0.5299192642332049,0.9945218953682733,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,-0.13917310096006544,-0.984807753012208,-0.27563735581699916,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.8660254037844386,0.20791169081775934,-0.788010753606722,-0.898794046299167,-0.0,0.898794046299167,0.788010753606722,-0.20791169081775934,0.8660254037844386,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.27563735581699916,0.984807753012208,0.13917310096006544,0.9510565162951535,0.6946583704589973,-0.3420201433256687,-0.9945218953682733,-0.5299192642332049,-0.9702957262759965,-0.6427876096865394,0.4067366430758002,0.9993908270190958,0.46947156278589075,-0.5877852522924731,0.5877852522924731,-0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,0.9702957262759965,0.5299192642332049,0.9945218953682733,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,-0.13917310096006544,-0.984807753012208,-0.27563735581699916,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.8660254037844386,0.20791169081775934,-0.788010753606722,-0.898794046299167,-0.0,0.898794046299167,0.788010753606722,-0.20791169081775934,0.8660254037844386,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.27563735581699916,0.984807753012208,0.13917310096006544,0.9510565162951535,0.6946583704589973,-0.3420201433256687,-0.9945218953682733,-0.5299192642332049,-0.9702957262759965,-0.6427876096865394,0.4067366430758002,0.9993908270190958,0.46947156278589075,-0.5877852522924731,0.5877852522924731,-0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,0.9702957262759965,0.5299192642332049,0.9945218953682733,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,-0.13917310096006544,-0.984807753012208,-0.27563735581699916,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.8660254037844386,0.20791169081775934,-0.788010753606722,-0.898794046299167,-0.0,0.898794046299167,0.788010753606722,-0.20791169081775934,0.8660254037844386,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.27563735581699916,0.984807753012208,0.13917310096006544,0.9510565162951535,0.6946583704589973,-0.3420201433256687,-0.9945218953682733,-0.5299192642332049,-0.9702957262759965,-0.6427876096865394,0.4067366430758002,0.9993908270190958,0.46947156278589075,-0.5877852522924731,0.5877852522924731,-0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,0.9702957262759965,0.5299192642332049,0.9945218953682733,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,-0.13917310096006544,-0.984807753012208,-0.27563735581699916,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.8660254037844386,0.20791169081775934,-0.788010753606722,-0.898794046299167,-0.0,0.898794046299167,0.788010753606722,-0.20791169081775934,0.8660254037844386,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.27563735581699916,0.984807753012208,0.13917310096006544,0.9510565162951535,0.6946583704589973,-0.3420201433256687,-0.9945218953682733,-0.5299192642332049,-0.9702957262759965,-0.6427876096865394,0.4067366430758002,0.9993908270190958,0.46947156278589075,-0.5877852522924731,0.5877852522924731,-0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,0.9702957262759965,0.5299192642332049,0.9945218953682733,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,-0.13917310096006544,-0.984807753012208,-0.27563735581699916,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.8660254037844386,0.20791169081775934,-0.788010753606722,-0.898794046299167,-0.0,0.898794046299167,0.788010753606722,-0.20791169081775934,0.8660254037844386,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.27563735581699916,0.984807753012208,0.13917310096006544,0.9510565162951535,0.6946583704589973,-0.3420201433256687,-0.9945218953682733,-0.5299192642332049,-0.9702957262759965,-0.6427876096865394,0.4067366430758002,0.9993908270190958,0.46947156278589075,-0.5877852522924731,0.5877852522924731,-0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,0.9702957262759965,0.5299192642332049,0.9945218953682733,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,-0.13917310096006544,-0.984807753012208,-0.27563735581699916,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.8660254037844386,0.20791169081775934,-0.788010753606722,-0.898794046299167,-0.0,0.898794046299167,0.788010753606722,-0.20791169081775934,0.8660254037844386,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.27563735581699916,0.984807753012208,0.13917310096006544,0.9510565162951535,0.6946583704589973,-0.3420201433256687,-0.9945218953682733,-0.5299192642332049,-0.9702957262759965,-0.6427876096865394,0.4067366430758002,0.9993908270190958,0.46947156278589075,-0.5877852522924731,0.5877852522924731,-0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,0.9702957262759965,0.5299192642332049,0.9945218953682733,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,-0.13917310096006544,-0.984807753012208,-0.27563735581699916,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.8660254037844386,0.20791169081775934,-0.788010753606722,-0.898794046299167,-0.0,0.898794046299167,0.788010753606722,-0.20791169081775934,0.8660254037844386,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.27563735581699916,0.984807753012208,0.13917310096006544,0.9510565162951535,0.6946583704589973,-0.3420201433256687,-0.9945218953682733,-0.5299192642332049,-0.9702957262759965,-0.6427876096865394,0.4067366430758002,0.9993908270190958,0.46947156278589075,-0.5877852522924731,0.5877852522924731,-0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,0.9702957262759965,0.5299192642332049,0.9945218953682733,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,-0.13917310096006544,-0.984807753012208,-0.27563735581699916,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.8660254037844386,0.20791169081775934,-0.788010753606722,-0.898794046299167,-0.0,0.898794046299167,0.788010753606722,-0.20791169081775934,0.8660254037844386,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.27563735581699916,0.984807753012208,0.13917310096006544,0.9510565162951535,0.6946583704589973,-0.3420201433256687,-0.9945218953682733,-0.5299192642332049,-0.9702957262759965,-0.6427876096865394,0.4067366430758002,0.9993908270190958,0.46947156278589075,-0.5877852522924731,0.5877852522924731,-0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,0.9702957262759965,0.5299192642332049,0.9945218953682733,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,-0.13917310096006544,-0.984807753012208,-0.27563735581699916,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.8660254037844386,0.20791169081775934,-0.788010753606722,-0.898794046299167,-0.0,0.898794046299167,0.788010753606722,-0.20791169081775934,0.8660254037844386,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.27563735581699916,0.984807753012208,0.13917310096006544,0.9510565162951535,0.6946583704589973,-0.3420201433256687,-0.9945218953682733,-0.5299192642332049,-0.9702957262759965,-0.6427876096865394,0.4067366430758002,0.9993908270190958,0.46947156278589075,-0.5877852522924731,0.5877852522924731,-0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,0.9702957262759965,0.5299192642332049,0.9945218953682733,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,-0.13917310096006544,-0.984807753012208,-0.27563735581699916,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.8660254037844386,0.20791169081775934,-0.788010753606722,-0.898794046299167,-0.0,0.898794046299167,0.788010753606722,-0.20791169081775934,0.8660254037844386,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.27563735581699916,0.984807753012208,0.13917310096006544,0.9510565162951535,0.6946583704589973,-0.3420201433256687,-0.9945218953682733,-0.5299192642332049,-0.9702957262759965,-0.6427876096865394,0.4067366430758002,0.9993908270190958,0.46947156278589075,-0.5877852522924731,0.5877852522924731,-0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,0.9702957262759965,0.5299192642332049,0.9945218953682733,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,-0.13917310096006544,-0.984807753012208,-0.27563735581699916,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.8660254037844386,0.20791169081775934,-0.788010753606722,-0.898794046299167,-0.0,0.898794046299167,0.788010753606722,-0.20791169081775934,0.8660254037844386,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.27563735581699916,0.984807753012208,0.13917310096006544,0.9510565162951535,0.6946583704589973,-0.3420201433256687,-0.9945218953682733,-0.5299192642332049,-0.9702957262759965,-0.6427876096865394,0.4067366430758002,0.9993908270190958,0.46947156278589075,-0.5877852522924731,0.5877852522924731,-0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,0.9702957262759965,0.5299192642332049,0.9945218953682733,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,-0.13917310096006544,-0.984807753012208,-0.27563735581699916,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.8660254037844386,0.20791169081775934,-0.788010753606722,-0.898794046299167,-0.0,0.898794046299167,0.788010753606722,-0.20791169081775934,0.8660254037844386,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.27563735581699916,0.984807753012208,0.13917310096006544,0.9510565162951535,0.6946583704589973,-0.3420201433256687,-0.9945218953682733,-0.5299192642332049,-0.9702957262759965,-0.6427876096865394,0.4067366430758002,0.9993908270190958,0.46947156278589075,-0.5877852522924731,0.5877852522924731,-0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,0.9702957262759965,0.5299192642332049,0.9945218953682733,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,-0.13917310096006544,-0.984807753012208,-0.27563735581699916,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.8660254037844386,0.20791169081775934,-0.788010753606722,-0.898794046299167,-0.0,0.898794046299167,0.788010753606722,-0.20791169081775934,0.8660254037844386,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.27563735581699916,0.984807753012208,0.13917310096006544,0.9510565162951535,0.6946583704589973,-0.3420201433256687,-0.9945218953682733,-0.5299192642332049,-0.9702957262759965,-0.6427876096865394,0.4067366430758002,0.9993908270190958,0.46947156278589075,-0.5877852522924731,0.5877852522924731,-0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,0.9702957262759965,0.5299192642332049,0.9945218953682733,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,-0.13917310096006544,-0.984807753012208,-0.27563735581699916,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.8660254037844386,0.20791169081775934,-0.788010753606722,-0.898794046299167,-0.0,0.898794046299167,0.788010753606722,-0.20791169081775934,0.8660254037844386,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.27563735581699916,0.984807753012208,0.13917310096006544,0.9510565162951535,0.6946583704589973,-0.3420201433256687,-0.9945218953682733,-0.5299192642332049,-0.9702957262759965,-0.6427876096865394,0.4067366430758002,0.9993908270190958,0.46947156278589075,-0.5877852522924731,0.5877852522924731,-0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,0.9702957262759965,0.5299192642332049,0.9945218953682733,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,-0.13917310096006544,-0.984807753012208,-0.27563735581699916,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.8660254037844386,0.20791169081775934,-0.788010753606722,-0.898794046299167,-0.0,0.898794046299167,0.788010753606722,-0.20791169081775934,0.8660254037844386,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.27563735581699916,0.984807753012208,0.13917310096006544,0.9510565162951535,0.6946583704589973,-0.3420201433256687,-0.9945218953682733,-0.5299192642332049,-0.9702957262759965,-0.6427876096865394,0.4067366430758002,0.9993908270190958,0.46947156278589075,-0.5877852522924731,0.5877852522924731,-0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,0.9702957262759965,0.5299192642332049,0.9945218953682733,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,-0.13917310096006544,-0.984807753012208,-0.27563735581699916,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.8660254037844386,0.20791169081775934,-0.788010753606722,-0.898794046299167,-0.0,0.898794046299167,0.788010753606722,-0.20791169081775934,0.8660254037844386,-0.0697564737441253,-0.9271838545667874,-0.7431448254773942,0.27563735581699916,0.984807753012208,0.13917310096006544,0.9510565162951535,0.6946583704589973,-0.3420201433256687,-0.9945218953682733,-0.5299192642332049,-0.9702957262759965,-0.6427876096865394,0.4067366430758002,0.9993908270190958,0.46947156278589075,-0.5877852522924731,0.5877852522924731,-0.46947156278589075,-0.9993908270190958,-0.4067366430758002,0.6427876096865394,0.9702957262759965,0.5299192642332049,0.9945218953682733,0.3420201433256687,-0.6946583704589973,-0.9510565162951535,-0.13917310096006544,-0.984807753012208,-0.27563735581699916,0.7431448254773942,0.9271838545667874,0.0697564737441253,-0.8660254037844386,0.20791169081775934,-0.788010753606722,-0.898794046299167,-0.0,0.898794046299167,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.4067366430758002,-0.7431448254773942,-0.8660254037844386,0.984807753012208,0.13917310096006544,-0.46947156278589075,0.6946583704589973,0.898794046299167,-0.9945218953682733,-0.20791169081775934,0.5299192642332049,-0.6427876096865394,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.5877852522924731,0.5877852522924731,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.6427876096865394,-0.5299192642332049,0.20791169081775934,0.9945218953682733,-0.898794046299167,-0.6946583704589973,0.46947156278589075,-0.13917310096006544,-0.984807753012208,0.8660254037844386,0.7431448254773942,-0.4067366430758002,0.0697564737441253,0.9702957262759965,-0.8290375725550417,-0.788010753606722,0.9510565162951535,-0.0,-0.9510565162951535,0.788010753606722,0.8290375725550417,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0,-0.9510565162951535,-0.5877852522924731,-0.5299192642332049,-0.9702957262759965,-0.0697564737441253,0.9271838545667874,0.6427876096865394,0.46947156278589075,0.984807753012208,0.13917310096006544,-0.898794046299167,0.7431448254773942,-0.4067366430758002,-0.9945218953682733,-0.20791169081775934,0.8660254037844386,-0.788010753606722,0.3420201433256687,0.9993908270190958,0.27563735581699916,-0.8290375725550417,0.8290375725550417,-0.27563735581699916,-0.9993908270190958,-0.3420201433256687,0.788010753606722,-0.8660254037844386,0.20791169081775934,0.9945218953682733,0.4067366430758002,-0.7431448254773942,0.898794046299167,-0.13917310096006544,-0.984807753012208,-0.46947156278589075,-0.6427876096865394,-0.9271838545667874,0.0697564737441253,0.9702957262759965,0.5299192642332049,0.5877852522924731,0.9510565162951535,-0.0],"x":[-9.437184e7,-2.5947220753167004e16,-5.189444141196217e16,-7.784166207075733e16,-1.037888827295525e17,-1.2973610338834765e17,-1.5568332404714282e17,-1.81630544705938e17,-2.0757776536473315e17,-2.3352498602352832e17,-2.5947220668232346e17,-2.8541942734111862e17,-3.113666479999138e17,-3.373138686587089e17,-3.632610893175041e17,-3.8920830997629926e17,-4.1515553063509446e17,-4.411027512938896e17,-4.670499719526848e17,-4.9299719261147994e17,-5.189444132702751e17,-5.448916339290703e17,-5.708388545878654e17,-5.967860752466606e17,-6.227332959054557e17,-6.486805165642509e17,-6.74627737223046e17,-7.005749578818413e17,-7.265221785406364e17,-7.524693991994316e17,-7.784166198582267e17,-8.043638405170218e17,-8.303110611758171e17,-8.562582818346122e17,-8.822055024934074e17,-9.081527231522025e17,-9.340999438109978e17,-9.600471644697929e17,-9.85994385128588e17,-1.0119416057873832e18,-1.0378888264461783e18,-1.0638360471049736e18,-1.0897832677637687e18,-1.1157304884225638e18,-1.141677709081359e18,-1.167624929740154e18,-1.1935721503989494e18,-1.2195193710577444e18,-1.2454665917165396e18,-1.271413812375335e18,-1.29736103303413e18,-1.3233082536929252e18,-1.3492554743517202e18,-1.3752026950105155e18,-1.4011499156693107e18,-1.4270971363281057e18,-1.453044356986901e18,-1.478991577645696e18,-1.5049387983044913e18,-1.5308860189632865e18,-1.5568332396220815e18,-1.5827804602808768e18,-1.6087276809396718e18,-1.634674901598467e18,-1.6606221222572623e18,-1.6865693429160573e18,-1.7125165635748526e18,-1.7384637842336479e18,-1.764411004892443e18,-1.7903582255512381e18,-1.8163054462100332e18,-1.8422526668688284e18,-1.8681998875276237e18,-1.8941471081864187e18,-1.920094328845214e18,-1.946041549504009e18,-1.9719887701628042e18,-1.9979359908215995e18,-2.0238832114803945e18,-2.0498304321391898e18,-2.0757776527979848e18,-2.10172487345678e18,-2.1276720941155753e18,-2.1536193147743703e18,-2.1795665354331656e18,-2.2055137560919606e18,-2.2314609767507558e18,-2.257408197409551e18,-2.283355418068346e18,-2.3093026387271414e18,-2.3352498593859364e18,-2.361197080044732e18,-2.387144300703527e18,-2.413091521362322e18,-2.439038742021117e18,-2.4649859626799124e18,-2.4909331833387075e18,-2.5168804039975025e18,-2.542827624656298e18,-2.568774845315093e18,-2.594722065973888e18,-2.6206692866326835e18,-2.6466165072914785e18,-2.6725637279502735e18,-2.6985109486090685e18,-2.724458169267864e18,-2.750405389926659e18,-2.776352610585454e18,-2.8022998312442496e18,-2.8282470519030446e18,-2.8541942725618396e18,-2.880141493220635e18,-2.90608871387943e18,-2.932035934538225e18,-2.95798315519702e18,-2.9839303758558157e18,-3.0098775965146107e18,-3.0358248171734057e18,-3.061772037832201e18,-3.087719258490996e18,-3.113666479149791e18,-3.139613699808587e18,-3.165560920467382e18,-3.191508141126177e18,-3.217455361784972e18,-3.2434025824437673e18,-3.2693498031025623e18,-3.2952970237613573e18,-3.321244244420153e18,-3.347191465078948e18,-3.373138685737743e18,-3.3990859063965384e18,-3.4250331270553334e18,-3.4509803477141284e18,-3.476927568372924e18,-3.502874789031719e18,-3.528822009690514e18,-3.554769230349309e18,-3.5807164510081044e18,-3.6066636716668995e18,-3.6326108923256945e18,-3.65855811298449e18,-3.684505333643285e18,-3.71045255430208e18,-3.7363997749608755e18,-3.7623469956196705e18,-3.7882942162784655e18,-3.8142414369372605e18,-3.840188657596056e18,-3.866135878254851e18,-3.892083098913646e18,-3.9180303195724416e18,-3.9439775402312366e18,-3.9699247608900316e18,-3.995871981548827e18,-4.021819202207622e18,-4.047766422866417e18,-4.073713643525212e18,-4.0996608641840077e18,-4.1256080848428027e18,-4.1515553055015977e18,-4.177502526160393e18,-4.203449746819188e18,-4.229396967477983e18,-4.255344188136779e18,-4.281291408795574e18,-4.307238629454369e18,-4.333185850113164e18,-4.3591330707719593e18,-4.3850802914307543e18,-4.4110275120895493e18,-4.436974732748345e18,-4.46292195340714e18,-4.488869174065935e18,-4.5148163947247304e18,-4.5407636153835254e18,-4.5667108360423204e18,-4.592658056701116e18,-4.618605277359911e18,-4.644552498018706e18,-4.670499718677501e18,-4.696446939336296e18,-4.722394159995092e18,-4.748341380653886e18,-4.774288601312682e18,-4.800235821971476e18,-4.826183042630272e18,-4.852130263289068e18,-4.878077483947862e18,-4.904024704606658e18,-4.929971925265453e18,-4.955919145924248e18,-4.981866366583043e18,-5.007813587241839e18,-5.033760807900633e18,-5.059708028559429e18,-5.085655249218224e18,-5.111602469877019e18,-5.137549690535814e18,-5.16349691119461e18,-5.189444131853404e18,-5.2153913525122e18,-5.241338573170995e18,-5.26728579382979e18,-5.293233014488585e18,-5.31918023514738e18,-5.345127455806175e18,-5.371074676464971e18,-5.397021897123765e18,-5.422969117782561e18,-5.448916338441356e18,-5.474863559100151e18,-5.500810779758946e18,-5.526758000417742e18,-5.552705221076536e18,-5.578652441735332e18,-5.604599662394127e18,-5.630546883052922e18,-5.656494103711717e18,-5.682441324370513e18,-5.708388545029307e18,-5.734335765688103e18,-5.760282986346898e18,-5.786230207005693e18,-5.812177427664488e18,-5.838124648323284e18,-5.864071868982078e18,-5.890019089640874e18,-5.915966310299668e18,-5.941913530958464e18,-5.96786075161726e18,-5.993807972276054e18,-6.01975519293485e18,-6.045702413593645e18,-6.07164963425244e18,-6.097596854911235e18,-6.123544075570031e18,-6.149491296228825e18,-6.175438516887621e18,-6.201385737546416e18,-6.227332958205211e18,-6.253280178864006e18,-6.279227399522802e18,-6.305174620181596e18,-6.331121840840392e18,-6.357069061499187e18,-6.383016282157982e18,-6.408963502816777e18,-6.434910723475572e18,-6.460857944134367e18,-6.486805164793163e18,-6.512752385451957e18,-6.538699606110753e18,-6.564646826769548e18,-6.590594047428343e18,-6.616541268087138e18,-6.642488488745934e18,-6.668435709404728e18,-6.694382930063524e18,-6.720330150722319e18,-6.746277371381114e18,-6.772224592039909e18,-6.798171812698705e18,-6.824119033357499e18,-6.850066254016295e18,-6.87601347467509e18,-6.901960695333885e18,-6.92790791599268e18,-6.953855136651476e18,-6.97980235731027e18,-7.005749577969066e18,-7.03169679862786e18,-7.057644019286656e18,-7.083591239945452e18,-7.109538460604246e18,-7.135485681263042e18,-7.161432901921837e18,-7.187380122580632e18,-7.213327343239427e18,-7.239274563898223e18,-7.265221784557017e18,-7.291169005215813e18,-7.317116225874608e18,-7.343063446533403e18,-7.369010667192198e18,-7.394957887850994e18,-7.420905108509788e18,-7.446852329168584e18,-7.472799549827379e18,-7.498746770486174e18,-7.524693991144969e18,-7.550641211803764e18,-7.576588432462559e18,-7.602535653121355e18,-7.628482873780149e18,-7.654430094438945e18,-7.68037731509774e18,-7.706324535756535e18,-7.73227175641533e18,-7.758218977074126e18,-7.78416619773292e18,-7.810113418391716e18,-7.836060639050511e18,-7.862007859709306e18,-7.887955080368101e18,-7.913902301026897e18,-7.939849521685691e18,-7.965796742344487e18,-7.991743963003282e18,-8.017691183662077e18,-8.043638404320872e18,-8.069585624979668e18,-8.095532845638462e18,-8.121480066297258e18,-8.147427286956052e18,-8.173374507614848e18,-8.199321728273644e18,-8.225268948932438e18,-8.251216169591234e18,-8.277163390250029e18,-8.303110610908824e18,-8.329057831567619e18,-8.355005052226415e18,-8.380952272885209e18,-8.406899493544005e18,-8.4328467142028e18,-8.458793934861595e18,-8.48474115552039e18,-8.510688376179186e18,-8.53663559683798e18,-8.562582817496776e18,-8.588530038155571e18,-8.614477258814366e18,-8.640424479473161e18,-8.666371700131956e18,-8.692318920790751e18,-8.718266141449547e18,-8.744213362108341e18,-8.770160582767137e18,-8.796107803425932e18,-8.822055024084727e18,-8.848002244743522e18,-8.873949465402318e18,-8.899896686061112e18,-8.925843906719908e18,-8.951791127378703e18,-8.977738348037498e18,-9.003685568696293e18,-9.029632789355089e18,-9.055580010013883e18,-9.081527230672679e18,-9.107474451331474e18,-9.133421671990269e18,-9.159368892649064e18,-9.18531611330786e18,-9.211263333966654e18,-9.23721055462545e18,-9.263157775284244e18,-9.289104995943041e18,-9.315052216601836e18,-9.34099943726063e18,-9.366946657919427e18,-9.392893878578221e18,-9.418841099237016e18,-9.444788319895812e18,-9.470735540554607e18,-9.496682761213401e18,-9.522629981872196e18,-9.548577202530992e18,-9.574524423189787e18,-9.600471643848581e18,-9.626418864507378e18,-9.652366085166172e18,-9.678313305824967e18,-9.704260526483763e18,-9.730207747142558e18,-9.756154967801352e18,-9.782102188460149e18,-9.808049409118943e18,-9.833996629777738e18,-9.859943850436534e18,-9.885891071095329e18,-9.911838291754123e18,-9.93778551241292e18,-9.963732733071714e18,-9.989679953730509e18,-1.0015627174389305e19,-1.00415743950481e19,-1.0067521615706894e19,-1.009346883636569e19,-1.0119416057024485e19,-1.014536327768328e19,-1.0171310498342076e19,-1.019725771900087e19,-1.0223204939659665e19,-1.0249152160318462e19,-1.0275099380977256e19,-1.030104660163605e19,-1.0326993822294847e19,-1.0352941042953642e19,-1.0378888263612436e19,-1.0404835484271233e19,-1.0430782704930028e19,-1.0456729925588822e19,-1.0482677146247619e19,-1.0508624366906413e19,-1.0534571587565208e19,-1.0560518808224004e19,-1.0586466028882799e19,-1.0612413249541593e19,-1.0638360470200388e19,-1.0664307690859184e19,-1.0690254911517979e19,-1.0716202132176773e19,-1.074214935283557e19,-1.0768096573494364e19,-1.0794043794153159e19,-1.0819991014811955e19,-1.084593823547075e19,-1.0871885456129544e19,-1.089783267678834e19,-1.0923779897447135e19,-1.094972711810593e19,-1.0975674338764726e19,-1.100162155942352e19,-1.1027568780082315e19,-1.1053516000741112e19,-1.1079463221399906e19,-1.11054104420587e19,-1.1131357662717497e19,-1.1157304883376292e19,-1.1183252104035086e19,-1.1209199324693883e19,-1.1235146545352677e19,-1.1261093766011472e19,-1.1287040986670268e19,-1.1312988207329063e19,-1.1338935427987857e19,-1.1364882648646654e19,-1.1390829869305448e19,-1.1416777089964243e19,-1.144272431062304e19,-1.1468671531281834e19,-1.1494618751940628e19,-1.1520565972599425e19,-1.154651319325822e19,-1.1572460413917014e19,-1.159840763457581e19,-1.1624354855234605e19,-1.16503020758934e19,-1.1676249296552196e19,-1.170219651721099e19,-1.1728143737869785e19,-1.175409095852858e19,-1.1780038179187376e19,-1.180598539984617e19,-1.1831932620504965e19,-1.1857879841163762e19,-1.1883827061822556e19,-1.190977428248135e19,-1.1935721503140147e19,-1.1961668723798942e19,-1.1987615944457736e19,-1.2013563165116533e19,-1.2039510385775327e19,-1.2065457606434122e19,-1.2091404827092918e19,-1.2117352047751713e19,-1.2143299268410507e19,-1.2169246489069304e19,-1.2195193709728098e19,-1.2221140930386893e19,-1.224708815104569e19,-1.2273035371704484e19,-1.2298982592363278e19,-1.2324929813022075e19,-1.235087703368087e19,-1.2376824254339664e19,-1.240277147499846e19,-1.2428718695657255e19,-1.245466591631605e19,-1.2480613136974846e19,-1.250656035763364e19,-1.2532507578292435e19,-1.2558454798951231e19,-1.2584402019610026e19,-1.261034924026882e19,-1.2636296460927617e19,-1.2662243681586412e19,-1.2688190902245206e19,-1.2714138122904003e19,-1.2740085343562797e19,-1.2766032564221592e19,-1.2791979784880388e19,-1.2817927005539183e19,-1.2843874226197977e19,-1.2869821446856772e19,-1.2895768667515568e19,-1.2921715888174363e19,-1.2947663108833157e19,-1.2973610329491954e19,-1.2999557550150748e19,-1.3025504770809543e19,-1.305145199146834e19,-1.3077399212127134e19,-1.3103346432785928e19,-1.3129293653444725e19,-1.315524087410352e19,-1.3181188094762314e19,-1.320713531542111e19,-1.3233082536079905e19,-1.32590297567387e19,-1.3284976977397496e19,-1.331092419805629e19,-1.3336871418715085e19,-1.3362818639373881e19,-1.3388765860032676e19,-1.341471308069147e19,-1.3440660301350267e19,-1.3466607522009061e19,-1.3492554742667856e19,-1.3518501963326652e19,-1.3544449183985447e19,-1.3570396404644241e19,-1.3596343625303038e19,-1.3622290845961832e19,-1.3648238066620627e19,-1.3674185287279423e19,-1.3700132507938218e19,-1.3726079728597012e19,-1.375202694925581e19,-1.3777974169914604e19,-1.3803921390573398e19,-1.3829868611232195e19,-1.385581583189099e19,-1.3881763052549784e19,-1.390771027320858e19,-1.3933657493867375e19,-1.395960471452617e19,-1.3985551935184964e19,-1.401149915584376e19,-1.4037446376502555e19,-1.406339359716135e19,-1.4089340817820146e19,-1.411528803847894e19,-1.4141235259137735e19,-1.4167182479796531e19,-1.4193129700455326e19,-1.421907692111412e19,-1.4245024141772917e19,-1.4270971362431711e19,-1.4296918583090506e19,-1.4322865803749302e19,-1.4348813024408097e19,-1.4374760245066891e19,-1.4400707465725688e19,-1.4426654686384482e19,-1.4452601907043277e19,-1.4478549127702073e19,-1.4504496348360868e19,-1.4530443569019662e19,-1.4556390789678459e19,-1.4582338010337253e19,-1.4608285230996048e19,-1.4634232451654844e19,-1.4660179672313639e19,-1.4686126892972433e19,-1.471207411363123e19,-1.4738021334290024e19,-1.4763968554948819e19,-1.4789915775607615e19,-1.481586299626641e19,-1.4841810216925204e19,-1.4867757437584001e19,-1.4893704658242796e19,-1.491965187890159e19,-1.4945599099560387e19,-1.4971546320219181e19,-1.4997493540877976e19,-1.5023440761536772e19,-1.5049387982195567e19,-1.5075335202854361e19,-1.5101282423513156e19,-1.5127229644171952e19,-1.5153176864830747e19,-1.5179124085489541e19,-1.5205071306148338e19,-1.5231018526807132e19,-1.5256965747465927e19,-1.5282912968124723e19,-1.5308860188783518e19,-1.5334807409442312e19,-1.5360754630101109e19,-1.5386701850759903e19,-1.5412649071418698e19,-1.5438596292077494e19,-1.5464543512736289e19,-1.5490490733395083e19,-1.551643795405388e19,-1.5542385174712674e19,-1.5568332395371469e19,-1.5594279616030265e19,-1.562022683668906e19,-1.5646174057347854e19,-1.567212127800665e19,-1.5698068498665445e19,-1.572401571932424e19,-1.5749962939983036e19,-1.577591016064183e19,-1.5801857381300625e19,-1.5827804601959422e19,-1.5853751822618216e19,-1.587969904327701e19,-1.5905646263935807e19,-1.5931593484594602e19,-1.5957540705253396e19,-1.5983487925912193e19,-1.6009435146570988e19,-1.6035382367229782e19,-1.6061329587888579e19,-1.6087276808547373e19,-1.6113224029206168e19,-1.6139171249864964e19,-1.6165118470523759e19,-1.6191065691182553e19,-1.6217012911841348e19,-1.6242960132500144e19,-1.6268907353158939e19,-1.6294854573817733e19,-1.632080179447653e19,-1.6346749015135324e19,-1.6372696235794119e19,-1.6398643456452915e19,-1.642459067711171e19,-1.6450537897770504e19,-1.64764851184293e19,-1.6502432339088095e19,-1.652837955974689e19,-1.6554326780405686e19,-1.658027400106448e19,-1.6606221221723275e19,-1.6632168442382072e19,-1.6658115663040866e19,-1.668406288369966e19,-1.6710010104358457e19,-1.6735957325017252e19,-1.6761904545676046e19,-1.6787851766334843e19,-1.6813798986993637e19,-1.6839746207652432e19,-1.6865693428311228e19,-1.6891640648970023e19,-1.6917587869628817e19,-1.6943535090287614e19,-1.6969482310946408e19,-1.6995429531605203e19,-1.7021376752264e19,-1.7047323972922794e19,-1.7073271193581588e19,-1.7099218414240385e19,-1.712516563489918e19,-1.7151112855557974e19,-1.717706007621677e19,-1.7203007296875565e19,-1.722895451753436e19,-1.7254901738193156e19,-1.728084895885195e19,-1.7306796179510745e19,-1.733274340016954e19,-1.7358690620828336e19,-1.738463784148713e19,-1.7410585062145925e19,-1.7436532282804722e19,-1.7462479503463516e19,-1.748842672412231e19,-1.7514373944781107e19,-1.7540321165439902e19,-1.7566268386098696e19,-1.7592215606757493e19,-1.7618162827416287e19,-1.7644110048075082e19,-1.7670057268733878e19,-1.7696004489392673e19,-1.7721951710051467e19,-1.7747898930710264e19,-1.7773846151369058e19,-1.7799793372027853e19,-1.782574059268665e19,-1.7851687813345444e19,-1.7877635034004238e19,-1.7903582254663035e19,-1.792952947532183e19,-1.7955476695980624e19,-1.798142391663942e19,-1.8007371137298215e19,-1.803331835795701e19,-1.8059265578615806e19,-1.80852127992746e19,-1.8111160019933395e19,-1.8137107240592191e19,-1.8163054461250986e19,-1.818900168190978e19,-1.8214948902568577e19,-1.8240896123227372e19,-1.8266843343886166e19,-1.8292790564544963e19,-1.8318737785203757e19,-1.8344685005862552e19,-1.8370632226521348e19,-1.8396579447180143e19,-1.8422526667838937e19,-1.8448473888497734e19,-1.847442110915653e19,-1.8500368329815323e19,-1.8526315550474117e19,-1.855226277113291e19,-1.857820999179171e19,-1.8604157212450505e19,-1.86301044331093e19,-1.8656051653768094e19,-1.868199887442689e19,-1.8707946095085683e19,-1.873389331574448e19,-1.8759840536403276e19,-1.878578775706207e19,-1.8811734977720865e19,-1.883768219837966e19,-1.8863629419038454e19,-1.8889576639697252e19,-1.8915523860356047e19,-1.894147108101484e19,-1.8967418301673636e19,-1.899336552233243e19,-1.9019312742991225e19,-1.904525996365002e19,-1.9071207184308818e19,-1.9097154404967612e19,-1.9123101625626407e19,-1.91490488462852e19,-1.9174996066943996e19,-1.920094328760279e19,-1.922689050826159e19,-1.9252837728920383e19,-1.927878494957918e19,-1.9304732170237972e19,-1.9330679390896767e19,-1.935662661155556e19,-1.938257383221436e19,-1.9408521052873155e19,-1.943446827353195e19,-1.9460415494190744e19,-1.948636271484954e19,-1.9512309935508333e19,-1.953825715616713e19,-1.9564204376825926e19,-1.959015159748472e19,-1.9616098818143515e19,-1.964204603880231e19,-1.9667993259461104e19,-1.9693940480119902e19,-1.9719887700778697e19,-1.974583492143749e19,-1.9771782142096286e19,-1.979772936275508e19,-1.9823676583413875e19,-1.9849623804072673e19,-1.9875571024731468e19,-1.9901518245390262e19,-1.9927465466049057e19,-1.995341268670785e19,-1.9979359907366646e19,-2.0005307128025444e19,-2.003125434868424e19,-2.0057201569343033e19,-2.0083148790001828e19,-2.0109096010660622e19,-2.0135043231319417e19,-2.016099045197821e19,-2.018693767263701e19,-2.0212884893295804e19,-2.02388321139546e19,-2.0264779334613393e19,-2.0290726555272188e19,-2.0316673775930982e19,-2.034262099658978e19,-2.0368568217248575e19,-2.039451543790737e19,-2.0420462658566164e19,-2.044640987922496e19,-2.0472357099883753e19,-2.0498304320542552e19,-2.0524251541201347e19,-2.055019876186014e19,-2.0576145982518936e19,-2.060209320317773e19,-2.0628040423836525e19,-2.0653987644495323e19,-2.0679934865154118e19,-2.0705882085812912e19,-2.0731829306471707e19,-2.07577765271305e19,-2.0783723747789296e19,-2.0809670968448094e19,-2.083561818910689e19,-2.0861565409765683e19,-2.0887512630424478e19,-2.0913459851083272e19,-2.0939407071742067e19,-2.0965354292400865e19,-2.099130151305966e19,-2.1017248733718454e19,-2.104319595437725e19,-2.1069143175036043e19,-2.1095090395694838e19,-2.1121037616353636e19,-2.114698483701243e19,-2.1172932057671225e19,-2.119887927833002e19,-2.1224826498988814e19,-2.125077371964761e19,-2.1276720940306403e19,-2.13026681609652e19,-2.1328615381623996e19,-2.135456260228279e19,-2.1380509822941585e19,-2.140645704360038e19,-2.1432404264259174e19,-2.1458351484917973e19,-2.1484298705576767e19,-2.151024592623556e19,-2.1536193146894356e19,-2.156214036755315e19,-2.1588087588211945e19,-2.1614034808870744e19,-2.163998202952954e19,-2.1665929250188333e19,-2.1691876470847128e19,-2.1717823691505922e19,-2.1743770912164717e19,-2.1769718132823515e19,-2.179566535348231e19,-2.1821612574141104e19,-2.18475597947999e19,-2.1873507015458693e19,-2.1899454236117488e19,-2.1925401456776286e19,-2.195134867743508e19,-2.1977295898093875e19,-2.200324311875267e19,-2.2029190339411464e19,-2.205513756007026e19,-2.2081084780729057e19,-2.210703200138785e19,-2.2132979222046646e19,-2.215892644270544e19,-2.2184873663364235e19,-2.221082088402303e19,-2.223676810468183e19,-2.2262715325340623e19,-2.2288662545999417e19,-2.231460976665821e19,-2.2340556987317006e19,-2.23665042079758e19,-2.2392451428634595e19,-2.2418398649293394e19,-2.244434586995219e19,-2.2470293090610983e19,-2.2496240311269777e19,-2.252218753192857e19,-2.2548134752587366e19,-2.2574081973246165e19,-2.260002919390496e19,-2.2625976414563754e19,-2.265192363522255e19,-2.2677870855881343e19,-2.2703818076540137e19,-2.2729765297198936e19,-2.275571251785773e19,-2.2781659738516525e19,-2.280760695917532e19,-2.2833554179834114e19,-2.285950140049291e19,-2.2885448621151707e19,-2.29113958418105e19,-2.2937343062469296e19,-2.296329028312809e19,-2.2989237503786885e19,-2.301518472444568e19,-2.304113194510448e19,-2.3067079165763273e19,-2.3093026386422067e19,-2.311897360708086e19,-2.3144920827739656e19,-2.317086804839845e19,-2.319681526905725e19,-2.3222762489716044e19,-2.324870971037484e19,-2.3274656931033633e19,-2.3300604151692427e19,-2.332655137235122e19,-2.335249859301002e19,-2.3378445813668815e19,-2.340439303432761e19,-2.3430340254986404e19,-2.34562874756452e19,-2.3482234696303993e19,-2.3508181916962787e19,-2.3534129137621586e19,-2.356007635828038e19,-2.3586023578939175e19,-2.361197079959797e19,-2.3637918020256764e19,-2.366386524091556e19,-2.3689812461574357e19,-2.371575968223315e19,-2.3741706902891946e19,-2.376765412355074e19,-2.3793601344209535e19,-2.381954856486833e19,-2.384549578552713e19,-2.3871443006185923e19,-2.3897390226844717e19,-2.392333744750351e19,-2.3949284668162306e19,-2.39752318888211e19,-2.40011791094799e19,-2.4027126330138694e19,-2.405307355079749e19,-2.4079020771456283e19,-2.4104967992115077e19,-2.413091521277387e19,-2.415686243343267e19,-2.4182809654091465e19,-2.420875687475026e19,-2.4234704095409054e19,-2.426065131606785e19,-2.4286598536726643e19,-2.431254575738544e19,-2.4338492978044236e19,-2.436444019870303e19,-2.4390387419361825e19,-2.441633464002062e19,-2.4442281860679414e19,-2.4468229081338212e19,-2.4494176301997007e19,-2.45201235226558e19,-2.4546070743314596e19,-2.457201796397339e19,-2.4597965184632185e19,-2.462391240529098e19,-2.4649859625949778e19,-2.4675806846608572e19,-2.4701754067267367e19,-2.472770128792616e19,-2.4753648508584956e19,-2.477959572924375e19,-2.480554294990255e19,-2.4831490170561343e19,-2.485743739122014e19,-2.4883384611878932e19,-2.4909331832537727e19,-2.493527905319652e19,-2.496122627385532e19,-2.4987173494514115e19,-2.501312071517291e19,-2.5039067935831704e19,-2.50650151564905e19,-2.5090962377149293e19,-2.511690959780809e19,-2.5142856818466886e19,-2.516880403912568e19,-2.5194751259784475e19,-2.522069848044327e19,-2.5246645701102064e19,-2.5272592921760862e19,-2.5298540142419657e19,-2.532448736307845e19,-2.5350434583737246e19,-2.537638180439604e19,-2.5402329025054835e19,-2.5428276245713633e19,-2.5454223466372428e19,-2.5480170687031222e19,-2.5506117907690017e19,-2.553206512834881e19,-2.5558012349007606e19,-2.5583959569666404e19,-2.56099067903252e19,-2.5635854010983993e19,-2.5661801231642788e19,-2.5687748452301582e19,-2.5713695672960377e19,-2.573964289361917e19,-2.576559011427797e19,-2.5791537334936764e19,-2.581748455559556e19,-2.5843431776254353e19,-2.5869378996913148e19,-2.5895326217571942e19,-2.592127343823074e19,-2.5947220658889535e19,-2.597316787954833e19,-2.5999115100207124e19,-2.602506232086592e19,-2.6051009541524713e19,-2.6076956762183512e19,-2.6102903982842307e19,-2.61288512035011e19,-2.6154798424159896e19,-2.618074564481869e19,-2.6206692865477485e19,-2.6232640086136283e19,-2.6258587306795078e19,-2.6284534527453872e19,-2.6310481748112667e19,-2.633642896877146e19,-2.6362376189430256e19,-2.6388323410089054e19,-2.641427063074785e19,-2.6440217851406643e19,-2.6466165072065438e19,-2.6492112292724232e19,-2.6518059513383027e19,-2.6544006734041825e19,-2.656995395470062e19,-2.6595901175359414e19,-2.662184839601821e19,-2.6647795616677003e19,-2.6673742837335798e19,-2.6699690057994596e19,-2.672563727865339e19,-2.6751584499312185e19,-2.677753171997098e19,-2.6803478940629774e19,-2.682942616128857e19,-2.6855373381947363e19,-2.688132060260616e19,-2.6907267823264956e19,-2.693321504392375e19,-2.6959162264582545e19,-2.698510948524134e19,-2.7011056705900134e19,-2.7037003926558933e19,-2.7062951147217727e19,-2.708889836787652e19,-2.7114845588535316e19,-2.714079280919411e19,-2.7166740029852905e19,-2.7192687250511704e19,-2.72186344711705e19,-2.7244581691829293e19,-2.7270528912488088e19,-2.7296476133146882e19,-2.7322423353805677e19,-2.7348370574464475e19,-2.737431779512327e19,-2.7400265015782064e19,-2.742621223644086e19,-2.7452159457099653e19,-2.7478106677758448e19,-2.7504053898417246e19,-2.753000111907604e19,-2.7555948339734835e19,-2.758189556039363e19,-2.7607842781052424e19,-2.763379000171122e19,-2.7659737222370017e19,-2.768568444302881e19,-2.7711631663687606e19,-2.77375788843464e19,-2.7763526105005195e19,-2.778947332566399e19,-2.781542054632279e19,-2.7841367766981583e19,-2.7867314987640377e19,-2.789326220829917e19,-2.7919209428957966e19,-2.794515664961676e19,-2.7971103870275555e19,-2.7997051090934354e19,-2.802299831159315e19,-2.8048945532251943e19,-2.8074892752910737e19,-2.810083997356953e19,-2.8126787194228326e19,-2.8152734414887125e19,-2.817868163554592e19,-2.8204628856204714e19,-2.823057607686351e19,-2.8256523297522303e19,-2.8282470518181097e19,-2.8308417738839896e19,-2.833436495949869e19,-2.8360312180157485e19,-2.838625940081628e19,-2.8412206621475074e19,-2.843815384213387e19,-2.8464101062792667e19,-2.849004828345146e19,-2.8515995504110256e19,-2.854194272476905e19,-2.8567889945427845e19,-2.859383716608664e19,-2.861978438674544e19,-2.8645731607404233e19,-2.8671678828063027e19,-2.869762604872182e19,-2.8723573269380616e19,-2.874952049003941e19,-2.877546771069821e19,-2.8801414931357004e19,-2.88273621520158e19,-2.8853309372674593e19,-2.8879256593333387e19,-2.890520381399218e19,-2.893115103465098e19,-2.8957098255309775e19,-2.898304547596857e19,-2.9008992696627364e19,-2.903493991728616e19,-2.9060887137944953e19,-2.9086834358603747e19,-2.9112781579262546e19,-2.913872879992134e19,-2.9164676020580135e19,-2.919062324123893e19,-2.9216570461897724e19,-2.924251768255652e19,-2.9268464903215317e19,-2.929441212387411e19,-2.9320359344532906e19,-2.93463065651917e19,-2.9372253785850495e19,-2.939820100650929e19,-2.942414822716809e19,-2.9450095447826883e19,-2.9476042668485677e19,-2.950198988914447e19,-2.9527937109803266e19,-2.955388433046206e19,-2.957983155112086e19,-2.9605778771779654e19,-2.963172599243845e19,-2.9657673213097243e19,-2.9683620433756037e19,-2.970956765441483e19,-2.973551487507363e19,-2.9761462095732425e19,-2.978740931639122e19,-2.9813356537050014e19,-2.983930375770881e19,-2.9865250978367603e19,-2.98911981990264e19,-2.9917145419685196e19,-2.994309264034399e19,-2.9969039861002785e19,-2.999498708166158e19,-3.0020934302320374e19,-3.0046881522979172e19,-3.0072828743637967e19,-3.009877596429676e19,-3.0124723184955556e19,-3.015067040561435e19,-3.0176617626273145e19,-3.020256484693194e19,-3.0228512067590738e19,-3.0254459288249532e19,-3.0280406508908327e19,-3.030635372956712e19,-3.0332300950225916e19,-3.035824817088471e19,-3.038419539154351e19,-3.0410142612202303e19,-3.04360898328611e19,-3.0462037053519892e19,-3.0487984274178687e19,-3.051393149483748e19,-3.053987871549628e19,-3.0565825936155075e19,-3.059177315681387e19,-3.0617720377472664e19,-3.064366759813146e19,-3.0669614818790253e19,-3.069556203944905e19,-3.0721509260107846e19,-3.074745648076664e19,-3.0773403701425435e19,-3.079935092208423e19,-3.0825298142743024e19,-3.0851245363401822e19,-3.0877192584060617e19,-3.090313980471941e19,-3.0929087025378206e19,-3.0955034246037e19,-3.0980981466695795e19,-3.1006928687354593e19,-3.1032875908013388e19,-3.1058823128672182e19,-3.1084770349330977e19,-3.111071756998977e19,-3.1136664790648566e19,-3.1162612011307364e19,-3.118855923196616e19,-3.1214506452624953e19,-3.1240453673283748e19,-3.1266400893942542e19,-3.1292348114601337e19,-3.131829533526013e19,-3.134424255591893e19,-3.1370189776577724e19,-3.139613699723652e19,-3.1422084217895313e19,-3.1448031438554108e19,-3.1473978659212902e19,-3.14999258798717e19,-3.1525873100530495e19,-3.155182032118929e19,-3.1577767541848084e19,-3.160371476250688e19,-3.1629661983165673e19,-3.1655609203824472e19,-3.1681556424483267e19,-3.170750364514206e19,-3.1733450865800856e19,-3.175939808645965e19,-3.1785345307118445e19,-3.1811292527777243e19,-3.1837239748436038e19,-3.1863186969094832e19,-3.1889134189753627e19,-3.191508141041242e19,-3.1941028631071216e19,-3.1966975851730014e19,-3.199292307238881e19,-3.2018870293047603e19,-3.2044817513706398e19,-3.2070764734365192e19,-3.2096711955023987e19,-3.2122659175682785e19,-3.214860639634158e19,-3.2174553617000374e19,-3.220050083765917e19,-3.2226448058317963e19,-3.2252395278976758e19,-3.2278342499635556e19,-3.230428972029435e19,-3.2330236940953145e19,-3.235618416161194e19,-3.2382131382270734e19,-3.240807860292953e19,-3.2434025823588323e19,-3.245997304424712e19,-3.2485920264905916e19,-3.251186748556471e19,-3.2537814706223505e19,-3.25637619268823e19,-3.2589709147541094e19,-3.2615656368199893e19,-3.2641603588858687e19,-3.266755080951748e19,-3.2693498030176276e19,-3.271944525083507e19,-3.2745392471493865e19,-3.2771339692152664e19,-3.279728691281146e19,-3.2823234133470253e19,-3.2849181354129048e19,-3.2875128574787842e19,-3.2901075795446637e19,-3.2927023016105435e19,-3.295297023676423e19,-3.2978917457423024e19,-3.300486467808182e19,-3.3030811898740613e19,-3.3056759119399408e19,-3.3082706340058206e19,-3.3108653560717e19,-3.3134600781375795e19,-3.316054800203459e19,-3.3186495222693384e19,-3.321244244335218e19,-3.3238389664010977e19,-3.326433688466977e19,-3.3290284105328566e19,-3.331623132598736e19,-3.3342178546646155e19,-3.336812576730495e19,-3.339407298796375e19,-3.3420020208622543e19,-3.3445967429281337e19,-3.347191464994013e19,-3.3497861870598926e19,-3.352380909125772e19,-3.3549756311916515e19,-3.3575703532575314e19,-3.360165075323411e19,-3.3627597973892903e19,-3.3653545194551697e19,-3.367949241521049e19,-3.3705439635869286e19,-3.3731386856528085e19,-3.375733407718688e19,-3.3783281297845674e19,-3.380922851850447e19,-3.3835175739163263e19,-3.3861122959822057e19,-3.3887070180480856e19,-3.391301740113965e19,-3.3938964621798445e19,-3.396491184245724e19,-3.3990859063116034e19,-3.401680628377483e19,-3.4042753504433627e19,-3.406870072509242e19,-3.4094647945751216e19,-3.412059516641001e19,-3.4146542387068805e19,-3.41724896077276e19,-3.41984368283864e19,-3.4224384049045193e19,-3.4250331269703987e19,-3.427627849036278e19,-3.4302225711021576e19,-3.432817293168037e19,-3.435412015233917e19,-3.4380067372997964e19,-3.440601459365676e19,-3.4431961814315553e19,-3.4457909034974347e19,-3.448385625563314e19,-3.450980347629194e19,-3.4535750696950735e19,-3.456169791760953e19,-3.4587645138268324e19,-3.461359235892712e19,-3.4639539579585913e19,-3.4665486800244707e19,-3.4691434020903506e19,-3.47173812415623e19,-3.4743328462221095e19,-3.476927568287989e19,-3.4795222903538684e19,-3.482117012419748e19,-3.4847117344856277e19,-3.487306456551507e19,-3.4899011786173866e19,-3.492495900683266e19,-3.4950906227491455e19,-3.497685344815025e19,-3.500280066880905e19,-3.5028747889467843e19,-3.5054695110126637e19,-3.508064233078543e19,-3.5106589551444226e19,-3.513253677210302e19,-3.515848399276182e19,-3.5184431213420614e19,-3.521037843407941e19,-3.5236325654738203e19,-3.5262272875396997e19,-3.528822009605579e19,-3.531416731671459e19,-3.5340114537373385e19,-3.536606175803218e19,-3.5392008978690974e19,-3.541795619934977e19,-3.5443903420008563e19,-3.546985064066736e19,-3.5495797861326156e19,-3.552174508198495e19,-3.5547692302643745e19,-3.557363952330254e19,-3.5599586743961334e19,-3.5625533964620132e19,-3.5651481185278927e19,-3.567742840593772e19,-3.5703375626596516e19,-3.572932284725531e19,-3.5755270067914105e19,-3.57812172885729e19,-3.5807164509231698e19,-3.5833111729890492e19,-3.5859058950549287e19,-3.588500617120808e19,-3.5910953391866876e19,-3.593690061252567e19,-3.596284783318447e19,-3.5988795053843263e19,-3.601474227450206e19,-3.6040689495160852e19,-3.6066636715819647e19,-3.609258393647844e19,-3.611853115713724e19,-3.6144478377796035e19,-3.617042559845483e19,-3.6196372819113624e19,-3.622232003977242e19,-3.6248267260431213e19,-3.627421448109001e19,-3.6300161701748806e19,-3.63261089224076e19,-3.6352056143066395e19,-3.637800336372519e19,-3.6403950584383984e19,-3.6429897805042782e19,-3.6455845025701577e19,-3.648179224636037e19,-3.6507739467019166e19,-3.653368668767796e19,-3.6559633908336755e19,-3.6585581128995553e19,-3.6611528349654348e19,-3.6637475570313142e19,-3.6663422790971937e19,-3.668937001163073e19,-3.6715317232289526e19,-3.6741264452948324e19,-3.676721167360712e19,-3.6793158894265913e19,-3.6819106114924708e19,-3.6845053335583502e19,-3.6871000556242297e19,-3.6896947776901095e19,-3.6922894997559886e19,-3.6948842218218684e19,-3.6974789438877475e19,-3.700073665953627e19,-3.702668388019507e19,-3.705263110085386e19,-3.707857832151266e19,-3.710452554217145e19,-3.713047276283025e19,-3.715641998348905e19,-3.718236720414784e19,-3.720831442480664e19,-3.723426164546543e19,-3.726020886612423e19,-3.728615608678302e19,-3.7312103307441816e19,-3.7338050528100614e19,-3.7363997748759405e19,-3.73899449694182e19,-3.741589219007699e19,-3.744183941073579e19,-3.746778663139459e19,-3.749373385205338e19,-3.751968107271218e19,-3.754562829337097e19,-3.757157551402977e19,-3.759752273468856e19,-3.762346995534736e19,-3.764941717600616e19,-3.767536439666495e19,-3.7701311617323745e19,-3.7727258837982536e19,-3.7753206058641334e19,-3.777915327930013e19,-3.780510049995892e19,-3.783104772061772e19,-3.785699494127651e19,-3.788294216193531e19,-3.79088893825941e19,-3.79348366032529e19,-3.79607838239117e19,-3.798673104457049e19,-3.801267826522929e19,-3.803862548588808e19,-3.806457270654688e19,-3.809051992720567e19,-3.8116467147864465e19,-3.814241436852326e19,-3.8168361589182054e19,-3.819430880984085e19,-3.822025603049964e19,-3.824620325115844e19,-3.827215047181724e19,-3.829809769247603e19,-3.832404491313483e19,-3.834999213379362e19,-3.837593935445242e19,-3.840188657511121e19,-3.842783379577001e19,-3.845378101642881e19,-3.84797282370876e19,-3.8505675457746395e19,-3.8531622678405186e19,-3.8557569899063984e19,-3.858351711972278e19,-3.860946434038157e19,-3.863541156104037e19,-3.866135878169916e19,-3.868730600235796e19,-3.871325322301675e19,-3.873920044367555e19,-3.876514766433435e19,-3.879109488499314e19,-3.881704210565194e19,-3.884298932631073e19,-3.886893654696953e19,-3.8894883767628325e19,-3.8920830988287115e19,-3.894677820894591e19,-3.8972725429604704e19,-3.89986726502635e19,-3.902461987092229e19,-3.905056709158109e19,-3.907651431223989e19,-3.910246153289868e19,-3.912840875355748e19,-3.915435597421627e19,-3.918030319487507e19,-3.920625041553386e19,-3.923219763619266e19,-3.925814485685146e19,-3.928409207751025e19,-3.9310039298169045e19,-3.9335986518827835e19,-3.936193373948663e19,-3.938788096014543e19,-3.941382818080422e19,-3.943977540146302e19,-3.946572262212181e19,-3.949166984278061e19,-3.95176170634394e19,-3.95435642840982e19,-3.9569511504757e19,-3.959545872541579e19,-3.962140594607459e19,-3.964735316673338e19,-3.967330038739218e19,-3.9699247608050975e19,-3.9725194828709765e19,-3.975114204936856e19,-3.9777089270027354e19,-3.980303649068615e19,-3.982898371134494e19,-3.985493093200374e19,-3.988087815266254e19,-3.990682537332133e19,-3.993277259398013e19,-3.995871981463892e19,-3.998466703529772e19,-4.001061425595652e19,-4.003656147661531e19,-4.0062508697274106e19,-4.00884559179329e19,-4.0114403138591695e19,-4.0140350359250485e19,-4.016629757990928e19,-4.019224480056808e19,-4.021819202122687e19,-4.024413924188567e19,-4.027008646254446e19,-4.029603368320326e19,-4.032198090386205e19,-4.034792812452085e19,-4.037387534517965e19,-4.039982256583844e19,-4.042576978649724e19,-4.045171700715603e19,-4.047766422781483e19,-4.0503611448473625e19,-4.0529558669132415e19,-4.055550588979121e19,-4.058145311045e19,-4.06074003311088e19,-4.063334755176759e19,-4.065929477242639e19,-4.068524199308519e19,-4.071118921374398e19,-4.073713643440278e19,-4.076308365506157e19,-4.078903087572037e19,-4.081497809637917e19,-4.084092531703796e19,-4.0866872537696756e19,-4.089281975835555e19,-4.0918766979014345e19,-4.0944714199673135e19,-4.097066142033193e19,-4.099660864099073e19,-4.102255586164952e19,-4.104850308230832e19,-4.107445030296711e19,-4.110039752362591e19,-4.112634474428471e19,-4.11522919649435e19,-4.11782391856023e19,-4.120418640626109e19,-4.123013362691989e19,-4.125608084757868e19,-4.1282028068237476e19,-4.1307975288896274e19,-4.1333922509555065e19,-4.135986973021386e19,-4.138581695087265e19,-4.141176417153145e19,-4.143771139219024e19,-4.146365861284904e19,-4.148960583350784e19,-4.151555305416663e19,-4.154150027482543e19,-4.156744749548422e19,-4.159339471614302e19,-4.161934193680182e19,-4.164528915746061e19,-4.1671236378119406e19,-4.16971835987782e19,-4.1723130819436995e19,-4.1749078040095785e19,-4.177502526075458e19,-4.180097248141338e19,-4.182691970207217e19,-4.185286692273097e19,-4.187881414338976e19,-4.190476136404856e19,-4.193070858470736e19,-4.195665580536615e19,-4.198260302602495e19,-4.200855024668374e19,-4.203449746734254e19,-4.206044468800133e19,-4.2086391908660126e19,-4.2112339129318924e19,-4.2138286349977715e19,-4.216423357063651e19,-4.21901807912953e19,-4.22161280119541e19,-4.22420752326129e19,-4.226802245327169e19,-4.229396967393049e19,-4.231991689458928e19,-4.234586411524808e19,-4.237181133590687e19,-4.239775855656567e19,-4.242370577722447e19,-4.244965299788326e19,-4.2475600218542055e19,-4.2501547439200846e19,-4.2527494659859644e19,-4.2553441880518435e19,-4.257938910117723e19,-4.260533632183603e19,-4.263128354249482e19,-4.265723076315362e19,-4.268317798381241e19,-4.270912520447121e19,-4.273507242513001e19,-4.27610196457888e19,-4.27869668664476e19,-4.281291408710639e19,-4.283886130776519e19,-4.286480852842398e19,-4.2890755749082776e19,-4.2916702969741574e19,-4.2942650190400365e19,-4.296859741105916e19,-4.299454463171795e19,-4.302049185237675e19,-4.304643907303555e19,-4.307238629369434e19,-4.309833351435314e19,-4.312428073501193e19,-4.315022795567073e19,-4.317617517632952e19,-4.320212239698832e19,-4.322806961764712e19,-4.325401683830591e19,-4.3279964058964705e19,-4.3305911279623496e19,-4.3331858500282294e19,-4.335780572094109e19,-4.338375294159988e19,-4.340970016225868e19,-4.343564738291747e19,-4.346159460357627e19,-4.348754182423506e19,-4.351348904489386e19,-4.353943626555266e19,-4.356538348621145e19,-4.359133070687025e19,-4.361727792752904e19,-4.364322514818784e19,-4.366917236884663e19,-4.3695119589505425e19,-4.372106681016422e19,-4.3747014030823014e19,-4.377296125148181e19,-4.37989084721406e19,-4.38248556927994e19,-4.38508029134582e19,-4.387675013411699e19,-4.390269735477579e19,-4.392864457543458e19,-4.395459179609338e19,-4.398053901675217e19,-4.400648623741097e19,-4.403243345806977e19,-4.405838067872856e19,-4.4084327899387355e19,-4.4110275120046146e19,-4.4136222340704944e19,-4.416216956136374e19,-4.418811678202253e19,-4.421406400268133e19,-4.424001122334012e19,-4.426595844399892e19,-4.429190566465771e19,-4.431785288531651e19,-4.434380010597531e19,-4.43697473266341e19,-4.43956945472929e19,-4.442164176795169e19,-4.444758898861049e19,-4.4473536209269285e19,-4.4499483429928075e19,-4.452543065058687e19,-4.4551377871245664e19,-4.457732509190446e19,-4.460327231256325e19,-4.462921953322205e19,-4.465516675388085e19,-4.468111397453964e19,-4.470706119519844e19,-4.473300841585723e19,-4.475895563651603e19,-4.478490285717482e19,-4.481085007783362e19,-4.483679729849242e19,-4.486274451915121e19,-4.4888691739810005e19,-4.4914638960468795e19,-4.494058618112759e19,-4.496653340178639e19,-4.499248062244518e19,-4.501842784310398e19,-4.504437506376277e19,-4.507032228442157e19,-4.509626950508036e19,-4.512221672573916e19,-4.514816394639796e19,-4.517411116705675e19,-4.520005838771555e19,-4.522600560837434e19,-4.525195282903314e19,-4.5277900049691935e19,-4.5303847270350725e19,-4.532979449100952e19,-4.5355741711668314e19,-4.538168893232711e19,-4.54076361529859e19,-4.54335833736447e19,-4.54595305943035e19,-4.548547781496229e19,-4.551142503562109e19,-4.553737225627988e19,-4.556331947693868e19,-4.558926669759748e19,-4.561521391825627e19,-4.5641161138915066e19,-4.566710835957386e19,-4.5693055580232655e19,-4.5719002800891445e19,-4.574495002155024e19,-4.577089724220904e19,-4.579684446286783e19,-4.582279168352663e19,-4.584873890418542e19,-4.587468612484422e19,-4.590063334550301e19,-4.592658056616181e19,-4.595252778682061e19,-4.59784750074794e19,-4.60044222281382e19,-4.603036944879699e19,-4.605631666945579e19,-4.6082263890114585e19,-4.6108211110773375e19,-4.613415833143217e19,-4.616010555209096e19,-4.618605277274976e19,-4.621199999340855e19,-4.623794721406735e19,-4.626389443472615e19,-4.628984165538494e19,-4.631578887604374e19,-4.634173609670253e19,-4.636768331736133e19,-4.639363053802013e19,-4.641957775867892e19,-4.6445524979337716e19,-4.647147219999651e19,-4.6497419420655305e19,-4.6523366641314095e19,-4.654931386197289e19,-4.657526108263169e19,-4.660120830329048e19,-4.662715552394928e19,-4.665310274460807e19,-4.667904996526687e19,-4.670499718592567e19,-4.673094440658446e19,-4.675689162724326e19,-4.678283884790205e19,-4.680878606856085e19,-4.683473328921964e19,-4.6860680509878436e19,-4.6886627730537234e19,-4.6912574951196025e19,-4.693852217185482e19,-4.696446939251361e19,-4.699041661317241e19,-4.70163638338312e19,-4.704231105449e19,-4.70682582751488e19,-4.709420549580759e19,-4.712015271646639e19,-4.714609993712518e19,-4.717204715778398e19,-4.719799437844278e19,-4.722394159910157e19,-4.7249888819760366e19,-4.727583604041916e19,-4.7301783261077955e19,-4.7327730481736745e19,-4.735367770239554e19,-4.737962492305434e19,-4.740557214371313e19,-4.743151936437193e19,-4.745746658503072e19,-4.748341380568952e19,-4.750936102634832e19,-4.753530824700711e19,-4.756125546766591e19,-4.75872026883247e19,-4.76131499089835e19,-4.763909712964229e19,-4.7665044350301086e19,-4.7690991570959884e19,-4.7716938791618675e19,-4.774288601227747e19,-4.776883323293626e19,-4.779478045359506e19,-4.782072767425386e19,-4.784667489491265e19,-4.787262211557145e19,-4.789856933623024e19,-4.792451655688904e19,-4.795046377754783e19,-4.797641099820663e19,-4.800235821886543e19,-4.802830543952422e19,-4.8054252660183015e19,-4.8080199880841806e19,-4.8106147101500604e19,-4.8132094322159395e19,-4.815804154281819e19,-4.818398876347699e19,-4.820993598413578e19,-4.823588320479458e19,-4.826183042545337e19,-4.828777764611217e19,-4.831372486677097e19,-4.833967208742976e19,-4.836561930808856e19,-4.839156652874735e19,-4.841751374940615e19,-4.844346097006494e19,-4.8469408190723736e19,-4.8495355411382534e19,-4.8521302632041325e19,-4.854724985270012e19,-4.857319707335891e19,-4.859914429401771e19,-4.862509151467651e19,-4.86510387353353e19,-4.86769859559941e19,-4.870293317665289e19,-4.872888039731169e19,-4.875482761797048e19,-4.878077483862928e19,-4.880672205928808e19,-4.883266927994687e19,-4.8858616500605665e19,-4.8884563721264456e19,-4.8910510941923254e19,-4.893645816258205e19,-4.896240538324084e19,-4.898835260389964e19,-4.901429982455843e19,-4.904024704521723e19,-4.906619426587602e19,-4.909214148653482e19,-4.911808870719362e19,-4.914403592785241e19,-4.916998314851121e19,-4.919593036917e19,-4.92218775898288e19,-4.924782481048759e19,-4.9273772031146385e19,-4.929971925180518e19,-4.9325666472463974e19,-4.935161369312277e19,-4.937756091378156e19,-4.940350813444036e19,-4.942945535509916e19,-4.945540257575795e19,-4.948134979641675e19,-4.950729701707554e19,-4.953324423773434e19,-4.955919145839313e19,-4.958513867905193e19,-4.961108589971073e19,-4.963703312036952e19,-4.9662980341028315e19,-4.9688927561687106e19,-4.9714874782345904e19,-4.97408220030047e19,-4.976676922366349e19,-4.979271644432229e19,-4.981866366498108e19,-4.984461088563988e19,-4.987055810629867e19,-4.989650532695747e19,-4.992245254761627e19,-4.994839976827506e19,-4.997434698893386e19,-5.000029420959265e19,-5.002624143025145e19,-5.0052188650910245e19,-5.0078135871569035e19,-5.010408309222783e19,-5.0130030312886624e19,-5.015597753354542e19,-5.018192475420421e19,-5.020787197486301e19,-5.023381919552181e19,-5.02597664161806e19,-5.02857136368394e19,-5.031166085749819e19,-5.033760807815699e19,-5.036355529881578e19,-5.038950251947458e19,-5.041544974013338e19,-5.044139696079217e19,-5.0467344181450965e19,-5.0493291402109755e19,-5.051923862276855e19,-5.054518584342735e19,-5.057113306408614e19,-5.059708028474494e19,-5.062302750540373e19,-5.064897472606253e19,-5.067492194672132e19,-5.070086916738012e19,-5.072681638803892e19,-5.075276360869771e19,-5.077871082935651e19,-5.08046580500153e19,-5.08306052706741e19,-5.0856552491332895e19,-5.0882499711991685e19,-5.090844693265048e19,-5.0934394153309274e19,-5.096034137396807e19,-5.098628859462686e19,-5.101223581528566e19,-5.103818303594446e19,-5.106413025660325e19,-5.109007747726205e19,-5.111602469792084e19,-5.114197191857964e19,-5.116791913923844e19,-5.119386635989723e19,-5.1219813580556026e19,-5.124576080121482e19,-5.1271708021873615e19,-5.1297655242532405e19,-5.13236024631912e19,-5.134954968385e19,-5.137549690450879e19,-5.140144412516759e19,-5.142739134582638e19,-5.145333856648518e19,-5.147928578714397e19,-5.150523300780277e19,-5.153118022846157e19,-5.155712744912036e19,-5.158307466977916e19,-5.160902189043795e19,-5.163496911109675e19,-5.1660916331755545e19,-5.1686863552414335e19,-5.171281077307313e19,-5.173875799373192e19,-5.176470521439072e19,-5.179065243504951e19,-5.181659965570831e19,-5.184254687636711e19,-5.18684940970259e19,-5.18944413176847e19,-5.192038853834349e19,-5.194633575900229e19,-5.197228297966109e19,-5.199823020031988e19,-5.2024177420978676e19,-5.205012464163747e19,-5.2076071862296265e19,-5.2102019082955055e19,-5.212796630361385e19,-5.215391352427265e19,-5.217986074493144e19,-5.220580796559024e19,-5.223175518624903e19,-5.225770240690783e19,-5.228364962756663e19,-5.230959684822542e19,-5.233554406888422e19,-5.236149128954301e19,-5.238743851020181e19,-5.24133857308606e19,-5.2439332951519396e19,-5.2465280172178194e19,-5.2491227392836985e19,-5.251717461349578e19,-5.254312183415457e19,-5.256906905481337e19,-5.259501627547216e19,-5.262096349613096e19,-5.264691071678976e19,-5.267285793744855e19,-5.269880515810735e19,-5.272475237876614e19,-5.275069959942494e19,-5.277664682008374e19,-5.280259404074253e19,-5.2828541261401326e19,-5.285448848206012e19,-5.2880435702718915e19,-5.2906382923377705e19,-5.29323301440365e19,-5.29582773646953e19,-5.298422458535409e19,-5.301017180601289e19,-5.303611902667168e19,-5.306206624733048e19,-5.308801346798928e19,-5.311396068864807e19,-5.313990790930687e19,-5.316585512996566e19,-5.319180235062446e19,-5.321774957128325e19,-5.3243696791942046e19,-5.3269644012600844e19,-5.3295591233259635e19,-5.332153845391843e19,-5.334748567457722e19,-5.337343289523602e19,-5.339938011589482e19,-5.342532733655361e19,-5.345127455721241e19,-5.34772217778712e19,-5.350316899853e19,-5.352911621918879e19,-5.355506343984759e19,-5.358101066050639e19,-5.360695788116518e19,-5.3632905101823975e19,-5.3658852322482766e19,-5.3684799543141564e19,-5.3710746763800355e19,-5.373669398445915e19,-5.376264120511795e19,-5.378858842577674e19,-5.381453564643554e19,-5.384048286709433e19,-5.386643008775313e19,-5.389237730841193e19,-5.391832452907072e19,-5.394427174972952e19,-5.397021897038831e19,-5.399616619104711e19,-5.40221134117059e19,-5.4048060632364696e19,-5.4074007853023494e19,-5.4099955073682285e19,-5.412590229434108e19,-5.415184951499987e19,-5.417779673565867e19,-5.420374395631747e19,-5.422969117697626e19,-5.425563839763506e19,-5.428158561829385e19,-5.430753283895265e19,-5.433348005961144e19,-5.435942728027024e19,-5.438537450092904e19,-5.441132172158783e19,-5.4437268942246625e19,-5.4463216162905416e19,-5.4489163383564214e19,-5.451511060422301e19,-5.45410578248818e19,-5.45670050455406e19,-5.459295226619939e19,-5.461889948685819e19,-5.464484670751698e19,-5.467079392817578e19,-5.469674114883458e19,-5.472268836949337e19,-5.474863559015217e19,-5.477458281081096e19,-5.480053003146976e19,-5.482647725212855e19,-5.4852424472787345e19,-5.487837169344614e19,-5.4904318914104934e19,-5.493026613476373e19,-5.495621335542252e19,-5.498216057608132e19,-5.500810779674012e19,-5.503405501739891e19,-5.506000223805771e19,-5.50859494587165e19,-5.51118966793753e19,-5.513784390003409e19,-5.516379112069289e19,-5.518973834135169e19,-5.521568556201048e19,-5.5241632782669275e19,-5.5267580003328066e19,-5.5293527223986864e19,-5.531947444464566e19,-5.534542166530445e19,-5.537136888596325e19,-5.539731610662204e19,-5.542326332728084e19,-5.544921054793963e19,-5.547515776859843e19,-5.550110498925723e19,-5.552705220991602e19,-5.555299943057482e19,-5.557894665123361e19,-5.560489387189241e19,-5.5630841092551205e19,-5.5656788313209995e19,-5.568273553386879e19,-5.5708682754527584e19,-5.573462997518638e19,-5.576057719584517e19,-5.578652441650397e19,-5.581247163716277e19,-5.583841885782156e19,-5.586436607848036e19,-5.589031329913915e19,-5.591626051979795e19,-5.594220774045674e19,-5.596815496111554e19,-5.599410218177434e19,-5.602004940243313e19,-5.6045996623091925e19,-5.6071943843750715e19,-5.609789106440951e19,-5.612383828506831e19,-5.61497855057271e19,-5.61757327263859e19,-5.620167994704469e19,-5.622762716770349e19,-5.625357438836228e19,-5.627952160902108e19,-5.630546882967988e19,-5.633141605033867e19,-5.635736327099747e19,-5.638331049165626e19,-5.640925771231506e19,-5.6435204932973855e19,-5.6461152153632645e19,-5.648709937429144e19,-5.6513046594950234e19,-5.653899381560903e19,-5.656494103626782e19,-5.659088825692662e19,-5.661683547758542e19,-5.664278269824421e19,-5.666872991890301e19,-5.66946771395618e19,-5.67206243602206e19,-5.67465715808794e19,-5.677251880153819e19,-5.6798466022196986e19,-5.682441324285578e19,-5.6850360463514575e19,-5.6876307684173365e19,-5.690225490483216e19,-5.692820212549096e19,-5.695414934614975e19,-5.698009656680855e19,-5.700604378746734e19,-5.703199100812614e19,-5.705793822878493e19,-5.708388544944373e19,-5.710983267010253e19,-5.713577989076132e19,-5.716172711142012e19,-5.718767433207891e19,-5.721362155273771e19,-5.7239568773396505e19,-5.7265515994055295e19,-5.729146321471409e19,-5.731741043537288e19,-5.734335765603168e19,-5.736930487669047e19,-5.739525209734927e19,-5.742119931800807e19,-5.744714653866686e19,-5.747309375932566e19,-5.749904097998445e19,-5.752498820064325e19,-5.755093542130205e19,-5.757688264196084e19,-5.7602829862619636e19,-5.762877708327843e19,-5.7654724303937225e19,-5.7680671524596015e19,-5.770661874525481e19,-5.773256596591361e19,-5.77585131865724e19,-5.77844604072312e19,-5.781040762788999e19,-5.783635484854879e19,-5.786230206920759e19,-5.788824928986638e19,-5.791419651052518e19,-5.794014373118397e19,-5.796609095184277e19,-5.799203817250156e19,-5.8017985393160356e19,-5.8043932613819154e19,-5.8069879834477945e19,-5.809582705513674e19,-5.812177427579553e19,-5.814772149645433e19,-5.817366871711312e19,-5.819961593777192e19,-5.822556315843072e19,-5.825151037908951e19,-5.827745759974831e19,-5.83034048204071e19,-5.83293520410659e19,-5.83552992617247e19,-5.838124648238349e19,-5.8407193703042286e19,-5.843314092370108e19,-5.8459088144359875e19,-5.8485035365018665e19,-5.851098258567746e19,-5.853692980633626e19,-5.856287702699505e19,-5.858882424765385e19,-5.861477146831264e19,-5.864071868897144e19,-5.866666590963024e19,-5.869261313028903e19,-5.871856035094783e19,-5.874450757160662e19,-5.877045479226542e19,-5.879640201292421e19,-5.8822349233583006e19,-5.8848296454241804e19,-5.8874243674900595e19,-5.890019089555939e19,-5.892613811621818e19,-5.895208533687698e19,-5.897803255753578e19,-5.900397977819457e19,-5.902992699885337e19,-5.905587421951216e19,-5.908182144017096e19,-5.910776866082975e19,-5.913371588148855e19,-5.915966310214735e19,-5.918561032280614e19,-5.9211557543464935e19,-5.9237504764123726e19,-5.9263451984782524e19,-5.9289399205441315e19,-5.931534642610011e19,-5.934129364675891e19,-5.93672408674177e19,-5.93931880880765e19,-5.941913530873529e19,-5.944508252939409e19,-5.947102975005289e19,-5.949697697071168e19,-5.952292419137048e19,-5.954887141202927e19,-5.957481863268807e19,-5.960076585334686e19,-5.9626713074005656e19,-5.9652660294664454e19,-5.9678607515323245e19,-5.970455473598204e19,-5.973050195664083e19,-5.975644917729963e19,-5.978239639795843e19,-5.980834361861722e19,-5.983429083927602e19,-5.986023805993481e19,-5.988618528059361e19,-5.99121325012524e19,-5.99380797219112e19,-5.996402694257e19,-5.998997416322879e19,-6.0015921383887585e19,-6.0041868604546376e19,-6.0067815825205174e19,-6.009376304586397e19,-6.011971026652276e19,-6.014565748718156e19,-6.017160470784035e19,-6.019755192849915e19,-6.022349914915794e19,-6.024944636981674e19,-6.027539359047554e19,-6.030134081113433e19,-6.032728803179313e19,-6.035323525245192e19,-6.037918247311072e19,-6.040512969376951e19,-6.0431076914428305e19,-6.04570241350871e19,-6.0482971355745894e19,-6.050891857640469e19,-6.053486579706348e19,-6.056081301772228e19,-6.058676023838108e19,-6.061270745903987e19,-6.063865467969867e19,-6.066460190035746e19,-6.069054912101626e19,-6.071649634167505e19,-6.074244356233385e19,-6.076839078299265e19,-6.079433800365144e19,-6.0820285224310235e19,-6.0846232444969026e19,-6.0872179665627824e19,-6.089812688628662e19,-6.092407410694541e19,-6.095002132760421e19,-6.0975968548263e19,-6.10019157689218e19,-6.102786298958059e19,-6.105381021023939e19,-6.107975743089819e19,-6.110570465155698e19,-6.113165187221578e19,-6.115759909287457e19,-6.118354631353337e19,-6.1209493534192165e19,-6.1235440754850955e19,-6.126138797550975e19,-6.1287335196168544e19,-6.131328241682734e19,-6.133922963748613e19,-6.136517685814493e19,-6.139112407880373e19,-6.141707129946252e19,-6.144301852012132e19,-6.146896574078011e19,-6.149491296143891e19,-6.15208601820977e19,-6.15468074027565e19,-6.15727546234153e19,-6.159870184407409e19,-6.1624649064732885e19,-6.1650596285391675e19,-6.167654350605047e19,-6.170249072670927e19,-6.172843794736806e19,-6.175438516802686e19,-6.178033238868565e19,-6.180627960934445e19,-6.183222683000324e19,-6.185817405066204e19,-6.188412127132084e19,-6.191006849197963e19,-6.193601571263843e19,-6.196196293329722e19,-6.198791015395602e19,-6.2013857374614815e19,-6.2039804595273605e19,-6.20657518159324e19,-6.2091699036591194e19,-6.211764625724999e19,-6.214359347790878e19,-6.216954069856758e19,-6.219548791922638e19,-6.222143513988517e19,-6.224738236054397e19,-6.227332958120276e19,-6.229927680186156e19,-6.232522402252036e19,-6.235117124317915e19,-6.2377118463837946e19,-6.240306568449674e19,-6.2429012905155535e19,-6.2454960125814325e19,-6.248090734647312e19,-6.250685456713192e19,-6.253280178779071e19,-6.255874900844951e19,-6.25846962291083e19,-6.26106434497671e19,-6.263659067042589e19,-6.266253789108469e19,-6.268848511174349e19,-6.271443233240228e19,-6.274037955306108e19,-6.276632677371987e19,-6.279227399437867e19,-6.2818221215037465e19,-6.2844168435696255e19,-6.287011565635505e19,-6.289606287701384e19,-6.292201009767264e19,-6.294795731833143e19,-6.297390453899023e19,-6.299985175964903e19,-6.302579898030782e19,-6.305174620096662e19,-6.307769342162541e19,-6.310364064228421e19,-6.312958786294301e19,-6.31555350836018e19,-6.3181482304260596e19,-6.320742952491939e19,-6.3233376745578185e19,-6.3259323966236975e19,-6.328527118689577e19,-6.331121840755457e19,-6.333716562821336e19,-6.336311284887216e19,-6.338906006953095e19,-6.341500729018975e19,-6.344095451084855e19,-6.346690173150734e19,-6.349284895216614e19,-6.351879617282493e19,-6.354474339348373e19,-6.357069061414252e19,-6.3596637834801316e19,-6.3622585055460114e19,-6.3648532276118905e19,-6.36744794967777e19,-6.370042671743649e19,-6.372637393809529e19,-6.375232115875408e19,-6.377826837941288e19,-6.380421560007168e19,-6.383016282073047e19,-6.385611004138927e19,-6.388205726204806e19,-6.390800448270686e19,-6.393395170336566e19,-6.395989892402445e19,-6.3985846144683246e19,-6.401179336534204e19,-6.4037740586000835e19,-6.4063687806659625e19,-6.408963502731842e19,-6.411558224797722e19,-6.414152946863601e19,-6.416747668929481e19,-6.41934239099536e19,-6.42193711306124e19,-6.42453183512712e19,-6.427126557192999e19,-6.429721279258879e19,-6.432316001324758e19,-6.434910723390638e19,-6.437505445456517e19,-6.4401001675223966e19,-6.4426948895882764e19,-6.4452896116541555e19,-6.447884333720035e19,-6.450479055785914e19,-6.453073777851794e19,-6.455668499917674e19,-6.458263221983553e19,-6.460857944049433e19,-6.463452666115312e19,-6.466047388181192e19,-6.468642110247071e19,-6.471236832312951e19,-6.473831554378831e19,-6.47642627644471e19,-6.4790209985105895e19,-6.4816157205764686e19,-6.4842104426423484e19,-6.4868051647082275e19,-6.489399886774107e19,-6.491994608839987e19,-6.494589330905866e19,-6.497184052971746e19,-6.499778775037625e19,-6.502373497103505e19,-6.504968219169385e19,-6.507562941235264e19,-6.510157663301144e19,-6.512752385367023e19,-6.515347107432903e19,-6.517941829498782e19,-6.5205365515646616e19,-6.5231312736305414e19,-6.5257259956964205e19,-6.5283207177623e19,-6.530915439828179e19,-6.533510161894059e19,-6.536104883959939e19,-6.538699606025818e19,-6.541294328091698e19,-6.543889050157577e19,-6.546483772223457e19,-6.549078494289336e19,-6.551673216355216e19,-6.554267938421096e19,-6.556862660486975e19,-6.5594573825528545e19,-6.5620521046187336e19,-6.5646468266846134e19,-6.567241548750493e19,-6.569836270816372e19,-6.572430992882252e19,-6.575025714948131e19,-6.577620437014011e19,-6.58021515907989e19,-6.58280988114577e19,-6.58540460321165e19,-6.587999325277529e19,-6.590594047343409e19,-6.593188769409288e19,-6.595783491475168e19,-6.598378213541047e19,-6.6009729356069265e19,-6.603567657672806e19,-6.6061623797386854e19,-6.608757101804565e19,-6.611351823870444e19,-6.613946545936324e19,-6.616541268002204e19,-6.619135990068083e19,-6.621730712133963e19,-6.624325434199842e19,-6.626920156265722e19,-6.629514878331601e19,-6.632109600397481e19,-6.634704322463361e19,-6.63729904452924e19,-6.6398937665951195e19,-6.6424884886609986e19,-6.6450832107268784e19,-6.647677932792758e19,-6.650272654858637e19,-6.652867376924517e19,-6.655462098990396e19,-6.658056821056276e19,-6.660651543122155e19,-6.663246265188035e19,-6.665840987253915e19,-6.668435709319794e19,-6.671030431385674e19,-6.673625153451553e19,-6.676219875517433e19,-6.6788145975833125e19,-6.6814093196491915e19,-6.684004041715071e19,-6.6865987637809504e19,-6.68919348584683e19,-6.691788207912709e19,-6.694382929978589e19,-6.696977652044469e19,-6.699572374110348e19,-6.702167096176228e19,-6.704761818242107e19,-6.707356540307987e19,-6.709951262373866e19,-6.712545984439746e19,-6.715140706505626e19,-6.717735428571505e19,-6.7203301506373845e19,-6.7229248727032635e19,-6.725519594769143e19,-6.728114316835023e19,-6.730709038900902e19,-6.733303760966782e19,-6.735898483032661e19,-6.738493205098541e19,-6.74108792716442e19,-6.7436826492303e19,-6.74627737129618e19,-6.748872093362059e19,-6.751466815427939e19,-6.754061537493818e19,-6.756656259559698e19,-6.7592509816255775e19,-6.7618457036914565e19,-6.764440425757336e19,-6.7670351478232154e19,-6.769629869889095e19,-6.772224591954974e19,-6.774819314020854e19,-6.777414036086734e19,-6.780008758152613e19,-6.782603480218493e19,-6.785198202284372e19,-6.787792924350252e19,-6.790387646416132e19,-6.792982368482011e19,-6.7955770905478906e19,-6.79817181261377e19,-6.8007665346796495e19,-6.8033612567455285e19,-6.805955978811408e19,-6.808550700877288e19,-6.811145422943167e19,-6.813740145009047e19,-6.816334867074926e19,-6.818929589140806e19,-6.821524311206685e19,-6.824119033272565e19,-6.826713755338445e19,-6.829308477404324e19,-6.831903199470204e19,-6.834497921536083e19,-6.837092643601963e19,-6.8396873656678425e19,-6.8422820877337215e19,-6.844876809799601e19,-6.84747153186548e19,-6.85006625393136e19,-6.852660975997239e19,-6.855255698063119e19,-6.857850420128999e19,-6.860445142194878e19,-6.863039864260758e19,-6.865634586326637e19,-6.868229308392517e19,-6.870824030458397e19,-6.873418752524276e19,-6.8760134745901556e19,-6.878608196656035e19,-6.8812029187219145e19,-6.8837976407877935e19,-6.886392362853673e19,-6.888987084919553e19,-6.891581806985432e19,-6.894176529051312e19,-6.896771251117191e19,-6.899365973183071e19,-6.901960695248951e19,-6.90455541731483e19,-6.90715013938071e19,-6.909744861446589e19,-6.912339583512469e19,-6.914934305578348e19,-6.9175290276442276e19,-6.9201237497101074e19,-6.9227184717759865e19,-6.925313193841866e19,-6.927907915907745e19,-6.930502637973625e19,-6.933097360039504e19,-6.935692082105384e19,-6.938286804171264e19,-6.940881526237143e19,-6.943476248303023e19,-6.946070970368902e19,-6.948665692434782e19,-6.951260414500662e19,-6.953855136566541e19,-6.9564498586324206e19,-6.9590445806983e19,-6.9616393027641795e19,-6.9642340248300585e19,-6.966828746895938e19,-6.969423468961818e19,-6.972018191027697e19,-6.974612913093577e19,-6.977207635159456e19,-6.979802357225336e19,-6.982397079291216e19,-6.984991801357095e19,-6.987586523422975e19,-6.990181245488854e19,-6.992775967554734e19,-6.995370689620613e19,-6.9979654116864926e19,-7.0005601337523724e19,-7.0031548558182515e19,-7.005749577884131e19,-7.00834429995001e19,-7.01093902201589e19,-7.01353374408177e19,-7.016128466147649e19,-7.018723188213529e19,-7.021317910279408e19,-7.023912632345288e19,-7.026507354411167e19,-7.029102076477047e19,-7.031696798542927e19,-7.034291520608806e19,-7.0368862426746855e19,-7.0394809647405646e19,-7.0420756868064444e19,-7.0446704088723235e19,-7.047265130938203e19,-7.049859853004083e19,-7.052454575069962e19,-7.055049297135842e19,-7.057644019201721e19,-7.060238741267601e19,-7.062833463333481e19,-7.06542818539936e19,-7.06802290746524e19,-7.070617629531119e19,-7.073212351596999e19,-7.075807073662878e19,-7.0784017957287576e19,-7.0809965177946374e19,-7.0835912398605165e19,-7.086185961926396e19,-7.088780683992275e19,-7.091375406058155e19,-7.093970128124035e19,-7.096564850189914e19,-7.099159572255794e19,-7.101754294321673e19,-7.104349016387553e19,-7.106943738453432e19,-7.109538460519312e19,-7.112133182585192e19,-7.114727904651071e19,-7.1173226267169505e19,-7.1199173487828296e19,-7.1225120708487094e19,-7.125106792914589e19,-7.127701514980468e19,-7.130296237046348e19,-7.132890959112227e19,-7.135485681178107e19,-7.138080403243986e19,-7.140675125309866e19,-7.143269847375746e19,-7.145864569441625e19,-7.148459291507505e19,-7.151054013573384e19,-7.153648735639264e19,-7.156243457705143e19,-7.1588381797710225e19,-7.161432901836902e19,-7.1640276239027814e19,-7.166622345968661e19,-7.16921706803454e19,-7.17181179010042e19,-7.1744065121663e19,-7.177001234232179e19,-7.179595956298059e19,-7.182190678363938e19,-7.184785400429818e19,-7.187380122495697e19,-7.189974844561577e19,-7.192569566627457e19,-7.195164288693336e19,-7.1977590107592155e19,-7.2003537328250946e19,-7.2029484548909744e19,-7.205543176956854e19,-7.208137899022733e19,-7.210732621088613e19,-7.213327343154492e19,-7.215922065220372e19,-7.218516787286251e19,-7.221111509352131e19,-7.223706231418011e19,-7.22630095348389e19,-7.22889567554977e19,-7.231490397615649e19,-7.234085119681529e19,-7.2366798417474085e19,-7.2392745638132875e19,-7.241869285879167e19,-7.2444640079450464e19,-7.247058730010926e19,-7.249653452076805e19,-7.252248174142685e19,-7.254842896208565e19,-7.257437618274444e19,-7.260032340340324e19,-7.262627062406203e19,-7.265221784472083e19,-7.267816506537962e19,-7.270411228603842e19,-7.273005950669722e19,-7.275600672735601e19,-7.2781953948014805e19,-7.2807901168673595e19,-7.283384838933239e19,-7.285979560999119e19,-7.288574283064998e19,-7.291169005130878e19,-7.293763727196757e19,-7.296358449262637e19,-7.298953171328516e19,-7.301547893394396e19,-7.304142615460276e19,-7.306737337526155e19,-7.309332059592035e19,-7.311926781657914e19,-7.314521503723794e19,-7.3171162257896735e19,-7.3197109478555525e19,-7.322305669921432e19,-7.3249003919873114e19,-7.327495114053191e19,-7.33008983611907e19,-7.33268455818495e19,-7.33527928025083e19,-7.337874002316709e19,-7.340468724382589e19,-7.343063446448468e19,-7.345658168514348e19,-7.348252890580228e19,-7.350847612646107e19,-7.3534423347119866e19,-7.356037056777866e19,-7.3586317788437455e19,-7.3612265009096245e19,-7.363821222975504e19,-7.366415945041384e19,-7.369010667107263e19,-7.371605389173143e19,-7.374200111239022e19,-7.376794833304902e19,-7.379389555370782e19,-7.381984277436662e19,-7.38457899950254e19,-7.38717372156842e19,-7.3897684436343e19,-7.39236316570018e19,-7.394957887766058e19,-7.397552609831938e19,-7.400147331897817e19,-7.402742053963697e19,-7.405336776029577e19,-7.407931498095455e19,-7.410526220161335e19,-7.413120942227215e19,-7.415715664293095e19,-7.418310386358975e19,-7.420905108424853e19,-7.423499830490733e19,-7.426094552556613e19,-7.428689274622493e19,-7.431283996688373e19,-7.43387871875425e19,-7.43647344082013e19,-7.43906816288601e19,-7.44166288495189e19,-7.44425760701777e19,-7.446852329083648e19,-7.449447051149528e19,-7.452041773215408e19,-7.454636495281288e19,-7.457231217347166e19,-7.459825939413046e19,-7.462420661478926e19,-7.465015383544806e19,-7.467610105610686e19,-7.470204827676564e19,-7.472799549742444e19,-7.475394271808324e19,-7.477988993874203e19,-7.480583715940083e19,-7.483178438005962e19,-7.485773160071841e19,-7.488367882137721e19,-7.490962604203601e19,-7.493557326269481e19,-7.49615204833536e19,-7.498746770401239e19,-7.501341492467119e19,-7.503936214532999e19,-7.506530936598877e19,-7.509125658664757e19,-7.511720380730637e19,-7.514315102796517e19,-7.516909824862396e19,-7.519504546928275e19,-7.522099268994154e19,-7.524693991060034e19,-7.527288713125914e19,-7.529883435191794e19,-7.532478157257672e19,-7.535072879323552e19,-7.537667601389432e19,-7.540262323455312e19,-7.542857045521192e19,-7.54545176758707e19,-7.54804648965295e19,-7.55064121171883e19,-7.55323593378471e19,-7.55583065585059e19,-7.558425377916468e19,-7.561020099982347e19,-7.563614822048227e19,-7.566209544114107e19,-7.568804266179985e19,-7.571398988245865e19,-7.573993710311745e19,-7.576588432377625e19,-7.579183154443505e19,-7.581777876509383e19,-7.584372598575263e19,-7.586967320641143e19,-7.589562042707023e19,-7.592156764772903e19,-7.59475148683878e19,-7.59734620890466e19,-7.59994093097054e19,-7.60253565303642e19,-7.6051303751023e19,-7.607725097168178e19,-7.610319819234058e19,-7.612914541299938e19,-7.615509263365818e19,-7.618103985431696e19,-7.620698707497576e19,-7.623293429563456e19,-7.625888151629336e19,-7.628482873695216e19,-7.631077595761094e19,-7.633672317826974e19,-7.636267039892854e19,-7.638861761958733e19,-7.641456484024613e19,-7.644051206090491e19,-7.646645928156371e19,-7.649240650222251e19,-7.651835372288131e19,-7.654430094354011e19,-7.657024816419889e19,-7.659619538485769e19,-7.662214260551649e19,-7.664808982617529e19,-7.667403704683409e19,-7.669998426749287e19,-7.672593148815167e19,-7.675187870881047e19,-7.677782592946926e19,-7.680377315012805e19,-7.682972037078684e19,-7.685566759144564e19,-7.688161481210444e19,-7.690756203276324e19,-7.693350925342202e19,-7.695945647408082e19,-7.698540369473962e19,-7.701135091539842e19,-7.703729813605722e19,-7.7063245356716e19,-7.70891925773748e19,-7.71151397980336e19,-7.71410870186924e19,-7.71670342393512e19,-7.719298146000998e19,-7.721892868066877e19,-7.724487590132757e19,-7.727082312198637e19,-7.729677034264515e19,-7.732271756330395e19,-7.734866478396275e19,-7.737461200462155e19,-7.740055922528035e19,-7.742650644593913e19,-7.745245366659793e19,-7.747840088725673e19,-7.750434810791553e19,-7.753029532857432e19,-7.75562425492331e19,-7.75821897698919e19,-7.76081369905507e19,-7.76340842112095e19,-7.76600314318683e19,-7.768597865252708e19,-7.771192587318588e19,-7.773787309384468e19,-7.776382031450348e19,-7.778976753516228e19,-7.781571475582106e19,-7.784166197647986e19,-7.786760919713866e19,-7.789355641779746e19,-7.791950363845624e19,-7.794545085911504e19,-7.797139807977384e19,-7.799734530043263e19,-7.802329252109143e19,-7.804923974175021e19,-7.807518696240901e19,-7.810113418306781e19,-7.812708140372661e19,-7.815302862438541e19,-7.817897584504419e19,-7.820492306570299e19,-7.823087028636179e19,-7.825681750702059e19,-7.828276472767939e19,-7.830871194833817e19,-7.833465916899697e19,-7.836060638965576e19,-7.838655361031456e19,-7.841250083097335e19,-7.843844805163214e19,-7.846439527229094e19,-7.849034249294974e19,-7.851628971360854e19,-7.854223693426732e19,-7.856818415492612e19,-7.859413137558492e19,-7.862007859624372e19,-7.864602581690252e19,-7.86719730375613e19,-7.86979202582201e19,-7.87238674788789e19,-7.87498146995377e19,-7.87757619201965e19,-7.880170914085528e19,-7.882765636151407e19,-7.885360358217287e19,-7.887955080283167e19,-7.890549802349047e19,-7.893144524414925e19,-7.895739246480805e19,-7.898333968546685e19,-7.900928690612565e19,-7.903523412678443e19,-7.906118134744323e19,-7.908712856810203e19,-7.911307578876083e19,-7.913902300941962e19,-7.91649702300784e19,-7.91909174507372e19,-7.9216864671396e19,-7.92428118920548e19,-7.92687591127136e19,-7.929470633337238e19,-7.932065355403118e19,-7.934660077468998e19,-7.937254799534878e19,-7.939849521600758e19,-7.942444243666636e19,-7.945038965732516e19,-7.947633687798396e19,-7.950228409864276e19,-7.952823131930154e19,-7.955417853996034e19,-7.958012576061913e19,-7.960607298127793e19,-7.963202020193673e19,-7.965796742259551e19,-7.968391464325431e19,-7.970986186391311e19,-7.973580908457191e19,-7.976175630523071e19,-7.978770352588949e19,-7.981365074654829e19,-7.983959796720709e19,-7.986554518786589e19,-7.989149240852469e19,-7.991743962918347e19,-7.994338684984227e19,-7.996933407050106e19,-7.999528129115986e19,-8.002122851181866e19,-8.004717573247744e19,-8.007312295313624e19,-8.009907017379504e19,-8.012501739445384e19,-8.015096461511262e19,-8.017691183577142e19,-8.020285905643022e19,-8.022880627708902e19,-8.025475349774782e19,-8.02807007184066e19,-8.03066479390654e19,-8.03325951597242e19,-8.0358542380383e19,-8.03844896010418e19,-8.041043682170058e19,-8.043638404235937e19,-8.046233126301817e19,-8.048827848367697e19,-8.051422570433577e19,-8.054017292499455e19,-8.056612014565335e19,-8.059206736631215e19,-8.061801458697095e19,-8.064396180762973e19,-8.066990902828853e19,-8.069585624894733e19,-8.072180346960613e19,-8.074775069026492e19,-8.07736979109237e19,-8.07996451315825e19,-8.08255923522413e19,-8.08515395729001e19,-8.08774867935589e19,-8.090343401421768e19,-8.092938123487648e19,-8.095532845553528e19,-8.098127567619408e19,-8.100722289685288e19,-8.103317011751166e19,-8.105911733817046e19,-8.108506455882926e19,-8.111101177948806e19,-8.113695900014685e19,-8.116290622080564e19,-8.118885344146443e19,-8.121480066212323e19,-8.124074788278203e19,-8.126669510344081e19,-8.129264232409961e19,-8.131858954475841e19,-8.134453676541721e19,-8.137048398607601e19,-8.139643120673479e19,-8.142237842739359e19,-8.144832564805239e19,-8.147427286871119e19,-8.150022008936999e19,-8.152616731002877e19,-8.155211453068757e19,-8.157806175134636e19,-8.160400897200516e19,-8.162995619266396e19,-8.165590341332274e19,-8.168185063398154e19,-8.170779785464034e19,-8.173374507529914e19,-8.175969229595792e19,-8.178563951661672e19,-8.181158673727552e19,-8.183753395793432e19,-8.186348117859312e19,-8.18894283992519e19,-8.19153756199107e19,-8.19413228405695e19,-8.19672700612283e19,-8.19932172818871e19,-8.201916450254587e19,-8.204511172320467e19,-8.207105894386347e19,-8.209700616452227e19,-8.212295338518107e19,-8.214890060583985e19,-8.217484782649865e19,-8.220079504715745e19,-8.222674226781625e19,-8.225268948847505e19,-8.227863670913383e19,-8.230458392979263e19,-8.233053115045143e19,-8.235647837111022e19,-8.2382425591769e19,-8.24083728124278e19,-8.24343200330866e19,-8.24602672537454e19,-8.24862144744042e19,-8.251216169506298e19,-8.253810891572178e19,-8.256405613638058e19,-8.259000335703938e19,-8.261595057769818e19,-8.264189779835696e19,-8.266784501901576e19,-8.269379223967456e19,-8.271973946033336e19,-8.274568668099215e19,-8.277163390165094e19,-8.279758112230973e19,-8.282352834296853e19,-8.284947556362733e19,-8.287542278428611e19,-8.290137000494491e19,-8.292731722560371e19,-8.295326444626251e19,-8.29792116669213e19,-8.300515888758009e19,-8.303110610823889e19,-8.305705332889769e19,-8.308300054955649e19,-8.310894777021528e19,-8.313489499087407e19,-8.316084221153287e19,-8.318678943219166e19,-8.321273665285046e19,-8.323868387350926e19,-8.326463109416804e19,-8.329057831482684e19,-8.331652553548564e19,-8.334247275614444e19,-8.336841997680324e19,-8.339436719746202e19,-8.342031441812082e19,-8.344626163877962e19,-8.347220885943842e19,-8.34981560800972e19,-8.3524103300756e19,-8.35500505214148e19,-8.35759977420736e19,-8.36019449627324e19,-8.362789218339117e19,-8.365383940404997e19,-8.367978662470877e19,-8.370573384536757e19,-8.373168106602637e19,-8.375762828668515e19,-8.378357550734395e19,-8.380952272800275e19,-8.383546994866155e19,-8.386141716932035e19,-8.388736438997913e19,-8.391331161063793e19,-8.393925883129672e19,-8.396520605195552e19,-8.39911532726143e19,-8.40171004932731e19,-8.40430477139319e19,-8.40689949345907e19,-8.40949421552495e19,-8.412088937590828e19,-8.414683659656708e19,-8.417278381722588e19,-8.419873103788468e19,-8.422467825854348e19,-8.425062547920226e19,-8.427657269986106e19,-8.430251992051986e19,-8.432846714117865e19,-8.435441436183745e19,-8.438036158249624e19,-8.440630880315503e19,-8.443225602381383e19,-8.445820324447263e19,-8.448415046513143e19,-8.451009768579021e19,-8.453604490644901e19,-8.456199212710781e19,-8.45879393477666e19,-8.461388656842539e19,-8.463983378908419e19,-8.466578100974299e19,-8.469172823040179e19,-8.471767545106058e19,-8.474362267171937e19,-8.476956989237817e19,-8.479551711303696e19,-8.482146433369576e19,-8.484741155435456e19,-8.487335877501334e19,-8.489930599567214e19,-8.492525321633094e19,-8.495120043698974e19,-8.497714765764854e19,-8.500309487830732e19,-8.502904209896612e19,-8.505498931962492e19,-8.508093654028372e19,-8.51068837609425e19,-8.51328309816013e19,-8.51587782022601e19,-8.51847254229189e19,-8.52106726435777e19,-8.523661986423647e19,-8.526256708489527e19,-8.528851430555407e19,-8.531446152621287e19,-8.534040874687167e19,-8.536635596753045e19,-8.539230318818925e19,-8.541825040884805e19,-8.544419762950685e19,-8.547014485016565e19,-8.549609207082443e19,-8.552203929148323e19,-8.554798651214202e19,-8.557393373280082e19,-8.559988095345962e19,-8.56258281741184e19,-8.56517753947772e19,-8.5677722615436e19,-8.57036698360948e19,-8.572961705675358e19,-8.575556427741238e19,-8.578151149807118e19,-8.580745871872998e19,-8.583340593938878e19,-8.585935316004756e19,-8.588530038070636e19,-8.591124760136516e19,-8.593719482202395e19,-8.596314204268275e19,-8.598908926334154e19,-8.601503648400033e19,-8.604098370465913e19,-8.606693092531793e19,-8.609287814597673e19,-8.611882536663551e19,-8.614477258729431e19,-8.617071980795311e19,-8.61966670286119e19,-8.622261424927069e19,-8.624856146992949e19,-8.627450869058829e19,-8.630045591124709e19,-8.632640313190588e19,-8.635235035256467e19,-8.637829757322346e19,-8.640424479388226e19,-8.643019201454106e19,-8.645613923519986e19,-8.648208645585864e19,-8.650803367651744e19,-8.653398089717624e19,-8.655992811783504e19,-8.658587533849384e19,-8.661182255915262e19,-8.663776977981142e19,-8.666371700047022e19,-8.668966422112902e19,-8.671561144178781e19,-8.67415586624466e19,-8.67675058831054e19,-8.67934531037642e19,-8.6819400324423e19,-8.684534754508177e19,-8.687129476574057e19,-8.689724198639937e19,-8.692318920705817e19,-8.694913642771697e19,-8.697508364837575e19,-8.700103086903455e19,-8.702697808969335e19,-8.705292531035215e19,-8.707887253101095e19,-8.710481975166973e19,-8.713076697232853e19,-8.715671419298732e19,-8.718266141364612e19,-8.720860863430492e19,-8.72345558549637e19,-8.72605030756225e19,-8.72864502962813e19,-8.73123975169401e19,-8.733834473759888e19,-8.736429195825768e19,-8.739023917891648e19,-8.741618639957528e19,-8.744213362023408e19,-8.746808084089286e19,-8.749402806155166e19,-8.751997528221046e19,-8.754592250286925e19,-8.757186972352805e19,-8.759781694418683e19,-8.762376416484563e19,-8.764971138550443e19,-8.767565860616323e19,-8.770160582682203e19,-8.772755304748081e19,-8.775350026813961e19,-8.777944748879841e19,-8.78053947094572e19,-8.7831341930116e19,-8.785728915077479e19,-8.788323637143359e19,-8.790918359209239e19,-8.793513081275118e19,-8.796107803340997e19,-8.798702525406876e19,-8.801297247472756e19,-8.803891969538636e19,-8.806486691604516e19,-8.809081413670394e19,-8.811676135736274e19,-8.814270857802154e19,-8.816865579868034e19,-8.819460301933914e19,-8.822055023999792e19,-8.824649746065672e19,-8.827244468131552e19,-8.829839190197432e19,-8.832433912263311e19,-8.83502863432919e19,-8.83762335639507e19,-8.84021807846095e19,-8.842812800526829e19,-8.845407522592707e19,-8.848002244658587e19,-8.850596966724467e19,-8.853191688790347e19,-8.855786410856227e19,-8.858381132922105e19,-8.860975854987985e19,-8.863570577053865e19,-8.866165299119745e19,-8.868760021185624e19,-8.871354743251503e19,-8.873949465317383e19,-8.876544187383262e19,-8.879138909449142e19,-8.881733631515022e19,-8.8843283535809e19,-8.88692307564678e19,-8.88951779771266e19,-8.89211251977854e19,-8.89470724184442e19,-8.897301963910298e19,-8.899896685976178e19,-8.902491408042058e19,-8.905086130107938e19,-8.907680852173816e19,-8.910275574239696e19,-8.912870296305576e19,-8.915465018371455e19,-8.918059740437335e19,-8.920654462503213e19,-8.923249184569093e19,-8.925843906634973e19,-8.928438628700853e19,-8.931033350766733e19,-8.933628072832611e19,-8.936222794898491e19,-8.938817516964371e19,-8.94141223903025e19,-8.94400696109613e19,-8.946601683162009e19,-8.949196405227889e19,-8.951791127293768e19,-8.954385849359648e19,-8.956980571425527e19,-8.959575293491406e19,-8.962170015557286e19,-8.964764737623166e19,-8.967359459689046e19,-8.969954181754924e19,-8.972548903820804e19,-8.975143625886684e19,-8.977738347952564e19,-8.980333070018444e19,-8.982927792084322e19,-8.985522514150202e19,-8.988117236216082e19,-8.990711958281961e19,-8.993306680347841e19,-8.99590140241372e19,-8.9984961244796e19,-9.00109084654548e19,-9.003685568611359e19,-9.006280290677239e19,-9.008875012743117e19,-9.011469734808997e19,-9.014064456874877e19,-9.016659178940757e19,-9.019253901006635e19,-9.021848623072515e19,-9.024443345138395e19,-9.027038067204275e19,-9.029632789270154e19,-9.032227511336033e19,-9.034822233401913e19,-9.037416955467792e19,-9.040011677533672e19,-9.042606399599552e19,-9.04520112166543e19,-9.04779584373131e19,-9.05039056579719e19,-9.05298528786307e19,-9.05558000992895e19,-9.058174731994828e19,-9.060769454060708e19,-9.063364176126588e19,-9.065958898192468e19,-9.068553620258346e19,-9.071148342324226e19,-9.073743064390105e19,-9.076337786455985e19,-9.078932508521865e19,-9.081527230587743e19,-9.084121952653623e19,-9.086716674719503e19,-9.089311396785383e19,-9.091906118851263e19,-9.094500840917141e19,-9.097095562983021e19,-9.0996902850489e19,-9.10228500711478e19,-9.10487972918066e19,-9.107474451246539e19,-9.110069173312419e19,-9.112663895378298e19,-9.115258617444178e19,-9.117853339510058e19,-9.120448061575936e19,-9.123042783641816e19,-9.125637505707696e19,-9.128232227773576e19,-9.130826949839454e19,-9.133421671905334e19,-9.136016393971214e19,-9.138611116037094e19,-9.141205838102974e19,-9.143800560168852e19,-9.146395282234732e19,-9.148990004300612e19,-9.151584726366491e19,-9.154179448432371e19,-9.15677417049825e19,-9.15936889256413e19,-9.16196361463001e19,-9.164558336695889e19,-9.167153058761769e19,-9.169747780827647e19,-9.172342502893527e19,-9.174937224959407e19,-9.177531947025287e19,-9.180126669091165e19,-9.182721391157045e19,-9.185316113222925e19,-9.187910835288805e19,-9.190505557354684e19,-9.193100279420563e19,-9.195695001486442e19,-9.198289723552322e19,-9.200884445618202e19,-9.203479167684082e19,-9.20607388974996e19,-9.20866861181584e19,-9.21126333388172e19,-9.2138580559476e19,-9.21645277801348e19,-9.219047500079358e19,-9.221642222145238e19,-9.224236944211118e19,-9.226831666276998e19,-9.229426388342877e19,-9.232021110408756e19,-9.234615832474635e19,-9.237210554540515e19,-9.239805276606395e19,-9.242399998672273e19,-9.244994720738153e19,-9.247589442804033e19,-9.250184164869913e19,-9.252778886935793e19,-9.255373609001671e19,-9.257968331067551e19,-9.26056305313343e19,-9.26315777519931e19,-9.26575249726519e19,-9.268347219331069e19,-9.270941941396949e19,-9.273536663462828e19,-9.276131385528708e19,-9.278726107594588e19,-9.281320829660466e19,-9.283915551726346e19,-9.286510273792226e19,-9.289104995858106e19,-9.291699717923984e19,-9.294294439989864e19,-9.296889162055744e19,-9.299483884121624e19,-9.302078606187504e19,-9.304673328253382e19,-9.307268050319262e19,-9.309862772385142e19,-9.312457494451021e19,-9.315052216516901e19,-9.31764693858278e19,-9.32024166064866e19,-9.32283638271454e19,-9.325431104780419e19,-9.328025826846299e19,-9.330620548912177e19,-9.333215270978057e19,-9.335809993043937e19,-9.338404715109817e19,-9.340999437175697e19,-9.343594159241575e19,-9.346188881307455e19,-9.348783603373335e19,-9.351378325439214e19,-9.353973047505093e19,-9.356567769570972e19,-9.359162491636852e19,-9.361757213702732e19,-9.364351935768612e19,-9.36694665783449e19,-9.36954137990037e19,-9.37213610196625e19,-9.37473082403213e19,-9.37732554609801e19,-9.379920268163888e19,-9.382514990229768e19,-9.385109712295648e19,-9.387704434361528e19,-9.390299156427407e19,-9.392893878493286e19,-9.395488600559165e19,-9.398083322625045e19,-9.400678044690925e19,-9.403272766756803e19,-9.405867488822683e19,-9.408462210888563e19,-9.411056932954443e19,-9.413651655020323e19,-9.416246377086201e19,-9.418841099152081e19,-9.42143582121796e19,-9.42403054328384e19,-9.42662526534972e19,-9.429219987415599e19,-9.431814709481479e19,-9.434409431547358e19,-9.437004153613238e19,-9.439598875679118e19,-9.442193597744996e19,-9.444788319810876e19,-9.447383041876756e19,-9.449977763942636e19,-9.452572486008516e19,-9.455167208074394e19,-9.457761930140274e19,-9.460356652206154e19,-9.462951374272034e19,-9.465546096337912e19,-9.468140818403792e19,-9.470735540469672e19,-9.473330262535551e19,-9.475924984601431e19,-9.47851970666731e19,-9.48111442873319e19,-9.48370915079907e19,-9.486303872864949e19,-9.488898594930829e19,-9.491493316996707e19,-9.494088039062587e19,-9.496682761128467e19,-9.499277483194347e19,-9.501872205260227e19,-9.504466927326105e19,-9.507061649391985e19,-9.509656371457864e19,-9.512251093523744e19,-9.514845815589623e19,-9.517440537655502e19,-9.520035259721382e19,-9.522629981787262e19,-9.525224703853142e19,-9.52781942591902e19,-9.5304141479849e19,-9.53300887005078e19,-9.53560359211666e19,-9.53819831418254e19,-9.540793036248418e19,-9.543387758314298e19,-9.545982480380178e19,-9.548577202446057e19,-9.551171924511937e19,-9.553766646577816e19,-9.556361368643695e19,-9.558956090709575e19,-9.561550812775455e19,-9.564145534841335e19,-9.566740256907213e19,-9.569334978973093e19,-9.571929701038973e19,-9.574524423104853e19,-9.577119145170731e19,-9.579713867236611e19,-9.58230858930249e19,-9.58490331136837e19,-9.58749803343425e19,-9.590092755500129e19,-9.592687477566009e19,-9.595282199631888e19,-9.597876921697768e19,-9.600471643763648e19,-9.603066365829526e19,-9.605661087895406e19,-9.608255809961286e19,-9.610850532027166e19,-9.613445254093046e19,-9.616039976158924e19,-9.618634698224804e19,-9.621229420290684e19,-9.623824142356564e19,-9.626418864422442e19,-9.629013586488322e19,-9.631608308554201e19,-9.634203030620081e19,-9.636797752685961e19,-9.63939247475184e19,-9.64198719681772e19,-9.644581918883599e19,-9.647176640949479e19,-9.649771363015359e19,-9.652366085081237e19,-9.654960807147117e19,-9.657555529212997e19,-9.660150251278877e19,-9.662744973344757e19,-9.665339695410635e19,-9.667934417476515e19,-9.670529139542394e19,-9.673123861608274e19,-9.675718583674154e19,-9.678313305740032e19,-9.680908027805912e19,-9.683502749871792e19,-9.686097471937672e19,-9.68869219400355e19,-9.69128691606943e19,-9.69388163813531e19,-9.69647636020119e19,-9.69907108226707e19,-9.701665804332948e19,-9.704260526398828e19,-9.706855248464708e19,-9.709449970530587e19,-9.712044692596467e19,-9.714639414662346e19,-9.717234136728225e19,-9.719828858794105e19,-9.722423580859985e19,-9.725018302925865e19,-9.727613024991743e19,-9.730207747057623e19,-9.732802469123503e19,-9.735397191189383e19,-9.737991913255261e19,-9.740586635321141e19,-9.74318135738702e19,-9.7457760794529e19,-9.74837080151878e19,-9.750965523584659e19,-9.753560245650538e19,-9.756154967716418e19,-9.758749689782298e19,-9.761344411848178e19,-9.763939133914056e19,-9.766533855979936e19,-9.769128578045816e19,-9.771723300111696e19,-9.774318022177576e19,-9.776912744243454e19,-9.779507466309334e19,-9.782102188375214e19,-9.784696910441094e19,-9.787291632506973e19,-9.789886354572852e19,-9.792481076638731e19,-9.795075798704611e19,-9.797670520770491e19,-9.80026524283637e19,-9.80285996490225e19,-9.805454686968129e19,-9.808049409034009e19,-9.810644131099889e19,-9.813238853165767e19,-9.815833575231647e19,-9.818428297297527e19,-9.821023019363407e19,-9.823617741429287e19,-9.826212463495165e19,-9.828807185561045e19,-9.831401907626924e19,-9.833996629692804e19,-9.836591351758684e19,-9.839186073824562e19,-9.841780795890442e19,-9.844375517956322e19,-9.846970240022202e19,-9.84956496208808e19,-9.85215968415396e19,-9.85475440621984e19,-9.85734912828572e19,-9.8599438503516e19,-9.862538572417478e19,-9.865133294483358e19,-9.867728016549238e19,-9.870322738615117e19,-9.872917460680997e19,-9.875512182746875e19,-9.878106904812755e19,-9.880701626878635e19,-9.883296348944515e19,-9.885891071010395e19,-9.888485793076273e19,-9.891080515142153e19,-9.893675237208033e19,-9.896269959273913e19,-9.898864681339793e19,-9.90145940340567e19,-9.90405412547155e19,-9.90664884753743e19,-9.90924356960331e19,-9.911838291669189e19,-9.914433013735068e19,-9.917027735800948e19,-9.919622457866828e19,-9.922217179932708e19,-9.924811901998586e19,-9.927406624064466e19,-9.930001346130346e19,-9.932596068196226e19,-9.935190790262106e19,-9.937785512327984e19,-9.940380234393864e19,-9.942974956459744e19,-9.945569678525624e19,-9.948164400591503e19,-9.950759122657382e19,-9.953353844723261e19,-9.955948566789141e19,-9.958543288855021e19,-9.9611380109209e19,-9.96373273298678e19,-9.966327455052659e19,-9.968922177118539e19,-9.971516899184419e19,-9.974111621250297e19,-9.976706343316177e19,-9.979301065382057e19,-9.981895787447937e19,-9.984490509513816e19,-9.987085231579695e19,-9.989679953645575e19,-9.992274675711454e19,-9.994869397777334e19,-9.997464119843214e19,-1.0000058841909092e20,-1.0002653563974972e20,-1.0005248286040852e20,-1.0007843008106732e20,-1.0010437730172612e20,-1.001303245223849e20,-1.001562717430437e20,-1.001822189637025e20,-1.002081661843613e20,-1.0023411340502008e20,-1.0026006062567888e20,-1.0028600784633768e20,-1.0031195506699647e20,-1.0033790228765527e20,-1.0036384950831405e20,-1.0038979672897285e20,-1.0041574394963165e20,-1.0044169117029045e20,-1.0046763839094925e20,-1.0049358561160803e20,-1.0051953283226683e20,-1.0054548005292563e20,-1.0057142727358443e20,-1.0059737449424323e20,-1.00623321714902e20,-1.006492689355608e20,-1.006752161562196e20,-1.007011633768784e20,-1.0072711059753719e20,-1.0075305781819598e20,-1.0077900503885478e20,-1.0080495225951358e20,-1.0083089948017238e20,-1.0085684670083116e20,-1.0088279392148996e20,-1.0090874114214876e20,-1.0093468836280756e20,-1.0096063558346636e20,-1.0098658280412514e20,-1.0101253002478394e20,-1.0103847724544274e20,-1.0106442446610153e20,-1.0109037168676033e20,-1.0111631890741912e20,-1.0114226612807791e20,-1.0116821334873671e20,-1.0119416056939551e20,-1.0122010779005431e20,-1.012460550107131e20,-1.0127200223137189e20,-1.0129794945203069e20,-1.0132389667268949e20,-1.0134984389334827e20,-1.0137579111400707e20,-1.0140173833466587e20,-1.0142768555532467e20,-1.0145363277598346e20,-1.0147957999664225e20,-1.0150552721730105e20,-1.0153147443795984e20,-1.0155742165861864e20,-1.0158336887927744e20,-1.0160931609993622e20,-1.0163526332059502e20,-1.0166121054125382e20,-1.0168715776191262e20,-1.0171310498257142e20,-1.017390522032302e20,-1.01764999423889e20,-1.017909466445478e20,-1.018168938652066e20,-1.0184284108586538e20,-1.0186878830652418e20,-1.0189473552718297e20,-1.0192068274784177e20,-1.0194662996850057e20,-1.0197257718915935e20,-1.0199852440981815e20,-1.0202447163047695e20,-1.0205041885113575e20,-1.0207636607179455e20,-1.0210231329245333e20,-1.0212826051311213e20,-1.0215420773377093e20,-1.0218015495442973e20,-1.0220610217508853e20,-1.022320493957473e20,-1.022579966164061e20,-1.022839438370649e20,-1.023098910577237e20,-1.023358382783825e20,-1.0236178549904128e20,-1.0238773271970008e20,-1.0241367994035888e20,-1.0243962716101768e20,-1.0246557438167646e20,-1.0249152160233526e20,-1.0251746882299406e20,-1.0254341604365286e20,-1.0256936326431166e20,-1.0259531048497044e20,-1.0262125770562924e20,-1.0264720492628804e20,-1.0267315214694683e20,-1.0269909936760563e20,-1.0272504658826442e20,-1.0275099380892321e20,-1.0277694102958201e20,-1.0280288825024081e20,-1.0282883547089961e20,-1.028547826915584e20,-1.0288072991221719e20,-1.0290667713287599e20,-1.0293262435353479e20,-1.0295857157419357e20,-1.0298451879485237e20,-1.0301046601551117e20,-1.0303641323616997e20,-1.0306236045682876e20,-1.0308830767748755e20,-1.0311425489814634e20,-1.0314020211880514e20,-1.0316614933946394e20,-1.0319209656012274e20,-1.0321804378078152e20,-1.0324399100144032e20,-1.0326993822209912e20,-1.0329588544275792e20,-1.0332183266341672e20,-1.033477798840755e20,-1.033737271047343e20,-1.033996743253931e20,-1.034256215460519e20,-1.034515687667107e20,-1.0347751598736948e20,-1.0350346320802827e20,-1.0352941042868707e20,-1.0355535764934587e20,-1.0358130487000465e20,-1.0360725209066345e20,-1.0363319931132225e20,-1.0365914653198105e20,-1.0368509375263985e20,-1.0371104097329863e20,-1.0373698819395743e20,-1.0376293541461623e20],"cosine":[1.0,-0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.24192189559966773,-0.6156614753256583,0.9612616959383189,-0.10452846326765347,-0.882947592858927,0.766044443118978,-0.24192189559966773,-0.8090169943749475,0.848048096156426,-0.374606593415912,-0.9781476007338057,0.9135454576426009,0.5591929034707468,-0.9396926207859084,0.17364817766693036,0.4383711467890774,-0.882947592858927,0.30901699437494745,0.30901699437494745,-0.882947592858927,0.4383711467890774,0.17364817766693036,-0.7193398003386511,-0.5,0.9135454576426009,-0.9781476007338057,0.6691306063588582,-0.10452846326765347,-0.374606593415912,-0.24192189559966773,0.766044443118978,-0.9975640502598242,-0.9396926207859084,0.9612616959383189,-0.6156614753256583,0.03489949670250097,0.5591929034707468,0.30901699437494745,-0.8090169943749475,1.0,-0.8090169943749475,0.30901699437494745,0.5591929034707468,-0.8090169943749475,-0.6156614753256583,-0.374606593415912,-0.9396926207859084,-0.9975640502598242,0.03489949670250097,-0.24192189559966773,-0.5,0.848048096156426,0.6691306063588582,0.766044443118978,0.9135454576426009,0.9902680687415704,-0.10452846326765347,0.17364817766693036,-0.9781476007338057,-0.882947592858927,-0.7193398003386511,-0.7193398003386511,-0.882947592858927,-0.9781476007338057,0.17364817766693036,-0.10452846326765347,0.9902680687415704,0.9135454576426009,0.766044443118978,0.6691306063588582,0.848048096156426,-0.5,-0.24192189559966773,0.03489949670250097,-0.9975640502598242,-0.9396926207859084,-0.374606593415912,-0.6156614753256583,-0.8090169943749475,0.5591929034707468,0.30901699437494745,0.9612616959383189,1.0,0.9612616959383189,0.30901699437494745,0.5591929034707468,-0.8090169943749475,0.9135454576426009,-0.374606593415912,-0.9396926207859084,0.30901699437494745,-0.9781476007338057,-0.24192189559966773,0.9612616959383189,-0.7193398003386511,0.6691306063588582,0.766044443118978,0.17364817766693036,0.9902680687415704,-0.10452846326765347,-0.9975640502598242,0.4383711467890774,-0.882947592858927,-0.5,-0.5,-0.882947592858927,0.4383711467890774,-0.9975640502598242,-0.10452846326765347,0.9902680687415704,0.17364817766693036,0.766044443118978,0.6691306063588582,-0.7193398003386511,0.9612616959383189,-0.24192189559966773,-0.9781476007338057,0.30901699437494745,-0.9396926207859084,-0.374606593415912,0.9135454576426009,-0.8090169943749475,0.5591929034707468,0.848048096156426,0.03489949670250097,1.0,0.03489949670250097,0.848048096156426,0.5591929034707468,-0.8090169943749475,0.9135454576426009,-0.374606593415912,-0.9396926207859084,0.30901699437494745,-0.9781476007338057,-0.24192189559966773,0.9612616959383189,-0.7193398003386511,0.6691306063588582,0.766044443118978,0.17364817766693036,0.9902680687415704,-0.10452846326765347,-0.9975640502598242,0.4383711467890774,-0.882947592858927,-0.5,-0.5,-0.882947592858927,0.4383711467890774,-0.9975640502598242,-0.10452846326765347,0.9902680687415704,0.17364817766693036,0.766044443118978,0.6691306063588582,-0.7193398003386511,0.9612616959383189,-0.24192189559966773,-0.9781476007338057,0.30901699437494745,-0.9396926207859084,-0.374606593415912,0.9135454576426009,-0.8090169943749475,0.5591929034707468,0.848048096156426,0.03489949670250097,1.0,0.03489949670250097,0.848048096156426,0.5591929034707468,-0.8090169943749475,0.9135454576426009,-0.374606593415912,0.9902680687415704,0.30901699437494745,-0.9781476007338057,0.6691306063588582,0.9612616959383189,-0.7193398003386511,-0.9396926207859084,0.766044443118978,0.17364817766693036,-0.8090169943749475,-0.10452846326765347,0.9135454576426009,0.03489949670250097,-0.882947592858927,0.848048096156426,0.848048096156426,-0.882947592858927,0.03489949670250097,0.9135454576426009,-0.10452846326765347,-0.8090169943749475,0.17364817766693036,0.766044443118978,-0.9396926207859084,-0.7193398003386511,0.9612616959383189,0.6691306063588582,-0.9781476007338057,0.30901699437494745,0.9902680687415704,-0.374606593415912,-0.6156614753256583,0.4383711467890774,0.5591929034707468,-0.9975640502598242,-0.5,1.0,-0.5,-0.9975640502598242,0.5591929034707468,0.4383711467890774,-0.6156614753256583,-0.374606593415912,0.9902680687415704,0.30901699437494745,-0.9781476007338057,0.6691306063588582,0.9612616959383189,-0.7193398003386511,-0.9396926207859084,0.766044443118978,0.17364817766693036,-0.8090169943749475,-0.10452846326765347,0.9135454576426009,0.03489949670250097,-0.882947592858927,0.848048096156426,0.848048096156426,-0.882947592858927,0.03489949670250097,0.9135454576426009,-0.10452846326765347,-0.8090169943749475,0.17364817766693036,0.766044443118978,-0.9396926207859084,-0.7193398003386511,0.9612616959383189,0.6691306063588582,-0.9781476007338057,0.30901699437494745,0.9902680687415704,-0.374606593415912,-0.6156614753256583,0.4383711467890774,0.5591929034707468,-0.9975640502598242,-0.5,1.0,-0.5,-0.9975640502598242,0.5591929034707468,0.4383711467890774,-0.6156614753256583,-0.374606593415912,0.9902680687415704,0.30901699437494745,-0.9781476007338057,0.6691306063588582,0.9612616959383189,-0.7193398003386511,-0.9396926207859084,0.766044443118978,0.17364817766693036,-0.8090169943749475,-0.10452846326765347,0.9135454576426009,0.03489949670250097,-0.882947592858927,0.848048096156426,0.848048096156426,-0.882947592858927,0.03489949670250097,0.9135454576426009,-0.10452846326765347,-0.8090169943749475,0.17364817766693036,0.766044443118978,-0.9396926207859084,-0.7193398003386511,0.9612616959383189,0.6691306063588582,-0.9781476007338057,0.30901699437494745,0.9902680687415704,-0.374606593415912,-0.6156614753256583,0.4383711467890774,0.5591929034707468,-0.9975640502598242,-0.5,1.0,-0.5,-0.9975640502598242,0.5591929034707468,0.4383711467890774,-0.6156614753256583,-0.374606593415912,0.9902680687415704,0.30901699437494745,-0.9781476007338057,0.6691306063588582,0.9612616959383189,-0.7193398003386511,-0.9396926207859084,0.766044443118978,0.17364817766693036,-0.8090169943749475,-0.10452846326765347,0.9135454576426009,0.03489949670250097,-0.882947592858927,0.848048096156426,0.848048096156426,-0.882947592858927,0.03489949670250097,0.9135454576426009,-0.10452846326765347,-0.8090169943749475,0.17364817766693036,0.766044443118978,-0.9396926207859084,-0.7193398003386511,0.9612616959383189,0.6691306063588582,-0.9781476007338057,0.30901699437494745,0.9902680687415704,-0.374606593415912,-0.6156614753256583,0.4383711467890774,0.5591929034707468,-0.9975640502598242,-0.5,1.0,-0.5,-0.9975640502598242,0.5591929034707468,0.4383711467890774,-0.6156614753256583,-0.374606593415912,0.9902680687415704,0.30901699437494745,-0.9781476007338057,0.6691306063588582,0.9612616959383189,-0.7193398003386511,-0.9396926207859084,0.9612616959383189,0.17364817766693036,-0.8090169943749475,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.10452846326765347,0.848048096156426,0.848048096156426,-0.10452846326765347,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.8090169943749475,0.17364817766693036,0.9612616959383189,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,-0.9781476007338057,-0.6156614753256583,0.6691306063588582,-0.374606593415912,-0.9975640502598242,0.9902680687415704,0.5591929034707468,-0.5,0.4383711467890774,1.0,0.4383711467890774,-0.5,0.5591929034707468,0.9902680687415704,-0.9975640502598242,-0.374606593415912,0.6691306063588582,-0.6156614753256583,-0.9781476007338057,-0.24192189559966773,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,0.9612616959383189,0.17364817766693036,-0.8090169943749475,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.10452846326765347,0.848048096156426,0.848048096156426,-0.10452846326765347,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.8090169943749475,0.17364817766693036,0.9612616959383189,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,-0.9781476007338057,-0.6156614753256583,0.6691306063588582,-0.374606593415912,-0.9975640502598242,0.9902680687415704,0.5591929034707468,-0.5,0.4383711467890774,1.0,0.4383711467890774,-0.5,0.5591929034707468,0.9902680687415704,-0.9975640502598242,-0.374606593415912,0.6691306063588582,-0.6156614753256583,-0.9781476007338057,-0.24192189559966773,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,0.9612616959383189,0.17364817766693036,-0.8090169943749475,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.10452846326765347,0.848048096156426,0.848048096156426,-0.10452846326765347,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.8090169943749475,0.17364817766693036,0.9612616959383189,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,-0.9781476007338057,-0.6156614753256583,0.6691306063588582,-0.374606593415912,-0.9975640502598242,0.9902680687415704,0.5591929034707468,-0.5,0.4383711467890774,1.0,0.4383711467890774,-0.5,0.5591929034707468,0.9902680687415704,-0.9975640502598242,-0.374606593415912,0.6691306063588582,-0.6156614753256583,-0.9781476007338057,-0.24192189559966773,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,0.9612616959383189,0.17364817766693036,-0.8090169943749475,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.10452846326765347,0.848048096156426,0.848048096156426,-0.10452846326765347,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.8090169943749475,0.17364817766693036,0.9612616959383189,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,-0.9781476007338057,-0.6156614753256583,0.6691306063588582,-0.374606593415912,-0.9975640502598242,0.9902680687415704,0.5591929034707468,-0.5,0.4383711467890774,1.0,0.4383711467890774,-0.5,0.5591929034707468,0.9902680687415704,-0.9975640502598242,-0.374606593415912,0.6691306063588582,-0.6156614753256583,-0.9781476007338057,-0.24192189559966773,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,0.9612616959383189,0.17364817766693036,-0.8090169943749475,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.10452846326765347,0.848048096156426,0.848048096156426,-0.10452846326765347,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.8090169943749475,0.17364817766693036,0.9612616959383189,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,-0.9781476007338057,-0.6156614753256583,0.6691306063588582,-0.374606593415912,-0.9975640502598242,0.9902680687415704,0.5591929034707468,-0.5,0.4383711467890774,1.0,0.4383711467890774,-0.5,0.5591929034707468,0.9902680687415704,-0.9975640502598242,-0.374606593415912,0.6691306063588582,-0.6156614753256583,-0.9781476007338057,-0.24192189559966773,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,0.9612616959383189,0.17364817766693036,-0.8090169943749475,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.10452846326765347,0.848048096156426,0.848048096156426,-0.10452846326765347,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.8090169943749475,0.17364817766693036,0.9612616959383189,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,-0.9781476007338057,-0.6156614753256583,0.6691306063588582,-0.374606593415912,-0.9975640502598242,0.9902680687415704,0.5591929034707468,-0.5,0.4383711467890774,1.0,0.4383711467890774,-0.5,0.5591929034707468,0.9902680687415704,-0.9975640502598242,-0.374606593415912,0.6691306063588582,-0.6156614753256583,-0.9781476007338057,-0.24192189559966773,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,0.9612616959383189,0.17364817766693036,-0.8090169943749475,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.10452846326765347,0.848048096156426,0.848048096156426,-0.10452846326765347,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.8090169943749475,0.17364817766693036,0.9612616959383189,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,-0.9781476007338057,-0.6156614753256583,0.6691306063588582,-0.374606593415912,-0.9975640502598242,0.9902680687415704,0.5591929034707468,-0.5,0.4383711467890774,1.0,0.4383711467890774,-0.5,0.5591929034707468,0.9902680687415704,-0.9975640502598242,-0.374606593415912,0.6691306063588582,-0.6156614753256583,-0.9781476007338057,-0.24192189559966773,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,0.9612616959383189,0.17364817766693036,-0.8090169943749475,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.10452846326765347,0.848048096156426,0.848048096156426,-0.10452846326765347,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.8090169943749475,0.17364817766693036,0.9612616959383189,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,-0.9781476007338057,-0.6156614753256583,0.6691306063588582,-0.374606593415912,-0.9975640502598242,0.9902680687415704,0.5591929034707468,-0.5,0.4383711467890774,1.0,0.4383711467890774,-0.5,0.5591929034707468,0.9902680687415704,-0.9975640502598242,-0.374606593415912,0.6691306063588582,-0.6156614753256583,-0.9781476007338057,-0.24192189559966773,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,0.9612616959383189,0.17364817766693036,-0.8090169943749475,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.10452846326765347,0.848048096156426,0.848048096156426,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0]}
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/large_positive.json
new file mode 100644
index 000000000000..4c2506e8e704
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/large_positive.json
@@ -0,0 +1 @@
+{"sine":[0.0,-0.898794046299167,0.788010753606722,0.13917310096006544,-0.9702957262759965,0.788010753606722,0.27563735581699916,-0.9945218953682733,0.46947156278589075,0.6427876096865394,-0.9702957262759965,0.5877852522924731,0.5299192642332049,-0.9271838545667874,0.20791169081775934,0.4067366430758002,-0.8290375725550417,0.3420201433256687,0.984807753012208,-0.898794046299167,0.46947156278589075,0.9510565162951535,-0.9510565162951535,-0.46947156278589075,0.898794046299167,-0.984807753012208,0.6946583704589973,0.8660254037844386,-0.4067366430758002,-0.20791169081775934,0.7431448254773942,-0.9945218953682733,-0.9271838545667874,0.9702957262759965,-0.6427876096865394,0.0697564737441253,0.3420201433256687,0.27563735581699916,-0.788010753606722,0.9993908270190958,-0.8290375725550417,-0.9510565162951535,0.5877852522924731,0.0,-0.5877852522924731,0.9510565162951535,0.8290375725550417,0.5877852522924731,0.788010753606722,0.9271838545667874,-0.3420201433256687,-0.0697564737441253,-0.9993908270190958,-0.9702957262759965,-0.8660254037844386,-0.5299192642332049,-0.7431448254773942,0.6427876096865394,0.4067366430758002,0.13917310096006544,0.9945218953682733,0.984807753012208,0.20791169081775934,0.46947156278589075,0.6946583704589973,-0.6946583704589973,-0.46947156278589075,-0.20791169081775934,-0.984807753012208,-0.9945218953682733,-0.13917310096006544,-0.4067366430758002,-0.6427876096865394,0.7431448254773942,0.5299192642332049,0.8660254037844386,0.9702957262759965,0.9993908270190958,0.0697564737441253,0.3420201433256687,-0.9271838545667874,-0.788010753606722,-0.5877852522924731,-0.8290375725550417,-0.9510565162951535,0.27563735581699916,0.0,-0.27563735581699916,0.9510565162951535,0.8290375725550417,0.5877852522924731,0.4067366430758002,0.9271838545667874,-0.3420201433256687,-0.9510565162951535,0.20791169081775934,-0.9702957262759965,-0.27563735581699916,-0.6946583704589973,-0.7431448254773942,0.6427876096865394,-0.984807753012208,0.13917310096006544,0.9945218953682733,-0.0697564737441253,0.898794046299167,0.46947156278589075,-0.8660254037844386,0.8660254037844386,-0.46947156278589075,-0.898794046299167,0.0697564737441253,-0.9945218953682733,-0.13917310096006544,0.984807753012208,-0.6427876096865394,0.7431448254773942,0.6946583704589973,0.27563735581699916,0.9702957262759965,-0.20791169081775934,0.9510565162951535,0.3420201433256687,-0.9271838545667874,-0.4067366430758002,-0.5877852522924731,-0.8290375725550417,0.5299192642332049,-0.9993908270190958,0.0,0.9993908270190958,-0.5299192642332049,0.8290375725550417,0.5877852522924731,0.4067366430758002,0.9271838545667874,-0.3420201433256687,-0.9510565162951535,0.20791169081775934,-0.9702957262759965,-0.27563735581699916,-0.6946583704589973,-0.7431448254773942,0.6427876096865394,-0.984807753012208,0.13917310096006544,0.9945218953682733,-0.0697564737441253,0.898794046299167,0.46947156278589075,-0.8660254037844386,0.8660254037844386,-0.46947156278589075,-0.898794046299167,0.0697564737441253,-0.9945218953682733,-0.13917310096006544,0.984807753012208,-0.6427876096865394,0.7431448254773942,0.6946583704589973,0.27563735581699916,0.9702957262759965,-0.20791169081775934,0.9510565162951535,0.3420201433256687,-0.9271838545667874,-0.4067366430758002,-0.5877852522924731,-0.8290375725550417,0.5299192642332049,-0.9993908270190958,0.0,0.9993908270190958,-0.5299192642332049,0.8290375725550417,0.5877852522924731,0.4067366430758002,0.9271838545667874,-0.13917310096006544,-0.9510565162951535,0.20791169081775934,0.7431448254773942,-0.27563735581699916,-0.6946583704589973,0.3420201433256687,0.6427876096865394,-0.984807753012208,-0.5877852522924731,0.9945218953682733,-0.4067366430758002,-0.9993908270190958,0.46947156278589075,0.5299192642332049,-0.5299192642332049,-0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.9945218953682733,0.5877852522924731,0.984807753012208,-0.6427876096865394,-0.3420201433256687,0.6946583704589973,0.27563735581699916,-0.7431448254773942,-0.20791169081775934,0.9510565162951535,0.13917310096006544,-0.9271838545667874,0.788010753606722,0.898794046299167,-0.8290375725550417,-0.0697564737441253,0.8660254037844386,0.0,-0.8660254037844386,0.0697564737441253,0.8290375725550417,-0.898794046299167,-0.788010753606722,0.9271838545667874,-0.13917310096006544,-0.9510565162951535,0.20791169081775934,0.7431448254773942,-0.27563735581699916,-0.6946583704589973,0.3420201433256687,0.6427876096865394,-0.984807753012208,-0.5877852522924731,0.9945218953682733,-0.4067366430758002,-0.9993908270190958,0.46947156278589075,0.5299192642332049,-0.5299192642332049,-0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.9945218953682733,0.5877852522924731,0.984807753012208,-0.6427876096865394,-0.3420201433256687,0.6946583704589973,0.27563735581699916,-0.7431448254773942,-0.20791169081775934,0.9510565162951535,0.13917310096006544,-0.9271838545667874,0.788010753606722,0.898794046299167,-0.8290375725550417,-0.0697564737441253,0.8660254037844386,0.0,-0.8660254037844386,0.0697564737441253,0.8290375725550417,-0.898794046299167,-0.788010753606722,0.9271838545667874,-0.13917310096006544,-0.9510565162951535,0.20791169081775934,0.7431448254773942,-0.27563735581699916,-0.6946583704589973,0.3420201433256687,0.6427876096865394,-0.984807753012208,-0.5877852522924731,0.9945218953682733,-0.4067366430758002,-0.9993908270190958,0.46947156278589075,0.5299192642332049,-0.5299192642332049,-0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.9945218953682733,0.5877852522924731,0.984807753012208,-0.6427876096865394,-0.3420201433256687,0.6946583704589973,0.27563735581699916,-0.7431448254773942,-0.20791169081775934,0.9510565162951535,0.13917310096006544,-0.9271838545667874,0.788010753606722,0.898794046299167,-0.8290375725550417,-0.0697564737441253,0.8660254037844386,0.0,-0.8660254037844386,0.0697564737441253,0.8290375725550417,-0.898794046299167,-0.788010753606722,0.9271838545667874,-0.13917310096006544,-0.9510565162951535,0.20791169081775934,0.7431448254773942,-0.27563735581699916,-0.6946583704589973,0.3420201433256687,0.6427876096865394,-0.984807753012208,-0.5877852522924731,0.9945218953682733,-0.4067366430758002,-0.9993908270190958,0.46947156278589075,0.5299192642332049,-0.5299192642332049,-0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.9945218953682733,0.5877852522924731,0.984807753012208,-0.6427876096865394,-0.3420201433256687,0.6946583704589973,0.27563735581699916,-0.7431448254773942,-0.20791169081775934,0.9510565162951535,0.13917310096006544,-0.9271838545667874,0.788010753606722,0.898794046299167,-0.8290375725550417,-0.0697564737441253,0.8660254037844386,0.0,-0.8660254037844386,0.0697564737441253,0.8290375725550417,-0.898794046299167,-0.788010753606722,0.9271838545667874,-0.13917310096006544,-0.9510565162951535,0.20791169081775934,0.7431448254773942,-0.27563735581699916,-0.6946583704589973,0.3420201433256687,-0.27563735581699916,-0.984807753012208,-0.5877852522924731,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,0.9945218953682733,0.5299192642332049,-0.5299192642332049,-0.9945218953682733,0.9993908270190958,0.4067366430758002,-0.6427876096865394,0.5877852522924731,0.984807753012208,0.27563735581699916,-0.3420201433256687,0.6946583704589973,0.9510565162951535,-0.9702957262759965,-0.20791169081775934,0.788010753606722,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.13917310096006544,-0.8290375725550417,-0.8660254037844386,0.898794046299167,0.0,-0.898794046299167,0.8660254037844386,0.8290375725550417,-0.13917310096006544,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.788010753606722,0.20791169081775934,0.9702957262759965,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,-0.27563735581699916,-0.984807753012208,-0.5877852522924731,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,0.9945218953682733,0.5299192642332049,-0.5299192642332049,-0.9945218953682733,0.9993908270190958,0.4067366430758002,-0.6427876096865394,0.5877852522924731,0.984807753012208,0.27563735581699916,-0.3420201433256687,0.6946583704589973,0.9510565162951535,-0.9702957262759965,-0.20791169081775934,0.788010753606722,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.13917310096006544,-0.8290375725550417,-0.8660254037844386,0.898794046299167,0.0,-0.898794046299167,0.8660254037844386,0.8290375725550417,-0.13917310096006544,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.788010753606722,0.20791169081775934,0.9702957262759965,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,-0.27563735581699916,-0.984807753012208,-0.5877852522924731,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,0.9945218953682733,0.5299192642332049,-0.5299192642332049,-0.9945218953682733,0.9993908270190958,0.4067366430758002,-0.6427876096865394,0.5877852522924731,0.984807753012208,0.27563735581699916,-0.3420201433256687,0.6946583704589973,0.9510565162951535,-0.9702957262759965,-0.20791169081775934,0.788010753606722,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.13917310096006544,-0.8290375725550417,-0.8660254037844386,0.898794046299167,0.0,-0.898794046299167,0.8660254037844386,0.8290375725550417,-0.13917310096006544,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.788010753606722,0.20791169081775934,0.9702957262759965,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,-0.27563735581699916,-0.984807753012208,-0.5877852522924731,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,0.9945218953682733,0.5299192642332049,-0.5299192642332049,-0.9945218953682733,0.9993908270190958,0.4067366430758002,-0.6427876096865394,0.5877852522924731,0.984807753012208,0.27563735581699916,-0.3420201433256687,0.6946583704589973,0.9510565162951535,-0.9702957262759965,-0.20791169081775934,0.788010753606722,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.13917310096006544,-0.8290375725550417,-0.8660254037844386,0.898794046299167,0.0,-0.898794046299167,0.8660254037844386,0.8290375725550417,-0.13917310096006544,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.788010753606722,0.20791169081775934,0.9702957262759965,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,-0.27563735581699916,-0.984807753012208,-0.5877852522924731,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,0.9945218953682733,0.5299192642332049,-0.5299192642332049,-0.9945218953682733,0.9993908270190958,0.4067366430758002,-0.6427876096865394,0.5877852522924731,0.984807753012208,0.27563735581699916,-0.3420201433256687,0.6946583704589973,0.9510565162951535,-0.9702957262759965,-0.20791169081775934,0.788010753606722,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.13917310096006544,-0.8290375725550417,-0.8660254037844386,0.898794046299167,0.0,-0.898794046299167,0.8660254037844386,0.8290375725550417,-0.13917310096006544,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.788010753606722,0.20791169081775934,0.9702957262759965,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,-0.27563735581699916,-0.984807753012208,-0.5877852522924731,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,0.9945218953682733,0.5299192642332049,-0.5299192642332049,-0.9945218953682733,0.9993908270190958,0.4067366430758002,-0.6427876096865394,0.5877852522924731,0.984807753012208,0.27563735581699916,-0.3420201433256687,0.6946583704589973,0.9510565162951535,-0.9702957262759965,-0.20791169081775934,0.788010753606722,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.13917310096006544,-0.8290375725550417,-0.8660254037844386,0.898794046299167,0.0,-0.898794046299167,0.8660254037844386,0.8290375725550417,-0.13917310096006544,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.788010753606722,0.20791169081775934,0.9702957262759965,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,-0.27563735581699916,-0.984807753012208,-0.5877852522924731,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,0.9945218953682733,0.5299192642332049,-0.5299192642332049,-0.9945218953682733,0.9993908270190958,0.4067366430758002,-0.6427876096865394,0.5877852522924731,0.984807753012208,0.27563735581699916,-0.3420201433256687,0.6946583704589973,0.9510565162951535,-0.9702957262759965,-0.20791169081775934,0.788010753606722,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.13917310096006544,-0.8290375725550417,-0.8660254037844386,0.898794046299167,0.0,-0.898794046299167,0.8660254037844386,0.8290375725550417,-0.13917310096006544,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.788010753606722,0.20791169081775934,0.9702957262759965,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,-0.27563735581699916,-0.984807753012208,-0.5877852522924731,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,0.9945218953682733,0.5299192642332049,-0.5299192642332049,-0.9945218953682733,0.9993908270190958,0.4067366430758002,-0.6427876096865394,0.5877852522924731,0.984807753012208,0.27563735581699916,-0.3420201433256687,0.6946583704589973,0.9510565162951535,-0.9702957262759965,-0.20791169081775934,0.788010753606722,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.13917310096006544,-0.8290375725550417,-0.8660254037844386,0.898794046299167,0.0,-0.898794046299167,0.8660254037844386,0.8290375725550417,-0.13917310096006544,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.788010753606722,0.20791169081775934,0.9702957262759965,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,-0.27563735581699916,-0.984807753012208,-0.5877852522924731,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,0.9945218953682733,0.5299192642332049,-0.5299192642332049,0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.6427876096865394,-0.9702957262759965,-0.5299192642332049,-0.9945218953682733,-0.3420201433256687,0.6946583704589973,0.9510565162951535,0.13917310096006544,0.984807753012208,0.27563735581699916,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.8660254037844386,-0.20791169081775934,0.788010753606722,0.898794046299167,0.0,-0.898794046299167,-0.788010753606722,0.20791169081775934,-0.8660254037844386,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.27563735581699916,-0.984807753012208,-0.13917310096006544,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,0.9945218953682733,0.5299192642332049,0.9702957262759965,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,-0.46947156278589075,0.5877852522924731,-0.5877852522924731,0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.6427876096865394,-0.9702957262759965,-0.5299192642332049,-0.9945218953682733,-0.3420201433256687,0.6946583704589973,0.9510565162951535,0.13917310096006544,0.984807753012208,0.27563735581699916,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.8660254037844386,-0.20791169081775934,0.788010753606722,0.898794046299167,0.0,-0.898794046299167,-0.788010753606722,0.20791169081775934,-0.8660254037844386,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.27563735581699916,-0.984807753012208,-0.13917310096006544,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,0.9945218953682733,0.5299192642332049,0.9702957262759965,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,-0.46947156278589075,0.5877852522924731,-0.5877852522924731,0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.6427876096865394,-0.9702957262759965,-0.5299192642332049,-0.9945218953682733,-0.3420201433256687,0.6946583704589973,0.9510565162951535,0.13917310096006544,0.984807753012208,0.27563735581699916,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.8660254037844386,-0.20791169081775934,0.788010753606722,0.898794046299167,0.0,-0.898794046299167,-0.788010753606722,0.20791169081775934,-0.8660254037844386,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.27563735581699916,-0.984807753012208,-0.13917310096006544,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,0.9945218953682733,0.5299192642332049,0.9702957262759965,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,-0.46947156278589075,0.5877852522924731,-0.5877852522924731,0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.6427876096865394,-0.9702957262759965,-0.5299192642332049,-0.9945218953682733,-0.3420201433256687,0.6946583704589973,0.9510565162951535,0.13917310096006544,0.984807753012208,0.27563735581699916,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.8660254037844386,-0.20791169081775934,0.788010753606722,0.898794046299167,0.0,-0.898794046299167,-0.788010753606722,0.20791169081775934,-0.8660254037844386,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.27563735581699916,-0.984807753012208,-0.13917310096006544,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,0.9945218953682733,0.5299192642332049,0.9702957262759965,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,-0.46947156278589075,0.5877852522924731,-0.5877852522924731,0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.6427876096865394,-0.9702957262759965,-0.5299192642332049,-0.9945218953682733,-0.3420201433256687,0.6946583704589973,0.9510565162951535,0.13917310096006544,0.984807753012208,0.27563735581699916,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.8660254037844386,-0.20791169081775934,0.788010753606722,0.898794046299167,0.0,-0.898794046299167,-0.788010753606722,0.20791169081775934,-0.8660254037844386,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.27563735581699916,-0.984807753012208,-0.13917310096006544,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,0.9945218953682733,0.5299192642332049,0.9702957262759965,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,-0.46947156278589075,0.5877852522924731,-0.5877852522924731,0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.6427876096865394,-0.9702957262759965,-0.5299192642332049,-0.9945218953682733,-0.3420201433256687,0.6946583704589973,0.9510565162951535,0.13917310096006544,0.984807753012208,0.27563735581699916,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.8660254037844386,-0.20791169081775934,0.788010753606722,0.898794046299167,0.0,-0.898794046299167,-0.788010753606722,0.20791169081775934,-0.8660254037844386,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.27563735581699916,-0.984807753012208,-0.13917310096006544,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,0.9945218953682733,0.5299192642332049,0.9702957262759965,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,-0.46947156278589075,0.5877852522924731,-0.5877852522924731,0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.6427876096865394,-0.9702957262759965,-0.5299192642332049,-0.9945218953682733,-0.3420201433256687,0.6946583704589973,0.9510565162951535,0.13917310096006544,0.984807753012208,0.27563735581699916,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.8660254037844386,-0.20791169081775934,0.788010753606722,0.898794046299167,0.0,-0.898794046299167,-0.788010753606722,0.20791169081775934,-0.8660254037844386,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.27563735581699916,-0.984807753012208,-0.13917310096006544,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,0.9945218953682733,0.5299192642332049,0.9702957262759965,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,-0.46947156278589075,0.5877852522924731,-0.5877852522924731,0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.6427876096865394,-0.9702957262759965,-0.5299192642332049,-0.9945218953682733,-0.3420201433256687,0.6946583704589973,0.9510565162951535,0.13917310096006544,0.984807753012208,0.27563735581699916,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.8660254037844386,-0.20791169081775934,0.788010753606722,0.898794046299167,0.0,-0.898794046299167,-0.788010753606722,0.20791169081775934,-0.8660254037844386,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.27563735581699916,-0.984807753012208,-0.13917310096006544,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,0.9945218953682733,0.5299192642332049,0.9702957262759965,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,-0.46947156278589075,0.5877852522924731,-0.5877852522924731,0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.6427876096865394,-0.9702957262759965,-0.5299192642332049,-0.9945218953682733,-0.3420201433256687,0.6946583704589973,0.9510565162951535,0.13917310096006544,0.984807753012208,0.27563735581699916,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.8660254037844386,-0.20791169081775934,0.788010753606722,0.898794046299167,0.0,-0.898794046299167,-0.788010753606722,0.20791169081775934,-0.8660254037844386,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.27563735581699916,-0.984807753012208,-0.13917310096006544,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,0.9945218953682733,0.5299192642332049,0.9702957262759965,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,-0.46947156278589075,0.5877852522924731,-0.5877852522924731,0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.6427876096865394,-0.9702957262759965,-0.5299192642332049,-0.9945218953682733,-0.3420201433256687,0.6946583704589973,0.9510565162951535,0.13917310096006544,0.984807753012208,0.27563735581699916,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.8660254037844386,-0.20791169081775934,0.788010753606722,0.898794046299167,0.0,-0.898794046299167,-0.788010753606722,0.20791169081775934,-0.8660254037844386,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.27563735581699916,-0.984807753012208,-0.13917310096006544,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,0.9945218953682733,0.5299192642332049,0.9702957262759965,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,-0.46947156278589075,0.5877852522924731,-0.5877852522924731,0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.6427876096865394,-0.9702957262759965,-0.5299192642332049,-0.9945218953682733,-0.3420201433256687,0.6946583704589973,0.9510565162951535,0.13917310096006544,0.984807753012208,0.27563735581699916,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.8660254037844386,-0.20791169081775934,0.788010753606722,0.898794046299167,0.0,-0.898794046299167,-0.788010753606722,0.20791169081775934,-0.8660254037844386,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.27563735581699916,-0.984807753012208,-0.13917310096006544,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,0.9945218953682733,0.5299192642332049,0.9702957262759965,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,-0.46947156278589075,0.5877852522924731,-0.5877852522924731,0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.6427876096865394,-0.9702957262759965,-0.5299192642332049,-0.9945218953682733,-0.3420201433256687,0.6946583704589973,0.9510565162951535,0.13917310096006544,0.984807753012208,0.27563735581699916,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.8660254037844386,-0.20791169081775934,0.788010753606722,0.898794046299167,0.0,-0.898794046299167,-0.788010753606722,0.20791169081775934,-0.8660254037844386,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.27563735581699916,-0.984807753012208,-0.13917310096006544,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,0.9945218953682733,0.5299192642332049,0.9702957262759965,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,-0.46947156278589075,0.5877852522924731,-0.5877852522924731,0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.6427876096865394,-0.9702957262759965,-0.5299192642332049,-0.9945218953682733,-0.3420201433256687,0.6946583704589973,0.9510565162951535,0.13917310096006544,0.984807753012208,0.27563735581699916,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.8660254037844386,-0.20791169081775934,0.788010753606722,0.898794046299167,0.0,-0.898794046299167,-0.788010753606722,0.20791169081775934,-0.8660254037844386,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.27563735581699916,-0.984807753012208,-0.13917310096006544,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,0.9945218953682733,0.5299192642332049,0.9702957262759965,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,-0.46947156278589075,0.5877852522924731,-0.5877852522924731,0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.6427876096865394,-0.9702957262759965,-0.5299192642332049,-0.9945218953682733,-0.3420201433256687,0.6946583704589973,0.9510565162951535,0.13917310096006544,0.984807753012208,0.27563735581699916,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.8660254037844386,-0.20791169081775934,0.788010753606722,0.898794046299167,0.0,-0.898794046299167,-0.788010753606722,0.20791169081775934,-0.8660254037844386,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.27563735581699916,-0.984807753012208,-0.13917310096006544,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,0.9945218953682733,0.5299192642332049,0.9702957262759965,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,-0.46947156278589075,0.5877852522924731,-0.5877852522924731,0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.6427876096865394,-0.9702957262759965,-0.5299192642332049,-0.9945218953682733,-0.3420201433256687,0.6946583704589973,0.9510565162951535,0.13917310096006544,0.984807753012208,0.27563735581699916,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.8660254037844386,-0.20791169081775934,0.788010753606722,0.898794046299167,0.0,-0.898794046299167,-0.788010753606722,0.20791169081775934,-0.8660254037844386,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.27563735581699916,-0.984807753012208,-0.13917310096006544,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,0.9945218953682733,0.5299192642332049,0.9702957262759965,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,-0.46947156278589075,0.5877852522924731,-0.5877852522924731,0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.6427876096865394,-0.9702957262759965,-0.5299192642332049,-0.9945218953682733,-0.3420201433256687,0.6946583704589973,0.9510565162951535,0.13917310096006544,0.984807753012208,0.27563735581699916,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.8660254037844386,-0.20791169081775934,0.788010753606722,0.898794046299167,0.0,-0.898794046299167,-0.788010753606722,0.20791169081775934,-0.8660254037844386,0.0697564737441253,0.9271838545667874,0.7431448254773942,-0.27563735581699916,-0.984807753012208,-0.13917310096006544,-0.9510565162951535,-0.6946583704589973,0.3420201433256687,0.9945218953682733,0.5299192642332049,0.9702957262759965,0.6427876096865394,-0.4067366430758002,-0.9993908270190958,-0.46947156278589075,0.5877852522924731,-0.5877852522924731,0.46947156278589075,0.9993908270190958,0.4067366430758002,-0.6427876096865394,-0.9702957262759965,-0.5299192642332049,-0.9945218953682733,-0.3420201433256687,0.6946583704589973,0.9510565162951535,0.13917310096006544,0.984807753012208,0.27563735581699916,-0.7431448254773942,-0.9271838545667874,-0.0697564737441253,0.8660254037844386,-0.20791169081775934,0.788010753606722,0.898794046299167,0.0,-0.898794046299167,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.4067366430758002,0.7431448254773942,0.8660254037844386,-0.984807753012208,-0.13917310096006544,0.46947156278589075,-0.6946583704589973,-0.898794046299167,0.9945218953682733,0.20791169081775934,-0.5299192642332049,0.6427876096865394,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.5877852522924731,-0.5877852522924731,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.6427876096865394,0.5299192642332049,-0.20791169081775934,-0.9945218953682733,0.898794046299167,0.6946583704589973,-0.46947156278589075,0.13917310096006544,0.984807753012208,-0.8660254037844386,-0.7431448254773942,0.4067366430758002,-0.0697564737441253,-0.9702957262759965,0.8290375725550417,0.788010753606722,-0.9510565162951535,0.0,0.9510565162951535,-0.788010753606722,-0.8290375725550417,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0,0.9510565162951535,0.5877852522924731,0.5299192642332049,0.9702957262759965,0.0697564737441253,-0.9271838545667874,-0.6427876096865394,-0.46947156278589075,-0.984807753012208,-0.13917310096006544,0.898794046299167,-0.7431448254773942,0.4067366430758002,0.9945218953682733,0.20791169081775934,-0.8660254037844386,0.788010753606722,-0.3420201433256687,-0.9993908270190958,-0.27563735581699916,0.8290375725550417,-0.8290375725550417,0.27563735581699916,0.9993908270190958,0.3420201433256687,-0.788010753606722,0.8660254037844386,-0.20791169081775934,-0.9945218953682733,-0.4067366430758002,0.7431448254773942,-0.898794046299167,0.13917310096006544,0.984807753012208,0.46947156278589075,0.6427876096865394,0.9271838545667874,-0.0697564737441253,-0.9702957262759965,-0.5299192642332049,-0.5877852522924731,-0.9510565162951535,0.0],"x":[9.437184e7,2.5947220753167004e16,5.189444141196217e16,7.784166207075733e16,1.037888827295525e17,1.2973610338834765e17,1.5568332404714282e17,1.81630544705938e17,2.0757776536473315e17,2.3352498602352832e17,2.5947220668232346e17,2.8541942734111862e17,3.113666479999138e17,3.373138686587089e17,3.632610893175041e17,3.8920830997629926e17,4.1515553063509446e17,4.411027512938896e17,4.670499719526848e17,4.9299719261147994e17,5.189444132702751e17,5.448916339290703e17,5.708388545878654e17,5.967860752466606e17,6.227332959054557e17,6.486805165642509e17,6.74627737223046e17,7.005749578818413e17,7.265221785406364e17,7.524693991994316e17,7.784166198582267e17,8.043638405170218e17,8.303110611758171e17,8.562582818346122e17,8.822055024934074e17,9.081527231522025e17,9.340999438109978e17,9.600471644697929e17,9.85994385128588e17,1.0119416057873832e18,1.0378888264461783e18,1.0638360471049736e18,1.0897832677637687e18,1.1157304884225638e18,1.141677709081359e18,1.167624929740154e18,1.1935721503989494e18,1.2195193710577444e18,1.2454665917165396e18,1.271413812375335e18,1.29736103303413e18,1.3233082536929252e18,1.3492554743517202e18,1.3752026950105155e18,1.4011499156693107e18,1.4270971363281057e18,1.453044356986901e18,1.478991577645696e18,1.5049387983044913e18,1.5308860189632865e18,1.5568332396220815e18,1.5827804602808768e18,1.6087276809396718e18,1.634674901598467e18,1.6606221222572623e18,1.6865693429160573e18,1.7125165635748526e18,1.7384637842336479e18,1.764411004892443e18,1.7903582255512381e18,1.8163054462100332e18,1.8422526668688284e18,1.8681998875276237e18,1.8941471081864187e18,1.920094328845214e18,1.946041549504009e18,1.9719887701628042e18,1.9979359908215995e18,2.0238832114803945e18,2.0498304321391898e18,2.0757776527979848e18,2.10172487345678e18,2.1276720941155753e18,2.1536193147743703e18,2.1795665354331656e18,2.2055137560919606e18,2.2314609767507558e18,2.257408197409551e18,2.283355418068346e18,2.3093026387271414e18,2.3352498593859364e18,2.361197080044732e18,2.387144300703527e18,2.413091521362322e18,2.439038742021117e18,2.4649859626799124e18,2.4909331833387075e18,2.5168804039975025e18,2.542827624656298e18,2.568774845315093e18,2.594722065973888e18,2.6206692866326835e18,2.6466165072914785e18,2.6725637279502735e18,2.6985109486090685e18,2.724458169267864e18,2.750405389926659e18,2.776352610585454e18,2.8022998312442496e18,2.8282470519030446e18,2.8541942725618396e18,2.880141493220635e18,2.90608871387943e18,2.932035934538225e18,2.95798315519702e18,2.9839303758558157e18,3.0098775965146107e18,3.0358248171734057e18,3.061772037832201e18,3.087719258490996e18,3.113666479149791e18,3.139613699808587e18,3.165560920467382e18,3.191508141126177e18,3.217455361784972e18,3.2434025824437673e18,3.2693498031025623e18,3.2952970237613573e18,3.321244244420153e18,3.347191465078948e18,3.373138685737743e18,3.3990859063965384e18,3.4250331270553334e18,3.4509803477141284e18,3.476927568372924e18,3.502874789031719e18,3.528822009690514e18,3.554769230349309e18,3.5807164510081044e18,3.6066636716668995e18,3.6326108923256945e18,3.65855811298449e18,3.684505333643285e18,3.71045255430208e18,3.7363997749608755e18,3.7623469956196705e18,3.7882942162784655e18,3.8142414369372605e18,3.840188657596056e18,3.866135878254851e18,3.892083098913646e18,3.9180303195724416e18,3.9439775402312366e18,3.9699247608900316e18,3.995871981548827e18,4.021819202207622e18,4.047766422866417e18,4.073713643525212e18,4.0996608641840077e18,4.1256080848428027e18,4.1515553055015977e18,4.177502526160393e18,4.203449746819188e18,4.229396967477983e18,4.255344188136779e18,4.281291408795574e18,4.307238629454369e18,4.333185850113164e18,4.3591330707719593e18,4.3850802914307543e18,4.4110275120895493e18,4.436974732748345e18,4.46292195340714e18,4.488869174065935e18,4.5148163947247304e18,4.5407636153835254e18,4.5667108360423204e18,4.592658056701116e18,4.618605277359911e18,4.644552498018706e18,4.670499718677501e18,4.696446939336296e18,4.722394159995092e18,4.748341380653886e18,4.774288601312682e18,4.800235821971476e18,4.826183042630272e18,4.852130263289068e18,4.878077483947862e18,4.904024704606658e18,4.929971925265453e18,4.955919145924248e18,4.981866366583043e18,5.007813587241839e18,5.033760807900633e18,5.059708028559429e18,5.085655249218224e18,5.111602469877019e18,5.137549690535814e18,5.16349691119461e18,5.189444131853404e18,5.2153913525122e18,5.241338573170995e18,5.26728579382979e18,5.293233014488585e18,5.31918023514738e18,5.345127455806175e18,5.371074676464971e18,5.397021897123765e18,5.422969117782561e18,5.448916338441356e18,5.474863559100151e18,5.500810779758946e18,5.526758000417742e18,5.552705221076536e18,5.578652441735332e18,5.604599662394127e18,5.630546883052922e18,5.656494103711717e18,5.682441324370513e18,5.708388545029307e18,5.734335765688103e18,5.760282986346898e18,5.786230207005693e18,5.812177427664488e18,5.838124648323284e18,5.864071868982078e18,5.890019089640874e18,5.915966310299668e18,5.941913530958464e18,5.96786075161726e18,5.993807972276054e18,6.01975519293485e18,6.045702413593645e18,6.07164963425244e18,6.097596854911235e18,6.123544075570031e18,6.149491296228825e18,6.175438516887621e18,6.201385737546416e18,6.227332958205211e18,6.253280178864006e18,6.279227399522802e18,6.305174620181596e18,6.331121840840392e18,6.357069061499187e18,6.383016282157982e18,6.408963502816777e18,6.434910723475572e18,6.460857944134367e18,6.486805164793163e18,6.512752385451957e18,6.538699606110753e18,6.564646826769548e18,6.590594047428343e18,6.616541268087138e18,6.642488488745934e18,6.668435709404728e18,6.694382930063524e18,6.720330150722319e18,6.746277371381114e18,6.772224592039909e18,6.798171812698705e18,6.824119033357499e18,6.850066254016295e18,6.87601347467509e18,6.901960695333885e18,6.92790791599268e18,6.953855136651476e18,6.97980235731027e18,7.005749577969066e18,7.03169679862786e18,7.057644019286656e18,7.083591239945452e18,7.109538460604246e18,7.135485681263042e18,7.161432901921837e18,7.187380122580632e18,7.213327343239427e18,7.239274563898223e18,7.265221784557017e18,7.291169005215813e18,7.317116225874608e18,7.343063446533403e18,7.369010667192198e18,7.394957887850994e18,7.420905108509788e18,7.446852329168584e18,7.472799549827379e18,7.498746770486174e18,7.524693991144969e18,7.550641211803764e18,7.576588432462559e18,7.602535653121355e18,7.628482873780149e18,7.654430094438945e18,7.68037731509774e18,7.706324535756535e18,7.73227175641533e18,7.758218977074126e18,7.78416619773292e18,7.810113418391716e18,7.836060639050511e18,7.862007859709306e18,7.887955080368101e18,7.913902301026897e18,7.939849521685691e18,7.965796742344487e18,7.991743963003282e18,8.017691183662077e18,8.043638404320872e18,8.069585624979668e18,8.095532845638462e18,8.121480066297258e18,8.147427286956052e18,8.173374507614848e18,8.199321728273644e18,8.225268948932438e18,8.251216169591234e18,8.277163390250029e18,8.303110610908824e18,8.329057831567619e18,8.355005052226415e18,8.380952272885209e18,8.406899493544005e18,8.4328467142028e18,8.458793934861595e18,8.48474115552039e18,8.510688376179186e18,8.53663559683798e18,8.562582817496776e18,8.588530038155571e18,8.614477258814366e18,8.640424479473161e18,8.666371700131956e18,8.692318920790751e18,8.718266141449547e18,8.744213362108341e18,8.770160582767137e18,8.796107803425932e18,8.822055024084727e18,8.848002244743522e18,8.873949465402318e18,8.899896686061112e18,8.925843906719908e18,8.951791127378703e18,8.977738348037498e18,9.003685568696293e18,9.029632789355089e18,9.055580010013883e18,9.081527230672679e18,9.107474451331474e18,9.133421671990269e18,9.159368892649064e18,9.18531611330786e18,9.211263333966654e18,9.23721055462545e18,9.263157775284244e18,9.289104995943041e18,9.315052216601836e18,9.34099943726063e18,9.366946657919427e18,9.392893878578221e18,9.418841099237016e18,9.444788319895812e18,9.470735540554607e18,9.496682761213401e18,9.522629981872196e18,9.548577202530992e18,9.574524423189787e18,9.600471643848581e18,9.626418864507378e18,9.652366085166172e18,9.678313305824967e18,9.704260526483763e18,9.730207747142558e18,9.756154967801352e18,9.782102188460149e18,9.808049409118943e18,9.833996629777738e18,9.859943850436534e18,9.885891071095329e18,9.911838291754123e18,9.93778551241292e18,9.963732733071714e18,9.989679953730509e18,1.0015627174389305e19,1.00415743950481e19,1.0067521615706894e19,1.009346883636569e19,1.0119416057024485e19,1.014536327768328e19,1.0171310498342076e19,1.019725771900087e19,1.0223204939659665e19,1.0249152160318462e19,1.0275099380977256e19,1.030104660163605e19,1.0326993822294847e19,1.0352941042953642e19,1.0378888263612436e19,1.0404835484271233e19,1.0430782704930028e19,1.0456729925588822e19,1.0482677146247619e19,1.0508624366906413e19,1.0534571587565208e19,1.0560518808224004e19,1.0586466028882799e19,1.0612413249541593e19,1.0638360470200388e19,1.0664307690859184e19,1.0690254911517979e19,1.0716202132176773e19,1.074214935283557e19,1.0768096573494364e19,1.0794043794153159e19,1.0819991014811955e19,1.084593823547075e19,1.0871885456129544e19,1.089783267678834e19,1.0923779897447135e19,1.094972711810593e19,1.0975674338764726e19,1.100162155942352e19,1.1027568780082315e19,1.1053516000741112e19,1.1079463221399906e19,1.11054104420587e19,1.1131357662717497e19,1.1157304883376292e19,1.1183252104035086e19,1.1209199324693883e19,1.1235146545352677e19,1.1261093766011472e19,1.1287040986670268e19,1.1312988207329063e19,1.1338935427987857e19,1.1364882648646654e19,1.1390829869305448e19,1.1416777089964243e19,1.144272431062304e19,1.1468671531281834e19,1.1494618751940628e19,1.1520565972599425e19,1.154651319325822e19,1.1572460413917014e19,1.159840763457581e19,1.1624354855234605e19,1.16503020758934e19,1.1676249296552196e19,1.170219651721099e19,1.1728143737869785e19,1.175409095852858e19,1.1780038179187376e19,1.180598539984617e19,1.1831932620504965e19,1.1857879841163762e19,1.1883827061822556e19,1.190977428248135e19,1.1935721503140147e19,1.1961668723798942e19,1.1987615944457736e19,1.2013563165116533e19,1.2039510385775327e19,1.2065457606434122e19,1.2091404827092918e19,1.2117352047751713e19,1.2143299268410507e19,1.2169246489069304e19,1.2195193709728098e19,1.2221140930386893e19,1.224708815104569e19,1.2273035371704484e19,1.2298982592363278e19,1.2324929813022075e19,1.235087703368087e19,1.2376824254339664e19,1.240277147499846e19,1.2428718695657255e19,1.245466591631605e19,1.2480613136974846e19,1.250656035763364e19,1.2532507578292435e19,1.2558454798951231e19,1.2584402019610026e19,1.261034924026882e19,1.2636296460927617e19,1.2662243681586412e19,1.2688190902245206e19,1.2714138122904003e19,1.2740085343562797e19,1.2766032564221592e19,1.2791979784880388e19,1.2817927005539183e19,1.2843874226197977e19,1.2869821446856772e19,1.2895768667515568e19,1.2921715888174363e19,1.2947663108833157e19,1.2973610329491954e19,1.2999557550150748e19,1.3025504770809543e19,1.305145199146834e19,1.3077399212127134e19,1.3103346432785928e19,1.3129293653444725e19,1.315524087410352e19,1.3181188094762314e19,1.320713531542111e19,1.3233082536079905e19,1.32590297567387e19,1.3284976977397496e19,1.331092419805629e19,1.3336871418715085e19,1.3362818639373881e19,1.3388765860032676e19,1.341471308069147e19,1.3440660301350267e19,1.3466607522009061e19,1.3492554742667856e19,1.3518501963326652e19,1.3544449183985447e19,1.3570396404644241e19,1.3596343625303038e19,1.3622290845961832e19,1.3648238066620627e19,1.3674185287279423e19,1.3700132507938218e19,1.3726079728597012e19,1.375202694925581e19,1.3777974169914604e19,1.3803921390573398e19,1.3829868611232195e19,1.385581583189099e19,1.3881763052549784e19,1.390771027320858e19,1.3933657493867375e19,1.395960471452617e19,1.3985551935184964e19,1.401149915584376e19,1.4037446376502555e19,1.406339359716135e19,1.4089340817820146e19,1.411528803847894e19,1.4141235259137735e19,1.4167182479796531e19,1.4193129700455326e19,1.421907692111412e19,1.4245024141772917e19,1.4270971362431711e19,1.4296918583090506e19,1.4322865803749302e19,1.4348813024408097e19,1.4374760245066891e19,1.4400707465725688e19,1.4426654686384482e19,1.4452601907043277e19,1.4478549127702073e19,1.4504496348360868e19,1.4530443569019662e19,1.4556390789678459e19,1.4582338010337253e19,1.4608285230996048e19,1.4634232451654844e19,1.4660179672313639e19,1.4686126892972433e19,1.471207411363123e19,1.4738021334290024e19,1.4763968554948819e19,1.4789915775607615e19,1.481586299626641e19,1.4841810216925204e19,1.4867757437584001e19,1.4893704658242796e19,1.491965187890159e19,1.4945599099560387e19,1.4971546320219181e19,1.4997493540877976e19,1.5023440761536772e19,1.5049387982195567e19,1.5075335202854361e19,1.5101282423513156e19,1.5127229644171952e19,1.5153176864830747e19,1.5179124085489541e19,1.5205071306148338e19,1.5231018526807132e19,1.5256965747465927e19,1.5282912968124723e19,1.5308860188783518e19,1.5334807409442312e19,1.5360754630101109e19,1.5386701850759903e19,1.5412649071418698e19,1.5438596292077494e19,1.5464543512736289e19,1.5490490733395083e19,1.551643795405388e19,1.5542385174712674e19,1.5568332395371469e19,1.5594279616030265e19,1.562022683668906e19,1.5646174057347854e19,1.567212127800665e19,1.5698068498665445e19,1.572401571932424e19,1.5749962939983036e19,1.577591016064183e19,1.5801857381300625e19,1.5827804601959422e19,1.5853751822618216e19,1.587969904327701e19,1.5905646263935807e19,1.5931593484594602e19,1.5957540705253396e19,1.5983487925912193e19,1.6009435146570988e19,1.6035382367229782e19,1.6061329587888579e19,1.6087276808547373e19,1.6113224029206168e19,1.6139171249864964e19,1.6165118470523759e19,1.6191065691182553e19,1.6217012911841348e19,1.6242960132500144e19,1.6268907353158939e19,1.6294854573817733e19,1.632080179447653e19,1.6346749015135324e19,1.6372696235794119e19,1.6398643456452915e19,1.642459067711171e19,1.6450537897770504e19,1.64764851184293e19,1.6502432339088095e19,1.652837955974689e19,1.6554326780405686e19,1.658027400106448e19,1.6606221221723275e19,1.6632168442382072e19,1.6658115663040866e19,1.668406288369966e19,1.6710010104358457e19,1.6735957325017252e19,1.6761904545676046e19,1.6787851766334843e19,1.6813798986993637e19,1.6839746207652432e19,1.6865693428311228e19,1.6891640648970023e19,1.6917587869628817e19,1.6943535090287614e19,1.6969482310946408e19,1.6995429531605203e19,1.7021376752264e19,1.7047323972922794e19,1.7073271193581588e19,1.7099218414240385e19,1.712516563489918e19,1.7151112855557974e19,1.717706007621677e19,1.7203007296875565e19,1.722895451753436e19,1.7254901738193156e19,1.728084895885195e19,1.7306796179510745e19,1.733274340016954e19,1.7358690620828336e19,1.738463784148713e19,1.7410585062145925e19,1.7436532282804722e19,1.7462479503463516e19,1.748842672412231e19,1.7514373944781107e19,1.7540321165439902e19,1.7566268386098696e19,1.7592215606757493e19,1.7618162827416287e19,1.7644110048075082e19,1.7670057268733878e19,1.7696004489392673e19,1.7721951710051467e19,1.7747898930710264e19,1.7773846151369058e19,1.7799793372027853e19,1.782574059268665e19,1.7851687813345444e19,1.7877635034004238e19,1.7903582254663035e19,1.792952947532183e19,1.7955476695980624e19,1.798142391663942e19,1.8007371137298215e19,1.803331835795701e19,1.8059265578615806e19,1.80852127992746e19,1.8111160019933395e19,1.8137107240592191e19,1.8163054461250986e19,1.818900168190978e19,1.8214948902568577e19,1.8240896123227372e19,1.8266843343886166e19,1.8292790564544963e19,1.8318737785203757e19,1.8344685005862552e19,1.8370632226521348e19,1.8396579447180143e19,1.8422526667838937e19,1.8448473888497734e19,1.847442110915653e19,1.8500368329815323e19,1.8526315550474117e19,1.855226277113291e19,1.857820999179171e19,1.8604157212450505e19,1.86301044331093e19,1.8656051653768094e19,1.868199887442689e19,1.8707946095085683e19,1.873389331574448e19,1.8759840536403276e19,1.878578775706207e19,1.8811734977720865e19,1.883768219837966e19,1.8863629419038454e19,1.8889576639697252e19,1.8915523860356047e19,1.894147108101484e19,1.8967418301673636e19,1.899336552233243e19,1.9019312742991225e19,1.904525996365002e19,1.9071207184308818e19,1.9097154404967612e19,1.9123101625626407e19,1.91490488462852e19,1.9174996066943996e19,1.920094328760279e19,1.922689050826159e19,1.9252837728920383e19,1.927878494957918e19,1.9304732170237972e19,1.9330679390896767e19,1.935662661155556e19,1.938257383221436e19,1.9408521052873155e19,1.943446827353195e19,1.9460415494190744e19,1.948636271484954e19,1.9512309935508333e19,1.953825715616713e19,1.9564204376825926e19,1.959015159748472e19,1.9616098818143515e19,1.964204603880231e19,1.9667993259461104e19,1.9693940480119902e19,1.9719887700778697e19,1.974583492143749e19,1.9771782142096286e19,1.979772936275508e19,1.9823676583413875e19,1.9849623804072673e19,1.9875571024731468e19,1.9901518245390262e19,1.9927465466049057e19,1.995341268670785e19,1.9979359907366646e19,2.0005307128025444e19,2.003125434868424e19,2.0057201569343033e19,2.0083148790001828e19,2.0109096010660622e19,2.0135043231319417e19,2.016099045197821e19,2.018693767263701e19,2.0212884893295804e19,2.02388321139546e19,2.0264779334613393e19,2.0290726555272188e19,2.0316673775930982e19,2.034262099658978e19,2.0368568217248575e19,2.039451543790737e19,2.0420462658566164e19,2.044640987922496e19,2.0472357099883753e19,2.0498304320542552e19,2.0524251541201347e19,2.055019876186014e19,2.0576145982518936e19,2.060209320317773e19,2.0628040423836525e19,2.0653987644495323e19,2.0679934865154118e19,2.0705882085812912e19,2.0731829306471707e19,2.07577765271305e19,2.0783723747789296e19,2.0809670968448094e19,2.083561818910689e19,2.0861565409765683e19,2.0887512630424478e19,2.0913459851083272e19,2.0939407071742067e19,2.0965354292400865e19,2.099130151305966e19,2.1017248733718454e19,2.104319595437725e19,2.1069143175036043e19,2.1095090395694838e19,2.1121037616353636e19,2.114698483701243e19,2.1172932057671225e19,2.119887927833002e19,2.1224826498988814e19,2.125077371964761e19,2.1276720940306403e19,2.13026681609652e19,2.1328615381623996e19,2.135456260228279e19,2.1380509822941585e19,2.140645704360038e19,2.1432404264259174e19,2.1458351484917973e19,2.1484298705576767e19,2.151024592623556e19,2.1536193146894356e19,2.156214036755315e19,2.1588087588211945e19,2.1614034808870744e19,2.163998202952954e19,2.1665929250188333e19,2.1691876470847128e19,2.1717823691505922e19,2.1743770912164717e19,2.1769718132823515e19,2.179566535348231e19,2.1821612574141104e19,2.18475597947999e19,2.1873507015458693e19,2.1899454236117488e19,2.1925401456776286e19,2.195134867743508e19,2.1977295898093875e19,2.200324311875267e19,2.2029190339411464e19,2.205513756007026e19,2.2081084780729057e19,2.210703200138785e19,2.2132979222046646e19,2.215892644270544e19,2.2184873663364235e19,2.221082088402303e19,2.223676810468183e19,2.2262715325340623e19,2.2288662545999417e19,2.231460976665821e19,2.2340556987317006e19,2.23665042079758e19,2.2392451428634595e19,2.2418398649293394e19,2.244434586995219e19,2.2470293090610983e19,2.2496240311269777e19,2.252218753192857e19,2.2548134752587366e19,2.2574081973246165e19,2.260002919390496e19,2.2625976414563754e19,2.265192363522255e19,2.2677870855881343e19,2.2703818076540137e19,2.2729765297198936e19,2.275571251785773e19,2.2781659738516525e19,2.280760695917532e19,2.2833554179834114e19,2.285950140049291e19,2.2885448621151707e19,2.29113958418105e19,2.2937343062469296e19,2.296329028312809e19,2.2989237503786885e19,2.301518472444568e19,2.304113194510448e19,2.3067079165763273e19,2.3093026386422067e19,2.311897360708086e19,2.3144920827739656e19,2.317086804839845e19,2.319681526905725e19,2.3222762489716044e19,2.324870971037484e19,2.3274656931033633e19,2.3300604151692427e19,2.332655137235122e19,2.335249859301002e19,2.3378445813668815e19,2.340439303432761e19,2.3430340254986404e19,2.34562874756452e19,2.3482234696303993e19,2.3508181916962787e19,2.3534129137621586e19,2.356007635828038e19,2.3586023578939175e19,2.361197079959797e19,2.3637918020256764e19,2.366386524091556e19,2.3689812461574357e19,2.371575968223315e19,2.3741706902891946e19,2.376765412355074e19,2.3793601344209535e19,2.381954856486833e19,2.384549578552713e19,2.3871443006185923e19,2.3897390226844717e19,2.392333744750351e19,2.3949284668162306e19,2.39752318888211e19,2.40011791094799e19,2.4027126330138694e19,2.405307355079749e19,2.4079020771456283e19,2.4104967992115077e19,2.413091521277387e19,2.415686243343267e19,2.4182809654091465e19,2.420875687475026e19,2.4234704095409054e19,2.426065131606785e19,2.4286598536726643e19,2.431254575738544e19,2.4338492978044236e19,2.436444019870303e19,2.4390387419361825e19,2.441633464002062e19,2.4442281860679414e19,2.4468229081338212e19,2.4494176301997007e19,2.45201235226558e19,2.4546070743314596e19,2.457201796397339e19,2.4597965184632185e19,2.462391240529098e19,2.4649859625949778e19,2.4675806846608572e19,2.4701754067267367e19,2.472770128792616e19,2.4753648508584956e19,2.477959572924375e19,2.480554294990255e19,2.4831490170561343e19,2.485743739122014e19,2.4883384611878932e19,2.4909331832537727e19,2.493527905319652e19,2.496122627385532e19,2.4987173494514115e19,2.501312071517291e19,2.5039067935831704e19,2.50650151564905e19,2.5090962377149293e19,2.511690959780809e19,2.5142856818466886e19,2.516880403912568e19,2.5194751259784475e19,2.522069848044327e19,2.5246645701102064e19,2.5272592921760862e19,2.5298540142419657e19,2.532448736307845e19,2.5350434583737246e19,2.537638180439604e19,2.5402329025054835e19,2.5428276245713633e19,2.5454223466372428e19,2.5480170687031222e19,2.5506117907690017e19,2.553206512834881e19,2.5558012349007606e19,2.5583959569666404e19,2.56099067903252e19,2.5635854010983993e19,2.5661801231642788e19,2.5687748452301582e19,2.5713695672960377e19,2.573964289361917e19,2.576559011427797e19,2.5791537334936764e19,2.581748455559556e19,2.5843431776254353e19,2.5869378996913148e19,2.5895326217571942e19,2.592127343823074e19,2.5947220658889535e19,2.597316787954833e19,2.5999115100207124e19,2.602506232086592e19,2.6051009541524713e19,2.6076956762183512e19,2.6102903982842307e19,2.61288512035011e19,2.6154798424159896e19,2.618074564481869e19,2.6206692865477485e19,2.6232640086136283e19,2.6258587306795078e19,2.6284534527453872e19,2.6310481748112667e19,2.633642896877146e19,2.6362376189430256e19,2.6388323410089054e19,2.641427063074785e19,2.6440217851406643e19,2.6466165072065438e19,2.6492112292724232e19,2.6518059513383027e19,2.6544006734041825e19,2.656995395470062e19,2.6595901175359414e19,2.662184839601821e19,2.6647795616677003e19,2.6673742837335798e19,2.6699690057994596e19,2.672563727865339e19,2.6751584499312185e19,2.677753171997098e19,2.6803478940629774e19,2.682942616128857e19,2.6855373381947363e19,2.688132060260616e19,2.6907267823264956e19,2.693321504392375e19,2.6959162264582545e19,2.698510948524134e19,2.7011056705900134e19,2.7037003926558933e19,2.7062951147217727e19,2.708889836787652e19,2.7114845588535316e19,2.714079280919411e19,2.7166740029852905e19,2.7192687250511704e19,2.72186344711705e19,2.7244581691829293e19,2.7270528912488088e19,2.7296476133146882e19,2.7322423353805677e19,2.7348370574464475e19,2.737431779512327e19,2.7400265015782064e19,2.742621223644086e19,2.7452159457099653e19,2.7478106677758448e19,2.7504053898417246e19,2.753000111907604e19,2.7555948339734835e19,2.758189556039363e19,2.7607842781052424e19,2.763379000171122e19,2.7659737222370017e19,2.768568444302881e19,2.7711631663687606e19,2.77375788843464e19,2.7763526105005195e19,2.778947332566399e19,2.781542054632279e19,2.7841367766981583e19,2.7867314987640377e19,2.789326220829917e19,2.7919209428957966e19,2.794515664961676e19,2.7971103870275555e19,2.7997051090934354e19,2.802299831159315e19,2.8048945532251943e19,2.8074892752910737e19,2.810083997356953e19,2.8126787194228326e19,2.8152734414887125e19,2.817868163554592e19,2.8204628856204714e19,2.823057607686351e19,2.8256523297522303e19,2.8282470518181097e19,2.8308417738839896e19,2.833436495949869e19,2.8360312180157485e19,2.838625940081628e19,2.8412206621475074e19,2.843815384213387e19,2.8464101062792667e19,2.849004828345146e19,2.8515995504110256e19,2.854194272476905e19,2.8567889945427845e19,2.859383716608664e19,2.861978438674544e19,2.8645731607404233e19,2.8671678828063027e19,2.869762604872182e19,2.8723573269380616e19,2.874952049003941e19,2.877546771069821e19,2.8801414931357004e19,2.88273621520158e19,2.8853309372674593e19,2.8879256593333387e19,2.890520381399218e19,2.893115103465098e19,2.8957098255309775e19,2.898304547596857e19,2.9008992696627364e19,2.903493991728616e19,2.9060887137944953e19,2.9086834358603747e19,2.9112781579262546e19,2.913872879992134e19,2.9164676020580135e19,2.919062324123893e19,2.9216570461897724e19,2.924251768255652e19,2.9268464903215317e19,2.929441212387411e19,2.9320359344532906e19,2.93463065651917e19,2.9372253785850495e19,2.939820100650929e19,2.942414822716809e19,2.9450095447826883e19,2.9476042668485677e19,2.950198988914447e19,2.9527937109803266e19,2.955388433046206e19,2.957983155112086e19,2.9605778771779654e19,2.963172599243845e19,2.9657673213097243e19,2.9683620433756037e19,2.970956765441483e19,2.973551487507363e19,2.9761462095732425e19,2.978740931639122e19,2.9813356537050014e19,2.983930375770881e19,2.9865250978367603e19,2.98911981990264e19,2.9917145419685196e19,2.994309264034399e19,2.9969039861002785e19,2.999498708166158e19,3.0020934302320374e19,3.0046881522979172e19,3.0072828743637967e19,3.009877596429676e19,3.0124723184955556e19,3.015067040561435e19,3.0176617626273145e19,3.020256484693194e19,3.0228512067590738e19,3.0254459288249532e19,3.0280406508908327e19,3.030635372956712e19,3.0332300950225916e19,3.035824817088471e19,3.038419539154351e19,3.0410142612202303e19,3.04360898328611e19,3.0462037053519892e19,3.0487984274178687e19,3.051393149483748e19,3.053987871549628e19,3.0565825936155075e19,3.059177315681387e19,3.0617720377472664e19,3.064366759813146e19,3.0669614818790253e19,3.069556203944905e19,3.0721509260107846e19,3.074745648076664e19,3.0773403701425435e19,3.079935092208423e19,3.0825298142743024e19,3.0851245363401822e19,3.0877192584060617e19,3.090313980471941e19,3.0929087025378206e19,3.0955034246037e19,3.0980981466695795e19,3.1006928687354593e19,3.1032875908013388e19,3.1058823128672182e19,3.1084770349330977e19,3.111071756998977e19,3.1136664790648566e19,3.1162612011307364e19,3.118855923196616e19,3.1214506452624953e19,3.1240453673283748e19,3.1266400893942542e19,3.1292348114601337e19,3.131829533526013e19,3.134424255591893e19,3.1370189776577724e19,3.139613699723652e19,3.1422084217895313e19,3.1448031438554108e19,3.1473978659212902e19,3.14999258798717e19,3.1525873100530495e19,3.155182032118929e19,3.1577767541848084e19,3.160371476250688e19,3.1629661983165673e19,3.1655609203824472e19,3.1681556424483267e19,3.170750364514206e19,3.1733450865800856e19,3.175939808645965e19,3.1785345307118445e19,3.1811292527777243e19,3.1837239748436038e19,3.1863186969094832e19,3.1889134189753627e19,3.191508141041242e19,3.1941028631071216e19,3.1966975851730014e19,3.199292307238881e19,3.2018870293047603e19,3.2044817513706398e19,3.2070764734365192e19,3.2096711955023987e19,3.2122659175682785e19,3.214860639634158e19,3.2174553617000374e19,3.220050083765917e19,3.2226448058317963e19,3.2252395278976758e19,3.2278342499635556e19,3.230428972029435e19,3.2330236940953145e19,3.235618416161194e19,3.2382131382270734e19,3.240807860292953e19,3.2434025823588323e19,3.245997304424712e19,3.2485920264905916e19,3.251186748556471e19,3.2537814706223505e19,3.25637619268823e19,3.2589709147541094e19,3.2615656368199893e19,3.2641603588858687e19,3.266755080951748e19,3.2693498030176276e19,3.271944525083507e19,3.2745392471493865e19,3.2771339692152664e19,3.279728691281146e19,3.2823234133470253e19,3.2849181354129048e19,3.2875128574787842e19,3.2901075795446637e19,3.2927023016105435e19,3.295297023676423e19,3.2978917457423024e19,3.300486467808182e19,3.3030811898740613e19,3.3056759119399408e19,3.3082706340058206e19,3.3108653560717e19,3.3134600781375795e19,3.316054800203459e19,3.3186495222693384e19,3.321244244335218e19,3.3238389664010977e19,3.326433688466977e19,3.3290284105328566e19,3.331623132598736e19,3.3342178546646155e19,3.336812576730495e19,3.339407298796375e19,3.3420020208622543e19,3.3445967429281337e19,3.347191464994013e19,3.3497861870598926e19,3.352380909125772e19,3.3549756311916515e19,3.3575703532575314e19,3.360165075323411e19,3.3627597973892903e19,3.3653545194551697e19,3.367949241521049e19,3.3705439635869286e19,3.3731386856528085e19,3.375733407718688e19,3.3783281297845674e19,3.380922851850447e19,3.3835175739163263e19,3.3861122959822057e19,3.3887070180480856e19,3.391301740113965e19,3.3938964621798445e19,3.396491184245724e19,3.3990859063116034e19,3.401680628377483e19,3.4042753504433627e19,3.406870072509242e19,3.4094647945751216e19,3.412059516641001e19,3.4146542387068805e19,3.41724896077276e19,3.41984368283864e19,3.4224384049045193e19,3.4250331269703987e19,3.427627849036278e19,3.4302225711021576e19,3.432817293168037e19,3.435412015233917e19,3.4380067372997964e19,3.440601459365676e19,3.4431961814315553e19,3.4457909034974347e19,3.448385625563314e19,3.450980347629194e19,3.4535750696950735e19,3.456169791760953e19,3.4587645138268324e19,3.461359235892712e19,3.4639539579585913e19,3.4665486800244707e19,3.4691434020903506e19,3.47173812415623e19,3.4743328462221095e19,3.476927568287989e19,3.4795222903538684e19,3.482117012419748e19,3.4847117344856277e19,3.487306456551507e19,3.4899011786173866e19,3.492495900683266e19,3.4950906227491455e19,3.497685344815025e19,3.500280066880905e19,3.5028747889467843e19,3.5054695110126637e19,3.508064233078543e19,3.5106589551444226e19,3.513253677210302e19,3.515848399276182e19,3.5184431213420614e19,3.521037843407941e19,3.5236325654738203e19,3.5262272875396997e19,3.528822009605579e19,3.531416731671459e19,3.5340114537373385e19,3.536606175803218e19,3.5392008978690974e19,3.541795619934977e19,3.5443903420008563e19,3.546985064066736e19,3.5495797861326156e19,3.552174508198495e19,3.5547692302643745e19,3.557363952330254e19,3.5599586743961334e19,3.5625533964620132e19,3.5651481185278927e19,3.567742840593772e19,3.5703375626596516e19,3.572932284725531e19,3.5755270067914105e19,3.57812172885729e19,3.5807164509231698e19,3.5833111729890492e19,3.5859058950549287e19,3.588500617120808e19,3.5910953391866876e19,3.593690061252567e19,3.596284783318447e19,3.5988795053843263e19,3.601474227450206e19,3.6040689495160852e19,3.6066636715819647e19,3.609258393647844e19,3.611853115713724e19,3.6144478377796035e19,3.617042559845483e19,3.6196372819113624e19,3.622232003977242e19,3.6248267260431213e19,3.627421448109001e19,3.6300161701748806e19,3.63261089224076e19,3.6352056143066395e19,3.637800336372519e19,3.6403950584383984e19,3.6429897805042782e19,3.6455845025701577e19,3.648179224636037e19,3.6507739467019166e19,3.653368668767796e19,3.6559633908336755e19,3.6585581128995553e19,3.6611528349654348e19,3.6637475570313142e19,3.6663422790971937e19,3.668937001163073e19,3.6715317232289526e19,3.6741264452948324e19,3.676721167360712e19,3.6793158894265913e19,3.6819106114924708e19,3.6845053335583502e19,3.6871000556242297e19,3.6896947776901095e19,3.6922894997559886e19,3.6948842218218684e19,3.6974789438877475e19,3.700073665953627e19,3.702668388019507e19,3.705263110085386e19,3.707857832151266e19,3.710452554217145e19,3.713047276283025e19,3.715641998348905e19,3.718236720414784e19,3.720831442480664e19,3.723426164546543e19,3.726020886612423e19,3.728615608678302e19,3.7312103307441816e19,3.7338050528100614e19,3.7363997748759405e19,3.73899449694182e19,3.741589219007699e19,3.744183941073579e19,3.746778663139459e19,3.749373385205338e19,3.751968107271218e19,3.754562829337097e19,3.757157551402977e19,3.759752273468856e19,3.762346995534736e19,3.764941717600616e19,3.767536439666495e19,3.7701311617323745e19,3.7727258837982536e19,3.7753206058641334e19,3.777915327930013e19,3.780510049995892e19,3.783104772061772e19,3.785699494127651e19,3.788294216193531e19,3.79088893825941e19,3.79348366032529e19,3.79607838239117e19,3.798673104457049e19,3.801267826522929e19,3.803862548588808e19,3.806457270654688e19,3.809051992720567e19,3.8116467147864465e19,3.814241436852326e19,3.8168361589182054e19,3.819430880984085e19,3.822025603049964e19,3.824620325115844e19,3.827215047181724e19,3.829809769247603e19,3.832404491313483e19,3.834999213379362e19,3.837593935445242e19,3.840188657511121e19,3.842783379577001e19,3.845378101642881e19,3.84797282370876e19,3.8505675457746395e19,3.8531622678405186e19,3.8557569899063984e19,3.858351711972278e19,3.860946434038157e19,3.863541156104037e19,3.866135878169916e19,3.868730600235796e19,3.871325322301675e19,3.873920044367555e19,3.876514766433435e19,3.879109488499314e19,3.881704210565194e19,3.884298932631073e19,3.886893654696953e19,3.8894883767628325e19,3.8920830988287115e19,3.894677820894591e19,3.8972725429604704e19,3.89986726502635e19,3.902461987092229e19,3.905056709158109e19,3.907651431223989e19,3.910246153289868e19,3.912840875355748e19,3.915435597421627e19,3.918030319487507e19,3.920625041553386e19,3.923219763619266e19,3.925814485685146e19,3.928409207751025e19,3.9310039298169045e19,3.9335986518827835e19,3.936193373948663e19,3.938788096014543e19,3.941382818080422e19,3.943977540146302e19,3.946572262212181e19,3.949166984278061e19,3.95176170634394e19,3.95435642840982e19,3.9569511504757e19,3.959545872541579e19,3.962140594607459e19,3.964735316673338e19,3.967330038739218e19,3.9699247608050975e19,3.9725194828709765e19,3.975114204936856e19,3.9777089270027354e19,3.980303649068615e19,3.982898371134494e19,3.985493093200374e19,3.988087815266254e19,3.990682537332133e19,3.993277259398013e19,3.995871981463892e19,3.998466703529772e19,4.001061425595652e19,4.003656147661531e19,4.0062508697274106e19,4.00884559179329e19,4.0114403138591695e19,4.0140350359250485e19,4.016629757990928e19,4.019224480056808e19,4.021819202122687e19,4.024413924188567e19,4.027008646254446e19,4.029603368320326e19,4.032198090386205e19,4.034792812452085e19,4.037387534517965e19,4.039982256583844e19,4.042576978649724e19,4.045171700715603e19,4.047766422781483e19,4.0503611448473625e19,4.0529558669132415e19,4.055550588979121e19,4.058145311045e19,4.06074003311088e19,4.063334755176759e19,4.065929477242639e19,4.068524199308519e19,4.071118921374398e19,4.073713643440278e19,4.076308365506157e19,4.078903087572037e19,4.081497809637917e19,4.084092531703796e19,4.0866872537696756e19,4.089281975835555e19,4.0918766979014345e19,4.0944714199673135e19,4.097066142033193e19,4.099660864099073e19,4.102255586164952e19,4.104850308230832e19,4.107445030296711e19,4.110039752362591e19,4.112634474428471e19,4.11522919649435e19,4.11782391856023e19,4.120418640626109e19,4.123013362691989e19,4.125608084757868e19,4.1282028068237476e19,4.1307975288896274e19,4.1333922509555065e19,4.135986973021386e19,4.138581695087265e19,4.141176417153145e19,4.143771139219024e19,4.146365861284904e19,4.148960583350784e19,4.151555305416663e19,4.154150027482543e19,4.156744749548422e19,4.159339471614302e19,4.161934193680182e19,4.164528915746061e19,4.1671236378119406e19,4.16971835987782e19,4.1723130819436995e19,4.1749078040095785e19,4.177502526075458e19,4.180097248141338e19,4.182691970207217e19,4.185286692273097e19,4.187881414338976e19,4.190476136404856e19,4.193070858470736e19,4.195665580536615e19,4.198260302602495e19,4.200855024668374e19,4.203449746734254e19,4.206044468800133e19,4.2086391908660126e19,4.2112339129318924e19,4.2138286349977715e19,4.216423357063651e19,4.21901807912953e19,4.22161280119541e19,4.22420752326129e19,4.226802245327169e19,4.229396967393049e19,4.231991689458928e19,4.234586411524808e19,4.237181133590687e19,4.239775855656567e19,4.242370577722447e19,4.244965299788326e19,4.2475600218542055e19,4.2501547439200846e19,4.2527494659859644e19,4.2553441880518435e19,4.257938910117723e19,4.260533632183603e19,4.263128354249482e19,4.265723076315362e19,4.268317798381241e19,4.270912520447121e19,4.273507242513001e19,4.27610196457888e19,4.27869668664476e19,4.281291408710639e19,4.283886130776519e19,4.286480852842398e19,4.2890755749082776e19,4.2916702969741574e19,4.2942650190400365e19,4.296859741105916e19,4.299454463171795e19,4.302049185237675e19,4.304643907303555e19,4.307238629369434e19,4.309833351435314e19,4.312428073501193e19,4.315022795567073e19,4.317617517632952e19,4.320212239698832e19,4.322806961764712e19,4.325401683830591e19,4.3279964058964705e19,4.3305911279623496e19,4.3331858500282294e19,4.335780572094109e19,4.338375294159988e19,4.340970016225868e19,4.343564738291747e19,4.346159460357627e19,4.348754182423506e19,4.351348904489386e19,4.353943626555266e19,4.356538348621145e19,4.359133070687025e19,4.361727792752904e19,4.364322514818784e19,4.366917236884663e19,4.3695119589505425e19,4.372106681016422e19,4.3747014030823014e19,4.377296125148181e19,4.37989084721406e19,4.38248556927994e19,4.38508029134582e19,4.387675013411699e19,4.390269735477579e19,4.392864457543458e19,4.395459179609338e19,4.398053901675217e19,4.400648623741097e19,4.403243345806977e19,4.405838067872856e19,4.4084327899387355e19,4.4110275120046146e19,4.4136222340704944e19,4.416216956136374e19,4.418811678202253e19,4.421406400268133e19,4.424001122334012e19,4.426595844399892e19,4.429190566465771e19,4.431785288531651e19,4.434380010597531e19,4.43697473266341e19,4.43956945472929e19,4.442164176795169e19,4.444758898861049e19,4.4473536209269285e19,4.4499483429928075e19,4.452543065058687e19,4.4551377871245664e19,4.457732509190446e19,4.460327231256325e19,4.462921953322205e19,4.465516675388085e19,4.468111397453964e19,4.470706119519844e19,4.473300841585723e19,4.475895563651603e19,4.478490285717482e19,4.481085007783362e19,4.483679729849242e19,4.486274451915121e19,4.4888691739810005e19,4.4914638960468795e19,4.494058618112759e19,4.496653340178639e19,4.499248062244518e19,4.501842784310398e19,4.504437506376277e19,4.507032228442157e19,4.509626950508036e19,4.512221672573916e19,4.514816394639796e19,4.517411116705675e19,4.520005838771555e19,4.522600560837434e19,4.525195282903314e19,4.5277900049691935e19,4.5303847270350725e19,4.532979449100952e19,4.5355741711668314e19,4.538168893232711e19,4.54076361529859e19,4.54335833736447e19,4.54595305943035e19,4.548547781496229e19,4.551142503562109e19,4.553737225627988e19,4.556331947693868e19,4.558926669759748e19,4.561521391825627e19,4.5641161138915066e19,4.566710835957386e19,4.5693055580232655e19,4.5719002800891445e19,4.574495002155024e19,4.577089724220904e19,4.579684446286783e19,4.582279168352663e19,4.584873890418542e19,4.587468612484422e19,4.590063334550301e19,4.592658056616181e19,4.595252778682061e19,4.59784750074794e19,4.60044222281382e19,4.603036944879699e19,4.605631666945579e19,4.6082263890114585e19,4.6108211110773375e19,4.613415833143217e19,4.616010555209096e19,4.618605277274976e19,4.621199999340855e19,4.623794721406735e19,4.626389443472615e19,4.628984165538494e19,4.631578887604374e19,4.634173609670253e19,4.636768331736133e19,4.639363053802013e19,4.641957775867892e19,4.6445524979337716e19,4.647147219999651e19,4.6497419420655305e19,4.6523366641314095e19,4.654931386197289e19,4.657526108263169e19,4.660120830329048e19,4.662715552394928e19,4.665310274460807e19,4.667904996526687e19,4.670499718592567e19,4.673094440658446e19,4.675689162724326e19,4.678283884790205e19,4.680878606856085e19,4.683473328921964e19,4.6860680509878436e19,4.6886627730537234e19,4.6912574951196025e19,4.693852217185482e19,4.696446939251361e19,4.699041661317241e19,4.70163638338312e19,4.704231105449e19,4.70682582751488e19,4.709420549580759e19,4.712015271646639e19,4.714609993712518e19,4.717204715778398e19,4.719799437844278e19,4.722394159910157e19,4.7249888819760366e19,4.727583604041916e19,4.7301783261077955e19,4.7327730481736745e19,4.735367770239554e19,4.737962492305434e19,4.740557214371313e19,4.743151936437193e19,4.745746658503072e19,4.748341380568952e19,4.750936102634832e19,4.753530824700711e19,4.756125546766591e19,4.75872026883247e19,4.76131499089835e19,4.763909712964229e19,4.7665044350301086e19,4.7690991570959884e19,4.7716938791618675e19,4.774288601227747e19,4.776883323293626e19,4.779478045359506e19,4.782072767425386e19,4.784667489491265e19,4.787262211557145e19,4.789856933623024e19,4.792451655688904e19,4.795046377754783e19,4.797641099820663e19,4.800235821886543e19,4.802830543952422e19,4.8054252660183015e19,4.8080199880841806e19,4.8106147101500604e19,4.8132094322159395e19,4.815804154281819e19,4.818398876347699e19,4.820993598413578e19,4.823588320479458e19,4.826183042545337e19,4.828777764611217e19,4.831372486677097e19,4.833967208742976e19,4.836561930808856e19,4.839156652874735e19,4.841751374940615e19,4.844346097006494e19,4.8469408190723736e19,4.8495355411382534e19,4.8521302632041325e19,4.854724985270012e19,4.857319707335891e19,4.859914429401771e19,4.862509151467651e19,4.86510387353353e19,4.86769859559941e19,4.870293317665289e19,4.872888039731169e19,4.875482761797048e19,4.878077483862928e19,4.880672205928808e19,4.883266927994687e19,4.8858616500605665e19,4.8884563721264456e19,4.8910510941923254e19,4.893645816258205e19,4.896240538324084e19,4.898835260389964e19,4.901429982455843e19,4.904024704521723e19,4.906619426587602e19,4.909214148653482e19,4.911808870719362e19,4.914403592785241e19,4.916998314851121e19,4.919593036917e19,4.92218775898288e19,4.924782481048759e19,4.9273772031146385e19,4.929971925180518e19,4.9325666472463974e19,4.935161369312277e19,4.937756091378156e19,4.940350813444036e19,4.942945535509916e19,4.945540257575795e19,4.948134979641675e19,4.950729701707554e19,4.953324423773434e19,4.955919145839313e19,4.958513867905193e19,4.961108589971073e19,4.963703312036952e19,4.9662980341028315e19,4.9688927561687106e19,4.9714874782345904e19,4.97408220030047e19,4.976676922366349e19,4.979271644432229e19,4.981866366498108e19,4.984461088563988e19,4.987055810629867e19,4.989650532695747e19,4.992245254761627e19,4.994839976827506e19,4.997434698893386e19,5.000029420959265e19,5.002624143025145e19,5.0052188650910245e19,5.0078135871569035e19,5.010408309222783e19,5.0130030312886624e19,5.015597753354542e19,5.018192475420421e19,5.020787197486301e19,5.023381919552181e19,5.02597664161806e19,5.02857136368394e19,5.031166085749819e19,5.033760807815699e19,5.036355529881578e19,5.038950251947458e19,5.041544974013338e19,5.044139696079217e19,5.0467344181450965e19,5.0493291402109755e19,5.051923862276855e19,5.054518584342735e19,5.057113306408614e19,5.059708028474494e19,5.062302750540373e19,5.064897472606253e19,5.067492194672132e19,5.070086916738012e19,5.072681638803892e19,5.075276360869771e19,5.077871082935651e19,5.08046580500153e19,5.08306052706741e19,5.0856552491332895e19,5.0882499711991685e19,5.090844693265048e19,5.0934394153309274e19,5.096034137396807e19,5.098628859462686e19,5.101223581528566e19,5.103818303594446e19,5.106413025660325e19,5.109007747726205e19,5.111602469792084e19,5.114197191857964e19,5.116791913923844e19,5.119386635989723e19,5.1219813580556026e19,5.124576080121482e19,5.1271708021873615e19,5.1297655242532405e19,5.13236024631912e19,5.134954968385e19,5.137549690450879e19,5.140144412516759e19,5.142739134582638e19,5.145333856648518e19,5.147928578714397e19,5.150523300780277e19,5.153118022846157e19,5.155712744912036e19,5.158307466977916e19,5.160902189043795e19,5.163496911109675e19,5.1660916331755545e19,5.1686863552414335e19,5.171281077307313e19,5.173875799373192e19,5.176470521439072e19,5.179065243504951e19,5.181659965570831e19,5.184254687636711e19,5.18684940970259e19,5.18944413176847e19,5.192038853834349e19,5.194633575900229e19,5.197228297966109e19,5.199823020031988e19,5.2024177420978676e19,5.205012464163747e19,5.2076071862296265e19,5.2102019082955055e19,5.212796630361385e19,5.215391352427265e19,5.217986074493144e19,5.220580796559024e19,5.223175518624903e19,5.225770240690783e19,5.228364962756663e19,5.230959684822542e19,5.233554406888422e19,5.236149128954301e19,5.238743851020181e19,5.24133857308606e19,5.2439332951519396e19,5.2465280172178194e19,5.2491227392836985e19,5.251717461349578e19,5.254312183415457e19,5.256906905481337e19,5.259501627547216e19,5.262096349613096e19,5.264691071678976e19,5.267285793744855e19,5.269880515810735e19,5.272475237876614e19,5.275069959942494e19,5.277664682008374e19,5.280259404074253e19,5.2828541261401326e19,5.285448848206012e19,5.2880435702718915e19,5.2906382923377705e19,5.29323301440365e19,5.29582773646953e19,5.298422458535409e19,5.301017180601289e19,5.303611902667168e19,5.306206624733048e19,5.308801346798928e19,5.311396068864807e19,5.313990790930687e19,5.316585512996566e19,5.319180235062446e19,5.321774957128325e19,5.3243696791942046e19,5.3269644012600844e19,5.3295591233259635e19,5.332153845391843e19,5.334748567457722e19,5.337343289523602e19,5.339938011589482e19,5.342532733655361e19,5.345127455721241e19,5.34772217778712e19,5.350316899853e19,5.352911621918879e19,5.355506343984759e19,5.358101066050639e19,5.360695788116518e19,5.3632905101823975e19,5.3658852322482766e19,5.3684799543141564e19,5.3710746763800355e19,5.373669398445915e19,5.376264120511795e19,5.378858842577674e19,5.381453564643554e19,5.384048286709433e19,5.386643008775313e19,5.389237730841193e19,5.391832452907072e19,5.394427174972952e19,5.397021897038831e19,5.399616619104711e19,5.40221134117059e19,5.4048060632364696e19,5.4074007853023494e19,5.4099955073682285e19,5.412590229434108e19,5.415184951499987e19,5.417779673565867e19,5.420374395631747e19,5.422969117697626e19,5.425563839763506e19,5.428158561829385e19,5.430753283895265e19,5.433348005961144e19,5.435942728027024e19,5.438537450092904e19,5.441132172158783e19,5.4437268942246625e19,5.4463216162905416e19,5.4489163383564214e19,5.451511060422301e19,5.45410578248818e19,5.45670050455406e19,5.459295226619939e19,5.461889948685819e19,5.464484670751698e19,5.467079392817578e19,5.469674114883458e19,5.472268836949337e19,5.474863559015217e19,5.477458281081096e19,5.480053003146976e19,5.482647725212855e19,5.4852424472787345e19,5.487837169344614e19,5.4904318914104934e19,5.493026613476373e19,5.495621335542252e19,5.498216057608132e19,5.500810779674012e19,5.503405501739891e19,5.506000223805771e19,5.50859494587165e19,5.51118966793753e19,5.513784390003409e19,5.516379112069289e19,5.518973834135169e19,5.521568556201048e19,5.5241632782669275e19,5.5267580003328066e19,5.5293527223986864e19,5.531947444464566e19,5.534542166530445e19,5.537136888596325e19,5.539731610662204e19,5.542326332728084e19,5.544921054793963e19,5.547515776859843e19,5.550110498925723e19,5.552705220991602e19,5.555299943057482e19,5.557894665123361e19,5.560489387189241e19,5.5630841092551205e19,5.5656788313209995e19,5.568273553386879e19,5.5708682754527584e19,5.573462997518638e19,5.576057719584517e19,5.578652441650397e19,5.581247163716277e19,5.583841885782156e19,5.586436607848036e19,5.589031329913915e19,5.591626051979795e19,5.594220774045674e19,5.596815496111554e19,5.599410218177434e19,5.602004940243313e19,5.6045996623091925e19,5.6071943843750715e19,5.609789106440951e19,5.612383828506831e19,5.61497855057271e19,5.61757327263859e19,5.620167994704469e19,5.622762716770349e19,5.625357438836228e19,5.627952160902108e19,5.630546882967988e19,5.633141605033867e19,5.635736327099747e19,5.638331049165626e19,5.640925771231506e19,5.6435204932973855e19,5.6461152153632645e19,5.648709937429144e19,5.6513046594950234e19,5.653899381560903e19,5.656494103626782e19,5.659088825692662e19,5.661683547758542e19,5.664278269824421e19,5.666872991890301e19,5.66946771395618e19,5.67206243602206e19,5.67465715808794e19,5.677251880153819e19,5.6798466022196986e19,5.682441324285578e19,5.6850360463514575e19,5.6876307684173365e19,5.690225490483216e19,5.692820212549096e19,5.695414934614975e19,5.698009656680855e19,5.700604378746734e19,5.703199100812614e19,5.705793822878493e19,5.708388544944373e19,5.710983267010253e19,5.713577989076132e19,5.716172711142012e19,5.718767433207891e19,5.721362155273771e19,5.7239568773396505e19,5.7265515994055295e19,5.729146321471409e19,5.731741043537288e19,5.734335765603168e19,5.736930487669047e19,5.739525209734927e19,5.742119931800807e19,5.744714653866686e19,5.747309375932566e19,5.749904097998445e19,5.752498820064325e19,5.755093542130205e19,5.757688264196084e19,5.7602829862619636e19,5.762877708327843e19,5.7654724303937225e19,5.7680671524596015e19,5.770661874525481e19,5.773256596591361e19,5.77585131865724e19,5.77844604072312e19,5.781040762788999e19,5.783635484854879e19,5.786230206920759e19,5.788824928986638e19,5.791419651052518e19,5.794014373118397e19,5.796609095184277e19,5.799203817250156e19,5.8017985393160356e19,5.8043932613819154e19,5.8069879834477945e19,5.809582705513674e19,5.812177427579553e19,5.814772149645433e19,5.817366871711312e19,5.819961593777192e19,5.822556315843072e19,5.825151037908951e19,5.827745759974831e19,5.83034048204071e19,5.83293520410659e19,5.83552992617247e19,5.838124648238349e19,5.8407193703042286e19,5.843314092370108e19,5.8459088144359875e19,5.8485035365018665e19,5.851098258567746e19,5.853692980633626e19,5.856287702699505e19,5.858882424765385e19,5.861477146831264e19,5.864071868897144e19,5.866666590963024e19,5.869261313028903e19,5.871856035094783e19,5.874450757160662e19,5.877045479226542e19,5.879640201292421e19,5.8822349233583006e19,5.8848296454241804e19,5.8874243674900595e19,5.890019089555939e19,5.892613811621818e19,5.895208533687698e19,5.897803255753578e19,5.900397977819457e19,5.902992699885337e19,5.905587421951216e19,5.908182144017096e19,5.910776866082975e19,5.913371588148855e19,5.915966310214735e19,5.918561032280614e19,5.9211557543464935e19,5.9237504764123726e19,5.9263451984782524e19,5.9289399205441315e19,5.931534642610011e19,5.934129364675891e19,5.93672408674177e19,5.93931880880765e19,5.941913530873529e19,5.944508252939409e19,5.947102975005289e19,5.949697697071168e19,5.952292419137048e19,5.954887141202927e19,5.957481863268807e19,5.960076585334686e19,5.9626713074005656e19,5.9652660294664454e19,5.9678607515323245e19,5.970455473598204e19,5.973050195664083e19,5.975644917729963e19,5.978239639795843e19,5.980834361861722e19,5.983429083927602e19,5.986023805993481e19,5.988618528059361e19,5.99121325012524e19,5.99380797219112e19,5.996402694257e19,5.998997416322879e19,6.0015921383887585e19,6.0041868604546376e19,6.0067815825205174e19,6.009376304586397e19,6.011971026652276e19,6.014565748718156e19,6.017160470784035e19,6.019755192849915e19,6.022349914915794e19,6.024944636981674e19,6.027539359047554e19,6.030134081113433e19,6.032728803179313e19,6.035323525245192e19,6.037918247311072e19,6.040512969376951e19,6.0431076914428305e19,6.04570241350871e19,6.0482971355745894e19,6.050891857640469e19,6.053486579706348e19,6.056081301772228e19,6.058676023838108e19,6.061270745903987e19,6.063865467969867e19,6.066460190035746e19,6.069054912101626e19,6.071649634167505e19,6.074244356233385e19,6.076839078299265e19,6.079433800365144e19,6.0820285224310235e19,6.0846232444969026e19,6.0872179665627824e19,6.089812688628662e19,6.092407410694541e19,6.095002132760421e19,6.0975968548263e19,6.10019157689218e19,6.102786298958059e19,6.105381021023939e19,6.107975743089819e19,6.110570465155698e19,6.113165187221578e19,6.115759909287457e19,6.118354631353337e19,6.1209493534192165e19,6.1235440754850955e19,6.126138797550975e19,6.1287335196168544e19,6.131328241682734e19,6.133922963748613e19,6.136517685814493e19,6.139112407880373e19,6.141707129946252e19,6.144301852012132e19,6.146896574078011e19,6.149491296143891e19,6.15208601820977e19,6.15468074027565e19,6.15727546234153e19,6.159870184407409e19,6.1624649064732885e19,6.1650596285391675e19,6.167654350605047e19,6.170249072670927e19,6.172843794736806e19,6.175438516802686e19,6.178033238868565e19,6.180627960934445e19,6.183222683000324e19,6.185817405066204e19,6.188412127132084e19,6.191006849197963e19,6.193601571263843e19,6.196196293329722e19,6.198791015395602e19,6.2013857374614815e19,6.2039804595273605e19,6.20657518159324e19,6.2091699036591194e19,6.211764625724999e19,6.214359347790878e19,6.216954069856758e19,6.219548791922638e19,6.222143513988517e19,6.224738236054397e19,6.227332958120276e19,6.229927680186156e19,6.232522402252036e19,6.235117124317915e19,6.2377118463837946e19,6.240306568449674e19,6.2429012905155535e19,6.2454960125814325e19,6.248090734647312e19,6.250685456713192e19,6.253280178779071e19,6.255874900844951e19,6.25846962291083e19,6.26106434497671e19,6.263659067042589e19,6.266253789108469e19,6.268848511174349e19,6.271443233240228e19,6.274037955306108e19,6.276632677371987e19,6.279227399437867e19,6.2818221215037465e19,6.2844168435696255e19,6.287011565635505e19,6.289606287701384e19,6.292201009767264e19,6.294795731833143e19,6.297390453899023e19,6.299985175964903e19,6.302579898030782e19,6.305174620096662e19,6.307769342162541e19,6.310364064228421e19,6.312958786294301e19,6.31555350836018e19,6.3181482304260596e19,6.320742952491939e19,6.3233376745578185e19,6.3259323966236975e19,6.328527118689577e19,6.331121840755457e19,6.333716562821336e19,6.336311284887216e19,6.338906006953095e19,6.341500729018975e19,6.344095451084855e19,6.346690173150734e19,6.349284895216614e19,6.351879617282493e19,6.354474339348373e19,6.357069061414252e19,6.3596637834801316e19,6.3622585055460114e19,6.3648532276118905e19,6.36744794967777e19,6.370042671743649e19,6.372637393809529e19,6.375232115875408e19,6.377826837941288e19,6.380421560007168e19,6.383016282073047e19,6.385611004138927e19,6.388205726204806e19,6.390800448270686e19,6.393395170336566e19,6.395989892402445e19,6.3985846144683246e19,6.401179336534204e19,6.4037740586000835e19,6.4063687806659625e19,6.408963502731842e19,6.411558224797722e19,6.414152946863601e19,6.416747668929481e19,6.41934239099536e19,6.42193711306124e19,6.42453183512712e19,6.427126557192999e19,6.429721279258879e19,6.432316001324758e19,6.434910723390638e19,6.437505445456517e19,6.4401001675223966e19,6.4426948895882764e19,6.4452896116541555e19,6.447884333720035e19,6.450479055785914e19,6.453073777851794e19,6.455668499917674e19,6.458263221983553e19,6.460857944049433e19,6.463452666115312e19,6.466047388181192e19,6.468642110247071e19,6.471236832312951e19,6.473831554378831e19,6.47642627644471e19,6.4790209985105895e19,6.4816157205764686e19,6.4842104426423484e19,6.4868051647082275e19,6.489399886774107e19,6.491994608839987e19,6.494589330905866e19,6.497184052971746e19,6.499778775037625e19,6.502373497103505e19,6.504968219169385e19,6.507562941235264e19,6.510157663301144e19,6.512752385367023e19,6.515347107432903e19,6.517941829498782e19,6.5205365515646616e19,6.5231312736305414e19,6.5257259956964205e19,6.5283207177623e19,6.530915439828179e19,6.533510161894059e19,6.536104883959939e19,6.538699606025818e19,6.541294328091698e19,6.543889050157577e19,6.546483772223457e19,6.549078494289336e19,6.551673216355216e19,6.554267938421096e19,6.556862660486975e19,6.5594573825528545e19,6.5620521046187336e19,6.5646468266846134e19,6.567241548750493e19,6.569836270816372e19,6.572430992882252e19,6.575025714948131e19,6.577620437014011e19,6.58021515907989e19,6.58280988114577e19,6.58540460321165e19,6.587999325277529e19,6.590594047343409e19,6.593188769409288e19,6.595783491475168e19,6.598378213541047e19,6.6009729356069265e19,6.603567657672806e19,6.6061623797386854e19,6.608757101804565e19,6.611351823870444e19,6.613946545936324e19,6.616541268002204e19,6.619135990068083e19,6.621730712133963e19,6.624325434199842e19,6.626920156265722e19,6.629514878331601e19,6.632109600397481e19,6.634704322463361e19,6.63729904452924e19,6.6398937665951195e19,6.6424884886609986e19,6.6450832107268784e19,6.647677932792758e19,6.650272654858637e19,6.652867376924517e19,6.655462098990396e19,6.658056821056276e19,6.660651543122155e19,6.663246265188035e19,6.665840987253915e19,6.668435709319794e19,6.671030431385674e19,6.673625153451553e19,6.676219875517433e19,6.6788145975833125e19,6.6814093196491915e19,6.684004041715071e19,6.6865987637809504e19,6.68919348584683e19,6.691788207912709e19,6.694382929978589e19,6.696977652044469e19,6.699572374110348e19,6.702167096176228e19,6.704761818242107e19,6.707356540307987e19,6.709951262373866e19,6.712545984439746e19,6.715140706505626e19,6.717735428571505e19,6.7203301506373845e19,6.7229248727032635e19,6.725519594769143e19,6.728114316835023e19,6.730709038900902e19,6.733303760966782e19,6.735898483032661e19,6.738493205098541e19,6.74108792716442e19,6.7436826492303e19,6.74627737129618e19,6.748872093362059e19,6.751466815427939e19,6.754061537493818e19,6.756656259559698e19,6.7592509816255775e19,6.7618457036914565e19,6.764440425757336e19,6.7670351478232154e19,6.769629869889095e19,6.772224591954974e19,6.774819314020854e19,6.777414036086734e19,6.780008758152613e19,6.782603480218493e19,6.785198202284372e19,6.787792924350252e19,6.790387646416132e19,6.792982368482011e19,6.7955770905478906e19,6.79817181261377e19,6.8007665346796495e19,6.8033612567455285e19,6.805955978811408e19,6.808550700877288e19,6.811145422943167e19,6.813740145009047e19,6.816334867074926e19,6.818929589140806e19,6.821524311206685e19,6.824119033272565e19,6.826713755338445e19,6.829308477404324e19,6.831903199470204e19,6.834497921536083e19,6.837092643601963e19,6.8396873656678425e19,6.8422820877337215e19,6.844876809799601e19,6.84747153186548e19,6.85006625393136e19,6.852660975997239e19,6.855255698063119e19,6.857850420128999e19,6.860445142194878e19,6.863039864260758e19,6.865634586326637e19,6.868229308392517e19,6.870824030458397e19,6.873418752524276e19,6.8760134745901556e19,6.878608196656035e19,6.8812029187219145e19,6.8837976407877935e19,6.886392362853673e19,6.888987084919553e19,6.891581806985432e19,6.894176529051312e19,6.896771251117191e19,6.899365973183071e19,6.901960695248951e19,6.90455541731483e19,6.90715013938071e19,6.909744861446589e19,6.912339583512469e19,6.914934305578348e19,6.9175290276442276e19,6.9201237497101074e19,6.9227184717759865e19,6.925313193841866e19,6.927907915907745e19,6.930502637973625e19,6.933097360039504e19,6.935692082105384e19,6.938286804171264e19,6.940881526237143e19,6.943476248303023e19,6.946070970368902e19,6.948665692434782e19,6.951260414500662e19,6.953855136566541e19,6.9564498586324206e19,6.9590445806983e19,6.9616393027641795e19,6.9642340248300585e19,6.966828746895938e19,6.969423468961818e19,6.972018191027697e19,6.974612913093577e19,6.977207635159456e19,6.979802357225336e19,6.982397079291216e19,6.984991801357095e19,6.987586523422975e19,6.990181245488854e19,6.992775967554734e19,6.995370689620613e19,6.9979654116864926e19,7.0005601337523724e19,7.0031548558182515e19,7.005749577884131e19,7.00834429995001e19,7.01093902201589e19,7.01353374408177e19,7.016128466147649e19,7.018723188213529e19,7.021317910279408e19,7.023912632345288e19,7.026507354411167e19,7.029102076477047e19,7.031696798542927e19,7.034291520608806e19,7.0368862426746855e19,7.0394809647405646e19,7.0420756868064444e19,7.0446704088723235e19,7.047265130938203e19,7.049859853004083e19,7.052454575069962e19,7.055049297135842e19,7.057644019201721e19,7.060238741267601e19,7.062833463333481e19,7.06542818539936e19,7.06802290746524e19,7.070617629531119e19,7.073212351596999e19,7.075807073662878e19,7.0784017957287576e19,7.0809965177946374e19,7.0835912398605165e19,7.086185961926396e19,7.088780683992275e19,7.091375406058155e19,7.093970128124035e19,7.096564850189914e19,7.099159572255794e19,7.101754294321673e19,7.104349016387553e19,7.106943738453432e19,7.109538460519312e19,7.112133182585192e19,7.114727904651071e19,7.1173226267169505e19,7.1199173487828296e19,7.1225120708487094e19,7.125106792914589e19,7.127701514980468e19,7.130296237046348e19,7.132890959112227e19,7.135485681178107e19,7.138080403243986e19,7.140675125309866e19,7.143269847375746e19,7.145864569441625e19,7.148459291507505e19,7.151054013573384e19,7.153648735639264e19,7.156243457705143e19,7.1588381797710225e19,7.161432901836902e19,7.1640276239027814e19,7.166622345968661e19,7.16921706803454e19,7.17181179010042e19,7.1744065121663e19,7.177001234232179e19,7.179595956298059e19,7.182190678363938e19,7.184785400429818e19,7.187380122495697e19,7.189974844561577e19,7.192569566627457e19,7.195164288693336e19,7.1977590107592155e19,7.2003537328250946e19,7.2029484548909744e19,7.205543176956854e19,7.208137899022733e19,7.210732621088613e19,7.213327343154492e19,7.215922065220372e19,7.218516787286251e19,7.221111509352131e19,7.223706231418011e19,7.22630095348389e19,7.22889567554977e19,7.231490397615649e19,7.234085119681529e19,7.2366798417474085e19,7.2392745638132875e19,7.241869285879167e19,7.2444640079450464e19,7.247058730010926e19,7.249653452076805e19,7.252248174142685e19,7.254842896208565e19,7.257437618274444e19,7.260032340340324e19,7.262627062406203e19,7.265221784472083e19,7.267816506537962e19,7.270411228603842e19,7.273005950669722e19,7.275600672735601e19,7.2781953948014805e19,7.2807901168673595e19,7.283384838933239e19,7.285979560999119e19,7.288574283064998e19,7.291169005130878e19,7.293763727196757e19,7.296358449262637e19,7.298953171328516e19,7.301547893394396e19,7.304142615460276e19,7.306737337526155e19,7.309332059592035e19,7.311926781657914e19,7.314521503723794e19,7.3171162257896735e19,7.3197109478555525e19,7.322305669921432e19,7.3249003919873114e19,7.327495114053191e19,7.33008983611907e19,7.33268455818495e19,7.33527928025083e19,7.337874002316709e19,7.340468724382589e19,7.343063446448468e19,7.345658168514348e19,7.348252890580228e19,7.350847612646107e19,7.3534423347119866e19,7.356037056777866e19,7.3586317788437455e19,7.3612265009096245e19,7.363821222975504e19,7.366415945041384e19,7.369010667107263e19,7.371605389173143e19,7.374200111239022e19,7.376794833304902e19,7.379389555370782e19,7.381984277436662e19,7.38457899950254e19,7.38717372156842e19,7.3897684436343e19,7.39236316570018e19,7.394957887766058e19,7.397552609831938e19,7.400147331897817e19,7.402742053963697e19,7.405336776029577e19,7.407931498095455e19,7.410526220161335e19,7.413120942227215e19,7.415715664293095e19,7.418310386358975e19,7.420905108424853e19,7.423499830490733e19,7.426094552556613e19,7.428689274622493e19,7.431283996688373e19,7.43387871875425e19,7.43647344082013e19,7.43906816288601e19,7.44166288495189e19,7.44425760701777e19,7.446852329083648e19,7.449447051149528e19,7.452041773215408e19,7.454636495281288e19,7.457231217347166e19,7.459825939413046e19,7.462420661478926e19,7.465015383544806e19,7.467610105610686e19,7.470204827676564e19,7.472799549742444e19,7.475394271808324e19,7.477988993874203e19,7.480583715940083e19,7.483178438005962e19,7.485773160071841e19,7.488367882137721e19,7.490962604203601e19,7.493557326269481e19,7.49615204833536e19,7.498746770401239e19,7.501341492467119e19,7.503936214532999e19,7.506530936598877e19,7.509125658664757e19,7.511720380730637e19,7.514315102796517e19,7.516909824862396e19,7.519504546928275e19,7.522099268994154e19,7.524693991060034e19,7.527288713125914e19,7.529883435191794e19,7.532478157257672e19,7.535072879323552e19,7.537667601389432e19,7.540262323455312e19,7.542857045521192e19,7.54545176758707e19,7.54804648965295e19,7.55064121171883e19,7.55323593378471e19,7.55583065585059e19,7.558425377916468e19,7.561020099982347e19,7.563614822048227e19,7.566209544114107e19,7.568804266179985e19,7.571398988245865e19,7.573993710311745e19,7.576588432377625e19,7.579183154443505e19,7.581777876509383e19,7.584372598575263e19,7.586967320641143e19,7.589562042707023e19,7.592156764772903e19,7.59475148683878e19,7.59734620890466e19,7.59994093097054e19,7.60253565303642e19,7.6051303751023e19,7.607725097168178e19,7.610319819234058e19,7.612914541299938e19,7.615509263365818e19,7.618103985431696e19,7.620698707497576e19,7.623293429563456e19,7.625888151629336e19,7.628482873695216e19,7.631077595761094e19,7.633672317826974e19,7.636267039892854e19,7.638861761958733e19,7.641456484024613e19,7.644051206090491e19,7.646645928156371e19,7.649240650222251e19,7.651835372288131e19,7.654430094354011e19,7.657024816419889e19,7.659619538485769e19,7.662214260551649e19,7.664808982617529e19,7.667403704683409e19,7.669998426749287e19,7.672593148815167e19,7.675187870881047e19,7.677782592946926e19,7.680377315012805e19,7.682972037078684e19,7.685566759144564e19,7.688161481210444e19,7.690756203276324e19,7.693350925342202e19,7.695945647408082e19,7.698540369473962e19,7.701135091539842e19,7.703729813605722e19,7.7063245356716e19,7.70891925773748e19,7.71151397980336e19,7.71410870186924e19,7.71670342393512e19,7.719298146000998e19,7.721892868066877e19,7.724487590132757e19,7.727082312198637e19,7.729677034264515e19,7.732271756330395e19,7.734866478396275e19,7.737461200462155e19,7.740055922528035e19,7.742650644593913e19,7.745245366659793e19,7.747840088725673e19,7.750434810791553e19,7.753029532857432e19,7.75562425492331e19,7.75821897698919e19,7.76081369905507e19,7.76340842112095e19,7.76600314318683e19,7.768597865252708e19,7.771192587318588e19,7.773787309384468e19,7.776382031450348e19,7.778976753516228e19,7.781571475582106e19,7.784166197647986e19,7.786760919713866e19,7.789355641779746e19,7.791950363845624e19,7.794545085911504e19,7.797139807977384e19,7.799734530043263e19,7.802329252109143e19,7.804923974175021e19,7.807518696240901e19,7.810113418306781e19,7.812708140372661e19,7.815302862438541e19,7.817897584504419e19,7.820492306570299e19,7.823087028636179e19,7.825681750702059e19,7.828276472767939e19,7.830871194833817e19,7.833465916899697e19,7.836060638965576e19,7.838655361031456e19,7.841250083097335e19,7.843844805163214e19,7.846439527229094e19,7.849034249294974e19,7.851628971360854e19,7.854223693426732e19,7.856818415492612e19,7.859413137558492e19,7.862007859624372e19,7.864602581690252e19,7.86719730375613e19,7.86979202582201e19,7.87238674788789e19,7.87498146995377e19,7.87757619201965e19,7.880170914085528e19,7.882765636151407e19,7.885360358217287e19,7.887955080283167e19,7.890549802349047e19,7.893144524414925e19,7.895739246480805e19,7.898333968546685e19,7.900928690612565e19,7.903523412678443e19,7.906118134744323e19,7.908712856810203e19,7.911307578876083e19,7.913902300941962e19,7.91649702300784e19,7.91909174507372e19,7.9216864671396e19,7.92428118920548e19,7.92687591127136e19,7.929470633337238e19,7.932065355403118e19,7.934660077468998e19,7.937254799534878e19,7.939849521600758e19,7.942444243666636e19,7.945038965732516e19,7.947633687798396e19,7.950228409864276e19,7.952823131930154e19,7.955417853996034e19,7.958012576061913e19,7.960607298127793e19,7.963202020193673e19,7.965796742259551e19,7.968391464325431e19,7.970986186391311e19,7.973580908457191e19,7.976175630523071e19,7.978770352588949e19,7.981365074654829e19,7.983959796720709e19,7.986554518786589e19,7.989149240852469e19,7.991743962918347e19,7.994338684984227e19,7.996933407050106e19,7.999528129115986e19,8.002122851181866e19,8.004717573247744e19,8.007312295313624e19,8.009907017379504e19,8.012501739445384e19,8.015096461511262e19,8.017691183577142e19,8.020285905643022e19,8.022880627708902e19,8.025475349774782e19,8.02807007184066e19,8.03066479390654e19,8.03325951597242e19,8.0358542380383e19,8.03844896010418e19,8.041043682170058e19,8.043638404235937e19,8.046233126301817e19,8.048827848367697e19,8.051422570433577e19,8.054017292499455e19,8.056612014565335e19,8.059206736631215e19,8.061801458697095e19,8.064396180762973e19,8.066990902828853e19,8.069585624894733e19,8.072180346960613e19,8.074775069026492e19,8.07736979109237e19,8.07996451315825e19,8.08255923522413e19,8.08515395729001e19,8.08774867935589e19,8.090343401421768e19,8.092938123487648e19,8.095532845553528e19,8.098127567619408e19,8.100722289685288e19,8.103317011751166e19,8.105911733817046e19,8.108506455882926e19,8.111101177948806e19,8.113695900014685e19,8.116290622080564e19,8.118885344146443e19,8.121480066212323e19,8.124074788278203e19,8.126669510344081e19,8.129264232409961e19,8.131858954475841e19,8.134453676541721e19,8.137048398607601e19,8.139643120673479e19,8.142237842739359e19,8.144832564805239e19,8.147427286871119e19,8.150022008936999e19,8.152616731002877e19,8.155211453068757e19,8.157806175134636e19,8.160400897200516e19,8.162995619266396e19,8.165590341332274e19,8.168185063398154e19,8.170779785464034e19,8.173374507529914e19,8.175969229595792e19,8.178563951661672e19,8.181158673727552e19,8.183753395793432e19,8.186348117859312e19,8.18894283992519e19,8.19153756199107e19,8.19413228405695e19,8.19672700612283e19,8.19932172818871e19,8.201916450254587e19,8.204511172320467e19,8.207105894386347e19,8.209700616452227e19,8.212295338518107e19,8.214890060583985e19,8.217484782649865e19,8.220079504715745e19,8.222674226781625e19,8.225268948847505e19,8.227863670913383e19,8.230458392979263e19,8.233053115045143e19,8.235647837111022e19,8.2382425591769e19,8.24083728124278e19,8.24343200330866e19,8.24602672537454e19,8.24862144744042e19,8.251216169506298e19,8.253810891572178e19,8.256405613638058e19,8.259000335703938e19,8.261595057769818e19,8.264189779835696e19,8.266784501901576e19,8.269379223967456e19,8.271973946033336e19,8.274568668099215e19,8.277163390165094e19,8.279758112230973e19,8.282352834296853e19,8.284947556362733e19,8.287542278428611e19,8.290137000494491e19,8.292731722560371e19,8.295326444626251e19,8.29792116669213e19,8.300515888758009e19,8.303110610823889e19,8.305705332889769e19,8.308300054955649e19,8.310894777021528e19,8.313489499087407e19,8.316084221153287e19,8.318678943219166e19,8.321273665285046e19,8.323868387350926e19,8.326463109416804e19,8.329057831482684e19,8.331652553548564e19,8.334247275614444e19,8.336841997680324e19,8.339436719746202e19,8.342031441812082e19,8.344626163877962e19,8.347220885943842e19,8.34981560800972e19,8.3524103300756e19,8.35500505214148e19,8.35759977420736e19,8.36019449627324e19,8.362789218339117e19,8.365383940404997e19,8.367978662470877e19,8.370573384536757e19,8.373168106602637e19,8.375762828668515e19,8.378357550734395e19,8.380952272800275e19,8.383546994866155e19,8.386141716932035e19,8.388736438997913e19,8.391331161063793e19,8.393925883129672e19,8.396520605195552e19,8.39911532726143e19,8.40171004932731e19,8.40430477139319e19,8.40689949345907e19,8.40949421552495e19,8.412088937590828e19,8.414683659656708e19,8.417278381722588e19,8.419873103788468e19,8.422467825854348e19,8.425062547920226e19,8.427657269986106e19,8.430251992051986e19,8.432846714117865e19,8.435441436183745e19,8.438036158249624e19,8.440630880315503e19,8.443225602381383e19,8.445820324447263e19,8.448415046513143e19,8.451009768579021e19,8.453604490644901e19,8.456199212710781e19,8.45879393477666e19,8.461388656842539e19,8.463983378908419e19,8.466578100974299e19,8.469172823040179e19,8.471767545106058e19,8.474362267171937e19,8.476956989237817e19,8.479551711303696e19,8.482146433369576e19,8.484741155435456e19,8.487335877501334e19,8.489930599567214e19,8.492525321633094e19,8.495120043698974e19,8.497714765764854e19,8.500309487830732e19,8.502904209896612e19,8.505498931962492e19,8.508093654028372e19,8.51068837609425e19,8.51328309816013e19,8.51587782022601e19,8.51847254229189e19,8.52106726435777e19,8.523661986423647e19,8.526256708489527e19,8.528851430555407e19,8.531446152621287e19,8.534040874687167e19,8.536635596753045e19,8.539230318818925e19,8.541825040884805e19,8.544419762950685e19,8.547014485016565e19,8.549609207082443e19,8.552203929148323e19,8.554798651214202e19,8.557393373280082e19,8.559988095345962e19,8.56258281741184e19,8.56517753947772e19,8.5677722615436e19,8.57036698360948e19,8.572961705675358e19,8.575556427741238e19,8.578151149807118e19,8.580745871872998e19,8.583340593938878e19,8.585935316004756e19,8.588530038070636e19,8.591124760136516e19,8.593719482202395e19,8.596314204268275e19,8.598908926334154e19,8.601503648400033e19,8.604098370465913e19,8.606693092531793e19,8.609287814597673e19,8.611882536663551e19,8.614477258729431e19,8.617071980795311e19,8.61966670286119e19,8.622261424927069e19,8.624856146992949e19,8.627450869058829e19,8.630045591124709e19,8.632640313190588e19,8.635235035256467e19,8.637829757322346e19,8.640424479388226e19,8.643019201454106e19,8.645613923519986e19,8.648208645585864e19,8.650803367651744e19,8.653398089717624e19,8.655992811783504e19,8.658587533849384e19,8.661182255915262e19,8.663776977981142e19,8.666371700047022e19,8.668966422112902e19,8.671561144178781e19,8.67415586624466e19,8.67675058831054e19,8.67934531037642e19,8.6819400324423e19,8.684534754508177e19,8.687129476574057e19,8.689724198639937e19,8.692318920705817e19,8.694913642771697e19,8.697508364837575e19,8.700103086903455e19,8.702697808969335e19,8.705292531035215e19,8.707887253101095e19,8.710481975166973e19,8.713076697232853e19,8.715671419298732e19,8.718266141364612e19,8.720860863430492e19,8.72345558549637e19,8.72605030756225e19,8.72864502962813e19,8.73123975169401e19,8.733834473759888e19,8.736429195825768e19,8.739023917891648e19,8.741618639957528e19,8.744213362023408e19,8.746808084089286e19,8.749402806155166e19,8.751997528221046e19,8.754592250286925e19,8.757186972352805e19,8.759781694418683e19,8.762376416484563e19,8.764971138550443e19,8.767565860616323e19,8.770160582682203e19,8.772755304748081e19,8.775350026813961e19,8.777944748879841e19,8.78053947094572e19,8.7831341930116e19,8.785728915077479e19,8.788323637143359e19,8.790918359209239e19,8.793513081275118e19,8.796107803340997e19,8.798702525406876e19,8.801297247472756e19,8.803891969538636e19,8.806486691604516e19,8.809081413670394e19,8.811676135736274e19,8.814270857802154e19,8.816865579868034e19,8.819460301933914e19,8.822055023999792e19,8.824649746065672e19,8.827244468131552e19,8.829839190197432e19,8.832433912263311e19,8.83502863432919e19,8.83762335639507e19,8.84021807846095e19,8.842812800526829e19,8.845407522592707e19,8.848002244658587e19,8.850596966724467e19,8.853191688790347e19,8.855786410856227e19,8.858381132922105e19,8.860975854987985e19,8.863570577053865e19,8.866165299119745e19,8.868760021185624e19,8.871354743251503e19,8.873949465317383e19,8.876544187383262e19,8.879138909449142e19,8.881733631515022e19,8.8843283535809e19,8.88692307564678e19,8.88951779771266e19,8.89211251977854e19,8.89470724184442e19,8.897301963910298e19,8.899896685976178e19,8.902491408042058e19,8.905086130107938e19,8.907680852173816e19,8.910275574239696e19,8.912870296305576e19,8.915465018371455e19,8.918059740437335e19,8.920654462503213e19,8.923249184569093e19,8.925843906634973e19,8.928438628700853e19,8.931033350766733e19,8.933628072832611e19,8.936222794898491e19,8.938817516964371e19,8.94141223903025e19,8.94400696109613e19,8.946601683162009e19,8.949196405227889e19,8.951791127293768e19,8.954385849359648e19,8.956980571425527e19,8.959575293491406e19,8.962170015557286e19,8.964764737623166e19,8.967359459689046e19,8.969954181754924e19,8.972548903820804e19,8.975143625886684e19,8.977738347952564e19,8.980333070018444e19,8.982927792084322e19,8.985522514150202e19,8.988117236216082e19,8.990711958281961e19,8.993306680347841e19,8.99590140241372e19,8.9984961244796e19,9.00109084654548e19,9.003685568611359e19,9.006280290677239e19,9.008875012743117e19,9.011469734808997e19,9.014064456874877e19,9.016659178940757e19,9.019253901006635e19,9.021848623072515e19,9.024443345138395e19,9.027038067204275e19,9.029632789270154e19,9.032227511336033e19,9.034822233401913e19,9.037416955467792e19,9.040011677533672e19,9.042606399599552e19,9.04520112166543e19,9.04779584373131e19,9.05039056579719e19,9.05298528786307e19,9.05558000992895e19,9.058174731994828e19,9.060769454060708e19,9.063364176126588e19,9.065958898192468e19,9.068553620258346e19,9.071148342324226e19,9.073743064390105e19,9.076337786455985e19,9.078932508521865e19,9.081527230587743e19,9.084121952653623e19,9.086716674719503e19,9.089311396785383e19,9.091906118851263e19,9.094500840917141e19,9.097095562983021e19,9.0996902850489e19,9.10228500711478e19,9.10487972918066e19,9.107474451246539e19,9.110069173312419e19,9.112663895378298e19,9.115258617444178e19,9.117853339510058e19,9.120448061575936e19,9.123042783641816e19,9.125637505707696e19,9.128232227773576e19,9.130826949839454e19,9.133421671905334e19,9.136016393971214e19,9.138611116037094e19,9.141205838102974e19,9.143800560168852e19,9.146395282234732e19,9.148990004300612e19,9.151584726366491e19,9.154179448432371e19,9.15677417049825e19,9.15936889256413e19,9.16196361463001e19,9.164558336695889e19,9.167153058761769e19,9.169747780827647e19,9.172342502893527e19,9.174937224959407e19,9.177531947025287e19,9.180126669091165e19,9.182721391157045e19,9.185316113222925e19,9.187910835288805e19,9.190505557354684e19,9.193100279420563e19,9.195695001486442e19,9.198289723552322e19,9.200884445618202e19,9.203479167684082e19,9.20607388974996e19,9.20866861181584e19,9.21126333388172e19,9.2138580559476e19,9.21645277801348e19,9.219047500079358e19,9.221642222145238e19,9.224236944211118e19,9.226831666276998e19,9.229426388342877e19,9.232021110408756e19,9.234615832474635e19,9.237210554540515e19,9.239805276606395e19,9.242399998672273e19,9.244994720738153e19,9.247589442804033e19,9.250184164869913e19,9.252778886935793e19,9.255373609001671e19,9.257968331067551e19,9.26056305313343e19,9.26315777519931e19,9.26575249726519e19,9.268347219331069e19,9.270941941396949e19,9.273536663462828e19,9.276131385528708e19,9.278726107594588e19,9.281320829660466e19,9.283915551726346e19,9.286510273792226e19,9.289104995858106e19,9.291699717923984e19,9.294294439989864e19,9.296889162055744e19,9.299483884121624e19,9.302078606187504e19,9.304673328253382e19,9.307268050319262e19,9.309862772385142e19,9.312457494451021e19,9.315052216516901e19,9.31764693858278e19,9.32024166064866e19,9.32283638271454e19,9.325431104780419e19,9.328025826846299e19,9.330620548912177e19,9.333215270978057e19,9.335809993043937e19,9.338404715109817e19,9.340999437175697e19,9.343594159241575e19,9.346188881307455e19,9.348783603373335e19,9.351378325439214e19,9.353973047505093e19,9.356567769570972e19,9.359162491636852e19,9.361757213702732e19,9.364351935768612e19,9.36694665783449e19,9.36954137990037e19,9.37213610196625e19,9.37473082403213e19,9.37732554609801e19,9.379920268163888e19,9.382514990229768e19,9.385109712295648e19,9.387704434361528e19,9.390299156427407e19,9.392893878493286e19,9.395488600559165e19,9.398083322625045e19,9.400678044690925e19,9.403272766756803e19,9.405867488822683e19,9.408462210888563e19,9.411056932954443e19,9.413651655020323e19,9.416246377086201e19,9.418841099152081e19,9.42143582121796e19,9.42403054328384e19,9.42662526534972e19,9.429219987415599e19,9.431814709481479e19,9.434409431547358e19,9.437004153613238e19,9.439598875679118e19,9.442193597744996e19,9.444788319810876e19,9.447383041876756e19,9.449977763942636e19,9.452572486008516e19,9.455167208074394e19,9.457761930140274e19,9.460356652206154e19,9.462951374272034e19,9.465546096337912e19,9.468140818403792e19,9.470735540469672e19,9.473330262535551e19,9.475924984601431e19,9.47851970666731e19,9.48111442873319e19,9.48370915079907e19,9.486303872864949e19,9.488898594930829e19,9.491493316996707e19,9.494088039062587e19,9.496682761128467e19,9.499277483194347e19,9.501872205260227e19,9.504466927326105e19,9.507061649391985e19,9.509656371457864e19,9.512251093523744e19,9.514845815589623e19,9.517440537655502e19,9.520035259721382e19,9.522629981787262e19,9.525224703853142e19,9.52781942591902e19,9.5304141479849e19,9.53300887005078e19,9.53560359211666e19,9.53819831418254e19,9.540793036248418e19,9.543387758314298e19,9.545982480380178e19,9.548577202446057e19,9.551171924511937e19,9.553766646577816e19,9.556361368643695e19,9.558956090709575e19,9.561550812775455e19,9.564145534841335e19,9.566740256907213e19,9.569334978973093e19,9.571929701038973e19,9.574524423104853e19,9.577119145170731e19,9.579713867236611e19,9.58230858930249e19,9.58490331136837e19,9.58749803343425e19,9.590092755500129e19,9.592687477566009e19,9.595282199631888e19,9.597876921697768e19,9.600471643763648e19,9.603066365829526e19,9.605661087895406e19,9.608255809961286e19,9.610850532027166e19,9.613445254093046e19,9.616039976158924e19,9.618634698224804e19,9.621229420290684e19,9.623824142356564e19,9.626418864422442e19,9.629013586488322e19,9.631608308554201e19,9.634203030620081e19,9.636797752685961e19,9.63939247475184e19,9.64198719681772e19,9.644581918883599e19,9.647176640949479e19,9.649771363015359e19,9.652366085081237e19,9.654960807147117e19,9.657555529212997e19,9.660150251278877e19,9.662744973344757e19,9.665339695410635e19,9.667934417476515e19,9.670529139542394e19,9.673123861608274e19,9.675718583674154e19,9.678313305740032e19,9.680908027805912e19,9.683502749871792e19,9.686097471937672e19,9.68869219400355e19,9.69128691606943e19,9.69388163813531e19,9.69647636020119e19,9.69907108226707e19,9.701665804332948e19,9.704260526398828e19,9.706855248464708e19,9.709449970530587e19,9.712044692596467e19,9.714639414662346e19,9.717234136728225e19,9.719828858794105e19,9.722423580859985e19,9.725018302925865e19,9.727613024991743e19,9.730207747057623e19,9.732802469123503e19,9.735397191189383e19,9.737991913255261e19,9.740586635321141e19,9.74318135738702e19,9.7457760794529e19,9.74837080151878e19,9.750965523584659e19,9.753560245650538e19,9.756154967716418e19,9.758749689782298e19,9.761344411848178e19,9.763939133914056e19,9.766533855979936e19,9.769128578045816e19,9.771723300111696e19,9.774318022177576e19,9.776912744243454e19,9.779507466309334e19,9.782102188375214e19,9.784696910441094e19,9.787291632506973e19,9.789886354572852e19,9.792481076638731e19,9.795075798704611e19,9.797670520770491e19,9.80026524283637e19,9.80285996490225e19,9.805454686968129e19,9.808049409034009e19,9.810644131099889e19,9.813238853165767e19,9.815833575231647e19,9.818428297297527e19,9.821023019363407e19,9.823617741429287e19,9.826212463495165e19,9.828807185561045e19,9.831401907626924e19,9.833996629692804e19,9.836591351758684e19,9.839186073824562e19,9.841780795890442e19,9.844375517956322e19,9.846970240022202e19,9.84956496208808e19,9.85215968415396e19,9.85475440621984e19,9.85734912828572e19,9.8599438503516e19,9.862538572417478e19,9.865133294483358e19,9.867728016549238e19,9.870322738615117e19,9.872917460680997e19,9.875512182746875e19,9.878106904812755e19,9.880701626878635e19,9.883296348944515e19,9.885891071010395e19,9.888485793076273e19,9.891080515142153e19,9.893675237208033e19,9.896269959273913e19,9.898864681339793e19,9.90145940340567e19,9.90405412547155e19,9.90664884753743e19,9.90924356960331e19,9.911838291669189e19,9.914433013735068e19,9.917027735800948e19,9.919622457866828e19,9.922217179932708e19,9.924811901998586e19,9.927406624064466e19,9.930001346130346e19,9.932596068196226e19,9.935190790262106e19,9.937785512327984e19,9.940380234393864e19,9.942974956459744e19,9.945569678525624e19,9.948164400591503e19,9.950759122657382e19,9.953353844723261e19,9.955948566789141e19,9.958543288855021e19,9.9611380109209e19,9.96373273298678e19,9.966327455052659e19,9.968922177118539e19,9.971516899184419e19,9.974111621250297e19,9.976706343316177e19,9.979301065382057e19,9.981895787447937e19,9.984490509513816e19,9.987085231579695e19,9.989679953645575e19,9.992274675711454e19,9.994869397777334e19,9.997464119843214e19,1.0000058841909092e20,1.0002653563974972e20,1.0005248286040852e20,1.0007843008106732e20,1.0010437730172612e20,1.001303245223849e20,1.001562717430437e20,1.001822189637025e20,1.002081661843613e20,1.0023411340502008e20,1.0026006062567888e20,1.0028600784633768e20,1.0031195506699647e20,1.0033790228765527e20,1.0036384950831405e20,1.0038979672897285e20,1.0041574394963165e20,1.0044169117029045e20,1.0046763839094925e20,1.0049358561160803e20,1.0051953283226683e20,1.0054548005292563e20,1.0057142727358443e20,1.0059737449424323e20,1.00623321714902e20,1.006492689355608e20,1.006752161562196e20,1.007011633768784e20,1.0072711059753719e20,1.0075305781819598e20,1.0077900503885478e20,1.0080495225951358e20,1.0083089948017238e20,1.0085684670083116e20,1.0088279392148996e20,1.0090874114214876e20,1.0093468836280756e20,1.0096063558346636e20,1.0098658280412514e20,1.0101253002478394e20,1.0103847724544274e20,1.0106442446610153e20,1.0109037168676033e20,1.0111631890741912e20,1.0114226612807791e20,1.0116821334873671e20,1.0119416056939551e20,1.0122010779005431e20,1.012460550107131e20,1.0127200223137189e20,1.0129794945203069e20,1.0132389667268949e20,1.0134984389334827e20,1.0137579111400707e20,1.0140173833466587e20,1.0142768555532467e20,1.0145363277598346e20,1.0147957999664225e20,1.0150552721730105e20,1.0153147443795984e20,1.0155742165861864e20,1.0158336887927744e20,1.0160931609993622e20,1.0163526332059502e20,1.0166121054125382e20,1.0168715776191262e20,1.0171310498257142e20,1.017390522032302e20,1.01764999423889e20,1.017909466445478e20,1.018168938652066e20,1.0184284108586538e20,1.0186878830652418e20,1.0189473552718297e20,1.0192068274784177e20,1.0194662996850057e20,1.0197257718915935e20,1.0199852440981815e20,1.0202447163047695e20,1.0205041885113575e20,1.0207636607179455e20,1.0210231329245333e20,1.0212826051311213e20,1.0215420773377093e20,1.0218015495442973e20,1.0220610217508853e20,1.022320493957473e20,1.022579966164061e20,1.022839438370649e20,1.023098910577237e20,1.023358382783825e20,1.0236178549904128e20,1.0238773271970008e20,1.0241367994035888e20,1.0243962716101768e20,1.0246557438167646e20,1.0249152160233526e20,1.0251746882299406e20,1.0254341604365286e20,1.0256936326431166e20,1.0259531048497044e20,1.0262125770562924e20,1.0264720492628804e20,1.0267315214694683e20,1.0269909936760563e20,1.0272504658826442e20,1.0275099380892321e20,1.0277694102958201e20,1.0280288825024081e20,1.0282883547089961e20,1.028547826915584e20,1.0288072991221719e20,1.0290667713287599e20,1.0293262435353479e20,1.0295857157419357e20,1.0298451879485237e20,1.0301046601551117e20,1.0303641323616997e20,1.0306236045682876e20,1.0308830767748755e20,1.0311425489814634e20,1.0314020211880514e20,1.0316614933946394e20,1.0319209656012274e20,1.0321804378078152e20,1.0324399100144032e20,1.0326993822209912e20,1.0329588544275792e20,1.0332183266341672e20,1.033477798840755e20,1.033737271047343e20,1.033996743253931e20,1.034256215460519e20,1.034515687667107e20,1.0347751598736948e20,1.0350346320802827e20,1.0352941042868707e20,1.0355535764934587e20,1.0358130487000465e20,1.0360725209066345e20,1.0363319931132225e20,1.0365914653198105e20,1.0368509375263985e20,1.0371104097329863e20,1.0373698819395743e20,1.0376293541461623e20],"cosine":[1.0,-0.4383711467890774,-0.6156614753256583,0.9902680687415704,-0.24192189559966773,-0.6156614753256583,0.9612616959383189,-0.10452846326765347,-0.882947592858927,0.766044443118978,-0.24192189559966773,-0.8090169943749475,0.848048096156426,-0.374606593415912,-0.9781476007338057,0.9135454576426009,0.5591929034707468,-0.9396926207859084,0.17364817766693036,0.4383711467890774,-0.882947592858927,0.30901699437494745,0.30901699437494745,-0.882947592858927,0.4383711467890774,0.17364817766693036,-0.7193398003386511,-0.5,0.9135454576426009,-0.9781476007338057,0.6691306063588582,-0.10452846326765347,-0.374606593415912,-0.24192189559966773,0.766044443118978,-0.9975640502598242,-0.9396926207859084,0.9612616959383189,-0.6156614753256583,0.03489949670250097,0.5591929034707468,0.30901699437494745,-0.8090169943749475,1.0,-0.8090169943749475,0.30901699437494745,0.5591929034707468,-0.8090169943749475,-0.6156614753256583,-0.374606593415912,-0.9396926207859084,-0.9975640502598242,0.03489949670250097,-0.24192189559966773,-0.5,0.848048096156426,0.6691306063588582,0.766044443118978,0.9135454576426009,0.9902680687415704,-0.10452846326765347,0.17364817766693036,-0.9781476007338057,-0.882947592858927,-0.7193398003386511,-0.7193398003386511,-0.882947592858927,-0.9781476007338057,0.17364817766693036,-0.10452846326765347,0.9902680687415704,0.9135454576426009,0.766044443118978,0.6691306063588582,0.848048096156426,-0.5,-0.24192189559966773,0.03489949670250097,-0.9975640502598242,-0.9396926207859084,-0.374606593415912,-0.6156614753256583,-0.8090169943749475,0.5591929034707468,0.30901699437494745,0.9612616959383189,1.0,0.9612616959383189,0.30901699437494745,0.5591929034707468,-0.8090169943749475,0.9135454576426009,-0.374606593415912,-0.9396926207859084,0.30901699437494745,-0.9781476007338057,-0.24192189559966773,0.9612616959383189,-0.7193398003386511,0.6691306063588582,0.766044443118978,0.17364817766693036,0.9902680687415704,-0.10452846326765347,-0.9975640502598242,0.4383711467890774,-0.882947592858927,-0.5,-0.5,-0.882947592858927,0.4383711467890774,-0.9975640502598242,-0.10452846326765347,0.9902680687415704,0.17364817766693036,0.766044443118978,0.6691306063588582,-0.7193398003386511,0.9612616959383189,-0.24192189559966773,-0.9781476007338057,0.30901699437494745,-0.9396926207859084,-0.374606593415912,0.9135454576426009,-0.8090169943749475,0.5591929034707468,0.848048096156426,0.03489949670250097,1.0,0.03489949670250097,0.848048096156426,0.5591929034707468,-0.8090169943749475,0.9135454576426009,-0.374606593415912,-0.9396926207859084,0.30901699437494745,-0.9781476007338057,-0.24192189559966773,0.9612616959383189,-0.7193398003386511,0.6691306063588582,0.766044443118978,0.17364817766693036,0.9902680687415704,-0.10452846326765347,-0.9975640502598242,0.4383711467890774,-0.882947592858927,-0.5,-0.5,-0.882947592858927,0.4383711467890774,-0.9975640502598242,-0.10452846326765347,0.9902680687415704,0.17364817766693036,0.766044443118978,0.6691306063588582,-0.7193398003386511,0.9612616959383189,-0.24192189559966773,-0.9781476007338057,0.30901699437494745,-0.9396926207859084,-0.374606593415912,0.9135454576426009,-0.8090169943749475,0.5591929034707468,0.848048096156426,0.03489949670250097,1.0,0.03489949670250097,0.848048096156426,0.5591929034707468,-0.8090169943749475,0.9135454576426009,-0.374606593415912,0.9902680687415704,0.30901699437494745,-0.9781476007338057,0.6691306063588582,0.9612616959383189,-0.7193398003386511,-0.9396926207859084,0.766044443118978,0.17364817766693036,-0.8090169943749475,-0.10452846326765347,0.9135454576426009,0.03489949670250097,-0.882947592858927,0.848048096156426,0.848048096156426,-0.882947592858927,0.03489949670250097,0.9135454576426009,-0.10452846326765347,-0.8090169943749475,0.17364817766693036,0.766044443118978,-0.9396926207859084,-0.7193398003386511,0.9612616959383189,0.6691306063588582,-0.9781476007338057,0.30901699437494745,0.9902680687415704,-0.374606593415912,-0.6156614753256583,0.4383711467890774,0.5591929034707468,-0.9975640502598242,-0.5,1.0,-0.5,-0.9975640502598242,0.5591929034707468,0.4383711467890774,-0.6156614753256583,-0.374606593415912,0.9902680687415704,0.30901699437494745,-0.9781476007338057,0.6691306063588582,0.9612616959383189,-0.7193398003386511,-0.9396926207859084,0.766044443118978,0.17364817766693036,-0.8090169943749475,-0.10452846326765347,0.9135454576426009,0.03489949670250097,-0.882947592858927,0.848048096156426,0.848048096156426,-0.882947592858927,0.03489949670250097,0.9135454576426009,-0.10452846326765347,-0.8090169943749475,0.17364817766693036,0.766044443118978,-0.9396926207859084,-0.7193398003386511,0.9612616959383189,0.6691306063588582,-0.9781476007338057,0.30901699437494745,0.9902680687415704,-0.374606593415912,-0.6156614753256583,0.4383711467890774,0.5591929034707468,-0.9975640502598242,-0.5,1.0,-0.5,-0.9975640502598242,0.5591929034707468,0.4383711467890774,-0.6156614753256583,-0.374606593415912,0.9902680687415704,0.30901699437494745,-0.9781476007338057,0.6691306063588582,0.9612616959383189,-0.7193398003386511,-0.9396926207859084,0.766044443118978,0.17364817766693036,-0.8090169943749475,-0.10452846326765347,0.9135454576426009,0.03489949670250097,-0.882947592858927,0.848048096156426,0.848048096156426,-0.882947592858927,0.03489949670250097,0.9135454576426009,-0.10452846326765347,-0.8090169943749475,0.17364817766693036,0.766044443118978,-0.9396926207859084,-0.7193398003386511,0.9612616959383189,0.6691306063588582,-0.9781476007338057,0.30901699437494745,0.9902680687415704,-0.374606593415912,-0.6156614753256583,0.4383711467890774,0.5591929034707468,-0.9975640502598242,-0.5,1.0,-0.5,-0.9975640502598242,0.5591929034707468,0.4383711467890774,-0.6156614753256583,-0.374606593415912,0.9902680687415704,0.30901699437494745,-0.9781476007338057,0.6691306063588582,0.9612616959383189,-0.7193398003386511,-0.9396926207859084,0.766044443118978,0.17364817766693036,-0.8090169943749475,-0.10452846326765347,0.9135454576426009,0.03489949670250097,-0.882947592858927,0.848048096156426,0.848048096156426,-0.882947592858927,0.03489949670250097,0.9135454576426009,-0.10452846326765347,-0.8090169943749475,0.17364817766693036,0.766044443118978,-0.9396926207859084,-0.7193398003386511,0.9612616959383189,0.6691306063588582,-0.9781476007338057,0.30901699437494745,0.9902680687415704,-0.374606593415912,-0.6156614753256583,0.4383711467890774,0.5591929034707468,-0.9975640502598242,-0.5,1.0,-0.5,-0.9975640502598242,0.5591929034707468,0.4383711467890774,-0.6156614753256583,-0.374606593415912,0.9902680687415704,0.30901699437494745,-0.9781476007338057,0.6691306063588582,0.9612616959383189,-0.7193398003386511,-0.9396926207859084,0.9612616959383189,0.17364817766693036,-0.8090169943749475,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.10452846326765347,0.848048096156426,0.848048096156426,-0.10452846326765347,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.8090169943749475,0.17364817766693036,0.9612616959383189,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,-0.9781476007338057,-0.6156614753256583,0.6691306063588582,-0.374606593415912,-0.9975640502598242,0.9902680687415704,0.5591929034707468,-0.5,0.4383711467890774,1.0,0.4383711467890774,-0.5,0.5591929034707468,0.9902680687415704,-0.9975640502598242,-0.374606593415912,0.6691306063588582,-0.6156614753256583,-0.9781476007338057,-0.24192189559966773,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,0.9612616959383189,0.17364817766693036,-0.8090169943749475,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.10452846326765347,0.848048096156426,0.848048096156426,-0.10452846326765347,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.8090169943749475,0.17364817766693036,0.9612616959383189,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,-0.9781476007338057,-0.6156614753256583,0.6691306063588582,-0.374606593415912,-0.9975640502598242,0.9902680687415704,0.5591929034707468,-0.5,0.4383711467890774,1.0,0.4383711467890774,-0.5,0.5591929034707468,0.9902680687415704,-0.9975640502598242,-0.374606593415912,0.6691306063588582,-0.6156614753256583,-0.9781476007338057,-0.24192189559966773,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,0.9612616959383189,0.17364817766693036,-0.8090169943749475,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.10452846326765347,0.848048096156426,0.848048096156426,-0.10452846326765347,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.8090169943749475,0.17364817766693036,0.9612616959383189,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,-0.9781476007338057,-0.6156614753256583,0.6691306063588582,-0.374606593415912,-0.9975640502598242,0.9902680687415704,0.5591929034707468,-0.5,0.4383711467890774,1.0,0.4383711467890774,-0.5,0.5591929034707468,0.9902680687415704,-0.9975640502598242,-0.374606593415912,0.6691306063588582,-0.6156614753256583,-0.9781476007338057,-0.24192189559966773,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,0.9612616959383189,0.17364817766693036,-0.8090169943749475,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.10452846326765347,0.848048096156426,0.848048096156426,-0.10452846326765347,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.8090169943749475,0.17364817766693036,0.9612616959383189,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,-0.9781476007338057,-0.6156614753256583,0.6691306063588582,-0.374606593415912,-0.9975640502598242,0.9902680687415704,0.5591929034707468,-0.5,0.4383711467890774,1.0,0.4383711467890774,-0.5,0.5591929034707468,0.9902680687415704,-0.9975640502598242,-0.374606593415912,0.6691306063588582,-0.6156614753256583,-0.9781476007338057,-0.24192189559966773,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,0.9612616959383189,0.17364817766693036,-0.8090169943749475,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.10452846326765347,0.848048096156426,0.848048096156426,-0.10452846326765347,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.8090169943749475,0.17364817766693036,0.9612616959383189,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,-0.9781476007338057,-0.6156614753256583,0.6691306063588582,-0.374606593415912,-0.9975640502598242,0.9902680687415704,0.5591929034707468,-0.5,0.4383711467890774,1.0,0.4383711467890774,-0.5,0.5591929034707468,0.9902680687415704,-0.9975640502598242,-0.374606593415912,0.6691306063588582,-0.6156614753256583,-0.9781476007338057,-0.24192189559966773,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,0.9612616959383189,0.17364817766693036,-0.8090169943749475,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.10452846326765347,0.848048096156426,0.848048096156426,-0.10452846326765347,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.8090169943749475,0.17364817766693036,0.9612616959383189,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,-0.9781476007338057,-0.6156614753256583,0.6691306063588582,-0.374606593415912,-0.9975640502598242,0.9902680687415704,0.5591929034707468,-0.5,0.4383711467890774,1.0,0.4383711467890774,-0.5,0.5591929034707468,0.9902680687415704,-0.9975640502598242,-0.374606593415912,0.6691306063588582,-0.6156614753256583,-0.9781476007338057,-0.24192189559966773,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,0.9612616959383189,0.17364817766693036,-0.8090169943749475,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.10452846326765347,0.848048096156426,0.848048096156426,-0.10452846326765347,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.8090169943749475,0.17364817766693036,0.9612616959383189,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,-0.9781476007338057,-0.6156614753256583,0.6691306063588582,-0.374606593415912,-0.9975640502598242,0.9902680687415704,0.5591929034707468,-0.5,0.4383711467890774,1.0,0.4383711467890774,-0.5,0.5591929034707468,0.9902680687415704,-0.9975640502598242,-0.374606593415912,0.6691306063588582,-0.6156614753256583,-0.9781476007338057,-0.24192189559966773,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,0.9612616959383189,0.17364817766693036,-0.8090169943749475,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.10452846326765347,0.848048096156426,0.848048096156426,-0.10452846326765347,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.8090169943749475,0.17364817766693036,0.9612616959383189,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,-0.24192189559966773,-0.9781476007338057,-0.6156614753256583,0.6691306063588582,-0.374606593415912,-0.9975640502598242,0.9902680687415704,0.5591929034707468,-0.5,0.4383711467890774,1.0,0.4383711467890774,-0.5,0.5591929034707468,0.9902680687415704,-0.9975640502598242,-0.374606593415912,0.6691306063588582,-0.6156614753256583,-0.9781476007338057,-0.24192189559966773,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,0.9612616959383189,0.17364817766693036,-0.8090169943749475,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.10452846326765347,0.848048096156426,0.848048096156426,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,-0.9781476007338057,-0.5,-0.9975640502598242,-0.374606593415912,0.6691306063588582,0.9612616959383189,0.17364817766693036,0.9902680687415704,0.30901699437494745,-0.7193398003386511,-0.9396926207859084,-0.10452846326765347,0.848048096156426,-0.24192189559966773,0.766044443118978,0.9135454576426009,0.03489949670250097,-0.882947592858927,-0.8090169943749475,-0.8090169943749475,-0.882947592858927,0.03489949670250097,0.9135454576426009,0.766044443118978,-0.24192189559966773,0.848048096156426,-0.10452846326765347,-0.9396926207859084,-0.7193398003386511,0.30901699437494745,0.9902680687415704,0.17364817766693036,0.9612616959383189,0.6691306063588582,-0.374606593415912,-0.9975640502598242,-0.5,-0.9781476007338057,-0.6156614753256583,0.4383711467890774,1.0,0.4383711467890774,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,0.9135454576426009,0.6691306063588582,-0.5,0.17364817766693036,0.9902680687415704,-0.882947592858927,-0.7193398003386511,0.4383711467890774,-0.10452846326765347,-0.9781476007338057,0.848048096156426,0.766044443118978,-0.9396926207859084,0.03489949670250097,0.9612616959383189,-0.8090169943749475,-0.8090169943749475,0.9612616959383189,0.03489949670250097,-0.9396926207859084,0.766044443118978,0.848048096156426,-0.9781476007338057,-0.10452846326765347,0.4383711467890774,-0.7193398003386511,-0.882947592858927,0.9902680687415704,0.17364817766693036,-0.5,0.6691306063588582,0.9135454576426009,-0.9975640502598242,-0.24192189559966773,0.5591929034707468,-0.6156614753256583,0.30901699437494745,1.0,0.30901699437494745,-0.6156614753256583,0.5591929034707468,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0,0.30901699437494745,-0.8090169943749475,0.848048096156426,-0.24192189559966773,-0.9975640502598242,-0.374606593415912,0.766044443118978,-0.882947592858927,0.17364817766693036,0.9902680687415704,0.4383711467890774,0.6691306063588582,0.9135454576426009,-0.10452846326765347,-0.9781476007338057,-0.5,-0.6156614753256583,-0.9396926207859084,0.03489949670250097,0.9612616959383189,0.5591929034707468,0.5591929034707468,0.9612616959383189,0.03489949670250097,-0.9396926207859084,-0.6156614753256583,-0.5,-0.9781476007338057,-0.10452846326765347,0.9135454576426009,0.6691306063588582,0.4383711467890774,0.9902680687415704,0.17364817766693036,-0.882947592858927,0.766044443118978,-0.374606593415912,-0.9975640502598242,-0.24192189559966773,0.848048096156426,-0.8090169943749475,0.30901699437494745,1.0]}
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/medium_negative.json b/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/medium_negative.json
new file mode 100644
index 000000000000..99bff8d86942
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/medium_negative.json
@@ -0,0 +1 @@
+{"sine":[-0.0,0.1997592454651831,0.3914661997875926,0.5673931595175946,0.720448512467957,0.8444626004582889,0.9344364181110009,0.9867431226570624,0.9992742318945298,0.9715246170636403,0.9046128645767415,0.8012361858226121,0.6655616926302379,0.5030584210749118,0.3202768747449386,0.1245849740744782,-0.07612894438019908,-0.2737741066271774,-0.46038344017555854,-0.62843472656586,-0.7711538218441187,-0.8827877221672663,-0.9588364672721753,-0.996234533782437,-0.9934744063937205,-0.9506673457852202,-0.8695389037039177,-0.7533593660085577,-0.6068119275128637,-0.43580391249724265,-0.24722865058701354,-0.04868760677404568,0.1518160334828391,0.34619997250199486,0.5266285976344789,0.6858288346521184,0.8173833252219895,0.9159891104911448,0.9776713932504497,0.9999437619300288,0.9819084177990673,0.9242923652145573,0.8294181060903062,0.7011100198920468,0.5445402029781968,0.36601998150052056,0.17274550197448035,-0.02749234524070106,-0.22662197657550984,-0.41661648062002815,-0.5898171827606723,-0.7392423661984773,-0.8588687048126492,-0.94387406331417,-0.9908318774218414,-0.9978492785991192,-0.9646433955465284,-0.8925527567380485,-0.7844833343653674,-0.6447914046575547,-0.47910794647478194,-0.2941116566638794,-0.09725973192391017,0.10351273064208506,0.30011259713024774,0.48461493090056745,0.6495824466119823,0.7883653070441172,0.8953691779011416,0.9662807353137898,0.9982415358376605,0.9899632402503312,0.9417795464793814,0.8556327382458301,0.7349953916464594,0.5847303956817145,0.4108949292983568,0.2204962966291321,0.021209462704308395,-0.17893232423297376,-0.37186135280094085,-0.5498006577618495,-0.7055775093329248,-0.8329125457794432,-0.9266728943587419,-0.9830790773167594,-0.9998573625597096,-0.9763314177489885,-0.9134495732438925,-0.8137465949239973,-0.6812415078281133,-0.5212755893359167,-0.3402970623850779,-0.14560116773506623,0.054963907040379165,0.25331338783504076,0.44145181109161413,0.6117953207754191,0.7574773734579144,0.8726255285430156,0.9525981662292499,0.9941715911096514,0.9956699792684759,0.9570329307093577,0.8798179040779466,0.767137435535386,0.6235336724886507,0.4547952797203629,0.2677240984289729,0.06986096414703954,-0.13081826418609444,-0.32622421093698334,-0.5084800663456962,-0.6702391005685981,-0.8049808102091957,-0.907273759678293,-0.9729945222524575,-0.9994938953221936,-0.9857036896952482,-0.9321797882814128,-0.8410797384636078,-0.7160757814067855,-0.5622068240905308,-0.3856753210708779,-0.1935972536624865,0.006284715123676299,0.20591334717036863,0.3972416163590734,0.5725570840302336,0.7247927872291369,0.8478121078402886,0.9366561395390257,0.9877435812052421,0.99901509909907,0.970016338562263,0.9019162390453186,0.7974599141818278,0.6608579963133736,0.4976169059854025,0.31431688824593873,0.1183467631011681,-0.08239391766970916,-0.2798133012863526,-0.46595341638988463,-0.6333109587068404,-0.7751397490928155,-0.8857226718769362,-0.9606021316794073,-0.9967597389907021,-0.992737981391715,-0.948698975849845,-0.8664179337874549,-0.7492116023451905,-0.6018045663719364,-0.4301388005050267,-0.2411341482932879,-0.042409383442954265,0.15802490279585352,0.3520892084005547,0.531960805138676,0.6903890725853505,0.82098777048544,0.9184924679691252,0.9789727526537746,0.9999906654874318,0.9806989748290984,0.9218753283388641,0.8258909060164411,0.6966148379836185,0.5392582399269786,0.36016415313023176,0.1665518566082404,-0.03377414188350091,-0.2327387053993042,-0.42232157640969575,-0.5948806732202659,-0.7434601421302257,-0.8620707477539843,-0.9459312989789165,-0.9916613786819795,-0.9974176082756359,-0.9629679542614298,-0.8897010814956361,-0.7805703761369621,-0.6399748947101681,-0.47358203822693656,-0.28809909936523476,-0.09100289163751654,0.10976164081075772,0.30610168373898794,0.4901027739892338,0.6543478313367117,0.7922161408430786,0.8981502337418158,0.9678799088915118,0.9985943644978701,0.9890555014768744,0.9396478312038483,0.852362975867845,0.7307193862213188,0.5796205129015849,0.4051571484348277,0.21436190751248702,0.01492574243583227,-0.18511207901640345,-0.3776880363090452,-0.5550393965003134,-0.710017129849202,-0.8363740870603533,-0.9290168217452927,-0.9842109071434251,-0.9997314707890794,-0.9749528790757893,-0.9108739565341477,-0.8100777232352353,-0.6766272733037272,-0.5159019916762944,-0.3343807112031494,-0.13938055102726374,0.06123803634043208,0.25938811970220954,0.44708227320724936,0.6167545493255662,0.7615654620400614,0.8756776863891349,0.954491360918322,0.9948295080020666,0.995066097747625,0.9551915932271033,0.8768133349109535,0.7630907488059813,0.6186079900570157,0.4491891557456506,0.26166351565517,0.06359022454312822,-0.13704638723356263,-0.3321586619139845,-0.5138816276534253,-0.6748900353800356,-0.8086936394361995,-0.9098988192497949,-0.9744259960703493,-0.9996740807057878,-0.9846253233753781,-0.9298863391826127,-0.837663655472644,-0.7116747667599035,-0.5569982825990962,-0.3798692089370209,-0.18742761514884193,0.012569182013459647,0.21205931570312345,0.40300134266760185,0.5776983936634772,0.729108434100012,0.8511281283106495,0.9388388648908086,0.9887050258236818,0.9987165071710503,0.9684697463223614,0.8991839895954319,0.7936521444419965,0.6561281974047634,0.49215573600631735,0.3083444868477343,0.11210387766336044,-0.08865563656131398,-0.2858414438701814,-0.47150498836023014,-0.6381621763099085,-0.7790950598451059,-0.8886226372822122,-0.9623298541907807,-0.997245574148698,-0.991962345190945,-0.9466931341698671,-0.8632627420658038,-0.7450342462963235,-0.5967734351336591,-0.42445669887586857,-0.2350301216747239,-0.036129485024584816,0.1642275304358514,0.35796453746739776,0.5372720012367938,0.694922041507376,0.8245597883458463,0.9209595468002356,0.9802354445578252,0.9999980713793202,0.9794507961774725,0.9194218791999155,0.8223310848753891,0.6920921411584886,0.533954977235352,0.35429409898390163,0.16035163277119585,-0.04005460451408926,-0.23884624150175082,-0.42800999132729095,-0.5999206670627807,-0.747648552847847,-0.8652387405954335,-0.947951172216856,-0.992451711267058,-0.9969465419173497,-0.9612544776351312,-0.8868142648094706,-0.7766265869131371,-0.6351331070125951,-0.4680374244195444,-0.28207516271850763,-0.08474245691579586,0.11600621561051305,0.31207867993295224,0.495571258981767,0.659087370608414,0.7960356836618077,0.9008958144137773,0.9694408531154818,0.9989077506437093,0.9881086969553851,0.9374790016861776,0.8490595468278803,0.7264145188168636,0.5744877362506081,0.39940336466027365,0.20821905152188583,0.008641432629870814,-0.19128452223660358,-0.38349980188217087,-0.5602562122736017,-0.7144287060845949,-0.839802593208961,-0.9313240547936369,-0.9853038625739894,-0.9995660915906157,-0.9735358316804199,-0.9082623620937071,-0.8063768550687749,-0.6719863133321531,-0.5105080169021561,-0.3284511526404509,-0.13315442906168862,0.06750974685830399,0.2654526062485528,0.452695076451963,0.6216894172834252,0.7656234702834543,0.8786952566880408,0.9563468550749679,0.9954481310845421,0.9944229130719928,0.9533125275546231,0.8737741333408627,0.7590139214920751,0.6136578738258274,0.44356528968241193,0.25559259768687437,0.05731697325035252,-0.1432690972181396,-0.33807999327667493,-0.5192628916470456,-0.679514313361768,-0.812374526854168,-0.9124879396066601,-0.9758189819769136,-0.999814780928344,-0.9835080662908018,-0.9275561614013766,-0.8342144864140303,-0.707245642358738,-0.551767740770441,-0.37404809271615425,-0.1812505736129673,0.018853152445261843,0.2181969083097722,0.4087451512153112,0.582816885345909,0.7333952826210147,0.8544105308930819,0.9409845079529889,0.9896274185371885,0.9983784679042721,0.9668849014312888,0.8964162241455634,0.7898130270026136,0.6513724827222627,0.4866751268431351,0.3023599064484401,0.10585656434275782,-0.0949138537296796,-0.2918582962788817,-0.4770379368104155,-0.6429881877615056,-0.7830195978741503,-0.8914875038401041,-0.9640195665646524,-0.9976920200668908,-0.9911475284275302,-0.9446498999721316,-0.8600734531628348,-0.7408274628593092,-0.5917187325178255,-0.41875783204138317,-0.22891681182837373,-0.029848159562579895,0.17042367141123396,0.363825727638813,0.5425619761470268,0.699427562374833,0.8280992377155247,0.923390249539661,0.9814594190887289,0.9999659793131759,0.9781639311447929,0.9169321147041292,0.8187387832729435,0.6875421080542912,0.5286306243717682,0.3484100509171296,0.15414507535974936,-0.046333485066538255,-0.24494434364717985,-0.43368150069160666,-0.604936965218265,-0.7518074329172676,-0.8683725582075074,-0.9499336032469664,-0.9932028439604937,-0.9964360981304368,-0.959503033346591,-0.8838924207031361,-0.7726521224658144,-0.6302662328057361,-0.4624743240539511,-0.2760400846573539,-0.07847867503361294,0.1222462083927957,0.3180433496324201,0.5010201698837597,0.6638008772246051,0.7998237846358716,0.9036058114720978,0.9709635063314714,0.9991816818970415,0.9871228640827808,0.9352731435907842,0.8457225816048891,0.7220809594668939,0.569332268463372,0.39363380523795893,0.20206797128818893,0.0023567815043077237,-0.19744941009420067,-0.38929641996700254,-0.5654508990279571,-0.7188120637905147,-0.8431979288060129,-0.933594502372605,-0.9863579004389055,-0.9993612314964718,-0.9720803315334665,-0.9056148930754175,-0.8026441366017073,-0.6673188112222812,-0.505093878064902,-0.3225086209028892,-0.1269230477579193,0.07377879087401179,0.2715066079387735,0.45828999913106044,0.6265997297314128,0.7696512379049087,0.8816781202516385,0.9581645754108159,0.9960274359226823,0.9937404506461214,0.9513958079113565,0.870700419410162,0.7549071146203326,0.6086835193149458,0.43792390366207384,0.24951158431341164,0.05104145804980658,-0.14948614835501348,-0.3439879711443452,-0.524623645777208,-0.6841117518639055,-0.8160233270752839,-0.9150410184836711,-0.9771734249519186,-0.9999159904324799,-0.9823519625709779,-0.9251893469751463,-0.8307323675230248,-0.702788583144996,-0.5465154052006851,-0.3682122023309255,-0.17506637303561084,0.0251363782146038,0.22432588256747213,0.4144728151330549,0.5879123569070658,0.7376531634699697,0.8576591859391361,0.9430929839768836,0.9905107229130632,0.9980009946506081,0.9652618664873028,0.8936130520170079,0.7859427135012711,0.6465910401070604,0.4811752949691438,0.29636338342721735,0.0996050698959555,-0.10116832198740365,-0.29786362085849005,-0.4825520431998535,-0.6477888024436662,-0.7869132081683312,-0.8943171583941302,-0.9656712020607053,-0.9980990591115446,-0.9902935632851309,-0.9425693539602902,-0.8568501930491901,-0.7365914181938237,-0.5866406581752526,-0.41304242509572237,-0.22279446021808266,-0.023565655156947484,0.17661308098661305,0.36967254740919175,0.5478305209256591,0.7039054572285043,0.8316059787931831,0.9257844801794214,0.9826446279019474,0.9998943905565725,0.9768384305596983,0.9144061331923086,0.8151141430980277,0.6829649183884823,0.5232853916376988,0.34251224133824754,0.1479324295208431,-0.05261053553728224,-0.25103277097254406,-0.4393358804891721,-0.6099293695528024,-0.7559366180710683,-0.8714720768105707,-0.9518785137671192,-0.9939147470940218,-0.9958862970764324,-0.9577136905744521,-0.8809356645837314,-0.7686471397785264,-0.6253744643216528,-0.45689295686179837,-0.26999410355549314,-0.07221179339803882,0.12848137269015728,0.3239954572449048,0.5064492914739428,0.6684881650110394,0.8035802941427282,0.906280117877165,0.9724478083976422,0.9994161474381208,0.9860980417975221,0.93303034404477,0.8423522120025063,0.7177188793384852,0.5641543131707196,0.38784869805413896,0.19590890976672526,-0.003927962709491848,-0.20360649908824321,-0.39507766160852076,-0.5706232515833589,-0.7231670298328611,-0.8465599597424275,-0.9358280748039804,-0.9873729791057273,-0.9991168985982241,-0.9705864361243239,-0.9029316540491006,-0.7988797152690742,-0.662624951331081,-0.4996597890123732,-0.31655335070878626,-0.12068665324326766,0.08004492077251371,0.2775498856515837,0.4638668202560944,0.6314852927218397,0.773648605815439,0.8846261592626214,0.9599444501294861,0.9965673996350849,0.993018737425935,0.9494415100038838,0.8675923145245092,0.7507704904015519,0.6036851230015955,0.43226522050840777,0.24342071572297921,0.044763926812004494,-0.1556972950828858,-0.34988236216336355,-0.5299636783045547,-0.6886821692966647,-0.8196398959791114,-0.9175579550392311,-0.9784892714975841,-0.9999777052206192,-0.9811570578797306,-0.922785989388439,-0.8272174363365481,-0.698303765163846,-0.5412414833467586,-0.36236176828753275,-0.16887525768066333,0.03141861114629221,0.23044599639378835,0.4201841081893675,0.5929846070858372,0.7418819084691255,0.860873965133324,0.9451642096818343,0.9913549040625195,0.9975841023195164,0.9636007055971272,0.8907745839295538,0.782041356807744,0.6417840584168365,0.47565645761700287,0.2903551546349376,0.093349641244695,-0.10741879429528493,-0.30385718041073345,-0.4880470897321814,-0.6525638307415473,-0.7907757369376961,-0.89711148917844,-0.967284695442552,-0.9984666752054173,-0.9894004834936915,-0.9404515783118612,-0.8535930890373742,-0.7323262796153038,-0.5815394126798945,-0.40731070378622514,-0.2166633086644566,-0.01728221995426152,0.18279551469247748,0.37550476584064657,0.5530774274757414,0.7083555492002561,0.8350798730694422,0.928142144152113,0.9837910241840373,0.9997833079371276,0.9754743467768565,0.9118440344357579,0.8114573075168031,0.6783607529508706,0.5179194901593293,0.33660090319913993,0.14171394064177492,-0.05888550799542065,-0.2571112829969327,-0.4449729073831005,-0.6148976828762359,-0.760035945214468,-0.8745371739796699,-0.9537858269571718,-0.994587392548868,-0.9952971604713974,-0.9558865199941643,-0.8779441132373106,-0.7646117970402165,-0.6204579947755839,-0.45129354329589283,-0.2639374582172938,-0.06594205953857873,0.13471146222586503,0.3299347676737355,0.5118584093125768,0.6731490488290633,0.807305063807637,0.9089186279991329,0.9738937006870405,0.999611138006019,0.9850342705780747,0.9307506916343085,0.8389485711435698,0.7133284507252277,0.5589540748917062,0.38204827160917515,0.1897421102284417,-0.010212551776358963,-0.2097555460258195,-0.4008432984590453,-0.575773065642049,-0.7274934321992121,-0.8498885532245918,-0.9380246838660432,-0.988349058480843,-0.9988331025465317,-0.9690542044589242,-0.9002127509974233,-0.7950837397581182,-0.6579049190568852,-0.49420596438051523,-0.31058557727960795,-0.11444549184305759,0.08630788905399667,0.28358220068963785,0.4694253195535933,0.6363459132845719,0.7776154161268708,0.8875392572793632,0.9616864089294259,0.9970680008942447,0.9922578019176873,0.9474497110231691,0.8644499414480014,0.7466042122242577,0.5986628823126052,0.4265894637282745,0.2373202324926669,0.03848462748708984,-0.16190229207367063,-0.3557629335168719,-0.5352827783085141,-0.6932253851375417,-0.823224090718288,-0.9200386498592937,-0.9797664696405304,-0.9999999228551489,-0.9799233994134464,-0.9203461835691549,-0.8236698316874723,-0.6937913655566006,-0.5359461835182073,-0.35649702166662,-0.16267747208501082,0.037699603104729695,0.2365570080562556,0.42587880479940066,0.5980334355383123,0.7460813505912812,0.8640547414981232,0.9471981032584975,0.9921599286420614,0.9971278073774245,0.9619014843732845,0.8879009319971106,0.7781091110179525,0.6369517275179182,0.4701188327697157,0.2843354573848272,0.08709052546611117,-0.11366502377195441,-0.30983873820167024,-0.4935228593637528,-0.6573130840509182,-0.7946070316199514,-0.8998703858224605,-0.9688599829804408,-0.9987948538283956,-0.9884683243281083,-0.9382966566748199,-0.850302269776461,-0.7280322155883393,-0.5764151975209202,-0.4015628945046159,-0.21052359933605297,-0.010998102137987563,0.18897072833484926,0.38132215257201446,0.5583024885546729,0.7127776625203834,0.8385207833323073,0.9304631483346437,0.9848985626545991,0.9996327358423819,0.9740717336748952,0.9092459196323414,0.8077684209670868,0.6737297935970327,0.5125331318793287,0.3306762699860429,0.13548985434063132,-0.06515815459174981,-0.2631796396309474,-0.45059235872191084,-0.6198417089499559,-0.7641052524321035,-0.8775677286496162,-0.9556554674820029,-0.9952207537568588,-0.9946687115850694,-0.9540215937754094,-0.8749178848243326,-0.7605462536389902,-0.615517018358412,-0.44567630452217566,-0.2578703878684634,-0.059669721097395156,0.14093623092362942,0.3358610463278257,0.5172473097503587,0.6777833445829287,0.810997946509518,0.9115212376220385,0.9753011260897325,0.9997666458989893,0.9839315924413105,0.9284342764011881,0.8355117934652703,0.7089098470405103,0.5537317590255212,0.3762327550085096,0.18356781624979734,-0.01649673746763364,-0.21589630803166324,-0.40659310278725475,-0.5809001377964955,-0.7317911000050912,-0.8531835777795403,-0.9401842427970534,-0.9892861000110359,-0.9985098545507854,-0.967483697057438,-0.8974582913117113,-0.7912563600024098,-0.6531589008316899,-0.4887326195844597,-0.3046055363306732,-0.1081998100708956,0.09256744834352522,0.289603314788228,0.47496527747364986,0.6411813994346522,0.7815515121579945,0.8904172992401588,0.963390383006653,0.9975292199273961,0.9914576741768347,0.9454204896413567,0.8612734242980707,0.7424084446482482,0.5936169956166094,0.4208968575029095,0.231210375579693,0.03220380809516909,-0.16810089424218452,-0.36162945293386173,-0.5405807356949841,-0.6977412199383507,-0.8267757697241673,-0.9224830049612901,-0.9810049689339415,-0.9999826424585172,-0.9786510358992095,-0.9178700258848275,-0.8200896936992073,-0.6892515625542641,-0.5306297148690726,-0.3506181941141499,-0.15647326104900078,0.04397910600295407,0.24265867618180295,0.4315566800338328,0.6030586428456921,0.7502513239667282,0.8672013893992485,0.9491945843720752,0.9929257648548004,0.9966321278470855,0.9601642699317059,0.88499220972334,0.7741461314478755,0.6320942382778766,0.4645626391526893,0.27830452944321604,0.08082796978297316,-0.11990676370362652,-0.31580805797152606,-0.4989791358126527,-0.6620363747856086,-0.7984069408864887,-0.9025937393551978,-0.9703970024535777,-0.9990835820180638,-0.9874971226068359,-0.9361046741643345,-0.8469778652474078,-0.7237093957201056,-0.5712682150947553,-0.3957992242780623,-0.2043755747393209,-0.004713549918172152,0.19513847800492867,0.3871244778279552,0.5635054977828123,0.7171716225240127,0.8419285736725185,0.9327474010519109,0.9859671995680402,0.9994426802196391,0.9726306466543043,0.9066118914024863,0.8040476291526458,0.6690722232407593,0.507126529548043,0.32473857571032166,0.12926041645658592,-0.0714282275690599,-0.26923760118667545,-0.4561940125482089,-0.6247612524946514,-0.7681443789943386,-0.8805636211193951,-0.9574873614944502,-0.995814805701472,-0.9940009752399444,-0.9521189855791071,-0.8718570988747486,-0.7564506701558198,-0.6105517302289925,-0.4400414624105362,-0.2517931321461088,-0.053395025819526404,0.14715543291732341,0.3417740591308185,0.5226157799362056,0.6823908692269701,0.8146587963867639,0.9140878439479179,0.9766700290151819,0.9998826649747822,0.9827900509408481,0.9260811898392574,0.8320420147135701,0.7044632428103141,0.5484875718433754,0.3704023779536161,0.177386271703267,-0.022780271570207476,-0.22202854255762283,-0.41232684748718096,-0.5860042655374271,-0.736059863501068,-0.8564449032604139,-0.9423066662986783,-0.9901840666850077,-0.9981471673786456,-0.965874975951757,-0.8946683837877074,-0.7873977271759256,-0.6483870841138853,-0.4832399708106765,-0.2986134640619654,-0.10194985461893397,0.09882335140081243,0.29561299012518344,0.48048647519904064,0.6459915601798832,0.7854567384407546,0.8932601714680083,0.96505630505761,0.9979510385172938,0.9906183858068504,0.9433539260087022,0.8580628885409635,0.7381833533981803,0.5885476622162134,0.4151876266790682,0.2250913863113949,0.02592171671600762,-0.174292856755827,-0.3674816886983484,-0.5458573412050627,-0.7022294953326766,-0.8302947927124106,-0.924890923797999,-0.9822047204595301,-0.9999258647132648,-0.9773400175929046,-0.915357614138818,-0.8164771637801655,-0.6846845354701311,-0.5252922873892003,-0.3447255178322542,-0.150262869626773,0.05025687181294504,0.24875075976678063,0.4372175096277536,0.6080600305221665,0.7543916638897156,0.8703137845502288,0.9511535741654487,0.993652382451712,0.9960970833068667,0.958389130888947,0.8820485319969363,0.7701525746274154,0.6272117825579879,0.4589880962246492,0.27226260901965854,0.07456222155391959,-0.1261437675538439,-0.32176490394390456,-0.5044157035665765,-0.6667335163848254,-0.8021753146483618,-0.9052814422095408,-0.971895693152715,-0.9993328483702376,-0.986486916690433,-0.9338757173594053,-0.8436200067576585,-0.719357990753315,-0.5660986686970879,-0.3900199207602081,-0.19821947770914616,0.0015711884775991742,0.2012985200886039,0.3929115124280274,0.568686249651523,0.7215372556583616,0.8453031094891941,0.9349948120804226,0.9869968927153036,0.9992131485757226,0.9711511426351299,0.90394205378513,0.8002950790374426,0.6643882258469238,0.5016998967157448,0.31878805489934825,0.12302587304018943,-0.07769547927179393,-0.2752849283864213,-0.4617776476079065,-0.629656119198023,-0.7721531653636146,-0.8835247330571435,-0.9592814366383756,-0.9963695249188231,-0.9932939778102949,-0.9501787705545408,-0.8687618762836475,-0.7523252083582853,-0.6055623265064456,-0.4343892395261608,-0.24570593109000702,-0.04711822154322807,0.15336882256069395,0.3476735725303318,0.527963607826098,0.6869714407732082,0.8182874688430012,0.9166183456008666,0.9780003553944138,0.9999591906508682,0.9816096911653573,0.9236915248908096,0.8285393719379089,0.6999888136668543,0.54322172048046,0.3645573707329268,0.17119772074770867,-0.02906290589683553,-0.22815200739273703,-0.41804430608717963,-0.5910852472618315,-0.7402995540793761,-0.8596724008511998,-0.9443918705393203,-0.9910429230348399,-0.9977450553555426,-0.9642281046832337,-0.8918431386213321,-0.7835079936870769,-0.6435896573808515,-0.4777282350079949,-0.29260959714831764,-0.09569587234812696,0.10507535112998531,0.3016109893301422,0.48598869465319683,0.6507762055282749,0.7893309407263897,0.8960677616750471,0.9666841092816157,0.9983334400029256,0.989739969957975,0.9412501017504065,0.8548184609865307,0.7339291053566819,0.5834550823401213,0.409461996760145,0.21896350637581996,0.019638601479992537,-0.180477935044126,-0.3733194096585236,-0.5511123864232049,-0.7066900340423732,-0.8337810206884573,-0.9272623112613597,-0.9833656768294693,-0.999829591862001,-0.9759903962771243,-0.9128090475664513,-0.8128323846181778,-0.6800904646927933,-0.5199341118965908,-0.3388192255701818,-0.14404654311658024,0.056532652575293885,0.25483301818573945,0.4428610699894083,0.613037401022754,0.7585022068249553,0.873391804017574,0.9530749952624513,0.994339752732829,0.9955226948899755,0.9565761373595101,0.8790700150874413,0.7661285982942977,0.6223045532056551,0.4533954241690827,0.266209934758256,0.06829352826381503,-0.13237578897321517,-0.32770904083509966,-0.509832347891785,-0.6714043233208986,-0.8059120040622149,-0.9079333882265102,-0.9733559958825161,-0.9995426430393799,-0.985437746480069,-0.9316098742994446,-0.8402288269360224,-0.7149781725599966,-0.5609067625149434,-0.3842252122221813,-0.1920555513992599,0.007855864814514262,0.207450611276633,0.3986830277956822,0.5738445395312906,0.725874389489503,0.8486442574947672,0.9372052926518389,0.9879876014255239,0.9989441499766811,0.9696332800549012,0.9012365122336375,0.7965109188398681,0.6596779864242154,0.4962534477237632,0.31282494258669646,0.11678647034371399,-0.08395966215582977,-0.2813213823726485,-0.4673430433583379,-0.6345261157224094,-0.77613145320071,-0.8864509475047607,-0.9610376220513002,-0.9968848894985889,-0.9925477472211377,-0.9482010253363902,-0.8656323393062371,-0.7481700311938094,-0.6005490042624613,-0.42871985912074245,-0.2396090251326336,-0.04083955618961308,0.15957615443700163,0.3535593535071242,0.5332905821913472,0.6915248782979775,0.8218838205527647,0.9191126426310187,0.9792920526821515,0.999996219904634,0.9803905597366687,0.9212653759429374,0.8250040034857913,0.6954867363412859,0.5379344129272862,0.35869796421279637,0.16500240781878225,-0.035344392295812245,-0.23426646067205825,-0.4237452527588179,-0.596142882280868,-0.7445100042805719,-0.8628659430720881,-0.9464397731576155,-0.9918626351373868,-0.9973035343641109,-0.9625431483000461,-0.8889826674040723,-0.7795873131727301,-0.6387668101215623,-0.4721976298791441,-0.2865941727307917,-0.08943811027854347,0.11132320058928158,0.3075970754939264,0.4914717185092662,0.6555351464959827,0.7931739659914868,0.8988399589669814,0.9682737313836033,0.998676409280203,0.9888224613259171,0.9391090999634141,0.8515402697832831,0.7296458685582728,0.5783394571352791,0.4037201938973244,0.21282697781217963,0.01335471055782437,-0.18665588480895998,-0.3791423852358263,-0.5563456637854549,-0.7111226598849296,-0.8372343159533311,-0.9295970736862057,-0.9844877921882536,-0.9996938277073143,-0.9746022252592837,-0.9102244268311235,-0.809155500174893,-0.6754695316790157,-0.5145554000286429,-0.3328995506145679,-0.13782452705116263,0.06280620040899736,0.26090521120142823,0.4484871382095415,0.6179905577510542,0.7625827904140409,0.8764353262255659,0.9549587717706869,0.9949878485483706,0.9949089852836317,0.9547253609530759,0.8760567766404179,0.7620743613874736,0.6173727440468412,0.44778484388554196,0.26014674572774354,0.06202213751340483,-0.13860258180908216,-0.33364023386338915,-0.5152288548414754,-0.6760486111060409,-0.8096168615361246,-0.9105494726594252,-0.9747778529638939,-0.9997129577390136,-0.9843496534158513,-0.9293072344808224,-0.8368044597274363,-0.7105701141343596,-0.5556927016181474,-0.3784153275436368,-0.18588403927263436,0.014140230860212164,0.21359450857319692,0.4044387959675248,0.578980163679753,0.7301828527091766,0.8519518857203591,0.9393787554565673,0.9889392865676748,0.9986356950474305,0.9680771188662064,0.8984953736115269,0.7926952980267352,0.6549416910178321,0.49078739769612684,0.3068494743038814,0.11054245481117471,-0.09022052879819432,-0.28734672471729084,-0.4728899799771429,-0.6393710497126195,-0.7800790853711561,-0.8893421488825284,-0.9627558483673523,-0.9973608790848917,-0.9917623129470988,-0.9461858280417034,-0.862468611553076,-0.7439853027839313,-0.5955119615133115,-0.4230335451237198,-0.23350265508978857,-0.0345592777539375,0.1657771833689651,0.35943116958453625,0.5385964926269374,0.6960510019494472,0.8254477094673044,0.9215706365185953,0.9805450698588913,0.9999937512734968,0.9791327048081379,0.918802838823706,0.8214360489973571,0.6909571886568133,0.532625858022375,0.35282438982814546,0.15880057761904462,-0.04162448266077295,-0.24037166088670173,-0.42942946232602436,-0.6011769708279976,-0.7486910478001494,-0.8660254037844386,-0.9484502932653325,-0.9926431706156487,-0.9968226218435667,-0.9608201733546587,-0.8860870831190619,-0.7756358404919788,-0.6339187328289067,-0.4666483738721547,-0.280567428406827,-0.08317681557935737,0.11756665300105583,0.31357101217790007,0.49693533019858493,0.6602681951139527,0.79698566244418,0.9015766538474401,0.9698251085766245,0.998979932802496,0.9878658961504456,0.9369310052130434,0.8482284444133288,0.7253338121823868,0.5732009886587227,0.39796244488041627,0.20668204300128895,0.007070292150841735,-0.19282646203314563,-0.38495038543428556,-0.5615569665875919,-0.7155271977803388,-0.8406545421084827,-0.931895118854058,-0.9855710222145547,-0.9995185776116218,-0.9731755593694092,-0.9076038540202205,-0.8054466556799447,-0.6708219189465683,-0.509156364233902,-0.3269667267812353,-0.1315970671877978,0.06907726752118516,0.26696709897415954,0.45409549206923366,0.6229193050672134,0.7666332534820245,0.8794442309610601,0.9568048292846865,0.995596644299839,0.9942559787281458,0.9528368747716741,0.8730089356728614,0.7579900240415357,0.6124165498782131,0.4421565769809759,0.2540732814121688,0.055748297010612125,-0.1448239001154943,-0.3395582487582481,-0.5206050112642316,-0.6806661963000145,-0.8132897407355782,-0.9131295921781464,-0.9761612082362886,-0.9998437857420428,-0.9832226804753714,-0.9269678888532384,-0.8333470403877085,-0.7061339895860462,-0.5504566919521185,-0.37259049620348106,-0.17970518509192912,0.020424038394587816,0.21972996930661637,0.4101785896019686,0.5840929192499559,0.7344624751415547,0.8552258635212575,0.941515114647077,0.9898519105520539,0.9982877959713379,0.9664827205343531,0.8957187461884405,0.7888483673076031,0.6501795267021798,0.4853019625310667,0.30086188606997283,0.1042940730689737,-0.09647783190708928,-0.29336071743117037,-0.4784182383713976,-0.6441907298032354,-0.7839959059512023,-0.8921982229936469,-0.9644360477199704,-0.997797474877069,-0.9909377060112956,-0.9441332582668329,-0.8592708179851911,-0.7397711884170702,-0.5904513972123339,-0.41733052213320276,-0.22738706215108484,-0.028277634294663494,0.17197166442806872,0.36528878883731614,0.5438811295597835,0.7005496329546304,0.8289789948199419,0.9239922301776442,0.981759357432906,0.9999517848549624,0.9778361760625245,0.9163040107985149,0.8178356493997229,0.6864003495216658,0.5272962654430494,0.3469368795736752,0.15259247510865973,-0.04790292894043015,-0.24646736689326051,-0.4350967102735801,-0.6061873140665676,-0.7528425194950668,-0.8691506581957643,-0.9504233514509406,-0.9933844986399997,-0.9963023367889995,-0.9590592479011951,-0.8831565001361008,-0.7716537317202657,-0.6290456169924556,-0.46108068617178666,-0.2745296022209771,-0.07691223555952739,0.12380546176114794,0.31953256342324743,0.5023793139192316,0.6649751644362127,0.8007658795299136,0.9042777382224105,0.9713381795843301,0.9992439985812318,0.9868703122140137,0.9347159035297771,0.8448831156872937,0.7209931065467737,0.5680398798699596,0.39218897712924616,0.20052894465605553,0.0007855944812178545,-0.1989894229911998,-0.39074318084925197,-0.5667460889935049,-0.7199034737580122,-0.8440415640618064,-0.9341563559966262,-0.9866153241229046,-0.9993038484969602,-0.9717104549579991,-0.9049474326412698,-0.8017059976254364,-0.6661478100670652,-0.5037372177636685,-0.321020988404883,-0.12536440949897135,0.0753456062171607,0.27301844207128284,0.4596859100497025,0.6278234482953514,0.7706534360435359,0.8824183993782047,0.9586130948888072,0.9961661159409864,0.9935637010159991,0.9509107534068163,0.8699266125684985,0.7538757475796566,0.6074361664597476,0.43651084576074956,0.24798978170143315,0.0494722545596136,-0.1510394981625453,-0.3454628517698413,-0.5259606048123893,-0.6852568965172813,-0.8169304965889935,-0.9156736448729981,-0.9775060070598731,-0.9999351218810189,-0.9820568721718113,-0.9245919298162696,-0.8298567054780361,-0.7016699741332558,-0.5451989403287874,-0.36675094827116006,-0.1735192329096131,0.026707039219532797,0.22585675113819131,0.4159021819883907,0.5891826042980527,0.7387130877499215,0.8584660615817418,0.9436142858413588,0.9907254373318077,0.9979004664897259,0.9648501480349413,0.8929067396356473,0.7849702786286731,0.6453916815732917,0.4797973588924886,0.294862414382996,0.09804157191596996,-0.10273132433127913,-0.29936312297333645,-0.48392760018570663,-0.6489849656263199,-0.7878817602341351,-0.8950190570288611,-0.9660781537445827,-0.9981946596304543,-0.9900739589840809,-0.9420433970842087,-0.8560390849091424,-0.7355278545425019,-0.5853675112419215,-0.4116110154074458,-0.2212624878704834,-0.02199487392442276,0.17815935294442523,0.37113197990101815,0.5491442842572218,0.7050205936264458,0.8324775371319189,0.9263773279599763,0.9829348674422477,0.9998703223066221,0.9765010247101777,0.9137689905661849,0.814202946901631,0.6818163989220781,0.5219458456977929,0.34103566599452667,0.14637834549547288,-0.05417948314862476,-0.25255333792333023,-0.44074677275644636,-0.6111737140978691,-0.7569642553904369,-0.8722415828646595,-0.9523588697824995,-0.9940865899294334,-0.9957426997506509,-0.9572604414927675,-0.8801910342074851,-0.7676411441430999,-0.6241476550907054,-0.4554947866906468,-0.26848093265550715,-0.07064461765752289,0.1300393804488761,0.325481493760534,0.5078034546445509,0.6696558685466796,0.8045144679375061,0.9069431054043419,0.9728128846433748,0.9994685961863281,0.9858357488402403,0.9324638824057769,0.8415044157390185,0.7166239231007736,0.5628563346225371,0.38640001868444085,0.194367925811644,-0.00549913421784372,-0.20514452425821733,-0.39652054267663583,-0.5719128260430066,-0.724251314963608,-0.8473952480325586,-0.9363806957994659,-0.9876206566654308,-0.999049648844703,-0.9702069698937973,-0.9022552676176402,-0.7979336737600079,-0.6614473896585246,-0.4982981746635754,-0.3150625703305488,-0.11912680016247287,0.08161096890980434,0.27905900147658036,0.4652581713403706,0.6327027937314019,0.7746431793092668,0.8853577140032538,0.9603834971601124,0.9966962409788139,0.9928321794908005,0.948947072936471,0.8668099290730327,0.7497316945077098,0.6024317905068499,0.43084787322020457,0.2418964868818779,0.04319425805181206,-0.15724913044626823,-0.3513538096778973,-0.5312954239506394,-0.6898205304342073,-0.8205389852937448,-0.9181815302588999,-0.9788121963177646,-0.9999869625483435,-0.9808522745523186,-0.9221794512156516,-0.826333592859822,-0.6971782440958688,-0.5399196544190601,-0.3608969143973972,-0.16732642705869963,0.03298898516899253,0.23197461207208336,0.42160934705625863,0.5942490177914894,0.7429345226435203,0.861672351920358,0.9456761861263192,0.9915598324043374,0.9974737219013508,0.9631794658513926,0.890059465021906,0.781061185166864,0.6405783447416864,0.4742738042014713,0.28885129621028877,0.09178519831354158,-0.10898075907010615,-0.30535370426069103,-0.4894178478111087,-0.6537535678190792,-0.7917364947363492,-0.8978045395707426,-0.9676821015812135,-0.9985524176570257,-0.9891711059817737,-0.9399163270392596,-0.8527735399720664,-0.731255468763573,-0.5802605044054739,-0.40587525085572135,-0.21512917415650493,-0.015711244799899323,0.18434000451662694,0.3769605119810818,0.5543857488349347,0.7094637073706909,0.8359431982176557,0.9287258356588942,0.9840715534565695,0.9997493668460876,0.9751273034869514,0.9111978782549804,0.810538084987689,0.677205517914995,0.5165748101176675,0.3351209821769165,0.14015843422538812,-0.06045389737374052,-0.25862933359295764,-0.4463794266082046,-0.6161359739688534,-0.7610560926857523,-0.875298055705645,-0.9542567718108402,-0.9947494167527383,-0.9951437328330838,-0.9554238251786563,-0.8771908024632894,-0.7635982362497219,-0.6192250405835226,-0.44989089606083993,-0.26242165862103584,-0.06437420943199343,0.1362681628366438,0.33141756821864543,0.5132075381315926,0.6743101225667418,0.8082312796051601,0.9095726501164699,0.9742491655058375,0.9996537167466211,0.9847622468923241,0.9301750307914504,0.8380924780205431,0.7122264344185881,0.5576505576563546,0.3805957981985377,0.18819922981624954,-0.011783645711850345,-0.21129152271979784,-0.4022822427221188,-0.5770569736601406,-0.7285705496660331,-0.8507154615568152,-0.9385680504055727,-0.9885869801334739,-0.9987559886952388,-0.9686651635615242,-0.8995274652845846,-0.794129833083075,-0.6567208433783593,-0.4928394497651881,-0.30909170790403356,-0.11288448555148335,0.08787310812960611,0.28508853859995226,0.4708120558478709,0.6375571486509106,0.7786023256922014,0.8882620587390275,0.9621159661711752,0.9971869984744189,0.9920614430462201,0.9469459109221758,0.8636590082893673,0.7455580285076455,0.5974036196824315,0.42516788303562403,0.2357936376265471,0.03691455545572834,-0.16345255169852013,-0.35723088980115897,-0.5366092579640591,-0.6943569177961781,-0.8241150643215848,-0.9206531492792843,-0.9800797244180414,-0.9999993056964125,-0.9796089351961312,-0.919730548339498,-0.8227778416890886,-0.6926589768883011,-0.5346190427443522,-0.35502862580490424,-0.16112701214284603,0.03926962811838752,0.2380833104647504,0.42729985938371357,0.5992919596168416,0.7471266130839285,0.8648446078949089,0.9477007340609289,0.9923550628126947,0.9970075790617849,0.9614707399723351,0.8871770348089669,0.7771212413236042,0.6357397063247066,0.46873151662745527,0.28282876897926323,0.0855251993762103,-0.11522588928312019,-0.31133222467698873,-0.49488876439356,-0.6584963480310524,-0.7955599572033709,-0.9005545605982067,-0.9692478278771085,-0.9988707348260446,-0.9882291826652745,-0.9377521321470712,-0.8494743121565029,-0.726954199831123,-0.5751305784197728,-0.400123455029512,-0.20898736326304618,-0.009426995112154802,0.19051337502102408,0.38277415486188904,0.5596053162653749,0.713878798693197,0.8393758411903522,0.931037660513008,0.9851693705790083,0.9995889232508597,0.9737150666521335,0.9085907754188092,0.8068412084127755,0.6725678886211984,0.5111833708480747,0.32919306173928803,0.13393298697273653,-0.06672592378874972,-0.26469511391238065,-0.4519944493501003,-0.6210738976801105,-0.7651178697614834,-0.8783199559941138,-0.9561169825725633,-0.9953729529295504,-0.9945054596943206,-0.9535494715016137,-0.8741559234068006,-0.7595251677270861,-0.6142779679045536,-0.44426923562503,-0.2563520194468539,-0.058101258551737624,0.1424915628999171,0.33734055233430976,0.5185913509297913,0.6789377426625152,0.811916167726083,0.9121662684969216,0.9756469654414326,0.999799352950211,0.983649848771492,0.9278494390919606,0.8346474372967001,0.7078008141922868,0.552422754589369,0.3747765449267188,0.18202310032123759,-0.018067691775079026,-0.21743017558158578,-0.40802805340981685,-0.5821783286611365,-0.7328610072639634,-0.8540020734926357,-0.9407183334187165,-0.9895142563591477,-0.9984228796475664,-0.9670850968594679,-0.8967641333849329,-0.7902946258387901,-0.6519683579158564,-0.4873612586772992,-0.30310863696266566,-0.10663771222522178,0.09413177653431368,0.29110681528647375,0.47634734420462727,0.6423863213163515,0.7825307188138007,0.8911313188696184,0.9638104334929105,0.9976383690438451,0.9912515221248168,0.9449073464058967,0.8604739746726154,0.7413549144310662,0.5923518525894059,0.41947109955551226,0.229681474986051,0.030633394807333864,-0.16964951689629343,-0.3630938600064555,-0.5419018969666507,-0.6988658794249023,-0.8276585924244217,-0.9230884043101086,-0.9813085412958351,-0.999972150837696,-0.9783269032127095,-0.9172453179146827,-0.8191895924110538,-0.6881123510127689,-0.5292973146684589,-0.34914631427960396,-0.15492123302681748,0.045548719994667704,0.24418260503473777,0.43297349420670483,0.6043112305879224,0.7512891934918142,0.8679827042075836,0.9496878496795244,0.993111097146833,0.9965020563827596,0.9597240378890988,0.8842595628471868,0.7731506027189696,0.6308759574391074,0.4631707150799605,0.2767950705677844,0.07926182236162828,-0.12146646830008062,-0.31729844808242563,-0.5003401338427208,-0.6632131189317442,-0.799351996616026,-0.9032690114908016,-0.9707752707891406,-0.999149598564606,-0.9872482262387116,-0.9355508978891096,-0.8461415317754978,-0.7226242176368631,-0.5699779359068105,-0.3943558551133299,-0.20283729777956394,-0.0031423730765713595,0.1966792206216173,0.38857267891609176,0.5648027803858894,0.7182656932064909,0.8427753304673246,0.9333127112097566,0.9862282754479355,0.9993889978581457,0.9722643699863175,0.905947785033108,0.8031124631961735,0.667903694217929,0.5057717408401587,0.3232521388228455,0.12770224963032084,-0.07299531466093845,-0.2707504392951393,-0.45759161919971664,-0.6259872901933102,-0.76914942618538,-0.8813071643709139,-0.9579394285929823,-0.9959571738314166,-0.9938279055448825,-0.9516374544949254,-0.8710865169097142,-0.7554220994533927,-0.6093066324533443,-0.43863002742775314,-0.25027225487183813,-0.051826012786047336,0.14870933482656443,0.3432502121612382,0.5239546803890702,0.6835385460520564,0.8155689867544379,0.9147238581029219,0.9770062292398103,0.9999054990447572,0.9824985984152829,0.9254871991635611,0.831169429639826,0.7033472372252131,0.5471731319095776,0.3689424887181075,0.17583978127164476,-0.024351024199999887,-0.22356024037879857,-0.4137577477915029,-0.5872766887626428,-0.7371225182927581,-0.8572549540253758,-0.9428314599069456,-0.9904024487168825,-0.998050334858838,-0.9654668321971722,-0.8939653810648913,-0.7864282035103382,-0.6471901209848974,-0.4818638177777427,-0.29711359382604646,-0.10038672691895474,0.10038672691895474,0.29711359382604646,0.4818638177777427,0.6471901209848974,0.7864282035103382,0.8939653810648913,0.9654668321971722,0.998050334858838,0.9904024487168825,0.9428314599069456,0.8572549540253758,0.7371225182927581,0.5872766887626428,0.4137577477915029,0.22356024037879857,0.024351024199999887,-0.17583978127164476,-0.3689424887181075,-0.5471731319095776,-0.7033472372252131,-0.831169429639826,-0.9254871991635611,-0.9824985984152829,-0.9999054990447572,-0.9770062292398103,-0.9147238581029219,-0.8155689867544379,-0.6835385460520564,-0.5239546803890702,-0.3432502121612382,-0.14870933482656443,0.051826012786047336,0.25027225487183813,0.43863002742775314,0.6093066324533443,0.7554220994533927,0.8710865169097142,0.9516374544949254,0.9938279055448825,0.9959571738314166,0.9579394285929823,0.8813071643709139,0.76914942618538,0.6259872901933102,0.45759161919971664,0.2707504392951393,0.07299531466093845,-0.12770224963032084,-0.3232521388228455,-0.5057717408401587,-0.667903694217929,-0.8031124631961735,-0.905947785033108,-0.9722643699863175,-0.9993889978581457,-0.9862282754479355,-0.9333127112097566,-0.8427753304673246,-0.7182656932064909,-0.5648027803858894,-0.38857267891609176,-0.1966792206216173,0.0031423730765713595,0.20283729777956394,0.3943558551133299,0.5699779359068105,0.7226242176368631,0.8461415317754978,0.9355508978891096,0.9872482262387116,0.999149598564606,0.9707752707891406,0.9032690114908016,0.799351996616026,0.6632131189317442,0.5003401338427208,0.31729844808242563,0.12146646830008062,-0.07926182236162828,-0.2767950705677844,-0.4631707150799605,-0.6308759574391074,-0.7731506027189696,-0.8842595628471868,-0.9597240378890988,-0.9965020563827596,-0.993111097146833,-0.9496878496795244,-0.8679827042075836,-0.7512891934918142,-0.6043112305879224,-0.43297349420670483,-0.24418260503473777,-0.045548719994667704,0.15492123302681748,0.34914631427960396,0.5292973146684589,0.6881123510127689,0.8191895924110538,0.9172453179146827,0.9783269032127095,0.999972150837696,0.9813085412958351,0.9230884043101086,0.8276585924244217,0.6988658794249023,0.5419018969666507,0.3630938600064555,0.16964951689629343,-0.030633394807333864,-0.229681474986051,-0.41947109955551226,-0.5923518525894059,-0.7413549144310662,-0.8604739746726154,-0.9449073464058967,-0.9912515221248168,-0.9976383690438451,-0.9638104334929105,-0.8911313188696184,-0.7825307188138007,-0.6423863213163515,-0.47634734420462727,-0.29110681528647375,-0.09413177653431368,0.10663771222522178,0.30310863696266566,0.4873612586772992,0.6519683579158564,0.7902946258387901,0.8967641333849329,0.9670850968594679,0.9984228796475664,0.9895142563591477,0.9407183334187165,0.8540020734926357,0.7328610072639634,0.5821783286611365,0.40802805340981685,0.21743017558158578,0.018067691775079026,-0.18202310032123759,-0.3747765449267188,-0.552422754589369,-0.7078008141922868,-0.8346474372967001,-0.9278494390919606,-0.983649848771492,-0.999799352950211,-0.9756469654414326,-0.9121662684969216,-0.811916167726083,-0.6789377426625152,-0.5185913509297913,-0.33734055233430976,-0.1424915628999171,0.058101258551737624,0.2563520194468539,0.44426923562503,0.6142779679045536,0.7595251677270861,0.8741559234068006,0.9535494715016137,0.9945054596943206,0.9953729529295504,0.9561169825725633,0.8783199559941138,0.7651178697614834,0.6210738976801105,0.4519944493501003,0.26469511391238065,0.06672592378874972,-0.13393298697273653,-0.32919306173928803,-0.5111833708480747,-0.6725678886211984,-0.8068412084127755,-0.9085907754188092,-0.9737150666521335,-0.9995889232508597,-0.9851693705790083,-0.931037660513008,-0.8393758411903522,-0.713878798693197,-0.5596053162653749,-0.38277415486188904,-0.19051337502102408,0.009426995112154802,0.20898736326304618,0.400123455029512,0.5751305784197728,0.726954199831123,0.8494743121565029,0.9377521321470712,0.9882291826652745,0.9988707348260446,0.9692478278771085,0.9005545605982067,0.7955599572033709,0.6584963480310524,0.49488876439356,0.31133222467698873,0.11522588928312019,-0.0855251993762103,-0.28282876897926323,-0.46873151662745527,-0.6357397063247066,-0.7771212413236042,-0.8871770348089669,-0.9614707399723351,-0.9970075790617849,-0.9923550628126947,-0.9477007340609289,-0.8648446078949089,-0.7471266130839285,-0.5992919596168416,-0.42729985938371357,-0.2380833104647504,-0.03926962811838752,0.16112701214284603,0.35502862580490424,0.5346190427443522,0.6926589768883011,0.8227778416890886,0.919730548339498,0.9796089351961312,0.9999993056964125,0.9800797244180414,0.9206531492792843,0.8241150643215848,0.6943569177961781,0.5366092579640591,0.35723088980115897,0.16345255169852013,-0.03691455545572834,-0.2357936376265471,-0.42516788303562403,-0.5974036196824315,-0.7455580285076455,-0.8636590082893673,-0.9469459109221758,-0.9920614430462201,-0.9971869984744189,-0.9621159661711752,-0.8882620587390275,-0.7786023256922014,-0.6375571486509106,-0.4708120558478709,-0.28508853859995226,-0.08787310812960611,0.11288448555148335,0.30909170790403356,0.4928394497651881,0.6567208433783593,0.794129833083075,0.8995274652845846,0.9686651635615242,0.9987559886952388,0.9885869801334739,0.9385680504055727,0.8507154615568152,0.7285705496660331,0.5770569736601406,0.4022822427221188,0.21129152271979784,0.011783645711850345,-0.18819922981624954,-0.3805957981985377,-0.5576505576563546,-0.7122264344185881,-0.8380924780205431,-0.9301750307914504,-0.9847622468923241,-0.9996537167466211,-0.9742491655058375,-0.9095726501164699,-0.8082312796051601,-0.6743101225667418,-0.5132075381315926,-0.33141756821864543,-0.1362681628366438,0.06437420943199343,0.26242165862103584,0.44989089606083993,0.6192250405835226,0.7635982362497219,0.8771908024632894,0.9554238251786563,0.9951437328330838,0.9947494167527383,0.9542567718108402,0.875298055705645,0.7610560926857523,0.6161359739688534,0.4463794266082046,0.25862933359295764,0.06045389737374052,-0.14015843422538812,-0.3351209821769165,-0.5165748101176675,-0.677205517914995,-0.810538084987689,-0.9111978782549804,-0.9751273034869514,-0.9997493668460876,-0.9840715534565695,-0.9287258356588942,-0.8359431982176557,-0.7094637073706909,-0.5543857488349347,-0.3769605119810818,-0.18434000451662694,0.015711244799899323,0.21512917415650493,0.40587525085572135,0.5802605044054739,0.731255468763573,0.8527735399720664,0.9399163270392596,0.9891711059817737,0.9985524176570257,0.9676821015812135,0.8978045395707426,0.7917364947363492,0.6537535678190792,0.4894178478111087,0.30535370426069103,0.10898075907010615,-0.09178519831354158,-0.28885129621028877,-0.4742738042014713,-0.6405783447416864,-0.781061185166864,-0.890059465021906,-0.9631794658513926,-0.9974737219013508,-0.9915598324043374,-0.9456761861263192,-0.861672351920358,-0.7429345226435203,-0.5942490177914894,-0.42160934705625863,-0.23197461207208336,-0.03298898516899253,0.16732642705869963,0.3608969143973972,0.5399196544190601,0.6971782440958688,0.826333592859822,0.9221794512156516,0.9808522745523186,0.9999869625483435,0.9788121963177646,0.9181815302588999,0.8205389852937448,0.6898205304342073,0.5312954239506394,0.3513538096778973,0.15724913044626823,-0.04319425805181206,-0.2418964868818779,-0.43084787322020457,-0.6024317905068499,-0.7497316945077098,-0.8668099290730327,-0.948947072936471,-0.9928321794908005,-0.9966962409788139,-0.9603834971601124,-0.8853577140032538,-0.7746431793092668,-0.6327027937314019,-0.4652581713403706,-0.27905900147658036,-0.08161096890980434,0.11912680016247287,0.3150625703305488,0.4982981746635754,0.6614473896585246,0.7979336737600079,0.9022552676176402,0.9702069698937973,0.999049648844703,0.9876206566654308,0.9363806957994659,0.8473952480325586,0.724251314963608,0.5719128260430066,0.39652054267663583,0.20514452425821733,0.00549913421784372,-0.194367925811644,-0.38640001868444085,-0.5628563346225371,-0.7166239231007736,-0.8415044157390185,-0.9324638824057769,-0.9858357488402403,-0.9994685961863281,-0.9728128846433748,-0.9069431054043419,-0.8045144679375061,-0.6696558685466796,-0.5078034546445509,-0.325481493760534,-0.1300393804488761,0.07064461765752289,0.26848093265550715,0.4554947866906468,0.6241476550907054,0.7676411441430999,0.8801910342074851,0.9572604414927675,0.9957426997506509,0.9940865899294334,0.9523588697824995,0.8722415828646595,0.7569642553904369,0.6111737140978691,0.44074677275644636,0.25255333792333023,0.05417948314862476,-0.14637834549547288,-0.34103566599452667,-0.5219458456977929,-0.6818163989220781,-0.814202946901631,-0.9137689905661849,-0.9765010247101777,-0.9998703223066221,-0.9829348674422477,-0.9263773279599763,-0.8324775371319189,-0.7050205936264458,-0.5491442842572218,-0.37113197990101815,-0.17815935294442523,0.02199487392442276,0.2212624878704834,0.4116110154074458,0.5853675112419215,0.7355278545425019,0.8560390849091424,0.9420433970842087,0.9900739589840809,0.9981946596304543,0.9660781537445827,0.8950190570288611,0.7878817602341351,0.6489849656263199,0.48392760018570663,0.29936312297333645,0.10273132433127913,-0.09804157191596996,-0.294862414382996,-0.4797973588924886,-0.6453916815732917,-0.7849702786286731,-0.8929067396356473,-0.9648501480349413,-0.9979004664897259,-0.9907254373318077,-0.9436142858413588,-0.8584660615817418,-0.7387130877499215,-0.5891826042980527,-0.4159021819883907,-0.22585675113819131,-0.026707039219532797,0.1735192329096131,0.36675094827116006,0.5451989403287874,0.7016699741332558,0.8298567054780361,0.9245919298162696,0.9820568721718113,0.9999351218810189,0.9775060070598731,0.9156736448729981,0.8169304965889935,0.6852568965172813,0.5259606048123893,0.3454628517698413,0.1510394981625453,-0.0494722545596136,-0.24798978170143315,-0.43651084576074956,-0.6074361664597476,-0.7538757475796566,-0.8699266125684985,-0.9509107534068163,-0.9935637010159991,-0.9961661159409864,-0.9586130948888072,-0.8824183993782047,-0.7706534360435359,-0.6278234482953514,-0.4596859100497025,-0.27301844207128284,-0.0753456062171607,0.12536440949897135,0.321020988404883,0.5037372177636685,0.6661478100670652,0.8017059976254364,0.9049474326412698,0.9717104549579991,0.9993038484969602,0.9866153241229046,0.9341563559966262,0.8440415640618064,0.7199034737580122,0.5667460889935049,0.39074318084925197,0.1989894229911998,-0.0007855944812178545,-0.20052894465605553,-0.39218897712924616,-0.5680398798699596,-0.7209931065467737,-0.8448831156872937,-0.9347159035297771,-0.9868703122140137,-0.9992439985812318,-0.9713381795843301,-0.9042777382224105,-0.8007658795299136,-0.6649751644362127,-0.5023793139192316,-0.31953256342324743,-0.12380546176114794,0.07691223555952739,0.2745296022209771,0.46108068617178666,0.6290456169924556,0.7716537317202657,0.8831565001361008,0.9590592479011951,0.9963023367889995,0.9933844986399997,0.9504233514509406,0.8691506581957643,0.7528425194950668,0.6061873140665676,0.4350967102735801,0.24646736689326051,0.04790292894043015,-0.15259247510865973,-0.3469368795736752,-0.5272962654430494,-0.6864003495216658,-0.8178356493997229,-0.9163040107985149,-0.9778361760625245,-0.9999517848549624,-0.981759357432906,-0.9239922301776442,-0.8289789948199419,-0.7005496329546304,-0.5438811295597835,-0.36528878883731614,-0.17197166442806872,0.028277634294663494,0.22738706215108484,0.41733052213320276,0.5904513972123339,0.7397711884170702,0.8592708179851911,0.9441332582668329,0.9909377060112956,0.997797474877069,0.9644360477199704,0.8921982229936469,0.7839959059512023,0.6441907298032354,0.4784182383713976,0.29336071743117037,0.09647783190708928,-0.10429407306900527,-0.30086188606997283,-0.4853019625310945,-0.6501795267021557,-0.7888483673076031,-0.8957187461884264,-0.9664827205343531,-0.9982877959713361,-0.9898519105520539,-0.9415151146470664,-0.8552258635212575,-0.7344624751415333,-0.5840929192499559,-0.4101785896019397,-0.21972996930661637,-0.020424038394556077,0.17970518509189787,0.37259049620348106,0.5504566919520921,0.7061339895860462,0.8333470403876908,0.9269678888532384,0.9832226804753655,0.9998437857420428,0.9761612082362817,0.9131295921781464,0.8132897407355598,0.6806661963000145,0.5206050112642046,0.33955824875827795,0.1448239001154943,-0.05574829701058043,-0.2540732814121688,-0.4421565769809474,-0.6124165498782131,-0.7579900240415149,-0.8730089356728614,-0.9528368747716838,-0.9942559787281458,-0.995596644299836,-0.9568048292846865,-0.879444230961045,-0.7666332534820448,-0.6229193050672134,-0.454095492069262,-0.26696709897415954,-0.06907726752121683,0.1315970671877978,0.32696672678120525,0.509156364233902,0.6708219189465918,0.8054466556799447,0.9076038540202338,0.9731755593694092,0.9995185776116228,0.9855710222145547,0.931895118854058,0.8406545421084999,0.7155271977803388,0.5615569665876182,0.38495038543428556,0.1928264620331768,-0.007070292150841735,-0.20668204300132,-0.39796244488041627,-0.5732009886587487,-0.7253338121823868,-0.8482284444133457,-0.9369310052130434,-0.9878658961504456,-0.9989799328024974,-0.9698251085766245,-0.9015766538474539,-0.79698566244418,-0.6602681951139766,-0.49693533019858493,-0.3135710121778699,-0.11756665300105583,0.08317681557938901,0.280567428406827,0.4666483738721828,0.6339187328289067,0.7756358404919788,0.8860870831190472,0.9608201733546587,0.9968226218435642,0.9926431706156487,0.9484502932653426,0.8660254037844386,0.7486910478001284,0.6011769708279976,0.42942946232599566,0.24037166088670173,0.04162448266074123,-0.15880057761904462,-0.35282438982814546,-0.5326258580223482,-0.6909571886568133,-0.821436048997339,-0.918802838823706,-0.9791327048081314,-0.9999937512734968,-0.9805450698588851,-0.9215706365185953,-0.8254477094672864,-0.6960510019494472,-0.5385964926269107,-0.35943116958453625,-0.1657771833689651,0.03455927775390577,0.23350265508978857,0.423033545123691,0.5955119615133115,0.7439853027839101,0.862468611553076,0.9461858280417136,0.9917623129470988,0.9973608790848895,0.9627558483673523,0.8893421488825138,0.7800790853711561,0.6393710497126195,0.47288997997717086,0.28734672471729084,0.09022052879822594,-0.11054245481117471,-0.3068494743038512,-0.49078739769612684,-0.654941691017856,-0.7926952980267352,-0.8984953736115409,-0.9680771188662064,-0.9986356950474322,-0.9889392865676748,-0.9393787554565565,-0.8519518857203756,-0.7301828527091766,-0.5789801636797789,-0.4044387959675248,-0.21359450857322795,-0.014140230860212164,0.18588403927266556,0.3784153275436368,0.5556927016181739,0.7105701141343596,0.8368044597274538,0.9293072344808224,0.9843496534158569,0.9997129577390144,0.9747778529638939,0.9105494726594383,0.8096168615361246,0.6760486111060643,0.5152288548414754,0.33364023386335917,0.13860258180908216,-0.06202213751343652,-0.26014674572774354,-0.4477848438855703,-0.6173727440468412,-0.7620743613874943,-0.8760567766404026,-0.9547253609530759,-0.9949089852836285,-0.9949878485483706,-0.9549587717706963,-0.8764353262255659,-0.7625827904140614,-0.6179905577510542,-0.4484871382095131,-0.26090521120142823,-0.06280620040896567,0.13782452705116263,0.33289955061459786,0.5145554000286157,0.6754695316790157,0.8091555001748744,0.9102244268311235,0.9746022252592766,0.9996938277073143,0.9844877921882592,0.9295970736862057,0.8372343159533138,0.7111226598849296,0.5563456637854286,0.3791423852358263,0.1866558848089288,-0.013354710557792625,-0.21282697781217963,-0.40372019389729535,-0.5783394571352791,-0.7296458685582512,-0.8515402697832831,-0.9391090999634032,-0.9888224613259171,-0.9986764092802013,-0.9682737313836033,-0.8988399589669676,-0.7931739659914868,-0.6555351464959587,-0.4914717185092662,-0.3075970754939264,-0.11132320058931314,0.08943811027854347,0.28659417273076127,0.4721976298791441,0.6387668101215379,0.7795873131727301,0.8889826674040868,0.9625431483000461,0.9973035343641132,0.9918626351373868,0.9464397731576053,0.8628659430720881,0.7445100042805719,0.5961428822808935,0.4237452527588179,0.23426646067208912,0.035344392295812245,-0.16500240781875095,-0.35869796421279637,-0.5379344129273129,-0.6954867363412859,-0.8250040034858092,-0.9212653759429374,-0.9803905597366749,-0.999996219904634,-0.9792920526821515,-0.9191126426310312,-0.8218838205527647,-0.6915248782980005,-0.5332905821913472,-0.3535593535071539,-0.15957615443700163,0.040839556189644806,0.2396090251326336,0.42871985912077115,0.6005490042624613,0.7481700311938305,0.8656323393062371,0.9482010253363902,0.9925477472211338,0.9968848894985889,0.9610376220513089,0.8864509475047607,0.77613145320073,0.6345261157224094,0.4673430433583098,0.2813213823726485,0.08395966215579813,-0.11678647034371399,-0.3128249425867266,-0.4962534477237632,-0.6596779864242154,-0.7965109188398489,-0.9012365122336375,-0.9696332800548935,-0.9989441499766811,-0.9879876014255288,-0.9372052926518389,-0.8486442574947504,-0.725874389489503,-0.5738445395312646,-0.3986830277956822,-0.20745061127660197,-0.007855864814514262,0.19205555139929106,0.3842252122222106,0.5609067625148909,0.7149781725599744,0.8402288269360224,0.9316098742994562,0.9854377464800582,0.9995426430393809,0.9733559958825161,0.9079333882264968,0.8059120040621773,0.6714043233209221,0.509832347891785,0.3277090408350697,0.1323757889731837,-0.0682935282637517,-0.2662099347582254,-0.4533954241690827,-0.62230455320568,-0.766128598294257,-0.8790700150874262,-0.9565761373595101,-0.9955226948899785,-0.9943397527328224,-0.9530749952624609,-0.873391804017574,-0.7585022068249346,-0.6130374010227289,-0.44286106998946523,-0.25483301818577014,-0.056532652575293885,0.14404654311661166,0.33881922557012206,0.5199341118965637,0.6800904646927933,0.8128323846181963,0.9128090475664773,0.9759903962771174,0.999829591862001,0.9833656768294635,0.9272623112613478,0.8337810206884924,0.7066900340423956,0.5511123864232049,0.37331940965849414,0.18047793504418846,-0.019638601479960795,-0.21896350637581996,-0.409461996760174,-0.5834550823401728,-0.7339291053566603,-0.8548184609865307,-0.9412501017504172,-0.9897399699579795,-0.9983334400029292,-0.9666841092816238,-0.8960677616750471,-0.7893309407263702,-0.650776205528323,-0.4859886946532246,-0.3016109893301422,-0.10507535112995374,0.09569587234819016,0.29260959714828727,0.4777282350079949,0.6435896573808757,0.7835079936871164,0.8918431386213034,0.9642281046832253,0.9977450553555426,0.9910429230348355,0.9443918705393411,0.859672400851216,0.7402995540793761,0.591085247261806,0.41804430608712195,0.22815200739276792,0.02906290589683553,-0.17119772074773992,-0.364557370732986,-0.5432217204804067,-0.6999888136668315,-0.8285393719379089,-0.9236915248908218,-0.9816096911653452,-0.9999591906508686,-0.9780003553944138,-0.9166183456008539,-0.8182874688429647,-0.6869714407732311,-0.527963607826098,-0.34767357253030207,-0.1533688225606312,0.04711822154316465,0.24570593108997624,0.4343892395261608,0.6055623265064708,0.7523252083582436,0.8687618762836318,0.9501787705545408,0.9932939778102986,0.9963695249188178,0.9592814366383846,0.8835247330571435,0.7721531653635944,0.6296561191979737,0.4617776476079628,0.27528492838645185,0.07769547927179393,-0.12302587304022093,-0.3187880548992881,-0.5016998967157174,-0.6643882258469238,-0.8002950790374616,-0.9039420537851572,-0.9711511426351224,-0.9992131485757226,-0.9869968927152984,-0.9349948120804,-0.8453031094892279,-0.7215372556583834,-0.568686249651523,-0.3929115124279982,-0.2012985200886661,-0.0015711884776309216,0.19821947770914616,0.39001992076023734,0.5660986686971402,0.7193579907532929,0.8436200067576585,0.9338757173594168,0.9864869166904433,0.9993328483702388,0.9718956931527224,0.9052814422095408,0.8021753146483428,0.6667335163848728,0.5044157035666039,0.32176490394390456,0.12614376755381243,-0.0745622215539829,-0.272262609019628,-0.4589880962246492,-0.6272117825580127,-0.7701525746274559,-0.8820485319969213,-0.9583891308889378,-0.9960970833068667,-0.9936523824517084,-0.9511535741654683,-0.8703137845502444,-0.7543916638897156,-0.6080600305221413,-0.43721750962769645,-0.24875075976681138,-0.05025687181294504,0.15026286962680435,0.3447255178323138,0.5252922873891733,0.684684535470108,0.8164771637801655,0.9153576141388308,0.9773400175928911,0.9999258647132644,0.9822047204595301,0.924890923797987,0.8302947927123753,0.7022294953326993,0.5458573412050627,0.3674816886983189,0.1742928567557645,-0.025921716715975884,-0.22509138631136394,-0.4151876266790682,-0.5885476622162391,-0.7381833533981375,-0.8580628885409471,-0.9433539260087022,-0.9906183858068548,-0.9979510385172897,-0.9650563050576183,-0.8932601714680083,-0.7854567384407349,-0.6459915601798347,-0.48048647519906845,-0.2956129901252138,-0.09882335140081243,0.10194985461896555,0.29861346406190475,0.48323997081064873,0.6483870841138853,0.7873977271759451,0.8946683837877358,0.9658749759517488,0.9981471673786456,0.9901840666850033,0.9423066662986571,0.8564449032604302,0.736059863501068,0.5860042655374271,0.41232684748715204,0.22202854255768475,0.022780271570239215,-0.177386271703267,-0.37040237795364556,-0.5484875718434284,-0.7044632428102917,-0.8320420147135701,-0.9260811898392693,-0.9827900509408599,-0.9998826649747826,-0.9766700290151819,-0.9140878439479179,-0.8146587963867455,-0.6823908692270165,-0.5226157799362325,-0.3417740591308185,-0.14715543291729202,0.05339502581958981,0.25179313214607807,0.4400414624105362,0.6105517302290175,0.7564506701558612,0.8718570988747331,0.9521189855791071,0.9940009752399444,0.9958148057014691,0.9574873614944686,0.8805636211194101,0.7681443789943386,0.6247612524946266,0.45619401254826536,0.26923760118670603,0.0714282275690599,-0.12926041645661743,-0.32473857571038167,-0.5071265295480157,-0.6690722232407593,-0.8040476291526458,-0.9066118914024998,-0.9726306466542896,-0.999442680219638,-0.9859671995680402,-0.9327474010518995,-0.8419285736725528,-0.7171716225240349,-0.5635054977828123,-0.3871244778279259,-0.19513847800486642,0.004713549918140405,0.2043755747393209,0.3957992242780623,0.5712682150947813,0.7237093957200618,0.8469778652473909,0.9361046741643345,0.9874971226068409,0.9990835820180666,0.9703970024535854,0.9025937393551978,0.7984069408864696,0.6620363747855611,0.4989791358126802,0.31580805797152606,0.119906763703595,-0.0808279697830048,-0.27830452944315504,-0.46456263915266116,-0.6320942382778766,-0.7741461314478956,-0.8849922097233105,-0.9601642699316971,-0.9966321278470855,-0.9929257648547968,-0.9491945843720552,-0.8672013893992643,-0.7502513239667282,-0.6030586428456668,-0.43155668003380415,-0.24265867618186454,-0.04397910600298579,0.15647326104900078,0.3506181941141796,0.5306297148690189,0.6892515625542411,0.8200896936992073,0.9178700258848401,0.9786510358992226,0.9999826424585171,0.9810049689339415,0.9224830049612779,0.8267757697241495,0.6977412199383961,0.5405807356950109,0.36162945293386173,0.16810089424215324,-0.032203808095105625,-0.23121037557966212,-0.4208968575029095,-0.593616995616635,-0.7424084446482907,-0.8612734242980545,-0.9454204896413567,-0.9914576741768389,-0.9975292199273939,-0.9633903830066701,-0.8904172992401732,-0.7815515121579945,-0.6411813994346279,-0.47496527747370576,-0.2896033147882584,-0.09256744834352522,0.10819981007092716,0.30460553633073373,0.488732619584432,0.6531589008316899,0.7912563600024292,0.8974582913117253,0.9674836970574219,0.9985098545507837,0.9892861000110359,0.9401842427970426,0.8531835777795734,0.7317911000051128,0.5809001377964955,0.4065931027872257,0.21589630803160126,0.016496737467665383,-0.18356781624979734,-0.37623275500853903,-0.5537317590255741,-0.7089098470404656,-0.8355117934652528,-0.9284342764011881,-0.9839315924413161,-0.9997666458989908,-0.9753011260897396,-0.9115212376220385,-0.8109979465094994,-0.6777833445828819,-0.5172473097503859,-0.3358610463278257,-0.14093623092359797,0.059669721097458536,0.257870387868402,0.44567630452214724,0.615517018358412,0.7605462536390107,0.8749178848243019,0.9540215937754,0.9946687115850694,0.9952207537568558,0.9556554674819842,0.8775677286496314,0.7641052524321035,0.6198417089499311,0.45059235872185416,0.26317963963100865,0.0651581545917815,-0.13548985434063132,-0.33067626998607286,-0.5125331318792742,-0.6737297935970092,-0.8077684209670868,-0.9092459196323546,-0.9740717336749096,-0.9996327358423811,-0.9848985626545991,-0.9304631483346321,-0.8385207833322728,-0.712777662520428,-0.5583024885546993,-0.38132215257201446,-0.1889707283348181,0.010998102137924072,0.21052359933602194,0.4015628945046159,0.576415197520946,0.7280322155883828,0.8503022697764443,0.9382966566748199,0.9884683243281132,0.9987948538283925,0.9688599829804566,0.8998703858224744,0.7946070316199514,0.6573130840508942,0.493522859363808,0.3098387382017004,0.11366502377195441,-0.08709052546614279,-0.2843354573848881,-0.4701188327696877,-0.6369517275179182,-0.7781091110179725,-0.8879009319971398,-0.9619014843732758,-0.997127807377422,-0.9921599286420614,-0.9471981032584874,-0.8640547414981552,-0.7460813505913023,-0.5980334355383123,-0.42587880479937196,-0.2365570080561939,-0.03769960310476142,0.16267747208501082,0.35649702166664965,0.535946183518261,0.6937913655565777,0.8236698316874543,0.9203461835691549,0.9799233994134527,0.999999922855149,0.9797664696405367,0.9200386498592937,0.82322409071827,0.693225385137496,0.5352827783085409,0.3557629335168719,0.1619022920736393,-0.03848462748715329,-0.23732023249263606,-0.4265894637282458,-0.5986628823126052,-0.7466042122242788,-0.8644499414479695,-0.9474497110231589,-0.9922578019176873,-0.9970680008942423,-0.9616864089294086,-0.8875392572793779,-0.7776154161268708,-0.6363459132845475,-0.4694253195535372,-0.28358220068966833,-0.0863078890540283,0.11444549184305759,0.3105855772796381,0.49420596438046005,0.6579049190568613,0.7950837397581182,0.900212750997437,0.9690542044589399,0.9988331025465301,0.988349058480843,0.9380246838660378,0.8498885532245667,0.7274934321992448,0.575773065642062,0.4008432984590308,0.20975554602577293,0.010212551776406582,-0.18974211022841053,-0.38204827160917515,-0.5589540748917325,-0.7133284507252722,-0.8389485711435525,-0.9307506916343085,-0.9850342705780774,-0.9996111380060176,-0.9738937006870513,-0.9089186279991396,-0.8073050638076276,-0.6731490488290282,-0.5118584093126176,-0.32993476767376545,-0.13471146222586503,0.06594205953861042,0.2639374582173551,0.45129354329586446,0.6204579947755839,0.764611797040237,0.8779441132373333,0.9558865199941503,0.9952971604713958,0.9945873925488663,0.9537858269571575,0.874537173979693,0.7600359452144887,0.6148976828762359,0.4449729073830721,0.25711128299687136,0.05888550799545234,-0.14171394064177492,-0.33660090319916985,-0.51791949015937,-0.6783607529508356,-0.8114573075167939,-0.9118440344357643,-0.975474346776867,-0.9997833079371266,-0.9837910241840431,-0.928142144152113,-0.8350798730694248,-0.708355549200301,-0.5530774274757679,-0.37550476584064657,-0.18279551469244626,0.01728221995430913,0.2166633086644101,0.40731070378621065,0.5815394126799074,0.7323262796153363,0.8535930890373493,0.9404515783118504,0.9894004834936915,0.9984666752054155,0.9672846954425681,0.8971114891784541,0.7907757369376961,0.6525638307415234,0.48804708973213984,0.30385718041077886,0.10741879429530071,-0.09334964124471079,-0.2903551546349832,-0.47565645761696096,-0.6417840584168243,-0.782041356807744,-0.8907745839295682,-0.9636007055971102,-0.9975841023195142,-0.9913549040625195,-0.9451642096818239,-0.8608739651332998,-0.7418819084691575,-0.59298460708585,-0.42018410818935314,-0.23044599639374203,-0.03141861114633981,0.16887525768064768,0.36236176828753275,0.5412414833467853,0.6983037651638005,0.8272174363365303,0.922785989388439,0.9811570578797368,0.9999777052206189,0.9784892714975939,0.9175579550392373,0.8196398959791023,0.6886821692966302,0.5299636783045951,0.3498823621633784,0.1556972950828858,-0.04476392681203621,-0.24342071572291762,-0.4322652205083791,-0.6036851230015955,-0.7507704904015728,-0.8675923145245408,-0.9494415100038688,-0.9930187374259332,-0.9965673996350836,-0.9599444501294728,-0.8846261592626437,-0.773648605815449,-0.6314852927218397,-0.4638668202560663,-0.27754988565164473,-0.08004492077254535,0.12068665324326766,0.31655335070881635,0.4996597890124282,0.6626249513310454,0.7988797152690646,0.9029316540491075,0.9705864361243355,0.9991168985982221,0.9873729791057299,0.9358280748039804,0.8465599597424106,0.7231670298329049,0.570623251583385,0.39507766160852076,0.20360649908821213,0.003927962709428354,-0.19590890976667857,-0.3878486980541243,-0.5641543131707327,-0.7177188793385183,-0.8423522120024807,-0.9330303440447644,-0.9860980417975248,-0.9994161474381197,-0.9724478083976571,-0.9062801178771784,-0.8035802941427282,-0.6684881650110157,-0.506449291473888,-0.3239954572449498,-0.128481372690173,0.07221179339805466,0.269994103555539,0.456892956861756,0.6253744643216405,0.7686471397785366,0.8809356645837464,0.9577136905744339,0.9958862970764295,0.9939147470940218,0.9518785137671094,0.8714720768105395,0.7559366180710994,0.609929369552815,0.43933588048915784,0.25103277097249793,0.0526105355373298,-0.14793242952082739,-0.34251224133826247,-0.5232853916377259,-0.6829649183884359,-0.8151141430980092,-0.9144061331923086,-0.9768384305597052,-0.9998943905565734,-0.9826446279019533,-0.9257844801794274,-0.8316059787931742,-0.7039054572284704,-0.5478305209256988,-0.36967254740920646,-0.17661308098659742,0.023565655156979223,0.22279446021802074,0.41304242509569344,0.5866406581752526,0.7365914181938451,0.8568501930492228,0.9425693539602796,0.9902935632851286,0.9980990591115437,0.965671202060693,0.8943171583941515,0.786913208168341,0.6477888024436541,0.4825520431998257,0.29786362085855067,0.10116832198743524,-0.0996050698959555,-0.29636338342724766,-0.4811752949691995,-0.6465910401070362,-0.7859427135012612,-0.893613052017015,-0.9652618664873153,-0.9980009946506051,-0.9905107229130654,-0.9430929839768782,-0.8576591859391116,-0.7376531634700125,-0.5879123569070914,-0.4144728151330549,-0.2243258825674412,-0.025136378214540324,0.1750663730355796,0.36821220233091073,0.5465154052006984,0.7027885831450299,0.8307323675229984,0.9251893469751403,0.9823519625709809,0.9999159904324793,0.9771734249519322,0.9150410184836839,0.8160233270752839,0.6841117518638823,0.5246236457771539,0.343987971144375,0.14948614835502919,-0.051041458049822436,-0.24951158431345774,-0.43792390366203104,-0.6086835193149331,-0.754907114620343,-0.8707004194101855,-0.9513958079113369,-0.9937404506461178,-0.9960274359226823,-0.9581645754108068,-0.8816781202516085,-0.769651237904929,-0.6265997297314128,-0.45828999913104634,-0.27150660793872766,-0.07377879087405928,0.12692304775790356,0.3225086209029042,0.5050938780649431,0.6673188112222339,0.8026441366016884,0.9056148930754175,0.972080331533474,0.9993612314964742,0.9863579004389107,0.933594502372605,0.8431979288060043,0.7188120637904816,0.5654508990279964,0.38929641996701714,0.1974494100941851,-0.0023567815043553444,-0.20206797128812676,-0.3936338052379298,-0.569332268463372,-0.7220809594669159,-0.845722581604923,-0.935273143590773,-0.9871228640827808,-0.9991816818970409,-0.97096350633146,-0.9036058114721183,-0.799823784635881,-0.6638008772245932,-0.5010201698837186,-0.3180433496324653,-0.1222462083928272,0.07847867503361294,0.2760400846573844,0.4624743240540074,0.6302662328057115,0.7726521224658144,0.8838924207031436,0.9595030333466044,0.9964360981304328,0.9932028439604956,0.9499336032469615,0.8683725582074838,0.751807432917299,0.6049369652182902,0.43368150069160666,0.24494434364714907,0.046333485066474826,-0.154145075359718,-0.3484100509171296,-0.5286306243717817,-0.6875421080543258,-0.8187387832729162,-0.9169321147041228,-0.9781639311447962,-0.9999659793131763,-0.981459419088738,-0.9233902495396732,-0.8280992377155247,-0.6994275623748103,-0.5425619761469734,-0.3638257276388426,-0.17042367141123396,0.02984815956261163,0.22891681182842008,0.41875783204133993,0.5917187325178127,0.7408274628593199,0.8600734531628591,0.944649899972116,0.991147528427526,0.9976920200668908,0.9640195665646439,0.8914875038401329,0.7830195978741701,0.6429881877615056,0.4770379368103876,0.29185829627883614,0.09491385372972701,-0.10585656434274203,-0.3023599064484552,-0.48667512684317665,-0.6513724827222265,-0.7898130270025941,-0.8964162241455634,-0.9668849014312969,-0.9983784679042684,-0.989627418537193,-0.9409845079529889,-0.8544105308930654,-0.7333952826209824,-0.5828168853459478,-0.4087451512153257,-0.21819690830975672,-0.01885315244521423,0.18125057361292043,0.37404809271613954,0.551767740770441,0.7072456423587604,0.8342144864139953,0.9275561614013648,0.9835080662908018,0.9998147809283433,0.9758189819769032,0.9124879396066796,0.8123745268541773,0.6795143133617564,0.5192628916470049,0.3380799932767198,0.1432690972181553,-0.05731697325035252,-0.25559259768690507,-0.44356528968235504,-0.6136578738258023,-0.7590139214920751,-0.8737741333408743,-0.9533125275546399,-0.9944229130719886,-0.9954481310845437,-0.9563468550749632,-0.8786952566880182,-0.7656234702834901,-0.6216894172834438,-0.4526950764519559,-0.2654526062485146,-0.06750974685836734,0.13315442906165714,0.3284511526404509,0.5105080169021766,0.6719863133321942,0.8063768550687515,0.9082623620937006,0.9735358316804235,0.9995660915906172,0.9853038625739975,0.9313240547936457,0.8398025932089567,0.7144287060845671,0.5602562122736543,0.38349980188220023,0.19128452223660358,-0.008641432629894624,-0.20821905152194017,-0.3994033646602373,-0.5744877362505951,-0.7264145188168745,-0.8490595468279054,-0.937479001686161,-0.9881086969553814,-0.998907750643709,-0.9694408531154721,-0.9008958144138048,-0.7960356836618269,-0.659087370608414,-0.4955712589817463,-0.31207867993289945,-0.11600621561055247,0.08474245691578797,0.2820751627185229,0.46803742441958646,0.6351331070125583,0.7766265869131221,0.8868142648094742,0.9612544776351422,0.9969465419173448,0.9924517112670619,0.947951172216856,0.8652387405954176,0.7476485528478102,0.5999206670628124,0.4280099913272981,0.23884624150173542,0.04005460451404167,-0.16035163277114886,-0.35429409898387937,-0.5339549772353587,-0.6920921411585172,-0.8223310848753529,-0.9194218791999029,-0.9794507961774725,-0.9999980713793203,-0.9802354445578142,-0.920959546800251,-0.8245597883458508,-0.6949220415073646,-0.5372720012367536,-0.3579645374674422,-0.16422753043587487,0.03612948502459275,0.23503012167476248,0.4244566988758183,0.5967734351336336,0.7450342462963235,0.8632627420658199,0.946693134169885,0.99196234519094,0.9972455741486985,0.9623298541907763,0.8886226372821904,0.7790950598451357,0.6381621763099207,0.47150498836022314,0.2858414438701434,0.08865563656136932,-0.11210387766332888,-0.3083444868477343,-0.492155736006345,-0.6561281974048053,-0.7936521444419723,-0.8991839895954284,-0.9684697463223654,-0.9987165071710528,-0.9887050258236889,-0.938838864890814,-0.8511281283106453,-0.7291084340999849,-0.5776983936635225,-0.40300134266763094,-0.21205931570312345,-0.012569182013427903,0.1874276151488965,0.3798692089369842,0.5569982825990897,0.7116747667599201,0.83766365547267,0.9298863391825951,0.9846253233753753,0.9996740807057876,0.9744259960703403,0.9098988192498179,0.8086936394362182,0.6748900353800356,0.513881627653398,0.3321586619139246,0.13704638723360194,-0.0635902245431203,-0.26166351565519297,-0.4491891557456931,-0.6186079900569783,-0.7630907488059709,-0.8768133349109573,-0.9551915932271151,-0.9950660977476194,-0.9948295080020698,-0.954491360918322,-0.8756776863891196,-0.7615654620400203,-0.6167545493255975,-0.44708227320725646,-0.25938811970218656,-0.06123803634038454,0.13938055102721658,0.33438071120313445,0.5159019916763012,0.6766272733037564,0.8100777232352028,0.9108739565341379,0.9749528790757893,0.9997314707890801,0.9842109071434139,0.9290168217453073,0.8363740870603578,0.7100171298491851,0.5550393965002738,0.37768803630908926,0.18511207901641905,-0.014925742435848143,-0.2143619075125258,-0.4051571484347769,-0.5796205129015655,-0.7307193862213188,-0.8523629758678617,-0.93964783120387,-0.9890555014768685,-0.9985943644978704,-0.9678799088915059,-0.8981502337417948,-0.7922161408431077,-0.6543478313367237,-0.49010277398922,-0.30610168373895014,-0.10976164081081294,0.09100289163749284,0.28809909936523476,0.47358203822696454,0.6399748947102168,0.7805703761369372,0.8897010814956324,0.9629679542614362,0.9974176082756399,0.9916613786819856,0.9459312989789216,0.8620707477539782,0.7434601421301965,0.5948806732203106,0.42232157640972096,0.23273870539930033,0.03377414188346919,-0.16655185660830302,-0.36016415313019845,-0.539258239926972,-0.6966148379836355,-0.8258909060164701,-0.9218753283388472,-0.9806989748290953,-0.9999906654874317,-0.9789727526537657,-0.9184924679691472,-0.8209877704854536,-0.6903890725853478,-0.5319608051386492,-0.35208920840049523,-0.1580249027958888,0.042409383442950296,0.241134148293311,0.43013880050507325,0.6018045663719015,0.7492116023451798,0.8664179337874629,0.9486989758498587,0.9927379813917083,0.996759738990704,0.9606021316794062,0.8857226718769214,0.7751397490927754,0.6333109587068679,0.46595341638988813,0.27981330128632975,0.08239391766965774,-0.11834676310112474,-0.31431688824592363,-0.49761690598541625,-0.6608579963134064,-0.7974599141817943,-0.9019162390453084,-0.970016338562264,-0.9990150990990716,-0.987743581205252,-0.9366561395390383,-0.8478121078402907,-0.7247927872291204,-0.5725570840301881,-0.3972416163591135,-0.20591334717038418,-0.006284715123660426,0.19359725366252933,0.3856753210708303,0.5622068240905111,0.7160757814067883,0.8410797384636272,0.9321797882813898,0.9857036896952429,0.9994938953221937,0.9729945222524521,0.9072737596782697,0.8049808102092215,0.6702391005686099,0.5084800663456825,0.3262242109369421,0.1308182641861456,-0.06986096414701579,-0.2677240984289767,-0.4547952797203947,-0.6235336724886009,-0.7671374355353657,-0.8798179040779447,-0.9570329307093646,-0.9956699792684811,-0.9941715911096561,-0.9525981662292535,-0.8726255285430078,-0.7574773734578859,-0.61179532077546,-0.4414518110916355,-0.2533133878350331,-0.0549639070403435,0.14560116773500342,0.34029706238504803,0.5212755893359133,0.6812415078281338,0.8137465949240296,0.9134495732438757,0.9763314177489855,0.9998573625597098,0.983079077316751,0.9266728943587612,0.8329125457794553,0.7055775093329206,0.5498006577618196,0.3718613528009979,0.178932324233005,-0.021209462704306414,-0.22049629662915723,-0.4108949292984075,-0.5847303956816807,-0.7349953916464514,-0.8556327382458384,-0.9417795464793968,-0.9899632402503239,-0.9982415358376618,-0.9662807353137878,-0.8953691779011256,-0.7883653070441551,-0.6495824466120064,-0.4846149309005692,-0.3001125971302212,-0.1035127306420298,0.0972597319238687,0.294111656663868,0.4791079464747976,0.6447914046575911,0.7844833343653355,0.8925527567380386,0.9646433955465304,0.9978492785991216,0.9908318774218497,0.9438740633141806,0.8588687048126502,0.7392423661984585,0.5898171827606258,0.41661648062006607,0.22662197657552144,0.02749234524068321,-0.17274550197452726,-0.3660199815004744,-0.5445402029781794,-0.7011100198920525,-0.8294181060903273,-0.9242923652145342,-0.9819084177990615,-0.9999437619300288,-0.9776713932504438,-0.9159891104911217,-0.817383325222013,-0.6858288346521264,-0.5266285976344637,-0.3461999725019502,-0.1518160334828881,0.04868760677402487,0.2472286505870222,0.43580391249727657,0.6068119275128164,0.7533593660085375,0.8695389037039172,0.9506673457852292,0.9934744063937271,0.9962345337824404,0.9588364672721783,0.8827877221672574,0.7711538218440881,0.6284347265658986,0.4603834401755766,0.2737741066271688,0.0761289443801605,-0.12458497407441964,-0.3202768747449104,-0.5030584210749114,-0.6655616926302593,-0.801236185822647,-0.9046128645767247,-0.9715246170636379,-0.9992742318945305,-0.9867431226570545,-0.9344364181110183,-0.8444626004582995,-0.7204485124679503,-0.5673931595175625,-0.3914661997876466,-0.19975924546521182,0.0],"x":[-46080.0,-46068.47711927982,-46056.95423855964,-46045.43135783946,-46033.90847711928,-46022.3855963991,-46010.86271567892,-45999.33983495874,-45987.81695423856,-45976.29407351838,-45964.7711927982,-45953.248312078016,-45941.72543135784,-45930.20255063766,-45918.67966991748,-45907.1567891973,-45895.63390847712,-45884.11102775694,-45872.58814703676,-45861.06526631658,-45849.542385596396,-45838.01950487622,-45826.49662415604,-45814.97374343586,-45803.450862715676,-45791.9279819955,-45780.40510127532,-45768.88222055514,-45757.35933983496,-45745.83645911478,-45734.3135783946,-45722.79069767442,-45711.26781695424,-45699.744936234056,-45688.22205551388,-45676.6991747937,-45665.17629407352,-45653.653413353335,-45642.13053263316,-45630.60765191298,-45619.0847711928,-45607.56189047262,-45596.039009752436,-45584.51612903226,-45572.99324831208,-45561.4703675919,-45549.947486871715,-45538.42460615154,-45526.90172543136,-45515.37884471118,-45503.855963990994,-45492.333083270816,-45480.81020255064,-45469.28732183046,-45457.76444111028,-45446.241560390095,-45434.71867966992,-45423.19579894974,-45411.67291822956,-45400.150037509375,-45388.627156789196,-45377.10427606902,-45365.58139534884,-45354.058514628654,-45342.535633908476,-45331.0127531883,-45319.48987246812,-45307.96699174794,-45296.444111027755,-45284.92123030758,-45273.3983495874,-45261.87546886722,-45250.352588147034,-45238.829707426856,-45227.30682670668,-45215.7839459865,-45204.26106526631,-45192.738184546135,-45181.21530382596,-45169.69242310578,-45158.1695423856,-45146.646661665414,-45135.123780945236,-45123.60090022506,-45112.07801950488,-45100.55513878469,-45089.032258064515,-45077.50937734434,-45065.98649662416,-45054.46361590397,-45042.940735183794,-45031.417854463616,-45019.89497374344,-45008.37209302326,-44996.849212303074,-44985.326331582895,-44973.80345086272,-44962.28057014254,-44950.75768942235,-44939.234808702175,-44927.711927981996,-44916.18904726182,-44904.66616654163,-44893.143285821454,-44881.620405101276,-44870.0975243811,-44858.57464366092,-44847.05176294073,-44835.528882220555,-44824.00600150038,-44812.4831207802,-44800.96024006001,-44789.437359339834,-44777.914478619656,-44766.39159789948,-44754.86871717929,-44743.34583645911,-44731.822955738935,-44720.30007501876,-44708.77719429858,-44697.25431357839,-44685.731432858214,-44674.208552138036,-44662.68567141786,-44651.16279069767,-44639.63990997749,-44628.117029257315,-44616.59414853714,-44605.07126781695,-44593.54838709677,-44582.025506376594,-44570.502625656416,-44558.97974493624,-44547.45686421605,-44535.933983495874,-44524.411102775695,-44512.88822205552,-44501.36534133533,-44489.84246061515,-44478.319579894975,-44466.796699174796,-44455.27381845461,-44443.75093773443,-44432.228057014254,-44420.705176294075,-44409.18229557389,-44397.65941485371,-44386.13653413353,-44374.613653413355,-44363.09077269318,-44351.56789197299,-44340.04501125281,-44328.522130532634,-44316.999249812456,-44305.47636909227,-44293.95348837209,-44282.43060765191,-44270.907726931735,-44259.38484621155,-44247.86196549137,-44236.33908477119,-44224.816204051014,-44213.293323330836,-44201.77044261065,-44190.24756189047,-44178.72468117029,-44167.201800450115,-44155.67891972993,-44144.15603900975,-44132.63315828957,-44121.110277569394,-44109.58739684921,-44098.06451612903,-44086.54163540885,-44075.018754688674,-44063.495873968495,-44051.97299324831,-44040.45011252813,-44028.92723180795,-44017.404351087775,-44005.88147036759,-43994.35858964741,-43982.83570892723,-43971.312828207054,-43959.78994748687,-43948.26706676669,-43936.74418604651,-43925.22130532633,-43913.698424606155,-43902.17554388597,-43890.65266316579,-43879.12978244561,-43867.606901725434,-43856.08402100525,-43844.56114028507,-43833.03825956489,-43821.51537884471,-43809.99249812453,-43798.46961740435,-43786.94673668417,-43775.42385596399,-43763.900975243814,-43752.37809452363,-43740.85521380345,-43729.33233308327,-43717.80945236309,-43706.28657164291,-43694.76369092273,-43683.24081020255,-43671.71792948237,-43660.19504876219,-43648.67216804201,-43637.14928732183,-43625.62640660165,-43614.10352588147,-43602.58064516129,-43591.05776444111,-43579.53488372093,-43568.01200300075,-43556.48912228057,-43544.96624156039,-43533.44336084021,-43521.92048012003,-43510.39759939985,-43498.87471867967,-43487.35183795949,-43475.82895723931,-43464.30607651913,-43452.78319579895,-43441.26031507877,-43429.73743435859,-43418.21455363841,-43406.69167291823,-43395.16879219805,-43383.64591147787,-43372.12303075769,-43360.600150037506,-43349.07726931733,-43337.55438859715,-43326.03150787697,-43314.50862715679,-43302.98574643661,-43291.46286571643,-43279.93998499625,-43268.41710427607,-43256.894223555886,-43245.37134283571,-43233.84846211553,-43222.32558139535,-43210.802700675165,-43199.27981995499,-43187.75693923481,-43176.23405851463,-43164.71117779445,-43153.188297074266,-43141.66541635409,-43130.14253563391,-43118.61965491373,-43107.096774193546,-43095.57389347337,-43084.05101275319,-43072.52813203301,-43061.005251312825,-43049.48237059265,-43037.95948987247,-43026.43660915229,-43014.91372843211,-43003.390847711926,-42991.86796699175,-42980.34508627157,-42968.82220555139,-42957.299324831205,-42945.77644411103,-42934.25356339085,-42922.73068267067,-42911.207801950484,-42899.684921230306,-42888.16204051013,-42876.63915978995,-42865.11627906977,-42853.593398349585,-42842.07051762941,-42830.54763690923,-42819.02475618905,-42807.501875468864,-42795.978994748686,-42784.45611402851,-42772.93323330833,-42761.410352588144,-42749.887471867965,-42738.36459114779,-42726.84171042761,-42715.31882970743,-42703.795948987245,-42692.273068267066,-42680.75018754689,-42669.22730682671,-42657.704426106524,-42646.181545386346,-42634.65866466617,-42623.13578394599,-42611.6129032258,-42600.090022505625,-42588.56714178545,-42577.04426106527,-42565.52138034509,-42553.998499624904,-42542.475618904726,-42530.95273818455,-42519.42985746437,-42507.90697674418,-42496.384096024005,-42484.86121530383,-42473.33833458365,-42461.81545386346,-42450.292573143284,-42438.769692423106,-42427.24681170293,-42415.72393098275,-42404.20105026256,-42392.678169542385,-42381.15528882221,-42369.63240810203,-42358.10952738184,-42346.586646661664,-42335.063765941486,-42323.54088522131,-42312.01800450112,-42300.495123780944,-42288.972243060765,-42277.44936234059,-42265.92648162041,-42254.40360090022,-42242.880720180045,-42231.357839459866,-42219.83495873969,-42208.3120780195,-42196.789197299324,-42185.266316579145,-42173.74343585897,-42162.22055513878,-42150.6976744186,-42139.174793698425,-42127.65191297825,-42116.12903225807,-42104.60615153788,-42093.083270817704,-42081.560390097526,-42070.03750937735,-42058.51462865716,-42046.99174793698,-42035.468867216805,-42023.94598649663,-42012.42310577644,-42000.90022505626,-41989.377344336084,-41977.854463615906,-41966.33158289573,-41954.80870217554,-41943.28582145536,-41931.762940735185,-41920.24006001501,-41908.71717929482,-41897.19429857464,-41885.671417854464,-41874.148537134286,-41862.6256564141,-41851.10277569392,-41839.579894973744,-41828.057014253565,-41816.53413353339,-41805.0112528132,-41793.48837209302,-41781.965491372845,-41770.442610652666,-41758.91972993248,-41747.3968492123,-41735.873968492124,-41724.351087771945,-41712.82820705176,-41701.30532633158,-41689.7824456114,-41678.259564891225,-41666.73668417105,-41655.21380345086,-41643.69092273068,-41632.168042010504,-41620.645161290326,-41609.12228057014,-41597.59939984996,-41586.07651912978,-41574.553638409605,-41563.03075768942,-41551.50787696924,-41539.98499624906,-41528.462115528884,-41516.939234808706,-41505.41635408852,-41493.89347336834,-41482.37059264816,-41470.847711927985,-41459.3248312078,-41447.80195048762,-41436.27906976744,-41424.756189047264,-41413.23330832708,-41401.7104276069,-41390.18754688672,-41378.66466616654,-41367.14178544636,-41355.61890472618,-41344.096024006,-41332.57314328582,-41321.050262565645,-41309.52738184546,-41298.00450112528,-41286.4816204051,-41274.958739684924,-41263.43585896474,-41251.91297824456,-41240.39009752438,-41228.8672168042,-41217.34433608402,-41205.82145536384,-41194.29857464366,-41182.77569392348,-41171.252813203304,-41159.72993248312,-41148.20705176294,-41136.68417104276,-41125.16129032258,-41113.6384096024,-41102.11552888222,-41090.59264816204,-41079.06976744186,-41067.54688672168,-41056.0240060015,-41044.50112528132,-41032.97824456114,-41021.45536384096,-41009.93248312078,-40998.4096024006,-40986.88672168042,-40975.36384096024,-40963.84096024006,-40952.31807951988,-40940.7951987997,-40929.27231807952,-40917.749437359336,-40906.22655663916,-40894.70367591898,-40883.1807951988,-40871.65791447862,-40860.13503375844,-40848.61215303826,-40837.08927231808,-40825.5663915979,-40814.04351087772,-40802.52063015754,-40790.99774943736,-40779.47486871718,-40767.951987996996,-40756.42910727682,-40744.90622655664,-40733.38334583646,-40721.86046511628,-40710.3375843961,-40698.81470367592,-40687.29182295574,-40675.76894223556,-40664.246061515376,-40652.7231807952,-40641.20030007502,-40629.67741935484,-40618.154538634655,-40606.63165791448,-40595.1087771943,-40583.58589647412,-40572.06301575394,-40560.540135033756,-40549.01725431358,-40537.4943735934,-40525.97149287322,-40514.448612153035,-40502.92573143286,-40491.40285071268,-40479.8799699925,-40468.357089272315,-40456.834208552136,-40445.31132783196,-40433.78844711178,-40422.2655663916,-40410.742685671416,-40399.21980495124,-40387.69692423106,-40376.17404351088,-40364.651162790695,-40353.12828207052,-40341.60540135034,-40330.08252063016,-40318.559639909974,-40307.036759189796,-40295.51387846962,-40283.99099774944,-40272.46811702926,-40260.945236309075,-40249.4223555889,-40237.89947486872,-40226.37659414854,-40214.853713428354,-40203.330832708176,-40191.807951988,-40180.28507126782,-40168.76219054763,-40157.239309827455,-40145.71642910728,-40134.1935483871,-40122.67066766692,-40111.147786946734,-40099.624906226556,-40088.10202550638,-40076.5791447862,-40065.056264066014,-40053.533383345835,-40042.01050262566,-40030.48762190548,-40018.96474118529,-40007.441860465115,-39995.918979744936,-39984.39609902476,-39972.87321830458,-39961.350337584394,-39949.827456864215,-39938.30457614404,-39926.78169542386,-39915.25881470367,-39903.735933983495,-39892.21305326332,-39880.69017254314,-39869.16729182295,-39857.644411102774,-39846.121530382596,-39834.59864966242,-39823.07576894224,-39811.55288822205,-39800.030007501875,-39788.5071267817,-39776.98424606152,-39765.46136534133,-39753.938484621154,-39742.415603900976,-39730.8927231808,-39719.36984246061,-39707.84696174043,-39696.324081020255,-39684.80120030008,-39673.2783195799,-39661.75543885971,-39650.232558139534,-39638.709677419356,-39627.18679669918,-39615.66391597899,-39604.141035258814,-39592.618154538635,-39581.09527381846,-39569.57239309827,-39558.04951237809,-39546.526631657915,-39535.003750937736,-39523.48087021756,-39511.95798949737,-39500.435108777194,-39488.912228057015,-39477.38934733684,-39465.86646661665,-39454.34358589647,-39442.820705176295,-39431.297824456116,-39419.77494373593,-39408.25206301575,-39396.729182295574,-39385.206301575396,-39373.68342085522,-39362.16054013503,-39350.63765941485,-39339.114778694675,-39327.5918979745,-39316.06901725431,-39304.54613653413,-39293.023255813954,-39281.500375093776,-39269.97749437359,-39258.45461365341,-39246.93173293323,-39235.408852213055,-39223.88597149288,-39212.36309077269,-39200.84021005251,-39189.317329332334,-39177.794448612156,-39166.27156789197,-39154.74868717179,-39143.22580645161,-39131.702925731435,-39120.18004501125,-39108.65716429107,-39097.13428357089,-39085.611402850715,-39074.088522130536,-39062.56564141035,-39051.04276069017,-39039.519879969994,-39027.996999249815,-39016.47411852963,-39004.95123780945,-38993.42835708927,-38981.905476369095,-38970.38259564891,-38958.85971492873,-38947.33683420855,-38935.813953488374,-38924.291072768196,-38912.76819204801,-38901.24531132783,-38889.72243060765,-38878.199549887475,-38866.67666916729,-38855.15378844711,-38843.63090772693,-38832.108027006754,-38820.58514628657,-38809.06226556639,-38797.53938484621,-38786.01650412603,-38774.493623405855,-38762.97074268567,-38751.44786196549,-38739.92498124531,-38728.402100525134,-38716.87921980495,-38705.35633908477,-38693.83345836459,-38682.31057764441,-38670.78769692423,-38659.26481620405,-38647.74193548387,-38636.21905476369,-38624.696174043514,-38613.17329332333,-38601.65041260315,-38590.12753188297,-38578.604651162794,-38567.08177044261,-38555.55888972243,-38544.03600900225,-38532.51312828207,-38520.99024756189,-38509.46736684171,-38497.94448612153,-38486.42160540135,-38474.898724681174,-38463.37584396099,-38451.85296324081,-38440.33008252063,-38428.80720180045,-38417.28432108027,-38405.76144036009,-38394.23855963991,-38382.71567891973,-38371.19279819955,-38359.66991747937,-38348.14703675919,-38336.62415603901,-38325.101275318826,-38313.57839459865,-38302.05551387847,-38290.53263315829,-38279.00975243811,-38267.48687171793,-38255.96399099775,-38244.44111027757,-38232.91822955739,-38221.395348837206,-38209.87246811703,-38198.34958739685,-38186.82670667667,-38175.303825956486,-38163.78094523631,-38152.25806451613,-38140.73518379595,-38129.21230307577,-38117.68942235559,-38106.16654163541,-38094.64366091523,-38083.12078019505,-38071.597899474866,-38060.07501875469,-38048.55213803451,-38037.02925731433,-38025.506376594145,-38013.98349587397,-38002.46061515379,-37990.93773443361,-37979.41485371343,-37967.891972993246,-37956.36909227307,-37944.84621155289,-37933.32333083271,-37921.800450112525,-37910.27756939235,-37898.75468867217,-37887.23180795199,-37875.708927231804,-37864.186046511626,-37852.66316579145,-37841.14028507127,-37829.61740435109,-37818.094523630905,-37806.57164291073,-37795.04876219055,-37783.52588147037,-37772.003000750185,-37760.480120030006,-37748.95723930983,-37737.43435858965,-37725.911477869464,-37714.388597149285,-37702.86571642911,-37691.34283570893,-37679.81995498875,-37668.297074268565,-37656.77419354839,-37645.25131282821,-37633.72843210803,-37622.205551387844,-37610.682670667666,-37599.15978994749,-37587.63690922731,-37576.11402850712,-37564.591147786945,-37553.06826706677,-37541.54538634659,-37530.02250562641,-37518.499624906224,-37506.976744186046,-37495.45386346587,-37483.93098274569,-37472.4081020255,-37460.885221305325,-37449.36234058515,-37437.83945986497,-37426.31657914478,-37414.793698424604,-37403.270817704426,-37391.74793698425,-37380.22505626407,-37368.702175543884,-37357.179294823705,-37345.65641410353,-37334.13353338335,-37322.61065266316,-37311.087771942985,-37299.564891222806,-37288.04201050263,-37276.51912978244,-37264.996249062264,-37253.473368342085,-37241.95048762191,-37230.42760690173,-37218.90472618154,-37207.381845461365,-37195.858964741186,-37184.33608402101,-37172.81320330082,-37161.290322580644,-37149.767441860466,-37138.24456114029,-37126.7216804201,-37115.19879969992,-37103.675918979745,-37092.15303825957,-37080.63015753939,-37069.1072768192,-37057.584396099024,-37046.061515378846,-37034.53863465867,-37023.01575393848,-37011.4928732183,-36999.969992498125,-36988.44711177795,-36976.92423105776,-36965.40135033758,-36953.878469617404,-36942.355588897226,-36930.83270817705,-36919.30982745686,-36907.78694673668,-36896.264066016505,-36884.74118529633,-36873.21830457614,-36861.69542385596,-36850.172543135785,-36838.649662415606,-36827.12678169542,-36815.60390097524,-36804.081020255064,-36792.558139534885,-36781.03525881471,-36769.51237809452,-36757.98949737434,-36746.466616654165,-36734.943735933986,-36723.4208552138,-36711.89797449362,-36700.375093773444,-36688.852213053266,-36677.32933233308,-36665.8064516129,-36654.28357089272,-36642.760690172545,-36631.23780945237,-36619.71492873218,-36608.192048012,-36596.669167291824,-36585.146286571646,-36573.62340585146,-36562.10052513128,-36550.5776444111,-36539.054763690925,-36527.53188297074,-36516.00900225056,-36504.48612153038,-36492.963240810204,-36481.440360090026,-36469.91747936984,-36458.39459864966,-36446.87171792948,-36435.348837209305,-36423.82595648912,-36412.30307576894,-36400.78019504876,-36389.257314328584,-36377.7344336084,-36366.21155288822,-36354.68867216804,-36343.165791447864,-36331.642910727685,-36320.1200300075,-36308.59714928732,-36297.07426856714,-36285.551387846965,-36274.02850712678,-36262.5056264066,-36250.98274568642,-36239.459864966244,-36227.93698424606,-36216.41410352588,-36204.8912228057,-36193.36834208552,-36181.845461365345,-36170.32258064516,-36158.79969992498,-36147.2768192048,-36135.753938484624,-36124.23105776444,-36112.70817704426,-36101.18529632408,-36089.6624156039,-36078.13953488372,-36066.61665416354,-36055.09377344336,-36043.57089272318,-36032.048012003004,-36020.52513128282,-36009.00225056264,-35997.47936984246,-35985.95648912228,-35974.4336084021,-35962.91072768192,-35951.38784696174,-35939.86496624156,-35928.34208552138,-35916.8192048012,-35905.29632408102,-35893.77344336084,-35882.250562640664,-35870.72768192048,-35859.2048012003,-35847.68192048012,-35836.15903975994,-35824.63615903976,-35813.11327831958,-35801.5903975994,-35790.06751687922,-35778.54463615904,-35767.02175543886,-35755.49887471868,-35743.9759939985,-35732.45311327832,-35720.93023255814,-35709.40735183796,-35697.88447111778,-35686.3615903976,-35674.83870967742,-35663.31582895724,-35651.79294823706,-35640.27006751688,-35628.747186796696,-35617.22430607652,-35605.70142535634,-35594.17854463616,-35582.65566391598,-35571.1327831958,-35559.60990247562,-35548.08702175544,-35536.56414103526,-35525.041260315076,-35513.5183795949,-35501.99549887472,-35490.47261815454,-35478.949737434355,-35467.42685671418,-35455.903975994,-35444.38109527382,-35432.85821455364,-35421.33533383346,-35409.81245311328,-35398.2895723931,-35386.76669167292,-35375.243810952736,-35363.72093023256,-35352.19804951238,-35340.6751687922,-35329.152288072015,-35317.62940735184,-35306.10652663166,-35294.58364591148,-35283.060765191294,-35271.537884471116,-35260.01500375094,-35248.49212303076,-35236.96924231058,-35225.446361590395,-35213.92348087022,-35202.40060015004,-35190.87771942986,-35179.354838709674,-35167.831957989496,-35156.30907726932,-35144.78619654914,-35133.26331582895,-35121.740435108775,-35110.2175543886,-35098.69467366842,-35087.17179294824,-35075.648912228055,-35064.126031507876,-35052.6031507877,-35041.08027006752,-35029.557389347334,-35018.034508627155,-35006.51162790698,-34994.9887471868,-34983.46586646661,-34971.942985746435,-34960.420105026256,-34948.89722430608,-34937.3743435859,-34925.851462865714,-34914.328582145536,-34902.80570142536,-34891.28282070518,-34879.75993998499,-34868.237059264815,-34856.71417854464,-34845.19129782446,-34833.66841710427,-34822.145536384094,-34810.622655663916,-34799.09977494374,-34787.57689422356,-34776.05401350337,-34764.531132783195,-34753.00825206302,-34741.48537134284,-34729.96249062265,-34718.439609902474,-34706.916729182296,-34695.39384846212,-34683.87096774193,-34672.34808702175,-34660.825206301575,-34649.3023255814,-34637.77944486122,-34626.25656414103,-34614.733683420855,-34603.210802700676,-34591.6879219805,-34580.16504126031,-34568.642160540134,-34557.119279819955,-34545.59639909978,-34534.07351837959,-34522.55063765941,-34511.027756939235,-34499.504876219056,-34487.98199549888,-34476.45911477869,-34464.936234058514,-34453.413353338336,-34441.89047261816,-34430.36759189797,-34418.84471117779,-34407.321830457615,-34395.79894973744,-34384.27606901725,-34372.75318829707,-34361.230307576894,-34349.707426856716,-34338.18454613654,-34326.66166541635,-34315.13878469617,-34303.615903975995,-34292.09302325582,-34280.57014253563,-34269.04726181545,-34257.524381095274,-34246.001500375096,-34234.47861965491,-34222.95573893473,-34211.43285821455,-34199.909977494375,-34188.3870967742,-34176.86421605401,-34165.34133533383,-34153.818454613654,-34142.295573893476,-34130.77269317329,-34119.24981245311,-34107.726931732934,-34096.204051012755,-34084.68117029257,-34073.15828957239,-34061.63540885221,-34050.112528132035,-34038.589647411856,-34027.06676669167,-34015.54388597149,-34004.021005251314,-33992.498124531136,-33980.97524381095,-33969.45236309077,-33957.92948237059,-33946.406601650415,-33934.88372093023,-33923.36084021005,-33911.83795948987,-33900.315078769694,-33888.792198049516,-33877.26931732933,-33865.74643660915,-33854.22355588897,-33842.700675168795,-33831.17779444861,-33819.65491372843,-33808.13203300825,-33796.609152288074,-33785.08627156789,-33773.56339084771,-33762.04051012753,-33750.51762940735,-33738.994748687175,-33727.47186796699,-33715.94898724681,-33704.42610652663,-33692.903225806454,-33681.38034508627,-33669.85746436609,-33658.33458364591,-33646.811702925734,-33635.28882220555,-33623.76594148537,-33612.24306076519,-33600.72018004501,-33589.197299324835,-33577.67441860465,-33566.15153788447,-33554.62865716429,-33543.105776444114,-33531.58289572393,-33520.06001500375,-33508.53713428357,-33497.01425356339,-33485.49137284321,-33473.96849212303,-33462.44561140285,-33450.92273068267,-33439.399849962494,-33427.87696924231,-33416.35408852213,-33404.83120780195,-33393.30832708177,-33381.78544636159,-33370.26256564141,-33358.73968492123,-33347.21680420105,-33335.69392348087,-33324.17104276069,-33312.64816204051,-33301.12528132033,-33289.60240060015,-33278.07951987997,-33266.55663915979,-33255.03375843961,-33243.51087771943,-33231.98799699925,-33220.46511627907,-33208.94223555889,-33197.41935483871,-33185.89647411853,-33174.37359339835,-33162.85071267817,-33151.32783195799,-33139.80495123781,-33128.28207051763,-33116.75918979745,-33105.23630907727,-33093.71342835709,-33082.19054763691,-33070.66766691673,-33059.14478619655,-33047.62190547637,-33036.099024756186,-33024.57614403601,-33013.05326331583,-33001.53038259565,-32990.00750187547,-32978.48462115529,-32966.96174043511,-32955.43885971493,-32943.91597899475,-32932.393098274566,-32920.87021755439,-32909.34733683421,-32897.82445611403,-32886.301575393845,-32874.77869467367,-32863.25581395349,-32851.73293323331,-32840.21005251313,-32828.687171792946,-32817.16429107277,-32805.64141035259,-32794.11852963241,-32782.595648912225,-32771.07276819205,-32759.54988747187,-32748.027006751687,-32736.50412603151,-32724.981245311326,-32713.458364591148,-32701.935483870966,-32690.412603150788,-32678.88972243061,-32667.366841710427,-32655.84396099025,-32644.321080270067,-32632.79819954989,-32621.275318829707,-32609.752438109528,-32598.229557389346,-32586.706676669168,-32575.183795948986,-32563.660915228807,-32552.138034508625,-32540.615153788447,-32529.09227306827,-32517.569392348087,-32506.04651162791,-32494.523630907726,-32483.000750187548,-32471.477869467366,-32459.954988747188,-32448.432108027006,-32436.909227306827,-32425.386346586645,-32413.863465866467,-32402.340585146285,-32390.817704426107,-32379.294823705928,-32367.771942985746,-32356.249062265568,-32344.726181545386,-32333.203300825207,-32321.680420105025,-32310.157539384847,-32298.634658664665,-32287.111777944487,-32275.588897224305,-32264.066016504126,-32252.543135783944,-32241.020255063766,-32229.497374343588,-32217.974493623406,-32206.451612903227,-32194.928732183045,-32183.405851462867,-32171.882970742685,-32160.360090022506,-32148.837209302324,-32137.314328582146,-32125.791447861964,-32114.268567141786,-32102.745686421604,-32091.222805701425,-32079.699924981247,-32068.177044261065,-32056.654163540887,-32045.131282820705,-32033.608402100526,-32022.085521380344,-32010.562640660166,-31999.039759939984,-31987.516879219806,-31975.993998499624,-31964.471117779445,-31952.948237059263,-31941.425356339085,-31929.902475618906,-31918.379594898724,-31906.856714178546,-31895.333833458364,-31883.810952738186,-31872.288072018004,-31860.765191297825,-31849.242310577643,-31837.719429857465,-31826.196549137283,-31814.673668417105,-31803.150787696923,-31791.627906976744,-31780.105026256566,-31768.582145536384,-31757.059264816206,-31745.536384096024,-31734.013503375845,-31722.490622655663,-31710.967741935485,-31699.444861215303,-31687.921980495124,-31676.399099774942,-31664.876219054764,-31653.353338334582,-31641.830457614404,-31630.307576894225,-31618.784696174043,-31607.261815453865,-31595.738934733683,-31584.216054013505,-31572.693173293323,-31561.170292573144,-31549.647411852962,-31538.124531132784,-31526.601650412602,-31515.078769692424,-31503.55588897224,-31492.033008252063,-31480.51012753188,-31468.987246811703,-31457.464366091524,-31445.941485371342,-31434.418604651164,-31422.895723930982,-31411.372843210804,-31399.84996249062,-31388.327081770443,-31376.80420105026,-31365.281320330083,-31353.7584396099,-31342.235558889723,-31330.71267816954,-31319.189797449362,-31307.666916729184,-31296.144036009002,-31284.621155288824,-31273.09827456864,-31261.575393848463,-31250.05251312828,-31238.529632408103,-31227.00675168792,-31215.483870967742,-31203.96099024756,-31192.438109527382,-31180.9152288072,-31169.39234808702,-31157.869467366843,-31146.34658664666,-31134.823705926483,-31123.3008252063,-31111.777944486123,-31100.25506376594,-31088.732183045762,-31077.20930232558,-31065.686421605402,-31054.16354088522,-31042.64066016504,-31031.11777944486,-31019.59489872468,-31008.072018004503,-30996.54913728432,-30985.026256564142,-30973.50337584396,-30961.980495123782,-30950.4576144036,-30938.93473368342,-30927.41185296324,-30915.88897224306,-30904.36609152288,-30892.8432108027,-30881.32033008252,-30869.79744936234,-30858.274568642162,-30846.75168792198,-30835.228807201802,-30823.70592648162,-30812.18304576144,-30800.66016504126,-30789.13728432108,-30777.6144036009,-30766.09152288072,-30754.56864216054,-30743.04576144036,-30731.52288072018,-30720.0,-30708.47711927982,-30696.95423855964,-30685.43135783946,-30673.90847711928,-30662.3855963991,-30650.86271567892,-30639.33983495874,-30627.81695423856,-30616.29407351838,-30604.771192798198,-30593.24831207802,-30581.725431357838,-30570.20255063766,-30558.67966991748,-30547.1567891973,-30535.63390847712,-30524.11102775694,-30512.58814703676,-30501.06526631658,-30489.5423855964,-30478.019504876218,-30466.49662415604,-30454.973743435858,-30443.45086271568,-30431.927981995497,-30420.40510127532,-30408.88222055514,-30397.35933983496,-30385.83645911478,-30374.313578394598,-30362.79069767442,-30351.267816954238,-30339.74493623406,-30328.222055513877,-30316.6991747937,-30305.176294073517,-30293.65341335334,-30282.130532633157,-30270.60765191298,-30259.0847711928,-30247.561890472618,-30236.03900975244,-30224.516129032258,-30212.99324831208,-30201.470367591897,-30189.94748687172,-30178.424606151537,-30166.90172543136,-30155.378844711176,-30143.855963990998,-30132.333083270816,-30120.810202550638,-30109.28732183046,-30097.764441110277,-30086.2415603901,-30074.718679669917,-30063.19579894974,-30051.672918229557,-30040.15003750938,-30028.627156789196,-30017.104276069018,-30005.581395348836,-29994.058514628658,-29982.535633908476,-29971.012753188297,-29959.48987246812,-29947.966991747937,-29936.44411102776,-29924.921230307576,-29913.398349587398,-29901.875468867216,-29890.352588147038,-29878.829707426856,-29867.306826706677,-29855.783945986495,-29844.261065266317,-29832.738184546135,-29821.215303825957,-29809.692423105775,-29798.169542385596,-29786.646661665418,-29775.123780945236,-29763.600900225058,-29752.078019504876,-29740.555138784697,-29729.032258064515,-29717.509377344337,-29705.986496624155,-29694.463615903976,-29682.940735183794,-29671.417854463616,-29659.894973743434,-29648.372093023256,-29636.849212303077,-29625.326331582895,-29613.803450862717,-29602.280570142535,-29590.757689422357,-29579.234808702175,-29567.711927981996,-29556.189047261814,-29544.666166541636,-29533.143285821454,-29521.620405101276,-29510.097524381094,-29498.574643660915,-29487.051762940737,-29475.528882220555,-29464.006001500376,-29452.483120780194,-29440.960240060016,-29429.437359339834,-29417.914478619656,-29406.391597899474,-29394.868717179295,-29383.345836459113,-29371.822955738935,-29360.300075018753,-29348.777194298575,-29337.254313578396,-29325.731432858214,-29314.208552138036,-29302.685671417854,-29291.162790697676,-29279.639909977494,-29268.117029257315,-29256.594148537133,-29245.071267816955,-29233.548387096773,-29222.025506376594,-29210.502625656412,-29198.979744936234,-29187.456864216056,-29175.933983495874,-29164.411102775695,-29152.888222055513,-29141.365341335335,-29129.842460615153,-29118.319579894975,-29106.796699174793,-29095.273818454614,-29083.750937734432,-29072.228057014254,-29060.705176294072,-29049.182295573893,-29037.659414853715,-29026.136534133533,-29014.613653413355,-29003.090772693173,-28991.567891972994,-28980.045011252812,-28968.522130532634,-28956.999249812452,-28945.476369092274,-28933.95348837209,-28922.430607651913,-28910.90772693173,-28899.384846211553,-28887.861965491375,-28876.339084771193,-28864.816204051014,-28853.293323330832,-28841.770442610654,-28830.247561890472,-28818.724681170293,-28807.20180045011,-28795.678919729933,-28784.15603900975,-28772.633158289573,-28761.11027756939,-28749.587396849212,-28738.064516129034,-28726.541635408852,-28715.018754688674,-28703.49587396849,-28691.972993248313,-28680.45011252813,-28668.927231807953,-28657.40435108777,-28645.881470367593,-28634.35858964741,-28622.835708927232,-28611.31282820705,-28599.789947486872,-28588.267066766693,-28576.74418604651,-28565.221305326333,-28553.69842460615,-28542.175543885973,-28530.65266316579,-28519.129782445612,-28507.60690172543,-28496.084021005252,-28484.56114028507,-28473.03825956489,-28461.51537884471,-28449.99249812453,-28438.469617404353,-28426.94673668417,-28415.423855963993,-28403.90097524381,-28392.378094523632,-28380.85521380345,-28369.33233308327,-28357.80945236309,-28346.28657164291,-28334.76369092273,-28323.24081020255,-28311.71792948237,-28300.19504876219,-28288.67216804201,-28277.14928732183,-28265.626406601652,-28254.10352588147,-28242.58064516129,-28231.05776444111,-28219.53488372093,-28208.01200300075,-28196.48912228057,-28184.96624156039,-28173.44336084021,-28161.92048012003,-28150.39759939985,-28138.874718679668,-28127.35183795949,-28115.82895723931,-28104.30607651913,-28092.78319579895,-28081.26031507877,-28069.73743435859,-28058.21455363841,-28046.69167291823,-28035.16879219805,-28023.64591147787,-28012.123030757688,-28000.60015003751,-27989.077269317328,-27977.55438859715,-27966.03150787697,-27954.50862715679,-27942.98574643661,-27931.46286571643,-27919.93998499625,-27908.417104276068,-27896.89422355589,-27885.371342835708,-27873.84846211553,-27862.325581395347,-27850.80270067517,-27839.279819954987,-27827.75693923481,-27816.23405851463,-27804.71117779445,-27793.18829707427,-27781.665416354088,-27770.14253563391,-27758.619654913728,-27747.09677419355,-27735.573893473367,-27724.05101275319,-27712.528132033007,-27701.00525131283,-27689.482370592646,-27677.959489872468,-27666.43660915229,-27654.913728432108,-27643.39084771193,-27631.867966991747,-27620.34508627157,-27608.822205551387,-27597.29932483121,-27585.776444111027,-27574.25356339085,-27562.730682670666,-27551.207801950488,-27539.684921230306,-27528.162040510128,-27516.63915978995,-27505.116279069767,-27493.59339834959,-27482.070517629407,-27470.54763690923,-27459.024756189046,-27447.501875468868,-27435.978994748686,-27424.456114028508,-27412.933233308326,-27401.410352588147,-27389.887471867965,-27378.364591147787,-27366.84171042761,-27355.318829707427,-27343.79594898725,-27332.273068267066,-27320.750187546888,-27309.227306826706,-27297.704426106528,-27286.181545386346,-27274.658664666167,-27263.135783945985,-27251.612903225807,-27240.090022505625,-27228.567141785446,-27217.044261065268,-27205.521380345086,-27193.998499624908,-27182.475618904726,-27170.952738184547,-27159.429857464365,-27147.906976744187,-27136.384096024005,-27124.861215303827,-27113.338334583645,-27101.815453863466,-27090.292573143284,-27078.769692423106,-27067.246811702928,-27055.723930982746,-27044.201050262567,-27032.678169542385,-27021.155288822207,-27009.632408102025,-26998.109527381846,-26986.586646661664,-26975.063765941486,-26963.540885221304,-26952.018004501126,-26940.495123780944,-26928.972243060765,-26917.449362340587,-26905.926481620405,-26894.403600900227,-26882.880720180045,-26871.357839459866,-26859.834958739684,-26848.312078019506,-26836.789197299324,-26825.266316579145,-26813.743435858963,-26802.220555138785,-26790.697674418603,-26779.174793698425,-26767.651912978243,-26756.129032258064,-26744.606151537886,-26733.083270817704,-26721.560390097526,-26710.037509377344,-26698.514628657165,-26686.991747936983,-26675.468867216805,-26663.945986496623,-26652.423105776445,-26640.900225056263,-26629.377344336084,-26617.854463615902,-26606.331582895724,-26594.808702175545,-26583.285821455363,-26571.762940735185,-26560.240060015003,-26548.717179294825,-26537.194298574643,-26525.671417854464,-26514.148537134282,-26502.625656414104,-26491.102775693922,-26479.579894973744,-26468.05701425356,-26456.534133533383,-26445.011252813205,-26433.488372093023,-26421.965491372845,-26410.442610652663,-26398.919729932484,-26387.396849212302,-26375.873968492124,-26364.351087771942,-26352.828207051763,-26341.30532633158,-26329.782445611403,-26318.25956489122,-26306.736684171043,-26295.213803450864,-26283.690922730682,-26272.168042010504,-26260.645161290322,-26249.122280570144,-26237.59939984996,-26226.076519129783,-26214.5536384096,-26203.030757689423,-26191.50787696924,-26179.984996249063,-26168.46211552888,-26156.939234808702,-26145.416354088524,-26133.89347336834,-26122.370592648163,-26110.84771192798,-26099.324831207803,-26087.80195048762,-26076.279069767443,-26064.75618904726,-26053.233308327082,-26041.7104276069,-26030.187546886722,-26018.66466616654,-26007.14178544636,-25995.618904726183,-25984.096024006,-25972.573143285823,-25961.05026256564,-25949.527381845463,-25938.00450112528,-25926.481620405102,-25914.95873968492,-25903.43585896474,-25891.91297824456,-25880.39009752438,-25868.8672168042,-25857.34433608402,-25845.821455363843,-25834.29857464366,-25822.775693923482,-25811.2528132033,-25799.729932483122,-25788.20705176294,-25776.68417104276,-25765.16129032258,-25753.6384096024,-25742.11552888222,-25730.59264816204,-25719.06976744186,-25707.54688672168,-25696.024006001502,-25684.50112528132,-25672.97824456114,-25661.45536384096,-25649.93248312078,-25638.4096024006,-25626.88672168042,-25615.36384096024,-25603.84096024006,-25592.31807951988,-25580.7951987997,-25569.27231807952,-25557.74943735934,-25546.22655663916,-25534.70367591898,-25523.1807951988,-25511.65791447862,-25500.13503375844,-25488.61215303826,-25477.08927231808,-25465.5663915979,-25454.04351087772,-25442.520630157538,-25430.99774943736,-25419.474868717178,-25407.951987997,-25396.42910727682,-25384.90622655664,-25373.38334583646,-25361.86046511628,-25350.3375843961,-25338.81470367592,-25327.29182295574,-25315.768942235558,-25304.24606151538,-25292.723180795198,-25281.20030007502,-25269.677419354837,-25258.15453863466,-25246.631657914477,-25235.1087771943,-25223.58589647412,-25212.063015753938,-25200.54013503376,-25189.017254313578,-25177.4943735934,-25165.971492873217,-25154.44861215304,-25142.925731432857,-25131.40285071268,-25119.879969992497,-25108.35708927232,-25096.834208552136,-25085.311327831958,-25073.78844711178,-25062.265566391598,-25050.74268567142,-25039.219804951237,-25027.69692423106,-25016.174043510877,-25004.6511627907,-24993.128282070516,-24981.605401350338,-24970.082520630156,-24958.559639909978,-24947.036759189796,-24935.513878469617,-24923.99099774944,-24912.468117029257,-24900.94523630908,-24889.422355588897,-24877.89947486872,-24866.376594148536,-24854.853713428358,-24843.330832708176,-24831.807951987998,-24820.285071267816,-24808.762190547637,-24797.239309827455,-24785.716429107277,-24774.1935483871,-24762.670667666916,-24751.147786946738,-24739.624906226556,-24728.102025506378,-24716.579144786196,-24705.056264066017,-24693.533383345835,-24682.010502625657,-24670.487621905475,-24658.964741185297,-24647.441860465115,-24635.918979744936,-24624.396099024758,-24612.873218304576,-24601.350337584397,-24589.827456864215,-24578.304576144037,-24566.781695423855,-24555.258814703677,-24543.735933983495,-24532.213053263316,-24520.690172543134,-24509.167291822956,-24497.644411102774,-24486.121530382596,-24474.598649662417,-24463.075768942235,-24451.552888222057,-24440.030007501875,-24428.507126781697,-24416.984246061515,-24405.461365341336,-24393.938484621154,-24382.415603900976,-24370.892723180794,-24359.369842460615,-24347.846961740433,-24336.324081020255,-24324.801200300077,-24313.278319579895,-24301.755438859716,-24290.232558139534,-24278.709677419356,-24267.186796699174,-24255.663915978996,-24244.141035258814,-24232.618154538635,-24221.095273818453,-24209.572393098275,-24198.049512378093,-24186.526631657915,-24175.003750937736,-24163.480870217554,-24151.957989497376,-24140.435108777194,-24128.912228057015,-24117.389347336833,-24105.866466616655,-24094.343585896473,-24082.820705176295,-24071.297824456113,-24059.774943735934,-24048.252063015752,-24036.729182295574,-24025.206301575396,-24013.683420855214,-24002.160540135035,-23990.637659414853,-23979.114778694675,-23967.591897974493,-23956.069017254315,-23944.546136534133,-23933.023255813954,-23921.500375093772,-23909.977494373594,-23898.45461365341,-23886.931732933233,-23875.408852213055,-23863.885971492873,-23852.363090772695,-23840.840210052513,-23829.317329332334,-23817.794448612152,-23806.271567891974,-23794.748687171792,-23783.225806451614,-23771.70292573143,-23760.180045011253,-23748.65716429107,-23737.134283570893,-23725.61140285071,-23714.088522130533,-23702.565641410354,-23691.042760690172,-23679.519879969994,-23667.99699924981,-23656.474118529633,-23644.95123780945,-23633.428357089273,-23621.90547636909,-23610.382595648913,-23598.85971492873,-23587.336834208552,-23575.81395348837,-23564.291072768192,-23552.768192048014,-23541.24531132783,-23529.722430607653,-23518.19954988747,-23506.676669167293,-23495.15378844711,-23483.630907726932,-23472.10802700675,-23460.585146286572,-23449.06226556639,-23437.53938484621,-23426.01650412603,-23414.49362340585,-23402.970742685673,-23391.44786196549,-23379.924981245313,-23368.40210052513,-23356.879219804952,-23345.35633908477,-23333.833458364592,-23322.31057764441,-23310.78769692423,-23299.26481620405,-23287.74193548387,-23276.21905476369,-23264.69617404351,-23253.173293323332,-23241.65041260315,-23230.127531882972,-23218.60465116279,-23207.08177044261,-23195.55888972243,-23184.03600900225,-23172.51312828207,-23160.99024756189,-23149.46736684171,-23137.94448612153,-23126.42160540135,-23114.89872468117,-23103.375843960992,-23091.85296324081,-23080.33008252063,-23068.80720180045,-23057.28432108027,-23045.76144036009,-23034.23855963991,-23022.71567891973,-23011.19279819955,-22999.66991747937,-22988.14703675919,-22976.624156039008,-22965.10127531883,-22953.57839459865,-22942.05551387847,-22930.53263315829,-22919.00975243811,-22907.48687171793,-22895.96399099775,-22884.44111027757,-22872.91822955739,-22861.39534883721,-22849.872468117028,-22838.34958739685,-22826.826706676668,-22815.30382595649,-22803.78094523631,-22792.25806451613,-22780.73518379595,-22769.21230307577,-22757.68942235559,-22746.166541635408,-22734.64366091523,-22723.120780195048,-22711.59789947487,-22700.075018754687,-22688.55213803451,-22677.029257314327,-22665.50637659415,-22653.98349587397,-22642.46061515379,-22630.93773443361,-22619.414853713428,-22607.89197299325,-22596.369092273068,-22584.84621155289,-22573.323330832707,-22561.80045011253,-22550.277569392347,-22538.75468867217,-22527.231807951986,-22515.708927231808,-22504.18604651163,-22492.663165791448,-22481.14028507127,-22469.617404351087,-22458.09452363091,-22446.571642910727,-22435.04876219055,-22423.525881470367,-22412.00300075019,-22400.480120030006,-22388.957239309828,-22377.434358589646,-22365.911477869467,-22354.38859714929,-22342.865716429107,-22331.34283570893,-22319.819954988747,-22308.29707426857,-22296.774193548386,-22285.251312828208,-22273.728432108026,-22262.205551387848,-22250.682670667666,-22239.159789947487,-22227.636909227305,-22216.114028507127,-22204.591147786945,-22193.068267066767,-22181.54538634659,-22170.022505626406,-22158.499624906228,-22146.976744186046,-22135.453863465867,-22123.930982745685,-22112.408102025507,-22100.885221305325,-22089.362340585147,-22077.839459864965,-22066.316579144786,-22054.793698424604,-22043.270817704426,-22031.747936984248,-22020.225056264066,-22008.702175543887,-21997.179294823705,-21985.656414103527,-21974.133533383345,-21962.610652663167,-21951.087771942985,-21939.564891222806,-21928.042010502624,-21916.519129782446,-21904.996249062264,-21893.473368342085,-21881.950487621907,-21870.427606901725,-21858.904726181547,-21847.381845461365,-21835.858964741186,-21824.336084021004,-21812.813203300826,-21801.290322580644,-21789.767441860466,-21778.244561140284,-21766.721680420105,-21755.198799699923,-21743.675918979745,-21732.153038259567,-21720.630157539385,-21709.107276819206,-21697.584396099024,-21686.061515378846,-21674.538634658664,-21663.015753938485,-21651.492873218303,-21639.969992498125,-21628.447111777943,-21616.924231057765,-21605.401350337583,-21593.878469617404,-21582.355588897226,-21570.832708177044,-21559.309827456866,-21547.786946736684,-21536.264066016505,-21524.741185296323,-21513.218304576145,-21501.695423855963,-21490.172543135785,-21478.649662415603,-21467.126781695424,-21455.603900975242,-21444.081020255064,-21432.558139534885,-21421.035258814703,-21409.512378094525,-21397.989497374343,-21386.466616654165,-21374.943735933983,-21363.420855213804,-21351.897974493622,-21340.375093773444,-21328.852213053262,-21317.329332333084,-21305.8064516129,-21294.283570892723,-21282.760690172545,-21271.237809452363,-21259.714928732184,-21248.192048012002,-21236.669167291824,-21225.146286571642,-21213.623405851464,-21202.10052513128,-21190.577644411103,-21179.05476369092,-21167.531882970743,-21156.00900225056,-21144.486121530383,-21132.963240810204,-21121.440360090022,-21109.917479369844,-21098.394598649662,-21086.871717929484,-21075.3488372093,-21063.825956489123,-21052.30307576894,-21040.780195048763,-21029.25731432858,-21017.734433608402,-21006.21155288822,-20994.688672168042,-20983.165791447864,-20971.64291072768,-20960.120030007503,-20948.59714928732,-20937.074268567143,-20925.55138784696,-20914.028507126783,-20902.5056264066,-20890.982745686422,-20879.45986496624,-20867.936984246062,-20856.41410352588,-20844.8912228057,-20833.368342085523,-20821.84546136534,-20810.322580645163,-20798.79969992498,-20787.276819204802,-20775.75393848462,-20764.231057764442,-20752.70817704426,-20741.18529632408,-20729.6624156039,-20718.13953488372,-20706.61665416354,-20695.09377344336,-20683.57089272318,-20672.048012003,-20660.525131282822,-20649.00225056264,-20637.479369842462,-20625.95648912228,-20614.4336084021,-20602.91072768192,-20591.38784696174,-20579.86496624156,-20568.34208552138,-20556.8192048012,-20545.29632408102,-20533.77344336084,-20522.25056264066,-20510.72768192048,-20499.2048012003,-20487.68192048012,-20476.15903975994,-20464.63615903976,-20453.11327831958,-20441.5903975994,-20430.06751687922,-20418.54463615904,-20407.02175543886,-20395.49887471868,-20383.975993998498,-20372.45311327832,-20360.93023255814,-20349.40735183796,-20337.88447111778,-20326.3615903976,-20314.83870967742,-20303.31582895724,-20291.79294823706,-20280.270067516878,-20268.7471867967,-20257.224306076518,-20245.70142535634,-20234.178544636157,-20222.65566391598,-20211.1327831958,-20199.60990247562,-20188.08702175544,-20176.56414103526,-20165.04126031508,-20153.518379594898,-20141.99549887472,-20130.472618154537,-20118.94973743436,-20107.426856714177,-20095.903975994,-20084.381095273817,-20072.85821455364,-20061.33533383346,-20049.812453113278,-20038.2895723931,-20026.766691672918,-20015.24381095274,-20003.720930232557,-19992.19804951238,-19980.675168792197,-19969.15228807202,-19957.629407351837,-19946.10652663166,-19934.583645911476,-19923.060765191298,-19911.53788447112,-19900.015003750937,-19888.49212303076,-19876.969242310577,-19865.4463615904,-19853.923480870217,-19842.40060015004,-19830.877719429856,-19819.354838709678,-19807.831957989496,-19796.309077269318,-19784.786196549136,-19773.263315828957,-19761.74043510878,-19750.217554388597,-19738.69467366842,-19727.171792948237,-19715.648912228058,-19704.126031507876,-19692.603150787698,-19681.080270067516,-19669.557389347337,-19658.034508627155,-19646.511627906977,-19634.988747186795,-19623.465866466617,-19611.94298574644,-19600.420105026256,-19588.897224306078,-19577.374343585896,-19565.851462865718,-19554.328582145536,-19542.805701425357,-19531.282820705175,-19519.759939984997,-19508.237059264815,-19496.714178544637,-19485.191297824455,-19473.668417104276,-19462.145536384098,-19450.622655663916,-19439.099774943737,-19427.576894223555,-19416.054013503377,-19404.531132783195,-19393.008252063017,-19381.485371342835,-19369.962490622656,-19358.439609902474,-19346.916729182296,-19335.393848462114,-19323.870967741936,-19312.348087021757,-19300.825206301575,-19289.302325581397,-19277.779444861215,-19266.256564141037,-19254.733683420855,-19243.210802700676,-19231.687921980494,-19220.165041260316,-19208.642160540134,-19197.119279819955,-19185.596399099773,-19174.073518379595,-19162.550637659413,-19151.027756939235,-19139.504876219056,-19127.981995498874,-19116.459114778696,-19104.936234058514,-19093.413353338336,-19081.890472618154,-19070.367591897975,-19058.844711177793,-19047.321830457615,-19035.798949737433,-19024.276069017254,-19012.753188297072,-19001.230307576894,-18989.707426856716,-18978.184546136534,-18966.661665416355,-18955.138784696173,-18943.615903975995,-18932.093023255813,-18920.570142535635,-18909.047261815453,-18897.524381095274,-18886.001500375092,-18874.478619654914,-18862.955738934732,-18851.432858214554,-18839.909977494375,-18828.387096774193,-18816.864216054015,-18805.341335333833,-18793.818454613654,-18782.295573893472,-18770.772693173294,-18759.249812453112,-18747.726931732934,-18736.20405101275,-18724.681170292573,-18713.15828957239,-18701.635408852213,-18690.112528132035,-18678.589647411853,-18667.066766691674,-18655.543885971492,-18644.021005251314,-18632.498124531132,-18620.975243810954,-18609.45236309077,-18597.929482370593,-18586.40660165041,-18574.883720930233,-18563.36084021005,-18551.837959489872,-18540.315078769694,-18528.792198049512,-18517.269317329334,-18505.74643660915,-18494.223555888973,-18482.70067516879,-18471.177794448613,-18459.65491372843,-18448.132033008253,-18436.60915228807,-18425.086271567892,-18413.56339084771,-18402.040510127532,-18390.517629407354,-18378.99474868717,-18367.471867966993,-18355.94898724681,-18344.426106526633,-18332.90322580645,-18321.380345086272,-18309.85746436609,-18298.334583645912,-18286.81170292573,-18275.28882220555,-18263.76594148537,-18252.24306076519,-18240.720180045013,-18229.19729932483,-18217.674418604653,-18206.15153788447,-18194.628657164292,-18183.10577644411,-18171.582895723932,-18160.06001500375,-18148.53713428357,-18137.01425356339,-18125.49137284321,-18113.96849212303,-18102.44561140285,-18090.922730682672,-18079.39984996249,-18067.876969242312,-18056.35408852213,-18044.83120780195,-18033.30832708177,-18021.78544636159,-18010.26256564141,-17998.73968492123,-17987.21680420105,-17975.69392348087,-17964.17104276069,-17952.64816204051,-17941.125281320332,-17929.60240060015,-17918.07951987997,-17906.55663915979,-17895.03375843961,-17883.51087771943,-17871.98799699925,-17860.46511627907,-17848.94223555889,-17837.41935483871,-17825.89647411853,-17814.373593398348,-17802.85071267817,-17791.32783195799,-17779.80495123781,-17768.28207051763,-17756.75918979745,-17745.23630907727,-17733.71342835709,-17722.19054763691,-17710.66766691673,-17699.14478619655,-17687.621905476368,-17676.09902475619,-17664.576144036007,-17653.05326331583,-17641.530382595647,-17630.00750187547,-17618.48462115529,-17606.96174043511,-17595.43885971493,-17583.915978994748,-17572.39309827457,-17560.870217554388,-17549.34733683421,-17537.824456114027,-17526.30157539385,-17514.778694673667,-17503.25581395349,-17491.732933233307,-17480.210052513128,-17468.68717179295,-17457.164291072768,-17445.64141035259,-17434.118529632407,-17422.59564891223,-17411.072768192047,-17399.54988747187,-17388.027006751687,-17376.50412603151,-17364.981245311326,-17353.458364591148,-17341.935483870966,-17330.412603150788,-17318.88972243061,-17307.366841710427,-17295.84396099025,-17284.321080270067,-17272.79819954989,-17261.275318829707,-17249.752438109528,-17238.229557389346,-17226.706676669168,-17215.183795948986,-17203.660915228807,-17192.138034508625,-17180.615153788447,-17169.09227306827,-17157.569392348087,-17146.04651162791,-17134.523630907726,-17123.000750187548,-17111.477869467366,-17099.954988747188,-17088.432108027006,-17076.909227306827,-17065.386346586645,-17053.863465866467,-17042.340585146285,-17030.817704426107,-17019.294823705928,-17007.771942985746,-16996.249062265568,-16984.726181545386,-16973.203300825207,-16961.680420105025,-16950.157539384847,-16938.634658664665,-16927.111777944487,-16915.588897224305,-16904.066016504126,-16892.543135783944,-16881.020255063766,-16869.497374343588,-16857.974493623406,-16846.451612903227,-16834.928732183045,-16823.405851462867,-16811.882970742685,-16800.360090022506,-16788.837209302324,-16777.314328582146,-16765.791447861964,-16754.268567141786,-16742.745686421604,-16731.222805701425,-16719.699924981247,-16708.177044261065,-16696.654163540887,-16685.131282820705,-16673.608402100526,-16662.085521380344,-16650.562640660166,-16639.039759939984,-16627.516879219806,-16615.993998499624,-16604.471117779445,-16592.948237059263,-16581.425356339085,-16569.902475618906,-16558.379594898724,-16546.856714178546,-16535.333833458364,-16523.810952738186,-16512.288072018004,-16500.765191297825,-16489.242310577643,-16477.719429857465,-16466.196549137283,-16454.673668417105,-16443.150787696923,-16431.627906976744,-16420.105026256566,-16408.582145536384,-16397.059264816206,-16385.536384096024,-16374.013503375843,-16362.490622655663,-16350.967741935483,-16339.444861215305,-16327.921980495124,-16316.399099774944,-16304.876219054764,-16293.353338334584,-16281.830457614404,-16270.307576894224,-16258.784696174043,-16247.261815453863,-16235.738934733683,-16224.216054013503,-16212.693173293323,-16201.170292573142,-16189.647411852964,-16178.124531132784,-16166.601650412604,-16155.078769692424,-16143.555888972243,-16132.033008252063,-16120.510127531883,-16108.987246811703,-16097.464366091523,-16085.941485371342,-16074.418604651162,-16062.895723930982,-16051.372843210802,-16039.849962490624,-16028.327081770443,-16016.804201050263,-16005.281320330083,-15993.758439609903,-15982.235558889723,-15970.712678169542,-15959.189797449362,-15947.666916729182,-15936.144036009002,-15924.621155288822,-15913.098274568642,-15901.575393848461,-15890.052513128283,-15878.529632408103,-15867.006751687923,-15855.483870967742,-15843.960990247562,-15832.438109527382,-15820.915228807202,-15809.392348087022,-15797.869467366841,-15786.346586646661,-15774.823705926481,-15763.300825206301,-15751.77794448612,-15740.25506376594,-15728.732183045762,-15717.209302325582,-15705.686421605402,-15694.163540885222,-15682.640660165041,-15671.117779444861,-15659.594898724681,-15648.072018004501,-15636.54913728432,-15625.02625656414,-15613.50337584396,-15601.98049512378,-15590.4576144036,-15578.934733683422,-15567.411852963241,-15555.888972243061,-15544.366091522881,-15532.843210802701,-15521.32033008252,-15509.79744936234,-15498.27456864216,-15486.75168792198,-15475.2288072018,-15463.70592648162,-15452.18304576144,-15440.66016504126,-15429.137284321081,-15417.614403600901,-15406.09152288072,-15394.56864216054,-15383.04576144036,-15371.52288072018,-15360.0,-15348.47711927982,-15336.95423855964,-15325.43135783946,-15313.90847711928,-15302.385596399099,-15290.862715678919,-15279.33983495874,-15267.81695423856,-15256.29407351838,-15244.7711927982,-15233.24831207802,-15221.72543135784,-15210.20255063766,-15198.67966991748,-15187.156789197299,-15175.633908477119,-15164.111027756939,-15152.588147036759,-15141.065266316578,-15129.5423855964,-15118.01950487622,-15106.49662415604,-15094.97374343586,-15083.45086271568,-15071.927981995499,-15060.405101275319,-15048.882220555139,-15037.359339834959,-15025.836459114778,-15014.313578394598,-15002.790697674418,-14991.267816954238,-14979.74493623406,-14968.22205551388,-14956.699174793699,-14945.176294073519,-14933.653413353339,-14922.130532633159,-14910.607651912978,-14899.084771192798,-14887.561890472618,-14876.039009752438,-14864.516129032258,-14852.993248312077,-14841.470367591897,-14829.947486871717,-14818.424606151539,-14806.901725431358,-14795.378844711178,-14783.855963990998,-14772.333083270818,-14760.810202550638,-14749.287321830458,-14737.764441110277,-14726.241560390097,-14714.718679669917,-14703.195798949737,-14691.672918229557,-14680.150037509376,-14668.627156789198,-14657.104276069018,-14645.581395348838,-14634.058514628658,-14622.535633908477,-14611.012753188297,-14599.489872468117,-14587.966991747937,-14576.444111027757,-14564.921230307576,-14553.398349587396,-14541.875468867216,-14530.352588147036,-14518.829707426858,-14507.306826706677,-14495.783945986497,-14484.261065266317,-14472.738184546137,-14461.215303825957,-14449.692423105776,-14438.169542385596,-14426.646661665416,-14415.123780945236,-14403.600900225056,-14392.078019504876,-14380.555138784695,-14369.032258064517,-14357.509377344337,-14345.986496624157,-14334.463615903976,-14322.940735183796,-14311.417854463616,-14299.894973743436,-14288.372093023256,-14276.849212303076,-14265.326331582895,-14253.803450862715,-14242.280570142535,-14230.757689422355,-14219.234808702176,-14207.711927981996,-14196.189047261816,-14184.666166541636,-14173.143285821456,-14161.620405101276,-14150.097524381095,-14138.574643660915,-14127.051762940735,-14115.528882220555,-14104.006001500375,-14092.483120780194,-14080.960240060014,-14069.437359339834,-14057.914478619656,-14046.391597899476,-14034.868717179295,-14023.345836459115,-14011.822955738935,-14000.300075018755,-13988.777194298575,-13977.254313578394,-13965.731432858214,-13954.208552138034,-13942.685671417854,-13931.162790697674,-13919.639909977494,-13908.117029257315,-13896.594148537135,-13885.071267816955,-13873.548387096775,-13862.025506376594,-13850.502625656414,-13838.979744936234,-13827.456864216054,-13815.933983495874,-13804.411102775694,-13792.888222055513,-13781.365341335333,-13769.842460615153,-13758.319579894975,-13746.796699174794,-13735.273818454614,-13723.750937734434,-13712.228057014254,-13700.705176294074,-13689.182295573893,-13677.659414853713,-13666.136534133533,-13654.613653413353,-13643.090772693173,-13631.567891972993,-13620.045011252812,-13608.522130532634,-13596.999249812454,-13585.476369092274,-13573.953488372093,-13562.430607651913,-13550.907726931733,-13539.384846211553,-13527.861965491373,-13516.339084771193,-13504.816204051012,-13493.293323330832,-13481.770442610652,-13470.247561890472,-13458.724681170293,-13447.201800450113,-13435.678919729933,-13424.156039009753,-13412.633158289573,-13401.110277569393,-13389.587396849212,-13378.064516129032,-13366.541635408852,-13355.018754688672,-13343.495873968492,-13331.972993248311,-13320.450112528131,-13308.927231807951,-13297.404351087773,-13285.881470367593,-13274.358589647412,-13262.835708927232,-13251.312828207052,-13239.789947486872,-13228.267066766692,-13216.744186046511,-13205.221305326331,-13193.698424606151,-13182.175543885971,-13170.65266316579,-13159.12978244561,-13147.606901725432,-13136.084021005252,-13124.561140285072,-13113.038259564892,-13101.515378844711,-13089.992498124531,-13078.469617404351,-13066.94673668417,-13055.42385596399,-13043.90097524381,-13032.37809452363,-13020.85521380345,-13009.33233308327,-12997.809452363092,-12986.286571642911,-12974.763690922731,-12963.240810202551,-12951.71792948237,-12940.19504876219,-12928.67216804201,-12917.14928732183,-12905.62640660165,-12894.10352588147,-12882.58064516129,-12871.05776444111,-12859.53488372093,-12848.012003000751,-12836.48912228057,-12824.96624156039,-12813.44336084021,-12801.92048012003,-12790.39759939985,-12778.87471867967,-12767.35183795949,-12755.82895723931,-12744.30607651913,-12732.78319579895,-12721.260315078769,-12709.737434358589,-12698.21455363841,-12686.69167291823,-12675.16879219805,-12663.64591147787,-12652.12303075769,-12640.60015003751,-12629.07726931733,-12617.55438859715,-12606.031507876969,-12594.508627156789,-12582.985746436609,-12571.462865716428,-12559.939984996248,-12548.417104276068,-12536.89422355589,-12525.37134283571,-12513.84846211553,-12502.32558139535,-12490.802700675169,-12479.279819954989,-12467.756939234809,-12456.234058514628,-12444.711177794448,-12433.188297074268,-12421.665416354088,-12410.142535633908,-12398.619654913728,-12387.09677419355,-12375.573893473369,-12364.051012753189,-12352.528132033009,-12341.005251312828,-12329.482370592648,-12317.959489872468,-12306.436609152288,-12294.913728432108,-12283.390847711928,-12271.867966991747,-12260.345086271567,-12248.822205551387,-12237.299324831209,-12225.776444111028,-12214.253563390848,-12202.730682670668,-12191.207801950488,-12179.684921230308,-12168.162040510128,-12156.639159789947,-12145.116279069767,-12133.593398349587,-12122.070517629407,-12110.547636909227,-12099.024756189046,-12087.501875468868,-12075.978994748688,-12064.456114028508,-12052.933233308328,-12041.410352588147,-12029.887471867967,-12018.364591147787,-12006.841710427607,-11995.318829707427,-11983.795948987246,-11972.273068267066,-11960.750187546886,-11949.227306826706,-11937.704426106528,-11926.181545386347,-11914.658664666167,-11903.135783945987,-11891.612903225807,-11880.090022505627,-11868.567141785446,-11857.044261065266,-11845.521380345086,-11833.998499624906,-11822.475618904726,-11810.952738184546,-11799.429857464365,-11787.906976744185,-11776.384096024007,-11764.861215303827,-11753.338334583646,-11741.815453863466,-11730.292573143286,-11718.769692423106,-11707.246811702926,-11695.723930982746,-11684.201050262565,-11672.678169542385,-11661.155288822205,-11649.632408102025,-11638.109527381845,-11626.586646661666,-11615.063765941486,-11603.540885221306,-11592.018004501126,-11580.495123780946,-11568.972243060765,-11557.449362340585,-11545.926481620405,-11534.403600900225,-11522.880720180045,-11511.357839459864,-11499.834958739684,-11488.312078019504,-11476.789197299326,-11465.266316579145,-11453.743435858965,-11442.220555138785,-11430.697674418605,-11419.174793698425,-11407.651912978245,-11396.129032258064,-11384.606151537884,-11373.083270817704,-11361.560390097524,-11350.037509377344,-11338.514628657163,-11326.991747936985,-11315.468867216805,-11303.945986496625,-11292.423105776445,-11280.900225056264,-11269.377344336084,-11257.854463615904,-11246.331582895724,-11234.808702175544,-11223.285821455363,-11211.762940735183,-11200.240060015003,-11188.717179294823,-11177.194298574645,-11165.671417854464,-11154.148537134284,-11142.625656414104,-11131.102775693924,-11119.579894973744,-11108.057014253563,-11096.534133533383,-11085.011252813203,-11073.488372093023,-11061.965491372843,-11050.442610652663,-11038.919729932482,-11027.396849212302,-11015.873968492124,-11004.351087771944,-10992.828207051763,-10981.305326331583,-10969.782445611403,-10958.259564891223,-10946.736684171043,-10935.213803450863,-10923.690922730682,-10912.168042010502,-10900.645161290322,-10889.122280570142,-10877.599399849962,-10866.076519129783,-10854.553638409603,-10843.030757689423,-10831.507876969243,-10819.984996249063,-10808.462115528882,-10796.939234808702,-10785.416354088522,-10773.893473368342,-10762.370592648162,-10750.847711927981,-10739.324831207801,-10727.801950487621,-10716.279069767443,-10704.756189047263,-10693.233308327082,-10681.710427606902,-10670.187546886722,-10658.664666166542,-10647.141785446362,-10635.618904726181,-10624.096024006001,-10612.573143285821,-10601.05026256564,-10589.52738184546,-10578.00450112528,-10566.481620405102,-10554.958739684922,-10543.435858964742,-10531.912978244562,-10520.390097524381,-10508.867216804201,-10497.344336084021,-10485.82145536384,-10474.29857464366,-10462.77569392348,-10451.2528132033,-10439.72993248312,-10428.20705176294,-10416.684171042762,-10405.161290322581,-10393.638409602401,-10382.115528882221,-10370.59264816204,-10359.06976744186,-10347.54688672168,-10336.0240060015,-10324.50112528132,-10312.97824456114,-10301.45536384096,-10289.93248312078,-10278.4096024006,-10266.88672168042,-10255.36384096024,-10243.84096024006,-10232.31807951988,-10220.7951987997,-10209.27231807952,-10197.74943735934,-10186.22655663916,-10174.70367591898,-10163.1807951988,-10151.65791447862,-10140.135033758439,-10128.612153038259,-10117.089272318079,-10105.5663915979,-10094.04351087772,-10082.52063015754,-10070.99774943736,-10059.47486871718,-10047.951987997,-10036.42910727682,-10024.906226556639,-10013.383345836459,-10001.860465116279,-9990.337584396098,-9978.814703675918,-9967.291822955738,-9955.76894223556,-9944.24606151538,-9932.7231807952,-9921.20030007502,-9909.677419354839,-9898.154538634659,-9886.631657914479,-9875.108777194298,-9863.585896474118,-9852.063015753938,-9840.540135033758,-9829.017254313578,-9817.494373593398,-9805.97149287322,-9794.448612153039,-9782.925731432859,-9771.402850712679,-9759.879969992498,-9748.357089272318,-9736.834208552138,-9725.311327831958,-9713.788447111778,-9702.265566391598,-9690.742685671417,-9679.219804951237,-9667.696924231057,-9656.174043510879,-9644.651162790698,-9633.128282070518,-9621.605401350338,-9610.082520630158,-9598.559639909978,-9587.036759189798,-9575.513878469617,-9563.990997749437,-9552.468117029257,-9540.945236309077,-9529.422355588897,-9517.899474868716,-9506.376594148536,-9494.853713428358,-9483.330832708178,-9471.807951987998,-9460.285071267817,-9448.762190547637,-9437.239309827457,-9425.716429107277,-9414.193548387097,-9402.670667666916,-9391.147786946736,-9379.624906226556,-9368.102025506376,-9356.579144786196,-9345.056264066017,-9333.533383345837,-9322.010502625657,-9310.487621905477,-9298.964741185297,-9287.441860465116,-9275.918979744936,-9264.396099024756,-9252.873218304576,-9241.350337584396,-9229.827456864215,-9218.304576144035,-9206.781695423855,-9195.258814703677,-9183.735933983497,-9172.213053263316,-9160.690172543136,-9149.167291822956,-9137.644411102776,-9126.121530382596,-9114.598649662415,-9103.075768942235,-9091.552888222055,-9080.030007501875,-9068.507126781695,-9056.984246061515,-9045.461365341336,-9033.938484621156,-9022.415603900976,-9010.892723180796,-8999.369842460615,-8987.846961740435,-8976.324081020255,-8964.801200300075,-8953.278319579895,-8941.755438859715,-8930.232558139534,-8918.709677419354,-8907.186796699174,-8895.663915978996,-8884.141035258815,-8872.618154538635,-8861.095273818455,-8849.572393098275,-8838.049512378095,-8826.526631657915,-8815.003750937734,-8803.480870217554,-8791.957989497374,-8780.435108777194,-8768.912228057014,-8757.389347336833,-8745.866466616653,-8734.343585896475,-8722.820705176295,-8711.297824456115,-8699.774943735934,-8688.252063015754,-8676.729182295574,-8665.206301575394,-8653.683420855214,-8642.160540135033,-8630.637659414853,-8619.114778694673,-8607.591897974493,-8596.069017254313,-8584.546136534134,-8573.023255813954,-8561.500375093774,-8549.977494373594,-8538.454613653414,-8526.931732933233,-8515.408852213053,-8503.885971492873,-8492.363090772693,-8480.840210052513,-8469.317329332333,-8457.794448612152,-8446.271567891972,-8434.748687171794,-8423.225806451614,-8411.702925731433,-8400.180045011253,-8388.657164291073,-8377.134283570893,-8365.611402850713,-8354.088522130533,-8342.565641410352,-8331.042760690172,-8319.519879969992,-8307.996999249812,-8296.474118529632,-8284.951237809453,-8273.428357089273,-8261.905476369093,-8250.382595648913,-8238.859714928733,-8227.336834208552,-8215.813953488372,-8204.291072768192,-8192.768192048012,-8181.245311327832,-8169.722430607652,-8158.199549887472,-8146.676669167292,-8135.153788447112,-8123.630907726932,-8112.108027006751,-8100.585146286571,-8089.062265566392,-8077.539384846212,-8066.016504126032,-8054.493623405851,-8042.970742685671,-8031.447861965491,-8019.924981245312,-8008.402100525132,-7996.879219804951,-7985.356339084771,-7973.833458364591,-7962.310577644411,-7950.787696924231,-7939.264816204051,-7927.741935483871,-7916.219054763691,-7904.696174043511,-7893.173293323331,-7881.6504126031505,-7870.12753188297,-7858.604651162791,-7847.081770442611,-7835.558889722431,-7824.0360090022505,-7812.51312828207,-7800.99024756189,-7789.467366841711,-7777.944486121531,-7766.4216054013505,-7754.89872468117,-7743.37584396099,-7731.85296324081,-7720.33008252063,-7708.8072018004505,-7697.28432108027,-7685.76144036009,-7674.23855963991,-7662.71567891973,-7651.1927981995495,-7639.66991747937,-7628.14703675919,-7616.62415603901,-7605.10127531883,-7593.5783945986495,-7582.055513878469,-7570.532633158289,-7559.00975243811,-7547.48687171793,-7535.9639909977495,-7524.441110277569,-7512.918229557389,-7501.395348837209,-7489.87246811703,-7478.3495873968495,-7466.826706676669,-7455.303825956489,-7443.780945236309,-7432.258064516129,-7420.735183795949,-7409.212303075769,-7397.689422355589,-7386.166541635409,-7374.643660915229,-7363.120780195049,-7351.597899474868,-7340.075018754688,-7328.552138034509,-7317.029257314329,-7305.506376594149,-7293.983495873968,-7282.460615153788,-7270.937734433608,-7259.414853713429,-7247.891972993249,-7236.369092273068,-7224.846211552888,-7213.323330832708,-7201.800450112528,-7190.277569392348,-7178.754688672168,-7167.231807951988,-7155.708927231808,-7144.186046511628,-7132.663165791448,-7121.1402850712675,-7109.617404351088,-7098.094523630908,-7086.571642910728,-7075.048762190548,-7063.5258814703675,-7052.003000750187,-7040.480120030007,-7028.957239309828,-7017.434358589648,-7005.9114778694675,-6994.388597149287,-6982.865716429107,-6971.342835708927,-6959.819954988747,-6948.2970742685675,-6936.774193548387,-6925.251312828207,-6913.728432108027,-6902.205551387847,-6890.682670667667,-6879.159789947487,-6867.636909227307,-6856.114028507127,-6844.591147786947,-6833.068267066767,-6821.545386346586,-6810.022505626406,-6798.499624906227,-6786.976744186047,-6775.453863465867,-6763.930982745686,-6752.408102025506,-6740.885221305326,-6729.362340585147,-6717.839459864967,-6706.316579144786,-6694.793698424606,-6683.270817704426,-6671.747936984246,-6660.225056264066,-6648.702175543886,-6637.179294823706,-6625.656414103526,-6614.133533383346,-6602.610652663166,-6591.0877719429855,-6579.564891222805,-6568.042010502626,-6556.519129782446,-6544.996249062266,-6533.473368342085,-6521.950487621905,-6510.427606901725,-6498.904726181546,-6487.381845461366,-6475.858964741185,-6464.336084021005,-6452.813203300825,-6441.290322580645,-6429.767441860465,-6418.244561140285,-6406.721680420105,-6395.198799699925,-6383.675918979745,-6372.153038259565,-6360.6301575393845,-6349.107276819205,-6337.584396099025,-6326.061515378845,-6314.538634658665,-6303.0157539384845,-6291.492873218304,-6279.969992498124,-6268.447111777945,-6256.924231057765,-6245.4013503375845,-6233.878469617404,-6222.355588897224,-6210.832708177044,-6199.309827456864,-6187.7869467366845,-6176.264066016504,-6164.741185296324,-6153.218304576144,-6141.695423855964,-6130.172543135784,-6118.649662415604,-6107.126781695424,-6095.603900975244,-6084.081020255064,-6072.558139534884,-6061.035258814703,-6049.512378094523,-6037.989497374344,-6026.466616654164,-6014.943735933984,-6003.420855213803,-5991.897974493623,-5980.375093773443,-5968.852213053264,-5957.329332333084,-5945.806451612903,-5934.283570892723,-5922.760690172543,-5911.237809452363,-5899.714928732183,-5888.192048012003,-5876.669167291823,-5865.146286571643,-5853.623405851463,-5842.100525131283,-5830.5776444111025,-5819.054763690922,-5807.531882970743,-5796.009002250563,-5784.486121530383,-5772.9632408102025,-5761.440360090022,-5749.917479369842,-5738.394598649663,-5726.871717929483,-5715.3488372093025,-5703.825956489122,-5692.303075768942,-5680.780195048762,-5669.257314328582,-5657.7344336084025,-5646.211552888222,-5634.688672168042,-5623.165791447862,-5611.642910727682,-5600.120030007502,-5588.597149287322,-5577.074268567142,-5565.551387846962,-5554.028507126782,-5542.505626406602,-5530.982745686421,-5519.459864966241,-5507.936984246062,-5496.414103525882,-5484.891222805702,-5473.368342085521,-5461.845461365341,-5450.322580645161,-5438.799699924981,-5427.2768192048015,-5415.753938484621,-5404.231057764441,-5392.708177044261,-5381.185296324081,-5369.662415603901,-5358.139534883721,-5346.616654163541,-5335.093773443361,-5323.570892723181,-5312.048012003001,-5300.52513128282,-5289.00225056264,-5277.479369842461,-5265.956489122281,-5254.433608402101,-5242.91072768192,-5231.38784696174,-5219.86496624156,-5208.342085521381,-5196.819204801201,-5185.29632408102,-5173.77344336084,-5162.25056264066,-5150.72768192048,-5139.2048012003,-5127.68192048012,-5116.15903975994,-5104.63615903976,-5093.11327831958,-5081.5903975994,-5070.0675168792195,-5058.544636159039,-5047.02175543886,-5035.49887471868,-5023.9759939985,-5012.4531132783195,-5000.930232558139,-4989.407351837959,-4977.88447111778,-4966.3615903976,-4954.8387096774195,-4943.315828957239,-4931.792948237059,-4920.270067516879,-4908.747186796699,-4897.2243060765195,-4885.701425356339,-4874.178544636159,-4862.655663915979,-4851.132783195799,-4839.609902475619,-4828.087021755439,-4816.564141035259,-4805.041260315079,-4793.518379594899,-4781.995498874719,-4770.472618154538,-4758.949737434358,-4747.426856714179,-4735.903975993999,-4724.381095273819,-4712.858214553638,-4701.335333833458,-4689.812453113278,-4678.289572393098,-4666.766691672919,-4655.243810952738,-4643.720930232558,-4632.198049512378,-4620.675168792198,-4609.152288072018,-4597.629407351838,-4586.106526631658,-4574.583645911478,-4563.060765191298,-4551.537884471118,-4540.0150037509375,-4528.492123030757,-4516.969242310578,-4505.446361590398,-4493.923480870218,-4482.4006001500375,-4470.877719429857,-4459.354838709677,-4447.831957989498,-4436.309077269318,-4424.7861965491375,-4413.263315828957,-4401.740435108777,-4390.217554388597,-4378.694673668417,-4367.171792948237,-4355.648912228057,-4344.126031507877,-4332.603150787697,-4321.080270067517,-4309.5573893473365,-4298.034508627156,-4286.511627906977,-4274.988747186797,-4263.465866466617,-4251.9429857464365,-4240.420105026256,-4228.897224306076,-4217.374343585897,-4205.851462865717,-4194.3285821455365,-4182.805701425356,-4171.282820705176,-4159.759939984996,-4148.237059264816,-4136.7141785446365,-4125.191297824456,-4113.668417104276,-4102.145536384096,-4090.622655663916,-4079.099774943736,-4067.576894223556,-4056.0540135033757,-4044.531132783196,-4033.008252063016,-4021.4853713428356,-4009.962490622656,-3998.4396099024757,-3986.9167291822955,-3975.3938484621153,-3963.8709677419356,-3952.3480870217554,-3940.8252063015752,-3929.3023255813955,-3917.7794448612153,-3906.256564141035,-3894.7336834208554,-3883.2108027006752,-3871.687921980495,-3860.165041260315,-3848.642160540135,-3837.119279819955,-3825.5963990997748,-3814.073518379595,-3802.550637659415,-3791.0277569392347,-3779.504876219055,-3767.9819954988748,-3756.4591147786946,-3744.936234058515,-3733.4133533383347,-3721.8904726181545,-3710.3675918979743,-3698.8447111777946,-3687.3218304576144,-3675.798949737434,-3664.2760690172545,-3652.7531882970743,-3641.230307576894,-3629.7074268567144,-3618.184546136534,-3606.661665416354,-3595.138784696174,-3583.615903975994,-3572.093023255814,-3560.5701425356337,-3549.047261815454,-3537.524381095274,-3526.0015003750937,-3514.478619654914,-3502.9557389347337,-3491.4328582145536,-3479.9099774943734,-3468.3870967741937,-3456.8642160540135,-3445.3413353338333,-3433.8184546136536,-3422.2955738934734,-3410.772693173293,-3399.2498124531135,-3387.7269317329333,-3376.204051012753,-3364.6811702925734,-3353.158289572393,-3341.635408852213,-3330.112528132033,-3318.589647411853,-3307.066766691673,-3295.5438859714927,-3284.021005251313,-3272.498124531133,-3260.9752438109526,-3249.452363090773,-3237.9294823705927,-3226.4066016504125,-3214.8837209302324,-3203.3608402100526,-3191.8379594898724,-3180.3150787696923,-3168.7921980495125,-3157.2693173293324,-3145.746436609152,-3134.2235558889724,-3122.7006751687923,-3111.177794448612,-3099.654913728432,-3088.132033008252,-3076.609152288072,-3065.086271567892,-3053.563390847712,-3042.040510127532,-3030.5176294073517,-3018.994748687172,-3007.471867966992,-2995.9489872468116,-2984.426106526632,-2972.9032258064517,-2961.3803450862715,-2949.8574643660913,-2938.3345836459116,-2926.8117029257314,-2915.2888222055512,-2903.7659414853715,-2892.2430607651913,-2880.720180045011,-2869.1972993248314,-2857.6744186046512,-2846.151537884471,-2834.628657164291,-2823.105776444111,-2811.582895723931,-2800.060015003751,-2788.537134283571,-2777.014253563391,-2765.4913728432107,-2753.968492123031,-2742.445611402851,-2730.9227306826706,-2719.3998499624904,-2707.8769692423107,-2696.3540885221305,-2684.8312078019503,-2673.3083270817706,-2661.7854463615904,-2650.26256564141,-2638.7396849212305,-2627.2168042010503,-2615.69392348087,-2604.1710427606904,-2592.64816204051,-2581.12528132033,-2569.60240060015,-2558.07951987997,-2546.55663915979,-2535.0337584396098,-2523.51087771943,-2511.98799699925,-2500.4651162790697,-2488.94223555889,-2477.4193548387098,-2465.8964741185296,-2454.3735933983494,-2442.8507126781697,-2431.3278319579895,-2419.8049512378093,-2408.2820705176296,-2396.7591897974494,-2385.236309077269,-2373.7134283570895,-2362.1905476369093,-2350.667666916729,-2339.144786196549,-2327.621905476369,-2316.099024756189,-2304.576144036009,-2293.053263315829,-2281.530382595649,-2270.0075018754687,-2258.484621155289,-2246.961740435109,-2235.4388597149286,-2223.915978994749,-2212.3930982745687,-2200.8702175543885,-2189.3473368342084,-2177.8244561140286,-2166.3015753938485,-2154.7786946736683,-2143.2558139534885,-2131.7329332333084,-2120.210052513128,-2108.6871717929484,-2097.1642910727683,-2085.641410352588,-2074.118529632408,-2062.595648912228,-2051.072768192048,-2039.549887471868,-2028.0270067516878,-2016.504126031508,-2004.981245311328,-1993.4583645911478,-1981.9354838709678,-1970.4126031507876,-1958.8897224306077,-1947.3668417104277,-1935.8439609902475,-1924.3210802700676,-1912.7981995498874,-1901.2753188297074,-1889.7524381095275,-1878.2295573893473,-1866.7066766691673,-1855.1837959489872,-1843.6609152288072,-1832.1380345086272,-1820.615153788447,-1809.092273068267,-1797.569392348087,-1786.046511627907,-1774.523630907727,-1763.0007501875468,-1751.4778694673669,-1739.9549887471867,-1728.4321080270067,-1716.9092273068268,-1705.3863465866466,-1693.8634658664666,-1682.3405851462867,-1670.8177044261065,-1659.2948237059265,-1647.7719429857464,-1636.2490622655664,-1624.7261815453865,-1613.2033008252063,-1601.6804201050263,-1590.1575393848461,-1578.6346586646662,-1567.1117779444862,-1555.588897224306,-1544.066016504126,-1532.543135783946,-1521.020255063766,-1509.497374343586,-1497.9744936234058,-1486.4516129032259,-1474.9287321830457,-1463.4058514628657,-1451.8829707426858,-1440.3600900225056,-1428.8372093023256,-1417.3143285821454,-1405.7914478619655,-1394.2685671417855,-1382.7456864216053,-1371.2228057014254,-1359.6999249812452,-1348.1770442610652,-1336.6541635408853,-1325.131282820705,-1313.6084021005252,-1302.0855213803452,-1290.562640660165,-1279.039759939985,-1267.5168792198049,-1255.993998499625,-1244.471117779445,-1232.9482370592648,-1221.4253563390848,-1209.9024756189046,-1198.3795948987247,-1186.8567141785447,-1175.3338334583646,-1163.8109527381846,-1152.2880720180044,-1140.7651912978245,-1129.2423105776445,-1117.7194298574643,-1106.1965491372844,-1094.6736684171042,-1083.1507876969242,-1071.6279069767443,-1060.105026256564,-1048.5821455363841,-1037.059264816204,-1025.536384096024,-1014.0135033758439,-1002.490622655664,-990.9677419354839,-979.4448612153038,-967.9219804951238,-956.3990997749437,-944.8762190547637,-933.3533383345837,-921.8304576144036,-910.3075768942235,-898.7846961740435,-887.2618154538635,-875.7389347336834,-864.2160540135034,-852.6931732933233,-841.1702925731433,-829.6474118529633,-818.1245311327832,-806.6016504126031,-795.0787696924231,-783.5558889722431,-772.033008252063,-760.510127531883,-748.9872468117029,-737.4643660915228,-725.9414853713429,-714.4186046511628,-702.8957239309827,-691.3728432108027,-679.8499624906226,-668.3270817704426,-656.8042010502626,-645.2813203300825,-633.7584396099024,-622.2355588897225,-610.7126781695424,-599.1897974493623,-587.6669167291823,-576.1440360090022,-564.6211552888223,-553.0982745686422,-541.5753938484621,-530.052513128282,-518.529632408102,-507.00675168792196,-495.48387096774195,-483.9609902475619,-472.43810952738187,-460.9152288072018,-449.39234808702173,-437.8694673668417,-426.34658664666165,-414.82370592648164,-403.30082520630157,-391.77794448612156,-380.2550637659415,-368.7321830457614,-357.2093023255814,-345.68642160540134,-334.1635408852213,-322.64066016504125,-311.11777944486124,-299.5948987246812,-288.0720180045011,-276.5491372843211,-265.026256564141,-253.50337584396098,-241.98049512378094,-230.4576144036009,-218.93473368342086,-207.41185296324082,-195.88897224306078,-184.3660915228807,-172.84321080270067,-161.32033008252063,-149.7974493623406,-138.27456864216055,-126.75168792198049,-115.22880720180045,-103.70592648162041,-92.18304576144035,-80.66016504126031,-69.13728432108027,-57.614403600900225,-46.09152288072018,-34.568642160540136,-23.04576144036009,-11.522880720180044,0.0],"cosine":[1.0,0.9798450101169984,0.9201924877023615,0.8234470247275422,0.6935084288476298,0.5356145222333168,0.35613000506540143,0.1622898945991078,-0.038092118234584,-0.23693863855299552,-0.42623416714555146,-0.5983482050849928,-0.7463428389843189,-0.8642524081456856,-0.9473239802219803,-0.9922089418236774,-0.9970979810568049,-0.9617940208487943,-0.8877201631213059,-0.7778623235805247,-0.6366488695153782,-0.46977211240209804,-0.2839588509432567,-0.08669921394851511,0.11405526660634563,0.31021218167197195,0.4938644499712334,0.6576090522850062,0.7948454470072298,0.9000416378435476,0.9689571684697545,0.998814055240822,0.9884087676551324,0.9381607426446803,0.8500954770809819,0.7277628800369783,0.5760941760242358,0.40120312743252795,0.21013958889206144,0.010605327775319695,-0.189356433889457,-0.3816852415355872,-0.5586283248185411,-0.7130531116312261,-0.8387347419419707,-0.9306069917759906,-0.9849664926014411,-0.99962201403989,-0.9739827923187396,-0.9090823439467856,-0.807536804684631,-0.6734394731653889,-0.5121958101092222,-0.3303055443113211,-0.13510066870563203,0.06555011212208127,0.2635585692563684,0.4509429857967746,0.6201498997040917,0.76435858370253,0.8777559886578488,0.9557710674708815,0.9952590338932318,0.9946281287974009,0.9539037839550368,0.8747275968827314,0.7602911580793185,0.6152073980774571,0.4453246403070843,0.2574908552967303,0.05927761911943438,-0.14132509668514284,-0.3362310007020331,-0.5175834398837957,-0.6780721010766242,-0.8112276895951627,-0.9116827063605508,-0.975387811679456,-0.9997750540455561,-0.9838613842125251,-0.9282882818893354,-0.8352958977060989,-0.7086327527877514,-0.5534046359430024,-0.3758687894209787,-0.18318167960259837,0.016889480013947484,0.2162798250328728,0.40695193468092833,0.5812198200763631,0.7320587462848037,0.8533883992429782,0.9403179830951264,0.9893433680751011,0.9984883419063322,0.9673842708787105,0.8972849594660182,0.7910161094929117,0.6528614161514672,0.4883898923350306,0.30423138184064846,0.10780931050008659,-0.09295855196544697,-0.28997925708205013,-0.4753109042131153,-0.641482778412789,-0.7817964947944037,-0.8905960102897816,-0.9634956186306161,-0.9975567380798177,-0.9914063656015818,-0.9452924225860179,-0.8610737611430721,-0.7421452338114128,-0.5933008471213799,-0.4205405152886163,-0.2308282037938863,-0.031811212074801865,0.16848808895934986,0.36199563853673766,0.5409111512494349,0.6980225463999437,0.8269966668288566,0.9226345683513464,0.9810810890922028,0.9999802509828952,0.9785702291900644,0.917714061258969,0.8198648580874752,0.6889669190756688,0.5302967374964765,0.35025030515882377,0.15608529010718245,-0.044371519830577,-0.24303971470165367,-0.43191098359077146,-0.6033719294706308,-0.7505109650822386,-0.8673969188771166,-0.9493181204229645,-0.9929723277430625,-0.9965998406236263,-0.9600544340938345,-0.8848092527514587,-0.7738974283338993,-0.63178981423914,-0.4642147655161145,-0.27792722898805455,-0.08043645148306479,0.12029671775365641,0.3161807287319316,0.49931950093249644,0.6623307141537016,0.7986433896889685,0.9027627663456755,0.970491794157411,0.9991003173835891,0.9874351270318273,0.9359664466891272,0.8467689778187505,0.7234382685860208,0.5709457773846361,0.3954384734493919,0.20399105265057924,0.004320756647092633,-0.1955237089694121,-0.38748661783358596,-0.5638299489733958,-0.7174453062785044,-0.8421404578043126,-0.9328889445158962,-0.9860326967501373,-0.9994294909297169,-0.9725393025523729,-0.9064460745674998,-0.8038140236578379,-0.6687802457188045,-0.506787949607019,-0.3243670415009204,-0.12887090451516128,0.07182001602415712,0.2696158731706218,0.45654351992498543,0.625067906628873,0.7683958186642541,0.8807497107968986,0.9576005999084068,0.9958506282136947,0.9939579378457271,0.951998823114901,0.8716646550870685,0.756193702449936,0.6102405969678677,0.43968870536951676,0.2514129709544812,0.05300278476735966,-0.14754394260127593,-0.34214317662917704,-0.5229506261299545,-0.6826779464728147,-0.8148865326066591,-0.9142470590995406,-0.9767543051390191,-0.9998886049019357,-0.982717415232998,-0.9259329064403194,-0.8318240609242845,-0.7041844043435651,-0.5481590886722215,-0.37003749122795,-0.17699968999949225,0.0231729651513159,0.22241151854575622,0.41268466812789106,0.5863225070880509,0.736325697651225,0.8566476142407873,0.9424380828337084,0.9902388913768921,0.9981231902451561,0.9657731635106415,0.8944928400964641,0.7871555283971635,0.648087993275379,0.4828960442581528,0.2982385654677974,0.10155909613799331,-0.09921421830218687,-0.29598820961022737,-0.48083092217777773,-0.6462913500014733,-0.7856997865836665,-0.8934366806665762,-0.9651591602295326,-0.9979760935726639,-0.9905646307769264,-0.9432235277576102,-0.8578611034195841,-0.7379183153606734,-0.5882300549406109,-0.41483025290813735,-0.2247086517744871,-0.02552904943467695,0.1746796283712903,0.36784697389207793,0.5461864153383967,0.7025090934338409,0.8305136441875337,0.9250402067486375,0.982278417292988,0.9999210047116285,0.9772567966627416,0.9151993869141904,0.8162503083972699,0.6843981964647688,0.5249580070809574,0.3443567710537111,0.14987452055300357,-0.050649168838761804,-0.24913119125934624,-0.4375707404011862,-0.6083718218512593,-0.7546494474723849,-0.8705071691353725,-0.9512747644243525,-0.9936964932074774,-0.9960623364558607,-0.958276927075994,-0.8818633941554775,-0.769901965660175,-0.6269058045073047,-0.4586390830594421,-0.27188462945365416,-0.0741705119359021,0.12653341741722024,0.32213678727465145,0.5047548297550302,0.6670262152611913,0.8024097875267802,0.9054482374931215,0.9719880873269818,0.9993471170278415,0.9864224846620953,0.9337351818988894,0.8434090328464657,0.7190850827455822,0.5657748275091896,0.3896582004237876,0.19783445916352105,-0.001963985142528285,-0.20168326124722155,-0.3932726891718978,-0.5690093029535332,-0.721809163246532,-0.845512910774043,-0.9351340499763579,-0.9870599545456251,-0.9991974923193212,-0.971057399395364,-0.9037740023501519,-0.8000594935571655,-0.6640946027671961,-0.5013600719770454,-0.318415726830018,-0.1226360501772954,0.07808708317665652,0.2756625277878933,0.4621260214816282,0.6299612246000951,0.7724027035015656,0.8837086450537412,0.959392309004678,0.996402888391977,0.9932484875094083,0.9500562601926824,0.8685672842510397,0.7520663786558253,0.6052496925543032,0.4340354035925375,0.2453251562941045,0.04672585690947901,-0.15375696082171675,-0.34804183857330695,-0.5282971568543925,-0.6872568274321214,-0.8185131892020139,-0.9167753008769665,-0.9780822187236236,-0.9999626621239932,-0.981534630847386,-0.9235409584616893,-0.8283193687273267,-0.6997082419996863,-0.5428918901950041,-0.36419157728143403,-0.17081070925670058,0.02945553500211404,0.22853442724087153,0.4184011013417144,0.5914020355133992,0.7405635656000512,0.8598729933418237,0.9445209581206545,0.9910953021890759,0.9977186146800748,0.9641239100011215,0.8916653900181117,0.7832638562054266,0.643288972197659,0.4773831227367993,0.292233969257885,0.09530487039124651,-0.10546596587246464,-0.3019854711859758,-0.4863319482662271,-0.6510743943523059,-0.7895720447758804,-0.8962420620507375,-0.9667845799389209,-0.9983560309716261,-0.9896837705965978,-0.941117377454079,-0.8546145618688864,-0.7336622505870701,-0.5831360288290088,-0.4091036055480227,-0.21858022420507295,-0.01924587844728413,0.18086426828129368,0.37368378001505953,0.5514401061375348,0.7069678927395332,0.8339978178898813,0.9274093078761972,0.9834369474272209,0.9998222635263109,0.9759047644130328,0.9126485639927191,0.8126035184243873,0.6798024414704922,0.519598541856116,0.33844963553307505,0.14365783124988474,-0.056924817304216356,-0.25521282762472386,-0.4432132140275275,-0.6133476847408562,-0.7587581226927562,-0.8735830360716824,-0.9531938349425528,-0.9943814096138099,-0.9954854897838447,-0.9564615700033058,-0.878882703688986,-0.7658760933722731,-0.6219970332284583,-0.45304528526069043,-0.26583129101085856,-0.06790164279932163,0.1327651192595343,0.32808012204740744,0.5101702217540309,0.671695370144412,0.8061444917553541,0.9080979452151627,0.9734459888778283,0.9995544444254784,0.985370880543319,0.9314670364044496,0.8400157748753491,0.7147034944579459,0.5605815306402512,0.38386253666525294,0.19167005160435163,-0.008248649358596857,-0.2078348474326788,-0.3990432270120791,-0.5741661821848619,-0.726144510171537,-0.8488519676458991,-0.9373422194801231,-0.9880482254132827,-0.9989260273721918,-0.9695371413799743,-0.9010662328363415,-0.7962733626792471,-0.6593827293843448,-0.4959123916097975,-0.31245183536384447,-0.11639635195652429,0.08435106604299997,0.28169829427721194,0.46769026996886537,0.6348296603413173,0.776379079950552,0.8866326745562906,0.9611461239907078,0.996915792614887,0.9924998058103514,0.9480761719158383,0.8654356067147044,0.7479093497181626,0.6002348819676769,0.4283649582702249,0.23922765177231212,0.04044708347210368,-0.1599639059444591,-0.3539267535491099,-0.5336228208796563,-0.6918085630977474,-0.8221075161354207,-0.9192673318321959,-0.9793714999832677,-0.9999972227866141,-0.980313077773347,-0.9211125324306879,-0.8247819595435361,-0.6952044425557284,-0.5376032485553357,-0.3583312784835398,-0.16461498182654638,0.035736941417183005,0.23464830927536165,0.4241010085345236,0.5964582047209174,0.7447721827437443,0.8630644091499532,0.9465665266864852,0.9919125666851091,0.9972746311910119,0.9624365754924223,0.8888027209096812,0.7793412466311023,0.6384645424700118,0.47185134552053287,0.28621783038065757,0.08904688028946865,-0.11171354774441446,-0.3079708049291318,-0.4918137651987467,-0.6558317225444374,-0.793413116424459,-0.8990120436353289,-0.9683718135578975,-0.9986965352699236,-0.9887638198528418,-0.9389740548641358,-0.851334264722988,-0.729377207596795,-0.5780189699905913,-0.40336079939970093,-0.21244316314660974,-0.012961947285526012,0.1870417644082412,0.37950582636331465,0.5566720161366026,0.7113987682032131,0.8374490503178871,0.9297417781591885,0.9845566337352851,0.999684031327025,0.9745141858435539,0.910061693247046,0.8089246322099352,0.6751798356162203,0.5142185535102932,0.3325291319171566,0.13743546774483276,-0.06319821735141648,-0.26128438358510525,-0.44883818160317906,-0.618299321602619,-0.762836828458924,-0.8766243981953488,-0.9550752561780522,-0.9950270499092082,-0.994869323391898,-0.9546084345788433,-0.8758672990833981,-0.7618199704842351,-0.6170636942895155,-0.44743359306365027,-0.25976745275463664,-0.06163009168133101,0.13899157714062602,0.3340104983003995,0.5155654630321601,0.6763379943809246,0.8098473548612148,0.9107117848534984,0.9748654412256766,0.9997222913874751,0.984280356211794,0.929162099793141,0.8365893379324895,0.7102936767872359,0.5553660919028385,0.3780517110911133,0.18549807345480254,-0.014532987769230881,-0.21397822455022225,-0.4047980034292289,-0.5793003829806848,-0.7304511758157515,-0.8521574965336983,-0.9395133658088373,-0.9889974703183324,-0.9986151068106672,-0.9679785885534071,-0.8983228729776416,-0.7924557805688094,-0.6546448116797963,-0.49044512367794096,-0.30647560266438895,-0.11015205630866173,0.09061171720805124,0.28772293423754486,0.4732360456098199,0.639673021558898,0.780324790952079,0.889521683811071,0.9628619755942518,0.9973893206237167,0.9917119223200117,0.946058636493883,0.862269746173169,0.7437227798314191,0.595196363283149,0.4226775933741365,0.23312069822866965,0.03416671245444169,-0.16616453280737217,-0.35979768911389354,-0.5389274078523791,-0.6963329736850818,-0.8256693714380312,-0.921723053534905,-0.9806220979939281,-0.9999922855247199,-0.979052804259826,-0.91864772426537,-0.821211973093692,-0.6906731839030077,-0.5322933726441648,-0.3524568263045497,-0.1584127524282086,0.042016936293190456,0.24075292316290484,0.4297841645711895,0.601490815001861,0.7489513828503707,0.8662217356105253,0.9485747077352633,0.9926906525846505,0.99679125731445,0.9607112266309751,0.8859049458409747,0.7753878546095576,0.6336148946480247,0.46630093110379167,0.28019038646177447,0.08278537301096689,-0.1179567171508338,-0.31394397443102023,-0.4972761564543438,-0.6605631466727564,-0.7972228498146228,-0.9017465160114663,-0.9699207983938237,-0.9989975930183063,-0.9878048148819041,-0.9367936446448518,-0.8480203415472453,-0.7250633556406226,-0.5728790805391235,-0.39760206129272574,-0.2062977110006971,-0.006677504152330586,0.1932118727531795,0.38531288297745736,0.5618819386853335,0.7158015448139213,0.8408672051546549,0.9320375254696199,0.9856374319917489,0.9995063135736753,0.973085115879425,0.9074388768534803,0.8052137950626872,0.6705305614856105,0.5088182545424529,0.32659549405421,0.1312076758089742,-0.06946912119326569,-0.267345619325843,-0.45444542095297913,-0.6232265368566255,-0.7668854036699451,-0.879631135378486,-0.9569189538184106,-0.9956333885921498,-0.9942138616173822,-0.9527175939977381,-0.872817299441268,-0.7577337572049414,-0.6121059825476661,-0.44180422811924486,-0.2536933541948022,-0.055356106295870816,0.145212545127649,0.33992768179530347,0.520940340487885,0.6809539045961979,0.8135182305885489,0.9132896531666008,0.976246388305007,0.9998506512842068,0.9831509547410877,0.9268204631054286,0.833129857355272,0.7058558039126713,0.5501287172965289,0.3722259532175561,0.17931876849600234,-0.02081675215528987,-0.22011314994853232,-0.4105367911209913,-0.5844117025501632,-0.7347289900745225,-0.8554293668755477,-0.9416474032064885,-0.9899076517674664,-0.998264742915486,-0.9663818024754353,-0.8955440311313736,-0.7886068980128413,-0.649881036792081,-0.4849584841279226,-0.300487264781095,-0.10390340987111088,0.09686878938839645,0.2937362097077003,0.4787631293572558,0.6444911169495905,0.7842396806583185,0.8923755587080129,0.964539796042545,0.99782345371504,0.9908848681582383,0.9440037336155394,0.8590698276717665,0.7395068343568755,0.5901343355123028,0.4169735335440054,0.22700453687559036,0.027884991918802355,-0.17235859649788404,-0.365654413377244,-0.5442107082520176,-0.7008298804888006,-0.8291986144235631,-0.9241423689889139,-0.9818339633594154,-0.9999478505333241,-0.9777538600851496,-0.9161466313208125,-0.8176095503852414,-0.6861146450171504,-0.5269624721911517,-0.3465684527737769,-0.1522042660375562,0.048295271582937734,0.24684802778325288,0.4354503449782205,0.6064996675780169,0.7531010008496558,0.8693448480152884,0.950545421947785,0.9934295291548367,0.996268512142707,0.9589479315645986,0.882972179268411,0.771403836292006,0.6287402202832532,0.46073209871680987,0.27415187557342174,0.0765205958729699,-0.12419522749880389,-0.3199047437630667,-0.5027189062791919,-0.6652684798553105,-0.8010010944693919,-0.9044453711728659,-0.9714314732649064,-0.9992591923255847,-0.9868067935625959,-0.9345762329181444,-0.8446729232349751,-0.7207208651072251,-0.5677165634901346,-0.39182761868593186,-0.200144110500738,-0.00039279727097470894,0.19937434960895817,0.39110472049016687,0.5670696680020286,0.7201760486708145,0.8442521473897878,0.9342964591299859,0.9866792995072059,0.9992891172857562,0.9716176109661006,0.9047802184081137,0.8014711535534159,0.6658548027159448,0.5033978582538978,0.32064895631126666,0.12497470142784799,-0.0757372811413895,-0.2733962954402855,-0.4600347106019961,-0.6281291358875589,-0.7709036884150573,-0.8826031288610074,-0.9587248550411954,-0.9962004017134487,-0.9935191303497487,-0.9507891229445133,-0.8697328252316486,-0.753617614931784,-0.6071240938227782,-0.43615741277632325,-0.24760923524606243,-0.04907993445303045,0.1514277775045969,0.3458314388150031,0.5262946418243288,0.6855429184708524,0.8171569739449812,0.9158314483337393,0.9775887755710951,0.9999395190457083,0.981982720740338,0.9244422188313585,0.8296374697864479,0.7013900511213276,0.544869613687324,0.36638549315056507,0.1731323807983497,-0.027099694320687075,-0.22623938131011578,-0.4162593634165337,-0.5894999390062218,-0.738977783982509,-0.8586674494389354,-0.9437442473827947,-0.9907787338103067,-0.9978749495253388,-0.9647468462160033,-0.8927298170563279,-0.7847268670346378,-0.6450915928809423,-0.4794526896709973,-0.29448705824153726,-0.09765065945312244,0.10312203544198457,0.2997378831749961,0.484271302902119,0.649283756208098,0.788123594438823,0.8951941865246092,0.9661795190649449,0.9982181747414536,0.9900186759920448,0.9419115444454315,0.855835977600858,0.7352616798160905,0.5850489985952844,0.41125300407898197,0.22087940928954783,0.02160216998092524,-0.17854585236265513,-0.37149669501006616,-0.5494725133984844,-0.7052991058898347,-0.8326951056938561,-0.9265251826360181,-0.98300704821343,-0.99986391956752,-0.9764162965550591,-0.9136093523852702,-0.8139748337067999,-0.6815290059515726,-0.5216107577564931,-0.3406663904704005,-0.14598976787759704,0.05457169930439587,0.25293338239163216,0.441099325952629,0.6114845646095549,0.7572208728398463,0.8724336230075683,0.952478591484713,0.9941291672114958,0.9957064163231895,0.957146759940016,0.8800045370305649,0.7673893490393393,0.623840711915752,0.4551450683176316,0.2681025362250314,0.07025279632185938,-0.1304288323794296,-0.3258528774866003,-0.5081417996955923,-0.6699475362406888,-0.8047477011555301,-0.9071085025200544,-0.9729037785024258,-0.9994813228590965,-0.9857697953147976,-0.9323219072674179,-0.8412921420026872,-0.7163499075165308,-0.5625316227528997,-0.3860376996584509,-0.19398260470185555,0.005891925125228202,0.20552895156985546,0.396881110135247,0.5722349991815779,0.7245221069895005,0.8476037433246544,0.9365184899168475,0.9876821951299372,0.9990324510420975,0.9701117290671704,0.9020858229227284,0.7976968555091037,0.6611527439905028,0.4979575787394072,0.31468975356487766,0.11873679079168947,-0.08200244961579187,-0.27943617293849793,-0.4656058297841638,-0.6330069250523952,-0.7748915239799123,-0.8855402612549518,-0.9604928885168229,-0.9967280668772014,-0.992785157029517,-0.9488230975899845,-0.8666139982850832,-0.7494717062442912,-0.6021182248896632,-0.43049337007299115,-0.24151533621927834,-0.042801824049386934,0.15763702878200866,0.3517215361727018,0.5316281555570057,0.6901048547477692,0.820763441207302,0.9183370699590016,0.978892550002283,0.9999888911618813,0.9807757003524914,0.9220274609069044,0.8261123131684607,0.6968965948017504,0.539588988799585,0.3605305615768317,0.16693915471199752,-0.033381566101430935,-0.23235667666075321,-0.42196549428549995,-0.5945648913735231,-0.7431973897207037,-0.8618716163260963,-0.9458038155165328,-0.9916106820408249,-0.9974457420362988,-0.9630737843526034,-0.8898803419084864,-0.7808158408877951,-0.6402766691199999,-0.4739279577753336,-0.2884752200422004,-0.09139405202604636,0.10937120837788906,0.30572771758512846,0.489760348682605,0.6540507500345911,0.791976378886633,0.8979774559306022,0.9677810798956819,0.9985734681122527,0.989113380034319,0.9397821516209189,0.8525683236912286,0.7309874838844097,0.5799405533929052,0.4055162309287347,0.214745557401041,0.015318494799672283,-0.18472605601724165,-0.3773243032537201,-0.5547126154608197,-0.709740473362747,-0.8361587071443782,-0.9288714003597627,-0.984141306221426,-0.9997404959424159,-0.9750401665007129,-0.9110359876762734,-0.8103079666225309,-0.6769164478300029,-0.5162384407221728,-0.3347508725142793,-0.13976950340879202,0.06084597155100802,0.2590087466287441,0.4467308843707713,0.6164453092028414,0.7613108360940972,0.8754879385867612,0.954374139989613,0.9947895391202997,0.9951049920575776,0.9553077828999658,0.877002136343351,0.7633445514159122,0.6189165630664702,0.44954006058297463,0.2620426073533715,0.06398222192339643,-0.13665728557757206,-0.3317881406620317,-0.513544622509805,-0.6746001310152684,-0.8084625218894379,-0.9097358048645786,-0.9743376559532195,-0.9996639758451312,-0.9846938610979012,-0.930030756734104,-0.8378781313845944,-0.7119506555125953,-0.5573244631223854,-0.3802325329007027,-0.18781343697141653,0.012176414801970957,0.21167543554106852,0.40264182375666197,0.5773777282035536,0.7288395481092191,0.8509218605779392,0.9387035300643565,0.9886460792475371,0.9987363249805111,0.9685675296619485,0.8993557968206494,0.7938910500071039,0.6564245710313611,0.4924976308794367,0.3087181211919578,0.11249419028570634,-0.08826437915463405,-0.2854650132571923,-0.4711585584514513,-0.6378597116880509,-0.7788487528528445,-0.8884424165493632,-0.9622229844115181,-0.997216363241671,-0.9920119706471903,-0.9468195955882883,-0.8634609417891672,-0.7452961948977908,-0.5970885734703033,-0.424812323727801,-0.23541189781148214,-0.036522023057706056,0.16384005370666493,0.35759774122113247,0.5369406710226078,0.6946395332396175,0.8243374899271443,0.9208064190752587,0.9801576601020436,0.9999987656826221,0.979529941252506,0.9195762847102572,0.8225545267380672,0.6923756124366313,0.5342870512074007,0.3546613897546436,0.16073933485720165,-0.03966211937593496,-0.23846479437955082,-0.4276549583469377,-0.5996063595964052,-0.7473876406229749,-0.8650417409786715,-0.9478260262587698,-0.9924034635987015,-0.9969771374012175,-0.9613626829679228,-0.8869957182364006,-0.7768739740501577,-0.635436455689277,-0.46838450665698084,-0.28245198763863244,-0.08513383471357681,0.11561606136606352,0.3117054763514128,0.49523004989208436,0.6587919101420892,0.7957978818243368,0.9007252569923215,0.9693444152762178,0.9988893197940417,0.9881690160424715,0.9376156392488322,0.8492669950087841,0.7266844153839979,0.5748092016787087,0.3997634406845257,0.20860322348516164,0.00903421456798769,-0.1908989633556236,-0.38313700792913596,-0.5599308074652932,-0.7141538074821628,-0.8395892819696121,-0.9311809294891596,-0.9852366925824422,-0.9995775845330025,-0.9736255242764872,-0.9084266388366693,-0.8066090939664761,-0.67227715283942,-0.5108457332842608,-0.3288221325568638,-0.1335437183193599,0.06711784050135434,0.26507388052952113,0.452344797797047,0.6213817054182167,0.7653707290669002,0.8785076741134058,0.9562319925921215,0.9954106187978562,0.9944642631009474,0.9534310730804261,0.8739650957957542,0.7592696031833625,0.6139679682296078,0.4439172968996262,0.2559723283138419,0.05770912035306995,-0.14288034108157383,-0.3377102988581329,-0.5189271613209498,-0.6792260804108897,-0.8121454099429992,-0.9123271744331608,-0.9757330489819468,-0.99980714406925,-0.9835790334092163,-0.9277028718141447,-0.8344310262274048,-0.707523282857313,-0.5520952902712668,-0.3744123477053624,-0.181636850979419,0.018460423534265316,0.21781355874881156,0.408386633817548,0.5824976519402689,0.7331282014995334,0.8542063680904652,0.9408514932676795,0.989570913788478,0.9984007507973945,0.9669850737433058,0.8965902479325973,0.7900538873692523,0.6516704705920567,0.4870182303311937,0.3027342950600055,0.10624714648034694,-0.09452282242400889,-0.2914825782690274,-0.47669267728187903,-0.6426873041188962,-0.7827752187310926,-0.8913094801148127,-0.9639150743898578,-0.9976652715201023,-0.9911996017421106,-0.9447786960738155,-0.8602737802834339,-0.741091245816604,-0.5920353382260425,-0.41911449813091556,-0.22929916109649287,-0.030240779517909044,0.17003660727114986,0.3634598218617472,0.5422319783872173,0.6991467748354186,0.8278789789365381,0.923239398148075,0.9813840559010149,0.9999691422179067,0.978245492645354,0.9170887870580837,0.8189642510208374,0.6878272825958863,0.5289640103269364,0.3487782095048098,0.1545331661147215,-0.04594110607469105,-0.24456349320774226,-0.4333275308781436,-0.6046241445467332,-0.7515483711826489,-0.868177698182969,-0.949810799736258,-0.9931570471706158,-0.9964691541290572,-0.9596136096471027,-0.8840760599770625,-0.772901422217757,-0.6305711437677387,-0.462822555271361,-0.27641759893679413,-0.07887025478205466,0.12185634774702794,0.317670923364129,0.5006801904881115,0.6635070492643271,0.7995879523100422,0.9034374811770268,0.9708694634578785,0.9991657173113154,0.9871856213170339,0.9354120929021734,0.8459321219495178,0.7223526442776875,0.5696551461310526,0.39399486057031924,0.20245265015202488,0.0027495775025870354,-0.1970643305604074,-0.38893457944584736,-0.5651268833035786,-0.7185389339300597,-0.8429866946687687,-0.9334536788023257,-0.9862931640308596,-0.9993751917739602,-0.9721724257579963,-0.9057814089306346,-0.802878361836872,-0.667611304222856,-0.5054328484440995,-0.32288040477142804,-0.12731265851563614,0.07338705842894047,0.27112854453309704,0.45794084449319494,0.6262935582776847,0.7694003914004228,0.8814927103138851,0.9580520759106746,0.9959923817127333,0.9937842547608402,0.9515167046077456,0.8708935353449058,0.7551646652939282,0.608995122864983,0.43827699935569875,0.24989193887053202,0.051433739385743416,-0.1490977530929129,-0.34361911816123736,-0.5242892035293245,-0.6838252017115511,-0.8157962198493388,-0.9148825088717714,-0.9770899024733262,-0.9999108218765895,-0.9824253562821881,-0.9253383444544424,-0.8309509626849959,-0.7030679644232005,-0.5468443107413277,-0.3685773739583631,-0.17545309068893034,0.024743703116119398,0.22394307874915986,0.41411531340914304,0.5875945681647496,0.7373878977670648,0.8574571361306426,0.9429622946866003,0.9904566622236045,0.9980257417472682,0.9653644238151404,0.8937892854921766,0.7861855191559693,0.6468906304502602,0.4815195935202284,0.2967385115185105,0.0999959061216244,-0.1007775322276469,-0.29748863029201467,-0.4822079676886321,-0.6474895116647637,-0.7866707665269337,-0.8941413387079253,-0.9655690916176143,-0.998074773981523,-0.9903480824012619,-0.9427004796580847,-0.8570526396544974,-0.7368570250880379,-0.5869587187497906,-0.41340011833530316,-0.22317736751539444,-0.023958341526768113,0.1762264447240917,0.36930754655382525,0.5475018686545949,0.70362640150799,0.8313877683538077,0.9256359110795357,0.9825716889589735,0.9999000219378035,0.9769224052642945,0.914565066201601,0.8153416278256411,0.6832517849296034,0.5236200764080043,0.34288125320126606,0.14832089361589698,-0.05221827819006778,-0.2506525322587126,-0.4389829878237683,-0.6096180480319668,-0.7556794170590481,-0.8712793640748436,-0.9517580575542461,-0.9938714029915134,-0.9959218122841643,-0.957826633475101,-0.8811214824513232,-0.7688983422985012,-0.6256809255255433,-0.4572423233046201,-0.270372292283177,-0.07260355963044776,0.1280918210418635,0.3236238229998468,0.5061105552008467,0.6681959811623399,0.8033464406434924,0.9061140213571677,0.9723561642042586,0.9994026497469006,0.9861632347001447,0.9331715996166473,0.8425638362343599,0.7179923416619224,0.564478590324895,0.3882107184335734,0.1962940803371866,-0.003535168165719878,-0.20322191411139676,-0.3947167888112932,-0.5703006377408424,-0.7228956795025635,-0.846350811050553,-0.9356895585301767,-0.9873106788381547,-0.9991333256594052,-0.9706809283397756,-0.9031004024394971,-0.7991159175902285,-0.6629190862721592,-0.5,-0.31692592384483925,-0.1210765701121081,0.07965337771191895,0.27717249949214573,0.4635188034260883,0.6311806737728125,0.7733996639310062,0.8844429292851369,0.959834318055559,0.9965348048864513,0.993064993896235,0.9495647530957155,0.8677875763114055,0.7510298998847937,0.6039982233901119,0.43261939073191474,0.2438016791868719,0.04515632688694592,-0.1553092760361626,-0.3495143651847174,-0.5296305373448026,-0.688397313261002,-0.8194148074087159,-0.9174017072497749,-0.9784081628343119,-0.9999750051720802,-0.981232875284853,-0.9229372680491318,-0.8274380782130721,-0.6985848761865776,-0.5415717319362019,-0.3627278421295794,-0.16926240034620105,0.03102600537034133,0.23006375343812274,0.4198276362599803,0.5926682755589274,0.7416184686621847,0.8606740362995239,0.9450358509485051,0.9913032895676127,0.9976113126422568,0.9637056438899386,0.8909530201320385,0.7822860981601168,0.6420852394001642,0.4760019376318857,0.2907310073891363,0.09374071612111791,-0.10702826151693265,-0.30348293209890564,-0.4877042118285813,-0.6522661446476523,-0.7905352423739666,-0.8969378804758256,-0.9671849707643584,-0.9984448544513695,-0.9894574462579668,-0.9405850284265808,-0.8537976471310806,-0.7325936999554871,-0.5818589155579348,-0.40766941004761686,-0.2170467588669991,-0.017674957228233954,0.18240932157876624,0.3751406843238549,0.5527501336743819,0.7080782363208838,0.8348637195884909,0.9279958632121394,0.983720512366737,0.9997914075724278,0.9755607313686387,0.9120052218228467,0.8116868002389004,0.6786493001609455,0.5182554605253277,0.33697075376225355,0.14210276273334246,-0.05849338778604282,-0.25673167102738914,-0.4446211058042658,-0.6145878728026847,-0.7597806150839395,-0.8743466161445901,-0.9536677227999376,-0.994546502845736,-0.9953351334854544,-0.9560018250339636,-0.8781321023590976,-0.7648648924062177,-0.6207659941167473,-0.45164403116500806,-0.26431630645550996,-0.0663339967810222,0.1343222349615696,0.3295639401306728,0.5115209295415589,0.6728585206326777,0.807073198371748,0.9087547718147225,0.9738044587936012,0.9996001077424398,0.9851018965740751,0.9308942478873563,0.8391622709040094,0.7136036797600841,0.559279738724119,0.3824112427365904,0.1901277572921104,-0.009819774201833645,-0.20937147079633273,-0.40048340763951146,-0.5754518664240594,-0.7272238721167884,-0.8496814982390832,-0.9378884803598353,-0.9882891968144816,-0.9988519957425765,-0.9691510909330406,-0.9003837252577972,-0.7953219098357347,-0.6582006843207625,-0.4945474025387957,-0.31095892496720845,-0.11483569942207181,0.085916550843123,0.28320550668232763,0.4690784542774837,0.6360428588720953,0.777368388695206,0.8873582144992823,0.9615786486317134,0.9970378668943501,0.9923065089165287,0.947575295642604,0.8646473413745295,0.7468654702709396,0.5989774671727508,0.4269446944925789,0.23770178981614698,0.03887713080194087,-0.1615146645683144,-0.3553958070778447,-0.5349509517951446,-0.692942234469824,-0.823001029693962,-0.9198846700637616,-0.9796877779961984,-0.999999691420608,-0.9800016375178305,-0.9204997374360346,-0.8238925115635936,-0.6940741952206169,-0.5362777621122281,-0.35686398326407864,-0.16306502447139248,0.03730708215827831,0.23617534106108198,0.42552337674442114,0.5977185737212822,0.7458197470856166,0.8638569415358762,0.947072080152061,0.9921107623803777,0.997157479851487,0.9620087994862467,0.8880815638790036,0.7783557784011976,0.6372544872453169,0.4704654806027827,0.28471201995648654,0.08748182354666251,-0.11327476340028361,-0.30946524692650224,-0.49318119261088766,-0.6570170144000945,-0.7943684936329523,-0.8996989949606674,-0.9687626480060405,-0.9987754983122027,-0.9885277284906107,-0.9384324259354259,-0.8505089312790228,-0.7283014388119139,-0.5767361300827791,-0.4019225996196264,-0.21090757729835902,-0.011390874803634548,0.18858499362387945,0.3809590047743017,0.5579765661505328,0.7125021034353767,0.838306695347453,0.9303191613323918,0.9848304807480622,0.9996433034118352,0.9741605247418421,0.909409355030668,0.8079999126191563,0.6740200100790605,0.512870374570742,0.3310469446409413,0.13587901907100425,-0.06476618700824947,-0.2628006693997407,-0.450241662125173,-0.6195334225605778,-0.7638518032681462,-0.8773793332417812,-0.9555397200452895,-0.99518232006816,-0.9947091409055924,-0.9541392564000556,-0.8751080377750526,-0.7608012318542895,-0.6158265436714796,-0.44602789997394604,-0.2582498806533284,-0.06006181386905921,0.14054734341704408,0.33549104013377745,0.5169110998110972,0.6774944835141494,0.8107680782951675,0.9113596282452122,0.9752142900211032,0.9997580834987276,0.9840016488596062,0.9285801276652168,0.8357275603135411,0.7091868319156907,0.5540587966730377,0.3765966625472597,0.18395392457431023,-0.01610399237617006,-0.21551275771975267,-0.4062342081603365,-0.5805803658897706,-0.7315233408175912,-0.8529786246787289,-0.9400503574381904,-0.9892286793103039,-0.9985312131354472,-0.967582973963362,-0.897631484688888,-0.7914964884292388,-0.6534562847361723,-0.48907527142736773,-0.30497964382332154,-0.10859029294771441,0.09217633043946268,0.2892273278116575,0.4746195774520451,0.6408799215287311,0.7813064089361957,0.8902384508083451,0.963284998741509,0.9975015478664795,0.991508829780387,0.9455484108280292,0.8614729545673848,0.7426715409391909,0.5939330525229518,0.42125313477709436,0.231592511692058,0.03259639914669343,-0.16771367358865713,-0.36126321153522606,-0.5402502367345461,-0.6974597858225637,-0.8265547450564195,-0.9223312992415815,-0.9809286974167283,-0.9999848796471146,-0.9787316916126042,-0.9180258488928437,-0.8203144027795084,-0.6895360996883955,-0.5309626103708607,-0.3509860289728182,-0.15686120784866903,0.04358668538987141,0.24227760022234057,0.43120230989202796,0.6027452631749646,0.7499915670952068,0.8670057261211997,0.9490709018701964,0.992879048768303,0.9966642613004657,0.9602739576261006,0.8851750301499779,0.7743947151191563,0.6323985647909323,0.46491044111197666,0.27868178695873264,0.08121947561208473,-0.11951679115315474,-0.31543533848524963,-0.4986386937055768,-0.6617419332720257,-0.7981703688979633,-0.9024245731038282,-0.9703020610274954,-0.999066692504236,-0.9875589658212276,-0.9362427572082083,-0.847186621996069,-0.7239804111931958,-0.571590564664176,-0.3961599140390466,-0.20476006529495383,-0.005106342461872471,0.1947532169324631,0.38676227809288705,0.5631809596491859,0.7168978281173692,0.8417165596398842,0.9326057136745612,0.9859015502613685,0.9994557153058459,0.9727218406893137,0.9067775683566479,0.8042811105912224,0.669364097531713,0.5074650312445566,0.325110059816025,0.12964990845458538,-0.07103642809338605,-0.26885928766220096,-0.45584443478550707,-0.6244545019661031,-0.7678928208076965,-0.8803773955800231,-0.9573739753500907,-0.995778829545268,-0.9940438592700542,-0.9522390011411391,-0.8720494081437946,-0.756707521149238,-0.610862769288323,-0.44039415155763245,-0.2521732544885877,-0.05378725863351734,0.1467669005286774,0.34140488890030185,0.5222808531082778,0.6821036866953346,0.8144309344733321,0.9139284877619284,0.9765856022012306,0.9998765707760322,0.9828625350143376,0.9262293303534286,0.8322598401273058,0.7047419725855945,0.5488159703886515,0.3707672075301276,0.1777728260381043,-0.022387574474401213,-0.22164553231289563,-0.41196896322856874,-0.5856859335723285,-0.7357939157844969,-0.856242060139477,-0.942175104375391,-0.9901290892179098,-0.9981709905083023,-0.9659766393682937,-0.8948437894408892,-0.7876398044674052,-0.6486860749128932,-0.48358382280419354,-0.29898831658302977,-0.10234059737018826,0.09843246925194936,0.29523772503016005,0.48014195408629984,0.645691670688351,0.7852135691099172,0.8930835244486232,0.9649533009874542,0.9979258294883472,0.9906719879945763,0.9434841787099768,0.8582645412720428,0.7384482775415118,0.5888651786850752,0.41554493639088164,0.22547408611895786,0.026314379997757393,-0.17390605824864575,-0.36711634680591965,-0.5455281828516154,-0.7019497888847781,-0.8300758131312805,-0.9247414981461674,-0.9821308720820106,-0.9999305704366367,-0.9774230877295406,-0.9155157001332431,-0.8167038931890798,-0.6849707688356741,-0.5256264866501448,-0.3450942114233191,-0.15065119551659178,0.04986456703307391,0.2483702898945959,0.4368642113960475,0.607748145375572,0.7541337639122229,0.8701202656846619,0.9510322371533825,0.9936081183856023,0.9961316764703563,0.9585011868323082,0.88223353374733,0.7704030647681255,0.6275176638364016,0.4593370385726632,0.272640546578285,0.07495391966788077,-0.1257540982276573,-0.3213929709682066,-0.5040764995520289,-0.6664407146384386,-0.8019407180024773,-0.905114507250329,-0.9718031490249661,-0.9993184255258711,-0.986551196514019,-0.9340161087325379,-0.8438308505069376,-0.7196307877714735,-0.5664224225418959,-0.39038158092068814,-0.19860446567148488,0.0011783915703153566,0.20091374787182195,0.39255027506184004,0.5683631086070287,0.7212652367444669,0.8450931777828481,0.9348554299243714,0.9869336786015154,0.9992286506638226,0.9712447360362605,0.9041099657512125,0.8005305410405065,0.6646817464183425,0.5020396440472618,0.31916033378284414,0.1234156769215842,-0.07730386337925568,-0.2749072865113809,-0.46142920248676184,-0.6293509166463974,-0.7719035080903415,-0.8833406847418076,-0.9591704162648442,-0.9963360077161015,-0.9933393148561644,-0.9503011343135801,-0.8689563342752129,-0.7525839219846296,-0.6058748670266582,-0.4347430084380551,-0.2460866679759531,-0.04751057890699393,0.15298066063631574,0.34730525284484526,0.5276299773385097,0.6866859481217683,0.8180616222305858,0.9164612488999445,0.9779183411698339,0.9999555648943383,0.9816846000310377,0.9238419488038885,0.8287592473134341,0.7002692773329113,0.5435514669522921,0.3649231079370898,0.17158470582473398,-0.028670272307513397,-0.22776955234322094,-0.41768744633259813,-0.5907683678117948,-0.740035428338146,-0.8594716757220099,-0.9442626372480875,-0.9909903909728696,-0.9977713420892274,-0.9643321505948621,-0.892020749622283,-0.7837520102815914,-0.643890243264836,-0.47807327357058765,-0.2929851798919813,-0.09608685954024618,0.10468472017533507,0.3012364609388994,0.4856453660571712,0.6504779162962734,0.7890897148911854,0.8958933230453008,0.9665834894749237,0.9983106950016634,0.9897960166126852,0.9413826808215577,0.8550222282144565,0.7341958468885045,0.5837740458302262,0.4098203247966137,0.2193467547626909,0.020031321482603486,-0.18009157396119643,-0.37295498170252933,-0.5507845816778563,-0.7064120663102633,-0.8335640948432783,-0.927115171579449,-0.9832942545085092,-0.9998367659342803,-0.9760758775559207,-0.9129693903031993,-0.8130611254003759,-0.6803783829840928,-0.5202696017165321,-0.3391887633308517,-0.1444352327585032,0.0561404791239019,0.25445316942870594,0.4425088576225004,0.6127270227191933,0.7582461739280336,0.8732004372081353,0.9529560085327312,0.9942979424354507,0.9955597463972186,0.9566905571258487,0.8792571908544157,0.7663809850104876,0.6226119771677674,0.45374549312328666,0.2665885374321408,0.06868540319119362,-0.13198643826254913,-0.3273379090606017,-0.5094943953677127,-0.6711131729067062,-0.8056793920250777,-0.9077686911530324,-0.9732658527084118,-0.9995306874341467,-0.9855044603739013,-0.9317525684566759,-0.8404417493580061,-0.7152527403482338,-0.5612319078473933,-0.38458782849723344,-0.1924410215620367,0.007463079058416121,0.20706634311309421,0.39832276706659975,0.5735228083393122,0.7256041568125694,0.8484364164065321,0.9370682212224295,0.9879268250014525,0.9989621184543723,0.9697292691253829,0.9014066525794208,0.796748352107057,0.6599731416826138,0.49659442727087716,0.3131980015438813,0.117176570711954,-0.08356824531442177,-0.28094442706315376,-0.46699574464153537,-0.6342224732026562,-0.7758837067017773,-0.8862690836830077,-0.9609289718337017,-0.9968538325732181,-0.9925955354920278,-0.9483257324593086,-0.8658289383395823,-0.7484305972345253,-0.6008630338987186,-0.4290746938243154,-0.23999036152368833,-0.04123202260606298,0.15918837830858687,0.35319189891457126,0.5329582612218468,0.691241086803086,0.821659998161899,0.9189578116202258,0.9792124542863436,0.9999950627335356,0.980467890435823,0.9214180773134266,0.8252259201384605,0.6957689228203564,0.5382654943015499,0.359064594598651,0.1653898083528458,-0.03495183772122919,-0.23388457592391418,-0.4233894316035835,-0.595827467862111,-0.7442477109471304,-0.8626673438629257,-0.9463128736028353,-0.9918125505554742,-0.9973322836635494,-0.962649572597157,-0.8891624767376216,-0.7798332594320637,-0.639068979217972,-0.4725438413824677,-0.2869704708623355,-0.08982932646823891,0.11093283625812528,0.3072232985995995,0.491129595990816,0.6552384693052054,0.7929346931799397,0.8986677356168566,0.9681754998146594,0.9986561292049934,0.9888809502338696,0.9392440001678292,0.8517461434596504,0.7299144169428636,0.5786598550481443,0.4040795261050794,0.21321075964080055,0.013747471769564928,-0.18626997641059795,-0.3787788856105722,-0.5560192255958479,-0.7108464418477874,-0.8370194524121073,-0.9294522257859675,-0.984418798744894,-0.9997034698451391,-0.9746901143039124,-0.9103870199769454,-0.8093862432954899,-0.6757591235238651,-0.5148921671563387,-0.33326991794900673,-0.13821356509258728,0.06241417377616491,0.2605259985628252,0.44813602561890026,0.6176816985499103,0.7623286347104862,0.8762461190308682,0.954842140023036,0.9949484936711545,0.9949484936711545,0.954842140023036,0.8762461190308682,0.7623286347104862,0.6176816985499103,0.44813602561890026,0.2605259985628252,0.06241417377616491,-0.13821356509258728,-0.33326991794900673,-0.5148921671563387,-0.6757591235238651,-0.8093862432954899,-0.9103870199769454,-0.9746901143039124,-0.9997034698451391,-0.984418798744894,-0.9294522257859675,-0.8370194524121073,-0.7108464418477874,-0.5560192255958479,-0.3787788856105722,-0.18626997641059795,0.013747471769564928,0.21321075964080055,0.4040795261050794,0.5786598550481443,0.7299144169428636,0.8517461434596504,0.9392440001678292,0.9888809502338696,0.9986561292049934,0.9681754998146594,0.8986677356168566,0.7929346931799397,0.6552384693052054,0.491129595990816,0.3072232985995995,0.11093283625812528,-0.08982932646823891,-0.2869704708623355,-0.4725438413824677,-0.639068979217972,-0.7798332594320637,-0.8891624767376216,-0.962649572597157,-0.9973322836635494,-0.9918125505554742,-0.9463128736028353,-0.8626673438629257,-0.7442477109471304,-0.595827467862111,-0.4233894316035835,-0.23388457592391418,-0.03495183772122919,0.1653898083528458,0.359064594598651,0.5382654943015499,0.6957689228203564,0.8252259201384605,0.9214180773134266,0.980467890435823,0.9999950627335356,0.9792124542863436,0.9189578116202258,0.821659998161899,0.691241086803086,0.5329582612218468,0.35319189891457126,0.15918837830858687,-0.04123202260606298,-0.23999036152368833,-0.4290746938243154,-0.6008630338987186,-0.7484305972345253,-0.8658289383395823,-0.9483257324593086,-0.9925955354920278,-0.9968538325732181,-0.9609289718337017,-0.8862690836830077,-0.7758837067017773,-0.6342224732026562,-0.46699574464153537,-0.28094442706315376,-0.08356824531442177,0.117176570711954,0.3131980015438813,0.49659442727087716,0.6599731416826138,0.796748352107057,0.9014066525794208,0.9697292691253829,0.9989621184543723,0.9879268250014525,0.9370682212224295,0.8484364164065321,0.7256041568125694,0.5735228083393122,0.39832276706659975,0.20706634311309421,0.007463079058416121,-0.1924410215620367,-0.38458782849723344,-0.5612319078473933,-0.7152527403482338,-0.8404417493580061,-0.9317525684566759,-0.9855044603739013,-0.9995306874341467,-0.9732658527084118,-0.9077686911530324,-0.8056793920250777,-0.6711131729067062,-0.5094943953677127,-0.3273379090606017,-0.13198643826254913,0.06868540319119362,0.2665885374321408,0.45374549312328666,0.6226119771677674,0.7663809850104876,0.8792571908544157,0.9566905571258487,0.9955597463972186,0.9942979424354507,0.9529560085327312,0.8732004372081353,0.7582461739280336,0.6127270227191933,0.4425088576225004,0.25445316942870594,0.0561404791239019,-0.1444352327585032,-0.3391887633308517,-0.5202696017165321,-0.6803783829840928,-0.8130611254003759,-0.9129693903031993,-0.9760758775559207,-0.9998367659342803,-0.9832942545085092,-0.927115171579449,-0.8335640948432783,-0.7064120663102633,-0.5507845816778563,-0.37295498170252933,-0.18009157396119643,0.020031321482603486,0.2193467547626909,0.4098203247966137,0.5837740458302262,0.7341958468885045,0.8550222282144565,0.9413826808215577,0.9897960166126852,0.9983106950016634,0.9665834894749237,0.8958933230453008,0.7890897148911854,0.6504779162962734,0.4856453660571712,0.3012364609388994,0.10468472017533507,-0.09608685954024618,-0.2929851798919813,-0.47807327357058765,-0.643890243264836,-0.7837520102815914,-0.892020749622283,-0.9643321505948621,-0.9977713420892274,-0.9909903909728696,-0.9442626372480875,-0.8594716757220099,-0.740035428338146,-0.5907683678117948,-0.41768744633259813,-0.22776955234322094,-0.028670272307513397,0.17158470582473398,0.3649231079370898,0.5435514669522921,0.7002692773329113,0.8287592473134341,0.9238419488038885,0.9816846000310377,0.9999555648943383,0.9779183411698339,0.9164612488999445,0.8180616222305858,0.6866859481217683,0.5276299773385097,0.34730525284484526,0.15298066063631574,-0.04751057890699393,-0.2460866679759531,-0.4347430084380551,-0.6058748670266582,-0.7525839219846296,-0.8689563342752129,-0.9503011343135801,-0.9933393148561644,-0.9963360077161015,-0.9591704162648442,-0.8833406847418076,-0.7719035080903415,-0.6293509166463974,-0.46142920248676184,-0.2749072865113809,-0.07730386337925568,0.1234156769215842,0.31916033378284414,0.5020396440472618,0.6646817464183425,0.8005305410405065,0.9041099657512125,0.9712447360362605,0.9992286506638226,0.9869336786015154,0.9348554299243714,0.8450931777828481,0.7212652367444669,0.5683631086070287,0.39255027506184004,0.20091374787182195,0.0011783915703153566,-0.19860446567148488,-0.39038158092068814,-0.5664224225418959,-0.7196307877714735,-0.8438308505069376,-0.9340161087325379,-0.986551196514019,-0.9993184255258711,-0.9718031490249661,-0.905114507250329,-0.8019407180024773,-0.6664407146384386,-0.5040764995520289,-0.3213929709682066,-0.1257540982276573,0.07495391966788077,0.272640546578285,0.4593370385726632,0.6275176638364016,0.7704030647681255,0.88223353374733,0.9585011868323082,0.9961316764703563,0.9936081183856023,0.9510322371533825,0.8701202656846619,0.7541337639122229,0.607748145375572,0.4368642113960475,0.2483702898945959,0.04986456703307391,-0.15065119551659178,-0.3450942114233191,-0.5256264866501448,-0.6849707688356741,-0.8167038931890798,-0.9155157001332431,-0.9774230877295406,-0.9999305704366367,-0.9821308720820106,-0.9247414981461674,-0.8300758131312805,-0.7019497888847781,-0.5455281828516154,-0.36711634680591965,-0.17390605824864575,0.026314379997757393,0.22547408611895786,0.41554493639088164,0.5888651786850752,0.7384482775415118,0.8582645412720428,0.9434841787099768,0.9906719879945763,0.9979258294883472,0.9649533009874542,0.8930835244486232,0.7852135691099172,0.645691670688351,0.48014195408629984,0.29523772503016005,0.09843246925194936,-0.10234059737018826,-0.29898831658302977,-0.48358382280419354,-0.6486860749128932,-0.7876398044674052,-0.8948437894408892,-0.9659766393682937,-0.9981709905083023,-0.9901290892179098,-0.942175104375391,-0.856242060139477,-0.7357939157844969,-0.5856859335723285,-0.41196896322856874,-0.22164553231289563,-0.022387574474401213,0.1777728260381043,0.3707672075301276,0.5488159703886515,0.7047419725855945,0.8322598401273058,0.9262293303534286,0.9828625350143376,0.9998765707760322,0.9765856022012306,0.9139284877619284,0.8144309344733321,0.6821036866953346,0.5222808531082778,0.34140488890030185,0.1467669005286774,-0.05378725863351734,-0.2521732544885877,-0.44039415155763245,-0.610862769288323,-0.756707521149238,-0.8720494081437946,-0.9522390011411391,-0.9940438592700542,-0.995778829545268,-0.9573739753500907,-0.8803773955800231,-0.7678928208076965,-0.6244545019661031,-0.45584443478550707,-0.26885928766220096,-0.07103642809338605,0.12964990845458538,0.325110059816025,0.5074650312445566,0.669364097531713,0.8042811105912224,0.9067775683566479,0.9727218406893137,0.9994557153058459,0.9859015502613685,0.9326057136745612,0.8417165596398842,0.7168978281173692,0.5631809596491859,0.38676227809288705,0.1947532169324631,-0.005106342461872471,-0.20476006529495383,-0.3961599140390466,-0.571590564664176,-0.7239804111931958,-0.847186621996069,-0.9362427572082083,-0.9875589658212276,-0.999066692504236,-0.9703020610274954,-0.9024245731038282,-0.7981703688979633,-0.6617419332720257,-0.4986386937055768,-0.31543533848524963,-0.11951679115315474,0.08121947561208473,0.27868178695873264,0.46491044111197666,0.6323985647909323,0.7743947151191563,0.8851750301499779,0.9602739576261006,0.9966642613004657,0.992879048768303,0.9490709018701964,0.8670057261211997,0.7499915670952068,0.6027452631749646,0.43120230989202796,0.24227760022234057,0.04358668538987141,-0.15686120784866903,-0.3509860289728182,-0.5309626103708607,-0.6895360996883955,-0.8203144027795084,-0.9180258488928437,-0.9787316916126042,-0.9999848796471146,-0.9809286974167283,-0.9223312992415815,-0.8265547450564195,-0.6974597858225637,-0.5402502367345461,-0.36126321153522606,-0.16771367358865713,0.03259639914669343,0.231592511692058,0.42125313477709436,0.5939330525229518,0.7426715409391909,0.8614729545673848,0.9455484108280292,0.991508829780387,0.9975015478664795,0.963284998741509,0.8902384508083451,0.7813064089361957,0.6408799215287311,0.4746195774520451,0.2892273278116575,0.09217633043946268,-0.10859029294771441,-0.30497964382332154,-0.48907527142736773,-0.6534562847361723,-0.7914964884292388,-0.897631484688888,-0.967582973963362,-0.9985312131354472,-0.9892286793103039,-0.9400503574381904,-0.8529786246787289,-0.7315233408175912,-0.5805803658897706,-0.4062342081603365,-0.21551275771975267,-0.01610399237617006,0.18395392457431023,0.3765966625472597,0.5540587966730377,0.7091868319156907,0.8357275603135411,0.9285801276652168,0.9840016488596062,0.9997580834987276,0.9752142900211032,0.9113596282452122,0.8107680782951675,0.6774944835141494,0.5169110998110972,0.33549104013377745,0.14054734341704408,-0.06006181386905921,-0.2582498806533284,-0.44602789997394604,-0.6158265436714796,-0.7608012318542895,-0.8751080377750526,-0.9541392564000556,-0.9947091409055924,-0.99518232006816,-0.9555397200452895,-0.8773793332417812,-0.7638518032681462,-0.6195334225605778,-0.450241662125173,-0.2628006693997407,-0.06476618700824947,0.13587901907100425,0.3310469446409413,0.512870374570742,0.6740200100790605,0.8079999126191563,0.909409355030668,0.9741605247418421,0.9996433034118352,0.9848304807480622,0.9303191613323918,0.838306695347453,0.7125021034353767,0.5579765661505328,0.3809590047743017,0.18858499362387945,-0.011390874803634548,-0.21090757729835902,-0.4019225996196264,-0.5767361300827791,-0.7283014388119139,-0.8505089312790228,-0.9384324259354259,-0.9885277284906107,-0.9987754983122027,-0.9687626480060405,-0.8996989949606674,-0.7943684936329523,-0.6570170144000945,-0.49318119261088766,-0.30946524692650224,-0.11327476340028361,0.08748182354666251,0.28471201995648654,0.4704654806027827,0.6372544872453169,0.7783557784011976,0.8880815638790036,0.9620087994862467,0.997157479851487,0.9921107623803777,0.947072080152061,0.8638569415358762,0.7458197470856166,0.5977185737212822,0.42552337674442114,0.23617534106108198,0.03730708215827831,-0.16306502447139248,-0.35686398326407864,-0.5362777621122281,-0.6940741952206169,-0.8238925115635936,-0.9204997374360346,-0.9800016375178305,-0.999999691420608,-0.9796877779961984,-0.9198846700637616,-0.823001029693962,-0.692942234469824,-0.5349509517951446,-0.3553958070778447,-0.1615146645683144,0.03887713080194087,0.23770178981614698,0.4269446944925789,0.5989774671727508,0.7468654702709396,0.8646473413745295,0.947575295642604,0.9923065089165287,0.9970378668943501,0.9615786486317134,0.8873582144992823,0.777368388695206,0.6360428588720953,0.4690784542774837,0.28320550668232763,0.085916550843123,-0.11483569942207181,-0.31095892496720845,-0.4945474025387957,-0.6582006843207625,-0.7953219098357347,-0.9003837252577972,-0.9691510909330406,-0.9988519957425765,-0.9882891968144816,-0.9378884803598353,-0.8496814982390832,-0.7272238721167884,-0.5754518664240594,-0.40048340763951146,-0.20937147079633273,-0.009819774201833645,0.1901277572921104,0.3824112427365904,0.559279738724119,0.7136036797600841,0.8391622709040094,0.9308942478873563,0.9851018965740751,0.9996001077424398,0.9738044587936012,0.9087547718147225,0.807073198371748,0.6728585206326777,0.5115209295415589,0.3295639401306728,0.1343222349615696,-0.0663339967810222,-0.26431630645550996,-0.45164403116500806,-0.6207659941167473,-0.7648648924062177,-0.8781321023590976,-0.9560018250339636,-0.9953351334854544,-0.9945465028457326,-0.9536677227999376,-0.8743466161445747,-0.7597806150839601,-0.6145878728026847,-0.4446211058042942,-0.25673167102738914,-0.05849338778607451,0.14210276273334246,0.33697075376228347,0.5182554605253277,0.6786493001609688,0.8116868002389004,0.9120052218228597,0.9755607313686387,0.9997914075724285,0.9837205123667426,0.9279958632121394,0.8348637195885084,0.7080782363208838,0.5527501336744084,0.3751406843238549,0.18240932157879747,-0.017674957228233954,-0.21704675886703007,-0.40766941004761686,-0.5818589155579607,-0.7325936999554871,-0.8537976471310972,-0.94058502842657,-0.9894574462579668,-0.9984448544513713,-0.9671849707643584,-0.8969378804758396,-0.7905352423739666,-0.6522661446476764,-0.4877042118285813,-0.3034829320988754,-0.10702826151693265,0.09374071612114952,0.2907310073891363,0.4760019376319136,0.6420852394001398,0.7822860981601168,0.890953020132024,0.9637056438899386,0.9976113126422546,0.9913032895676127,0.9450358509485154,0.8606740362995239,0.7416184686621634,0.5926682755589274,0.4198276362599515,0.23006375343812274,0.031026005370309598,-0.16926240034620105,-0.3627278421295794,-0.5415717319361752,-0.6985848761865776,-0.8274380782130544,-0.9229372680491318,-0.9812328752848468,-0.9999750051720802,-0.9784081628343053,-0.9174017072497749,-0.8194148074086977,-0.688397313261002,-0.5296305373447757,-0.3495143651847174,-0.1553092760361626,0.045156326886914205,0.2438016791868719,0.4326193907318861,0.6039982233901119,0.7510298998847728,0.8677875763114055,0.9495647530957255,0.993064993896235,0.9965348048864486,0.959834318055559,0.8844429292851221,0.7733996639310062,0.6311806737728125,0.46351880342611645,0.27717249949214573,0.0796533777119506,-0.1210765701121081,-0.3169259238448091,-0.5,-0.662919086272183,-0.7991159175902285,-0.9031004024395107,-0.9706809283397756,-0.9991333256594065,-0.9873106788381547,-0.9356895585301767,-0.8463508110505699,-0.7228956795025635,-0.5703006377408685,-0.3947167888112932,-0.20322191411142784,-0.003535168165719878,0.19629408033721774,0.3882107184335734,0.5644785903249212,0.7179923416619224,0.842563836234377,0.9331715996166473,0.9861632347001447,0.9994026497469017,0.9723561642042586,0.9061140213571811,0.8033464406434924,0.6681959811623636,0.5061105552008467,0.3236238229998168,0.1280918210418635,-0.07260355963047943,-0.270372292283177,-0.45724232330464837,-0.6256809255255433,-0.7688983422985012,-0.8811214824513082,-0.957826633475101,-0.9959218122841614,-0.9938714029915134,-0.9517580575542558,-0.8712793640748436,-0.7556794170590272,-0.6096180480319668,-0.4389829878237398,-0.2506525322587126,-0.05221827819003608,0.14832089361589698,0.34288125320129587,0.5236200764079773,0.6832517849296034,0.8153416278256228,0.914565066201601,0.9769224052642878,0.9999000219378035,0.9825716889589676,0.9256359110795357,0.83138776835379,0.70362640150799,0.5475018686545684,0.36930754655382525,0.17622644472406046,-0.023958341526736374,-0.22317736751539444,-0.41340011833527424,-0.5869587187497906,-0.7368570250880163,-0.8570526396544974,-0.9427004796580953,-0.9903480824012619,-0.9980747739815211,-0.9655690916176143,-0.8941413387079111,-0.7866707665269337,-0.6474895116647394,-0.4822079676886599,-0.29748863029201467,-0.10077753222767849,0.0999959061216244,0.2967385115184802,0.4815195935202284,0.646890630450236,0.7861855191559693,0.8937892854921908,0.9653644238151404,0.9980257417472702,0.9904566622236045,0.9429622946865897,0.8574571361306589,0.7373878977670648,0.5875945681647754,0.41411531340914304,0.2239430787491908,0.024743703116119398,-0.17545309068889908,-0.3685773739583631,-0.5468443107413542,-0.7030679644232005,-0.8309509626850136,-0.9253383444544424,-0.9824253562821941,-0.99991082187659,-0.9770899024733262,-0.9148825088717841,-0.8157962198493388,-0.6838252017115742,-0.5242892035293245,-0.34361911816126717,-0.1490977530929129,0.05143373938577512,0.24989193887053202,0.4382769993557273,0.608995122864983,0.755164665293949,0.8708935353449058,0.9515167046077456,0.9937842547608366,0.9959923817127333,0.9580520759106838,0.8814927103138851,0.7694003914004431,0.6262935582776847,0.45794084449316674,0.27112854453309704,0.0733870584289088,-0.12731265851563614,-0.3228804047714581,-0.5054328484440995,-0.667611304222856,-0.802878361836853,-0.9057814089306346,-0.9721724257579889,-0.9993751917739602,-0.9862931640308649,-0.9334536788023257,-0.8429866946687516,-0.7185389339300597,-0.5651268833035524,-0.38893457944584736,-0.19706433056037626,0.0027495775025870354,0.20245265015202488,0.39399486057029004,0.5696551461310526,0.7223526442776657,0.8459321219495178,0.9354120929021622,0.9871856213170339,0.9991657173113141,0.9708694634578785,0.9034374811770133,0.7995879523100422,0.6635070492643034,0.5006801904881115,0.317670923364129,0.12185634774705946,-0.07887025478205466,-0.27641759893676365,-0.462822555271361,-0.6305711437677141,-0.772901422217757,-0.8840760599770774,-0.9596136096471027,-0.9964691541290599,-0.9931570471706158,-0.9498107997362482,-0.868177698182969,-0.7515483711826489,-0.6046241445467585,-0.4333275308781436,-0.24456349320777304,-0.04594110607469105,0.15453316611469015,0.3487782095048098,0.5289640103269633,0.6878272825958863,0.8189642510208556,0.9170887870580837,0.9782454926453605,0.9999691422179067,0.9813840559010087,0.9232393981480628,0.8278789789365737,0.6991467748354414,0.5422319783872173,0.3634598218617176,0.17003660727121245,-0.03024077951787731,-0.22929916109649287,-0.4191144981309444,-0.5920353382260937,-0.7410912458165828,-0.8602737802834339,-0.9447786960738259,-0.9911996017421149,-0.9976652715201066,-0.9639150743898662,-0.8913094801148127,-0.7827752187310728,-0.6426873041189448,-0.47669267728190695,-0.2914825782690274,-0.09452282242397729,0.10624714648041009,0.30273429505997523,0.4870182303311937,0.6516704705920808,0.7900538873692717,0.8965902479325693,0.9669850737432978,0.9984007507973945,0.9895709137884734,0.940851493267701,0.8542063680904818,0.7331282014995334,0.5824976519402432,0.40838663381749,0.21781355874884253,0.018460423534265316,-0.18163685097945023,-0.3744123477053919,-0.5520952902712138,-0.7075232828572906,-0.8344310262274048,-0.9277028718141566,-0.9835790334092048,-0.9998071440692506,-0.9757330489819468,-0.9123271744331478,-0.8121454099429621,-0.679226080410913,-0.5189271613209498,-0.33771029885810305,-0.1428803410815424,0.05770912035300656,0.2559723283138112,0.4439172968996262,0.6139679682296328,0.759269603183321,0.8739650957957388,0.9534310730804261,0.9944642631009507,0.9954106187978501,0.9562319925921309,0.8785076741134058,0.7653707290668798,0.621381705418167,0.4523447977971037,0.2650738805295518,0.06711784050135434,-0.13354371831939135,-0.32882213255680387,-0.5108457332842334,-0.67227715283942,-0.8066090939664948,-0.9084266388366958,-0.9736255242764799,-0.9995775845330025,-0.9852366925824367,-0.9311809294891366,-0.8395892819696467,-0.7141538074821849,-0.5599308074652932,-0.38313700792910665,-0.1908989633556859,0.009034214567955945,0.20860322348516164,0.3997634406845548,0.5748092016787607,0.726684415383976,0.8492669950087841,0.9376156392488432,0.9881690160424813,0.9988893197940447,0.9693444152762256,0.9007252569923215,0.7957978818243174,0.6587919101421369,0.49523004989211195,0.3117054763514128,0.11561606136603197,-0.08513383471364008,-0.28245198763860196,-0.46838450665698084,-0.6354364556893015,-0.7768739740501976,-0.8869957182363712,-0.961362682967914,-0.9969771374012175,-0.9924034635986976,-0.94782602625879,-0.8650417409786875,-0.7473876406229749,-0.5996063595963798,-0.4276549583468803,-0.23846479437958165,-0.03966211937593496,0.160739334857233,0.354661389754703,0.5342870512073471,0.6923756124366084,0.8225545267380672,0.9195762847102698,0.9795299412524933,0.9999987656826221,0.9801576601020436,0.9208064190752463,0.8243374899271083,0.6946395332396403,0.5369406710226078,0.3575977412211028,0.1638400537066023,-0.03652202305767433,-0.23541189781145128,-0.424812323727801,-0.5970885734703288,-0.7452961948977485,-0.8634609417891512,-0.9468195955882883,-0.9920119706471943,-0.9972163632416662,-0.9622229844115268,-0.8884424165493632,-0.7788487528528246,-0.637859711688002,-0.4711585584514793,-0.28546501325722273,-0.08826437915463405,0.11249419028573789,0.3087181211918974,0.49249763087940907,0.6564245710313611,0.7938910500071232,0.8993557968206771,0.9685675296619406,0.9987363249805111,0.9886460792475323,0.9387035300643346,0.8509218605779558,0.7288395481092409,0.5773777282035536,0.4026418237566329,0.21167543554113058,0.012176414802002702,-0.18781343697141653,-0.38023253290073206,-0.5573244631224381,-0.7119506555125731,-0.8378781313845944,-0.9300307567341156,-0.9846938610979122,-0.999663975845132,-0.9743376559532266,-0.9097358048645786,-0.8084625218894192,-0.6746001310153152,-0.5135446225098323,-0.3317881406620317,-0.13665728557754062,0.0639822219234598,0.26204260735334084,0.44954006058297463,0.6189165630664952,0.7633445514159533,0.8770021363433358,0.9553077828999564,0.9951049920575776,0.9947895391202964,0.9543741399896319,0.8754879385867765,0.7613108360940972,0.6164453092028164,0.4467308843707145,0.25900874662877477,0.06084597155100802,-0.13976950340882344,-0.33475087251433916,-0.5162384407221456,-0.6769164478300029,-0.8103079666225309,-0.9110359876762865,-0.9750401665006988,-0.9997404959424151,-0.984141306221426,-0.9288714003597509,-0.8361587071443434,-0.7097404733627695,-0.5547126154608197,-0.37732430325369065,-0.18472605601717926,0.01531849479964054,0.214745557401041,0.4055162309287347,0.579940553392931,0.7309874838843664,0.852568323691212,0.9397821516209189,0.9891133800343237,0.9985734681122492,0.9677810798956898,0.8979774559306022,0.7919763788866137,0.6540507500345432,0.4897603486826327,0.30572771758512846,0.10937120837788906,-0.09139405202607798,-0.2884752200421396,-0.4739279577753056,-0.6402766691199999,-0.7808158408878149,-0.8898803419084574,-0.9630737843525948,-0.9974457420362988,-0.9916106820408208,-0.9458038155165123,-0.8618716163261124,-0.7431973897207037,-0.5945648913735231,-0.42196549428547114,-0.23235667666081497,-0.033381566101462666,0.16693915471199752,0.3605305615768613,0.5395889887995315,0.6968965948017276,0.8261123131684607,0.9220274609069167,0.9807757003525037,0.9999888911618815,0.978892550002283,0.9183370699590016,0.820763441207284,0.6901048547478151,0.5316281555570326,0.3517215361727018,0.15763702878197733,-0.0428018240493235,-0.24151533621924753,-0.43049337007299115,-0.6021182248896886,-0.7494717062443332,-0.8666139982850675,-0.9488230975899845,-0.9927851570295207,-0.9967280668771988,-0.9604928885168407,-0.8855402612549665,-0.7748915239799123,-0.6330069250523707,-0.46560582978422,-0.2794361729385284,-0.08200244961579187,0.11873679079172099,0.31468975356493795,0.4979575787393797,0.6611527439905028,0.797696855509123,0.9020858229227421,0.9701117290671549,0.9990324510420961,0.9876821951299372,0.9365184899168363,0.8476037433246881,0.7245221069895224,0.5722349991815779,0.3968811101352179,0.20552895156979334,0.005891925125259948,-0.19398260470185555,-0.38603769965848017,-0.5625316227529259,-0.7163499075164864,-0.8412921420026701,-0.9323219072674179,-0.9857697953148029,-0.9994813228590985,-0.9729037785024331,-0.9071085025200544,-0.8047477011555112,-0.6699475362406416,-0.5081417996956197,-0.3258528774866003,-0.13042883237939812,0.07025279632189105,0.2681025362249702,0.4551450683176033,0.623840711915752,0.7673893490393596,0.8800045370305347,0.9571467599400068,0.9957064163231895,0.9941291672114924,0.9524785914846937,0.8724336230075839,0.7572208728398463,0.6114845646095297,0.44109932595260054,0.2529333823916936,0.054571699304427575,-0.14598976787759704,-0.34066639047043035,-0.521610757756439,-0.6815290059515493,-0.8139748337067999,-0.9136093523852832,-0.9764162965550729,-0.9998639195675194,-0.98300704821343,-0.9265251826360063,-0.8326951056938209,-0.7052991058898798,-0.5494725133985109,-0.37149669501006616,-0.1785458523626239,0.02160216998086176,0.22087940928951685,0.41125300407898197,0.5850489985953101,0.7352616798161334,0.8558359776008416,0.9419115444454315,0.9900186759920493,0.9982181747414498,0.9661795190649612,0.8951941865246235,0.788123594438823,0.6492837562080739,0.4842713029021745,0.2997378831750264,0.10312203544198457,-0.09765065945315404,-0.29448705824159793,-0.47945268967096943,-0.6450915928809423,-0.7847268670346574,-0.8927298170563566,-0.9647468462159866,-0.9978749495253368,-0.9907787338103067,-0.9437442473827843,-0.8586674494389679,-0.7389777839825303,-0.5894999390062218,-0.4162593634165048,-0.22623938131005394,-0.02709969432071881,0.1731323807983497,0.3663854931505946,0.5448696136873773,0.7013900511212823,0.8296374697864302,0.9244422188313585,0.981982720740344,0.999939519045709,0.9775887755711018,0.9158314483337393,0.8171569739449629,0.6855429184708062,0.5262946418243558,0.3458314388150031,0.15142777750456554,-0.04907993445309387,-0.24760923524600092,-0.4361574127762947,-0.6071240938227782,-0.7536176149318049,-0.8697328252316173,-0.9507891229445035,-0.9935191303497487,-0.9962004017134459,-0.9587248550411773,-0.8826031288610223,-0.7709036884150573,-0.6281291358875343,-0.46003471060193973,-0.273396295440316,-0.07573728114142116,0.12497470142784799,0.3206489563112967,0.503397858253843,0.6658548027159211,0.8014711535534159,0.9047802184081273,0.9716176109661155,0.999289117285755,0.9866792995072059,0.9342964591299746,0.8442521473897537,0.7201760486708366,0.5670696680020548,0.39110472049016687,0.19937434960892705,-0.0003927972709112142,-0.2001441105007069,-0.39182761868593186,-0.5677165634901608,-0.7207208651072692,-0.8446729232349581,-0.9345762329181444,-0.986806793562601,-0.9992591923255822,-0.971431473264914,-0.9044453711728795,-0.8010010944693919,-0.6652684798552868,-0.5027189062792469,-0.3199047437630968,-0.12419522749880389,0.07652059587300154,0.2741518755734828,0.4607320987167817,0.6287402202832532,0.7714038362920262,0.8829721792684407,0.9589479315645896,0.9962685121427042,0.9934295291548367,0.9505454219477751,0.8693448480153197,0.7531010008496768,0.6064996675780169,0.4354503449781919,0.24684802778319137,0.048295271582969444,-0.1522042660375562,-0.3465684527737918,-0.5269624721911921,-0.6861146450171157,-0.8176095503852323,-0.9161466313208189,-0.9777538600851596,-0.9999478505333237,-0.9818339633594214,-0.9241423689889139,-0.8291986144235454,-0.7008298804887553,-0.5442107082520442,-0.365654413377244,-0.17235859649786842,0.02788499191884996,0.22700453687554398,0.41697353354399097,0.5901343355123156,0.7395068343569076,0.8590698276717422,0.9440037336155289,0.9908848681582383,0.9978234537150379,0.9645397960425283,0.8923755587080272,0.7842396806583185,0.6444911169495663,0.478763129357214,0.29373620970774583,0.09686878938841226,-0.10390340987112666,-0.3004872647811404,-0.48495848412788095,-0.6498810367920568,-0.7886068980128413,-0.8955440311313877,-0.9663818024754516,-0.9982647429154841,-0.9899076517674664,-0.9416474032064779,-0.8554293668755231,-0.7347289900745548,-0.584411702550176,-0.4105367911209768,-0.22011314994848588,-0.02081675215533748,0.17931876849597111,0.3722259532175561,0.5501287172965554,0.7058558039126264,0.8331298573552545,0.9268204631054286,0.9831509547410935,0.999850651284206,0.9762463883050173,0.9132896531666073,0.8135182305885397,0.680953904596163,0.5209403404879256,0.33992768179533334,0.145212545127649,-0.05535610629590251,-0.25369335419474076,-0.4418042281192164,-0.6121059825476661,-0.7577337572049622,-0.8728172994412913,-0.9527175939977236,-0.9942138616173806,-0.9956333885921483,-0.9569189538183968,-0.8796311353785087,-0.7668854036699553,-0.6232265368566255,-0.4544454209529509,-0.26734561932590417,-0.06946912119329736,0.1312076758089742,0.32659549405424004,0.5088182545424939,0.6705305614855752,0.8052137950626778,0.907438876853487,0.973085115879436,0.9995063135736738,0.9856374319917517,0.9320375254696199,0.8408672051546376,0.7158015448139656,0.5618819386853598,0.38531288297745736,0.19321187275314836,-0.006677504152378206,-0.2062977110006505,-0.3976020612927112,-0.5728790805391365,-0.7250633556406554,-0.84802034154722,-0.9367936446448463,-0.9878048148819041,-0.9989975930183048,-0.9699207983938393,-0.90174651601148,-0.7972228498146228,-0.6605631466727325,-0.4972761564542887,-0.3139439744310654,-0.11795671715084957,0.08278537301098271,0.2801903864618202,0.46630093110374954,0.6336148946480125,0.7753878546095576,0.8859049458409893,0.9607112266309574,0.9967912573144474,0.9926906525846505,0.9485747077352532,0.8662217356104935,0.7489513828504022,0.6014908150018736,0.4297841645711752,0.2407529231628586,0.042016936293238036,-0.15841275242819294,-0.3524568263045497,-0.5322933726441916,-0.6906731839029618,-0.8212119730936739,-0.91864772426537,-0.9790528042598325,-0.9999922855247201,-0.9806220979939374,-0.9217230535349111,-0.8256693714380223,-0.6963329736850477,-0.5389274078524192,-0.3597976891139083,-0.16616453280735652,0.03416671245447342,0.23312069822860793,0.42267759337410776,0.595196363283149,0.7437227798314403,0.8622697461732012,0.9460586364938676,0.9917119223200097,0.9973893206237154,0.962861975594239,0.8895216838110926,0.780324790952089,0.6396730215588858,0.47323604560979193,0.2877229342376057,0.09061171720808286,-0.11015205630866173,-0.30647560266441914,-0.4904451236779963,-0.6546448116797603,-0.7924557805687997,-0.8983228729776485,-0.9679785885534191,-0.9986151068106648,-0.9889974703183347,-0.9395133658088318,-0.8521574965336818,-0.7304511758157948,-0.5793003829807106,-0.4047980034292289,-0.21397822455019125,-0.014532987769167394,0.18549807345477135,0.37805171109109864,0.5553660919028517,0.7102936767872694,0.8365893379324634,0.9291620997931351,0.9842803562117968,0.9997222913874745,0.9748654412256907,0.9107117848535115,0.8098473548612148,0.6763379943809013,0.5155654630321057,0.33401049830042945,0.13899157714064173,-0.06163009168134685,-0.25976745275468266,-0.4474335930636077,-0.6170636942895029,-0.7618199704842454,-0.8758672990834134,-0.9546084345788244,-0.9948693233918948,-0.9950270499092082,-0.9550752561780429,-0.8766243981953182,-0.7628368284589445,-0.6182993216026316,-0.44883818160316485,-0.2612843835850593,-0.06319821735146401,0.13743546774481702,0.3325291319171716,0.5142185535103341,0.6751798356161735,0.8089246322099165,0.910061693247046,0.974514185843561,0.9996840313270267,0.9845566337352907,0.9297417781591943,0.8374490503178784,0.7113987682031797,0.5566720161366422,0.37950582636332936,0.1870417644082256,-0.012961947285573629,-0.2124431631465477,-0.4033607993996719,-0.5780189699905913,-0.7293772075968167,-0.8513342647230213,-0.9389740548641249,-0.9887638198528393,-0.9986965352699229,-0.9683718135578856,-0.8990120436353498,-0.7934131164244687,-0.6558317225444255,-0.49181376519870523,-0.3079708049291922,-0.111713547744446,0.08904688028946865,0.286217830380688,0.4718513455205889,0.6384645424699874,0.7793412466311023,0.8888027209096885,0.9624365754924352,0.9972746311910085,0.9919125666851111,0.9465665266864801,0.8630644091499292,0.7447721827437868,0.5964582047209429,0.4241010085345236,0.23464830927533079,0.03573694141711955,-0.16461498182651507,-0.3583312784835398,-0.537603248555349,-0.6952044425557626,-0.8247819595435091,-0.9211125324306818,-0.9803130777733501,-0.999997222786614,-0.9793714999832805,-0.9192673318322084,-0.8221075161354207,-0.6918085630977245,-0.5336228208796026,-0.3539267535491396,-0.1599639059444591,0.04044708347211953,0.23922765177235836,0.4283649582701819,0.6002348819676642,0.7479093497181731,0.8654356067147283,0.9480761719158232,0.9924998058103475,0.996915792614887,0.961146123990699,0.8866326745562612,0.776379079950572,0.6348296603413173,0.4676902699688513,0.28169829427716625,0.08435106604304742,-0.11639635195650852,-0.3124518353638595,-0.49591239160983885,-0.6593827293843091,-0.7962733626792279,-0.9010662328363415,-0.969537141379982,-0.9989260273721947,-0.9880482254132876,-0.9373422194801231,-0.8488519676458907,-0.7261445101715042,-0.5741661821849009,-0.39904322701209366,-0.20783484743266328,-0.008248649358549237,0.1916700516043049,0.38386253666522363,0.5605815306402512,0.7147034944579681,0.8400157748753835,0.9314670364044381,0.985370880543319,0.9995544444254775,0.9734459888778173,0.9080979452151827,0.8061444917553634,0.6716953701444004,0.51017022175399,0.3280801220474524,0.13276511925956577,-0.06790164279932163,-0.26583129101088915,-0.45304528526063387,-0.6219970332284335,-0.7658760933722731,-0.8788827036890012,-0.9564615700033197,-0.9954854897838401,-0.9943814096138116,-0.953193834942548,-0.8735830360716592,-0.7587581226927872,-0.6133476847408813,-0.4432132140275275,-0.25521282762469316,-0.05692481730427975,0.14365783124985332,0.33844963553307505,0.5195985418561432,0.679802441470527,0.8126035184243595,0.9126485639927127,0.9759047644130362,0.9998222635263118,0.9834369474272294,0.9274093078762032,0.8339978178898813,0.7069678927395108,0.5514401061375878,0.373683780015089,0.18086426828129368,-0.019245878447315873,-0.2185802242051194,-0.40910360554797925,-0.583136028828996,-0.733662250587081,-0.854614561868911,-0.9411173774540629,-0.9896837705965955,-0.9983560309716261,-0.9667845799389128,-0.8962420620507656,-0.7895720447758999,-0.6510743943523059,-0.4863319482662063,-0.30198547118592284,-0.1054659658725041,0.0953048703912307,0.29223396925790013,0.47738312273684114,0.6432889721976165,0.7832638562054117,0.8916653900181154,0.9641239100011321,0.9977186146800706,0.9910953021890802,0.9445209581206545,0.8598729933418114,0.7405635656000139,0.5914020355134313,0.41840110134172875,0.22853442724085607,0.02945553500206644,-0.17081070925665368,-0.3641915772814118,-0.5428918901950107,-0.6997082419997147,-0.8283193687272911,-0.923540958461677,-0.981534630847386,-0.999962662123993,-0.978082218723612,-0.9167753008769823,-0.818513189202023,-0.6872568274321098,-0.528297156854352,-0.3480418385733516,-0.15375696082174029,0.04672585690948693,0.24532515629414298,0.4340354035924803,0.6052496925542779,0.7520663786558253,0.8685672842510516,0.9500562601926998,0.9932484875094036,0.9964028883919777,0.9593923090046734,0.883708645053719,0.7724027035015958,0.6299612246001136,0.46212602148162113,0.27566252778785516,0.07808708317671983,-0.12263605017726388,-0.318415726830018,-0.5013600719770729,-0.6640946027672376,-0.8000594935571417,-0.9037740023501485,-0.9710573993953677,-0.9991974923193231,-0.9870599545456328,-0.9351340499763663,-0.8455129107740388,-0.7218091632465045,-0.5690093029535854,-0.393272689171927,-0.20168326124722155,-0.0019639851424965373,0.1978344591635755,0.38965820042375104,0.5657748275091831,0.7190850827455932,0.8434090328464913,0.9337351818988723,0.9864224846620914,0.9993471170278412,0.9719880873269725,0.9054482374931452,0.802409787526799,0.6670262152611913,0.5047548297550027,0.3221367872745988,0.12653341741725962,-0.07417051193589419,-0.2718846294536694,-0.4586390830594844,-0.6269058045072675,-0.7699019656601649,-0.8818633941554813,-0.9582769270760053,-0.9960623364558557,-0.993696493207481,-0.9512747644243525,-0.8705071691353569,-0.7546494474723485,-0.6083718218512908,-0.4375707404011933,-0.2491311912593309,-0.050649168838714245,0.14987452055295647,0.3443567710536962,0.5249580070809641,0.6843981964647978,0.8162503083972378,0.9151993869141777,0.9772567966627416,0.9999210047116288,0.9822784172929776,0.9250402067486525,0.8305136441875381,0.702509093433824,0.5461864153383569,0.3678469738921222,0.17467962837130593,-0.025529049434684883,-0.22470865177452576,-0.4148302529080868,-0.5882300549405852,-0.7379183153606734,-0.8578611034196004,-0.9432235277576313,-0.9905646307769209,-0.9979760935726645,-0.9651591602295264,-0.8934366806665548,-0.785699786583696,-0.6462913500014854,-0.4808309221777708,-0.29598820961018946,-0.09921421830224215,0.10155909613796173,0.2982385654677974,0.4828960442581806,0.6480879932754274,0.7871555283971391,0.8944928400964606,0.9657731635106477,0.9981231902451589,0.9902388913768988,0.9424380828337138,0.8566476142407832,0.7363256976511982,0.5863225070880959,0.4126846681279127,0.22241151854575622,0.023172965151284163,-0.17699968999955473,-0.37003749122791313,-0.5481590886722149,-0.704184404343582,-0.8318240609243109,-0.9259329064403015,-0.9827174152329952,-0.9998886049019354,-0.9767543051390105,-0.9142470590995632,-0.8148865326066729,-0.6826779464728147,-0.5229506261299274,-0.3421431766291174,-0.14754394260131518,0.053002784767351735,0.2514129709545042,0.43968870536955956,0.61024059696783,0.7561937024499257,0.8716646550870762,0.9519988231149131,0.993957937845721,0.9958506282136969,0.9576005999084068,0.8807497107968835,0.7683958186642135,0.625067906628904,0.4565435199249925,0.2696158731705989,0.07182001602410171,-0.12887090451511407,-0.32436704150090534,-0.5067879496070293,-0.668780245718837,-0.8038140236578049,-0.9064460745674882,-0.9725393025523739,-0.999429490929718,-0.9860326967501267,-0.9328889445159091,-0.8421404578043169,-0.7174453062784878,-0.5638299489733531,-0.3874866178336262,-0.19552370896942767,0.004320756647104539,0.20399105265062198,0.3954384734493409,0.5709457773846166,0.7234382685860236,0.8467689778187674,0.9359664466891495,0.9874351270318217,0.9991003173835893,0.9704917941574053,0.9027627663456534,0.7986433896889947,0.6623307141537135,0.4993195009324827,0.3161807287318902,0.12029671775371158,-0.08043645148304106,-0.2779272289880584,-0.46421476551614266,-0.6317898142391892,-0.7738974283338766,-0.8848092527514569,-0.9600544340938412,-0.9965998406236305,-0.9929723277430677,-0.9493181204229695,-0.8673969188771087,-0.7505109650822097,-0.6033719294706751,-0.43191098359079294,-0.2430397147016498,-0.04437151983054132,0.15608529010711975,0.35025030515879035,0.5302967374964731,0.688966919075686,0.8198648580875071,0.9177140612589517,0.9785702291900612,0.9999802509828953,0.9810810890921944,0.9226345683513663,0.8269966668288701,0.6980225463999409,0.5409111512494049,0.36199563853679684,0.16848808895938117,-0.031811212074797895,-0.23082820379390945,-0.4205405152886667,-0.5933008471213447,-0.7421452338114022,-0.8610737611430802,-0.9452924225860321,-0.991406365601575,-0.9975567380798194,-0.9634956186306151,-0.8905960102897654,-0.7817964947944434,-0.6414827784128134,-0.4753109042131187,-0.2899792570820274,-0.09295855196539166,0.10780931050004319,0.30423138184063714,0.4883898923350445,0.6528614161515003,0.7910161094928801,0.8972849594660076,0.9673842708787125,0.9984883419063342,0.9893433680751104,0.9403179830951373,0.8533883992429803,0.7320587462847847,0.5812198200763179,0.40695193468096635,0.21627982503288637,0.01688948001393161,-0.18318167960264323,-0.3758687894209309,-0.5534046359429843,-0.7086327527877555,-0.8352958977061186,-0.9282882818893126,-0.9838613842125195,-0.9997750540455561,-0.9753878116794502,-0.911682706360528,-0.811227689595187,-0.678072101076633,-0.5175834398837821,-0.33623100070199013,-0.1413250966851939,0.059277619119412595,0.25749085529673804,0.44532464030711627,0.6152073980774087,0.7602911580792978,0.8747275968827305,0.9539037839550452,0.9946281287974067,0.9952590338932359,0.955771067470885,0.8777559886578402,0.7643585837024992,0.6201498997041323,0.4509429857967941,0.2635585692563608,0.06555011212204365,-0.1351006687055711,-0.33030554431129117,-0.5121958101092204,-0.6734394731654094,-0.8075368046846648,-0.9090823439467682,-0.973982792318737,-0.9996220140398905,-0.9849664926014329,-0.9306069917760087,-0.838734741941982,-0.7130531116312205,-0.5586283248185099,-0.3816852415356431,-0.1893564338894872,0.010605327775318703,0.21013958889208859,0.40120312743258063,0.5760941760242027,0.7277628800369708,0.8500954770809913,0.9381607426446967,0.9884087676551249,0.998814055240823,0.9689571684697523,0.9000416378435312,0.7948454470072659,0.6576090522850293,0.4938644499712343,0.31021218167194464,0.11405526660628847,-0.08669921394847557,-0.2839588509432467,-0.4697721124021147,-0.6366488695154153,-0.7778623235804935,-0.8877201631212965,-0.9617940208487967,-0.9970979810568079,-0.9922089418236847,-0.9473239802219898,-0.8642524081456858,-0.7463428389842997,-0.598348205084946,-0.42623416714558715,-0.2369386385530054,-0.03809211823456467,0.16228989459915577,0.3561300050653556,0.5356145222333002,0.6935084288476367,0.8234470247275643,0.9201924877023385,0.9798450101169925,1.0]}
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/medium_positive.json b/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/medium_positive.json
new file mode 100644
index 000000000000..2935698eb580
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/medium_positive.json
@@ -0,0 +1 @@
+{"sine":[0.0,0.19975924546521182,0.3914661997876466,0.5673931595175625,0.7204485124679503,0.8444626004582995,0.9344364181110183,0.9867431226570545,0.9992742318945305,0.9715246170636379,0.9046128645767247,0.801236185822647,0.6655616926302593,0.5030584210749114,0.3202768747449104,0.12458497407441964,-0.0761289443801605,-0.2737741066271688,-0.4603834401755766,-0.6284347265658986,-0.7711538218440881,-0.8827877221672574,-0.9588364672721783,-0.9962345337824404,-0.9934744063937271,-0.9506673457852292,-0.8695389037039172,-0.7533593660085375,-0.6068119275128164,-0.43580391249727657,-0.2472286505870222,-0.04868760677402487,0.1518160334828881,0.3461999725019502,0.5266285976344637,0.6858288346521264,0.817383325222013,0.9159891104911217,0.9776713932504438,0.9999437619300288,0.9819084177990615,0.9242923652145342,0.8294181060903273,0.7011100198920525,0.5445402029781794,0.3660199815004744,0.17274550197452726,-0.02749234524068321,-0.22662197657552144,-0.41661648062006607,-0.5898171827606258,-0.7392423661984585,-0.8588687048126502,-0.9438740633141806,-0.9908318774218497,-0.9978492785991216,-0.9646433955465304,-0.8925527567380386,-0.7844833343653355,-0.6447914046575911,-0.4791079464747976,-0.294111656663868,-0.0972597319238687,0.1035127306420298,0.3001125971302212,0.4846149309005692,0.6495824466120064,0.7883653070441551,0.8953691779011256,0.9662807353137878,0.9982415358376618,0.9899632402503239,0.9417795464793968,0.8556327382458384,0.7349953916464514,0.5847303956816807,0.4108949292984075,0.22049629662915723,0.021209462704306414,-0.178932324233005,-0.3718613528009979,-0.5498006577618196,-0.7055775093329206,-0.8329125457794553,-0.9266728943587612,-0.983079077316751,-0.9998573625597098,-0.9763314177489855,-0.9134495732438757,-0.8137465949240296,-0.6812415078281338,-0.5212755893359133,-0.34029706238504803,-0.14560116773500342,0.0549639070403435,0.2533133878350331,0.4414518110916355,0.61179532077546,0.7574773734578859,0.8726255285430078,0.9525981662292535,0.9941715911096561,0.9956699792684811,0.9570329307093646,0.8798179040779447,0.7671374355353657,0.6235336724886009,0.4547952797203947,0.2677240984289767,0.06986096414701579,-0.1308182641861456,-0.3262242109369421,-0.5084800663456825,-0.6702391005686099,-0.8049808102092215,-0.9072737596782697,-0.9729945222524521,-0.9994938953221937,-0.9857036896952429,-0.9321797882813898,-0.8410797384636272,-0.7160757814067883,-0.5622068240905111,-0.3856753210708303,-0.19359725366252933,0.006284715123660426,0.20591334717038418,0.3972416163591135,0.5725570840301881,0.7247927872291204,0.8478121078402907,0.9366561395390383,0.987743581205252,0.9990150990990716,0.970016338562264,0.9019162390453084,0.7974599141817943,0.6608579963134064,0.49761690598541625,0.31431688824592363,0.11834676310112474,-0.08239391766965774,-0.27981330128632975,-0.46595341638988813,-0.6333109587068679,-0.7751397490927754,-0.8857226718769214,-0.9606021316794062,-0.996759738990704,-0.9927379813917083,-0.9486989758498587,-0.8664179337874629,-0.7492116023451798,-0.6018045663719015,-0.43013880050507325,-0.241134148293311,-0.042409383442950296,0.1580249027958888,0.35208920840049523,0.5319608051386492,0.6903890725853478,0.8209877704854536,0.9184924679691472,0.9789727526537657,0.9999906654874317,0.9806989748290953,0.9218753283388472,0.8258909060164701,0.6966148379836355,0.539258239926972,0.36016415313019845,0.16655185660830302,-0.03377414188346919,-0.23273870539930033,-0.42232157640972096,-0.5948806732203106,-0.7434601421301965,-0.8620707477539782,-0.9459312989789216,-0.9916613786819856,-0.9974176082756399,-0.9629679542614362,-0.8897010814956324,-0.7805703761369372,-0.6399748947102168,-0.47358203822696454,-0.28809909936523476,-0.09100289163749284,0.10976164081081294,0.30610168373895014,0.49010277398922,0.6543478313367237,0.7922161408431077,0.8981502337417948,0.9678799088915059,0.9985943644978704,0.9890555014768685,0.93964783120387,0.8523629758678617,0.7307193862213188,0.5796205129015655,0.4051571484347769,0.2143619075125258,0.014925742435848143,-0.18511207901641905,-0.37768803630908926,-0.5550393965002738,-0.7100171298491851,-0.8363740870603578,-0.9290168217453073,-0.9842109071434139,-0.9997314707890801,-0.9749528790757893,-0.9108739565341379,-0.8100777232352028,-0.6766272733037564,-0.5159019916763012,-0.33438071120313445,-0.13938055102721658,0.06123803634038454,0.25938811970218656,0.44708227320725646,0.6167545493255975,0.7615654620400203,0.8756776863891196,0.954491360918322,0.9948295080020698,0.9950660977476194,0.9551915932271151,0.8768133349109573,0.7630907488059709,0.6186079900569783,0.4491891557456931,0.26166351565519297,0.0635902245431203,-0.13704638723360194,-0.3321586619139246,-0.513881627653398,-0.6748900353800356,-0.8086936394362182,-0.9098988192498179,-0.9744259960703403,-0.9996740807057876,-0.9846253233753753,-0.9298863391825951,-0.83766365547267,-0.7116747667599201,-0.5569982825990897,-0.3798692089369842,-0.1874276151488965,0.012569182013427903,0.21205931570312345,0.40300134266763094,0.5776983936635225,0.7291084340999849,0.8511281283106453,0.938838864890814,0.9887050258236889,0.9987165071710528,0.9684697463223654,0.8991839895954284,0.7936521444419723,0.6561281974048053,0.492155736006345,0.3083444868477343,0.11210387766332888,-0.08865563656136932,-0.2858414438701434,-0.47150498836022314,-0.6381621763099207,-0.7790950598451357,-0.8886226372821904,-0.9623298541907763,-0.9972455741486985,-0.99196234519094,-0.946693134169885,-0.8632627420658199,-0.7450342462963235,-0.5967734351336336,-0.4244566988758183,-0.23503012167476248,-0.03612948502459275,0.16422753043587487,0.3579645374674422,0.5372720012367536,0.6949220415073646,0.8245597883458508,0.920959546800251,0.9802354445578142,0.9999980713793203,0.9794507961774725,0.9194218791999029,0.8223310848753529,0.6920921411585172,0.5339549772353587,0.35429409898387937,0.16035163277114886,-0.04005460451404167,-0.23884624150173542,-0.4280099913272981,-0.5999206670628124,-0.7476485528478102,-0.8652387405954176,-0.947951172216856,-0.9924517112670619,-0.9969465419173448,-0.9612544776351422,-0.8868142648094742,-0.7766265869131221,-0.6351331070125583,-0.46803742441958646,-0.2820751627185229,-0.08474245691578797,0.11600621561055247,0.31207867993289945,0.4955712589817463,0.659087370608414,0.7960356836618269,0.9008958144138048,0.9694408531154721,0.998907750643709,0.9881086969553814,0.937479001686161,0.8490595468279054,0.7264145188168745,0.5744877362505951,0.3994033646602373,0.20821905152194017,0.008641432629894624,-0.19128452223660358,-0.38349980188220023,-0.5602562122736543,-0.7144287060845671,-0.8398025932089567,-0.9313240547936457,-0.9853038625739975,-0.9995660915906172,-0.9735358316804235,-0.9082623620937006,-0.8063768550687515,-0.6719863133321942,-0.5105080169021766,-0.3284511526404509,-0.13315442906165714,0.06750974685836734,0.2654526062485146,0.4526950764519559,0.6216894172834438,0.7656234702834901,0.8786952566880182,0.9563468550749632,0.9954481310845437,0.9944229130719886,0.9533125275546399,0.8737741333408743,0.7590139214920751,0.6136578738258023,0.44356528968235504,0.25559259768690507,0.05731697325035252,-0.1432690972181553,-0.3380799932767198,-0.5192628916470049,-0.6795143133617564,-0.8123745268541773,-0.9124879396066796,-0.9758189819769032,-0.9998147809283433,-0.9835080662908018,-0.9275561614013648,-0.8342144864139953,-0.7072456423587604,-0.551767740770441,-0.37404809271613954,-0.18125057361292043,0.01885315244521423,0.21819690830975672,0.4087451512153257,0.5828168853459478,0.7333952826209824,0.8544105308930654,0.9409845079529889,0.989627418537193,0.9983784679042684,0.9668849014312969,0.8964162241455634,0.7898130270025941,0.6513724827222265,0.48667512684317665,0.3023599064484552,0.10585656434274203,-0.09491385372972701,-0.29185829627883614,-0.4770379368103876,-0.6429881877615056,-0.7830195978741701,-0.8914875038401329,-0.9640195665646439,-0.9976920200668908,-0.991147528427526,-0.944649899972116,-0.8600734531628591,-0.7408274628593199,-0.5917187325178127,-0.41875783204133993,-0.22891681182842008,-0.02984815956261163,0.17042367141123396,0.3638257276388426,0.5425619761469734,0.6994275623748103,0.8280992377155247,0.9233902495396732,0.981459419088738,0.9999659793131763,0.9781639311447962,0.9169321147041228,0.8187387832729162,0.6875421080543258,0.5286306243717817,0.3484100509171296,0.154145075359718,-0.046333485066474826,-0.24494434364714907,-0.43368150069160666,-0.6049369652182902,-0.751807432917299,-0.8683725582074838,-0.9499336032469615,-0.9932028439604956,-0.9964360981304328,-0.9595030333466044,-0.8838924207031436,-0.7726521224658144,-0.6302662328057115,-0.4624743240540074,-0.2760400846573844,-0.07847867503361294,0.1222462083928272,0.3180433496324653,0.5010201698837186,0.6638008772245932,0.799823784635881,0.9036058114721183,0.97096350633146,0.9991816818970409,0.9871228640827808,0.935273143590773,0.845722581604923,0.7220809594669159,0.569332268463372,0.3936338052379298,0.20206797128812676,0.0023567815043553444,-0.1974494100941851,-0.38929641996701714,-0.5654508990279964,-0.7188120637904816,-0.8431979288060043,-0.933594502372605,-0.9863579004389107,-0.9993612314964742,-0.972080331533474,-0.9056148930754175,-0.8026441366016884,-0.6673188112222339,-0.5050938780649431,-0.3225086209029042,-0.12692304775790356,0.07377879087405928,0.27150660793872766,0.45828999913104634,0.6265997297314128,0.769651237904929,0.8816781202516085,0.9581645754108068,0.9960274359226823,0.9937404506461178,0.9513958079113369,0.8707004194101855,0.754907114620343,0.6086835193149331,0.43792390366203104,0.24951158431345774,0.051041458049822436,-0.14948614835502919,-0.343987971144375,-0.5246236457771539,-0.6841117518638823,-0.8160233270752839,-0.9150410184836839,-0.9771734249519322,-0.9999159904324793,-0.9823519625709809,-0.9251893469751403,-0.8307323675229984,-0.7027885831450299,-0.5465154052006984,-0.36821220233091073,-0.1750663730355796,0.025136378214540324,0.2243258825674412,0.4144728151330549,0.5879123569070914,0.7376531634700125,0.8576591859391116,0.9430929839768782,0.9905107229130654,0.9980009946506051,0.9652618664873153,0.893613052017015,0.7859427135012612,0.6465910401070362,0.4811752949691995,0.29636338342724766,0.0996050698959555,-0.10116832198743524,-0.29786362085855067,-0.4825520431998257,-0.6477888024436541,-0.786913208168341,-0.8943171583941515,-0.965671202060693,-0.9980990591115437,-0.9902935632851286,-0.9425693539602796,-0.8568501930492228,-0.7365914181938451,-0.5866406581752526,-0.41304242509569344,-0.22279446021802074,-0.023565655156979223,0.17661308098659742,0.36967254740920646,0.5478305209256988,0.7039054572284704,0.8316059787931742,0.9257844801794274,0.9826446279019533,0.9998943905565734,0.9768384305597052,0.9144061331923086,0.8151141430980092,0.6829649183884359,0.5232853916377259,0.34251224133826247,0.14793242952082739,-0.0526105355373298,-0.25103277097249793,-0.43933588048915784,-0.609929369552815,-0.7559366180710994,-0.8714720768105395,-0.9518785137671094,-0.9939147470940218,-0.9958862970764295,-0.9577136905744339,-0.8809356645837464,-0.7686471397785366,-0.6253744643216405,-0.456892956861756,-0.269994103555539,-0.07221179339805466,0.128481372690173,0.3239954572449498,0.506449291473888,0.6684881650110157,0.8035802941427282,0.9062801178771784,0.9724478083976571,0.9994161474381197,0.9860980417975248,0.9330303440447644,0.8423522120024807,0.7177188793385183,0.5641543131707327,0.3878486980541243,0.19590890976667857,-0.003927962709428354,-0.20360649908821213,-0.39507766160852076,-0.570623251583385,-0.7231670298329049,-0.8465599597424106,-0.9358280748039804,-0.9873729791057299,-0.9991168985982221,-0.9705864361243355,-0.9029316540491075,-0.7988797152690646,-0.6626249513310454,-0.4996597890124282,-0.31655335070881635,-0.12068665324326766,0.08004492077254535,0.27754988565164473,0.4638668202560663,0.6314852927218397,0.773648605815449,0.8846261592626437,0.9599444501294728,0.9965673996350836,0.9930187374259332,0.9494415100038688,0.8675923145245408,0.7507704904015728,0.6036851230015955,0.4322652205083791,0.24342071572291762,0.04476392681203621,-0.1556972950828858,-0.3498823621633784,-0.5299636783045951,-0.6886821692966302,-0.8196398959791023,-0.9175579550392373,-0.9784892714975939,-0.9999777052206189,-0.9811570578797368,-0.922785989388439,-0.8272174363365303,-0.6983037651638005,-0.5412414833467853,-0.36236176828753275,-0.16887525768064768,0.03141861114633981,0.23044599639374203,0.42018410818935314,0.59298460708585,0.7418819084691575,0.8608739651332998,0.9451642096818239,0.9913549040625195,0.9975841023195142,0.9636007055971102,0.8907745839295682,0.782041356807744,0.6417840584168243,0.47565645761696096,0.2903551546349832,0.09334964124471079,-0.10741879429530071,-0.30385718041077886,-0.48804708973213984,-0.6525638307415234,-0.7907757369376961,-0.8971114891784541,-0.9672846954425681,-0.9984666752054155,-0.9894004834936915,-0.9404515783118504,-0.8535930890373493,-0.7323262796153363,-0.5815394126799074,-0.40731070378621065,-0.2166633086644101,-0.01728221995430913,0.18279551469244626,0.37550476584064657,0.5530774274757679,0.708355549200301,0.8350798730694248,0.928142144152113,0.9837910241840431,0.9997833079371266,0.975474346776867,0.9118440344357643,0.8114573075167939,0.6783607529508356,0.51791949015937,0.33660090319916985,0.14171394064177492,-0.05888550799545234,-0.25711128299687136,-0.4449729073830721,-0.6148976828762359,-0.7600359452144887,-0.874537173979693,-0.9537858269571575,-0.9945873925488663,-0.9952971604713958,-0.9558865199941503,-0.8779441132373333,-0.764611797040237,-0.6204579947755839,-0.45129354329586446,-0.2639374582173551,-0.06594205953861042,0.13471146222586503,0.32993476767376545,0.5118584093126176,0.6731490488290282,0.8073050638076276,0.9089186279991396,0.9738937006870513,0.9996111380060176,0.9850342705780774,0.9307506916343085,0.8389485711435525,0.7133284507252722,0.5589540748917325,0.38204827160917515,0.18974211022841053,-0.010212551776406582,-0.20975554602577293,-0.4008432984590308,-0.575773065642062,-0.7274934321992448,-0.8498885532245667,-0.9380246838660378,-0.988349058480843,-0.9988331025465301,-0.9690542044589399,-0.900212750997437,-0.7950837397581182,-0.6579049190568613,-0.49420596438046005,-0.3105855772796381,-0.11444549184305759,0.0863078890540283,0.28358220068966833,0.4694253195535372,0.6363459132845475,0.7776154161268708,0.8875392572793779,0.9616864089294086,0.9970680008942423,0.9922578019176873,0.9474497110231589,0.8644499414479695,0.7466042122242788,0.5986628823126052,0.4265894637282458,0.23732023249263606,0.03848462748715329,-0.1619022920736393,-0.3557629335168719,-0.5352827783085409,-0.693225385137496,-0.82322409071827,-0.9200386498592937,-0.9797664696405367,-0.999999922855149,-0.9799233994134527,-0.9203461835691549,-0.8236698316874543,-0.6937913655565777,-0.535946183518261,-0.35649702166664965,-0.16267747208501082,0.03769960310476142,0.2365570080561939,0.42587880479937196,0.5980334355383123,0.7460813505913023,0.8640547414981552,0.9471981032584874,0.9921599286420614,0.997127807377422,0.9619014843732758,0.8879009319971398,0.7781091110179725,0.6369517275179182,0.4701188327696877,0.2843354573848881,0.08709052546614279,-0.11366502377195441,-0.3098387382017004,-0.493522859363808,-0.6573130840508942,-0.7946070316199514,-0.8998703858224744,-0.9688599829804566,-0.9987948538283925,-0.9884683243281132,-0.9382966566748199,-0.8503022697764443,-0.7280322155883828,-0.576415197520946,-0.4015628945046159,-0.21052359933602194,-0.010998102137924072,0.1889707283348181,0.38132215257201446,0.5583024885546993,0.712777662520428,0.8385207833322728,0.9304631483346321,0.9848985626545991,0.9996327358423811,0.9740717336749096,0.9092459196323546,0.8077684209670868,0.6737297935970092,0.5125331318792742,0.33067626998607286,0.13548985434063132,-0.0651581545917815,-0.26317963963100865,-0.45059235872185416,-0.6198417089499311,-0.7641052524321035,-0.8775677286496314,-0.9556554674819842,-0.9952207537568558,-0.9946687115850694,-0.9540215937754,-0.8749178848243019,-0.7605462536390107,-0.615517018358412,-0.44567630452214724,-0.257870387868402,-0.059669721097458536,0.14093623092359797,0.3358610463278257,0.5172473097503859,0.6777833445828819,0.8109979465094994,0.9115212376220385,0.9753011260897396,0.9997666458989908,0.9839315924413161,0.9284342764011881,0.8355117934652528,0.7089098470404656,0.5537317590255741,0.37623275500853903,0.18356781624979734,-0.016496737467665383,-0.21589630803160126,-0.4065931027872257,-0.5809001377964955,-0.7317911000051128,-0.8531835777795734,-0.9401842427970426,-0.9892861000110359,-0.9985098545507837,-0.9674836970574219,-0.8974582913117253,-0.7912563600024292,-0.6531589008316899,-0.488732619584432,-0.30460553633073373,-0.10819981007092716,0.09256744834352522,0.2896033147882584,0.47496527747370576,0.6411813994346279,0.7815515121579945,0.8904172992401732,0.9633903830066701,0.9975292199273939,0.9914576741768389,0.9454204896413567,0.8612734242980545,0.7424084446482907,0.593616995616635,0.4208968575029095,0.23121037557966212,0.032203808095105625,-0.16810089424215324,-0.36162945293386173,-0.5405807356950109,-0.6977412199383961,-0.8267757697241495,-0.9224830049612779,-0.9810049689339415,-0.9999826424585171,-0.9786510358992226,-0.9178700258848401,-0.8200896936992073,-0.6892515625542411,-0.5306297148690189,-0.3506181941141796,-0.15647326104900078,0.04397910600298579,0.24265867618186454,0.43155668003380415,0.6030586428456668,0.7502513239667282,0.8672013893992643,0.9491945843720552,0.9929257648547968,0.9966321278470855,0.9601642699316971,0.8849922097233105,0.7741461314478956,0.6320942382778766,0.46456263915266116,0.27830452944315504,0.0808279697830048,-0.119906763703595,-0.31580805797152606,-0.4989791358126802,-0.6620363747855611,-0.7984069408864696,-0.9025937393551978,-0.9703970024535854,-0.9990835820180666,-0.9874971226068409,-0.9361046741643345,-0.8469778652473909,-0.7237093957200618,-0.5712682150947813,-0.3957992242780623,-0.2043755747393209,-0.004713549918140405,0.19513847800486642,0.3871244778279259,0.5635054977828123,0.7171716225240349,0.8419285736725528,0.9327474010518995,0.9859671995680402,0.999442680219638,0.9726306466542896,0.9066118914024998,0.8040476291526458,0.6690722232407593,0.5071265295480157,0.32473857571038167,0.12926041645661743,-0.0714282275690599,-0.26923760118670603,-0.45619401254826536,-0.6247612524946266,-0.7681443789943386,-0.8805636211194101,-0.9574873614944686,-0.9958148057014691,-0.9940009752399444,-0.9521189855791071,-0.8718570988747331,-0.7564506701558612,-0.6105517302290175,-0.4400414624105362,-0.25179313214607807,-0.05339502581958981,0.14715543291729202,0.3417740591308185,0.5226157799362325,0.6823908692270165,0.8146587963867455,0.9140878439479179,0.9766700290151819,0.9998826649747826,0.9827900509408599,0.9260811898392693,0.8320420147135701,0.7044632428102917,0.5484875718434284,0.37040237795364556,0.177386271703267,-0.022780271570239215,-0.22202854255768475,-0.41232684748715204,-0.5860042655374271,-0.736059863501068,-0.8564449032604302,-0.9423066662986571,-0.9901840666850033,-0.9981471673786456,-0.9658749759517488,-0.8946683837877358,-0.7873977271759451,-0.6483870841138853,-0.48323997081064873,-0.29861346406190475,-0.10194985461896555,0.09882335140081243,0.2956129901252138,0.48048647519906845,0.6459915601798347,0.7854567384407349,0.8932601714680083,0.9650563050576183,0.9979510385172897,0.9906183858068548,0.9433539260087022,0.8580628885409471,0.7381833533981375,0.5885476622162391,0.4151876266790682,0.22509138631136394,0.025921716715975884,-0.1742928567557645,-0.3674816886983189,-0.5458573412050627,-0.7022294953326993,-0.8302947927123753,-0.924890923797987,-0.9822047204595301,-0.9999258647132644,-0.9773400175928911,-0.9153576141388308,-0.8164771637801655,-0.684684535470108,-0.5252922873891733,-0.3447255178323138,-0.15026286962680435,0.05025687181294504,0.24875075976681138,0.43721750962769645,0.6080600305221413,0.7543916638897156,0.8703137845502444,0.9511535741654683,0.9936523824517084,0.9960970833068667,0.9583891308889378,0.8820485319969213,0.7701525746274559,0.6272117825580127,0.4589880962246492,0.272262609019628,0.0745622215539829,-0.12614376755381243,-0.32176490394390456,-0.5044157035666039,-0.6667335163848728,-0.8021753146483428,-0.9052814422095408,-0.9718956931527224,-0.9993328483702388,-0.9864869166904433,-0.9338757173594168,-0.8436200067576585,-0.7193579907532929,-0.5660986686971402,-0.39001992076023734,-0.19821947770914616,0.0015711884776309216,0.2012985200886661,0.3929115124279982,0.568686249651523,0.7215372556583834,0.8453031094892279,0.9349948120804,0.9869968927152984,0.9992131485757226,0.9711511426351224,0.9039420537851572,0.8002950790374616,0.6643882258469238,0.5016998967157174,0.3187880548992881,0.12302587304022093,-0.07769547927179393,-0.27528492838645185,-0.4617776476079628,-0.6296561191979737,-0.7721531653635944,-0.8835247330571435,-0.9592814366383846,-0.9963695249188178,-0.9932939778102986,-0.9501787705545408,-0.8687618762836318,-0.7523252083582436,-0.6055623265064708,-0.4343892395261608,-0.24570593108997624,-0.04711822154316465,0.1533688225606312,0.34767357253030207,0.527963607826098,0.6869714407732311,0.8182874688429647,0.9166183456008539,0.9780003553944138,0.9999591906508686,0.9816096911653452,0.9236915248908218,0.8285393719379089,0.6999888136668315,0.5432217204804067,0.364557370732986,0.17119772074773992,-0.02906290589683553,-0.22815200739276792,-0.41804430608712195,-0.591085247261806,-0.7402995540793761,-0.859672400851216,-0.9443918705393411,-0.9910429230348355,-0.9977450553555426,-0.9642281046832253,-0.8918431386213034,-0.7835079936871164,-0.6435896573808757,-0.4777282350079949,-0.29260959714828727,-0.09569587234819016,0.10507535112995374,0.3016109893301422,0.4859886946532246,0.650776205528323,0.7893309407263702,0.8960677616750471,0.9666841092816238,0.9983334400029292,0.9897399699579795,0.9412501017504172,0.8548184609865307,0.7339291053566603,0.5834550823401728,0.409461996760174,0.21896350637581996,0.019638601479960795,-0.18047793504418846,-0.37331940965849414,-0.5511123864232049,-0.7066900340423956,-0.8337810206884924,-0.9272623112613478,-0.9833656768294635,-0.999829591862001,-0.9759903962771174,-0.9128090475664773,-0.8128323846181963,-0.6800904646927933,-0.5199341118965637,-0.33881922557012206,-0.14404654311661166,0.056532652575293885,0.25483301818577014,0.44286106998946523,0.6130374010227289,0.7585022068249346,0.873391804017574,0.9530749952624609,0.9943397527328224,0.9955226948899785,0.9565761373595101,0.8790700150874262,0.766128598294257,0.62230455320568,0.4533954241690827,0.2662099347582254,0.0682935282637517,-0.1323757889731837,-0.3277090408350697,-0.509832347891785,-0.6714043233209221,-0.8059120040621773,-0.9079333882264968,-0.9733559958825161,-0.9995426430393809,-0.9854377464800582,-0.9316098742994562,-0.8402288269360224,-0.7149781725599744,-0.5609067625148909,-0.3842252122222106,-0.19205555139929106,0.007855864814514262,0.20745061127660197,0.3986830277956822,0.5738445395312646,0.725874389489503,0.8486442574947504,0.9372052926518389,0.9879876014255288,0.9989441499766811,0.9696332800548935,0.9012365122336375,0.7965109188398489,0.6596779864242154,0.4962534477237632,0.3128249425867266,0.11678647034371399,-0.08395966215579813,-0.2813213823726485,-0.4673430433583098,-0.6345261157224094,-0.77613145320073,-0.8864509475047607,-0.9610376220513089,-0.9968848894985889,-0.9925477472211338,-0.9482010253363902,-0.8656323393062371,-0.7481700311938305,-0.6005490042624613,-0.42871985912077115,-0.2396090251326336,-0.040839556189644806,0.15957615443700163,0.3535593535071539,0.5332905821913472,0.6915248782980005,0.8218838205527647,0.9191126426310312,0.9792920526821515,0.999996219904634,0.9803905597366749,0.9212653759429374,0.8250040034858092,0.6954867363412859,0.5379344129273129,0.35869796421279637,0.16500240781875095,-0.035344392295812245,-0.23426646067208912,-0.4237452527588179,-0.5961428822808935,-0.7445100042805719,-0.8628659430720881,-0.9464397731576053,-0.9918626351373868,-0.9973035343641132,-0.9625431483000461,-0.8889826674040868,-0.7795873131727301,-0.6387668101215379,-0.4721976298791441,-0.28659417273076127,-0.08943811027854347,0.11132320058931314,0.3075970754939264,0.4914717185092662,0.6555351464959587,0.7931739659914868,0.8988399589669676,0.9682737313836033,0.9986764092802013,0.9888224613259171,0.9391090999634032,0.8515402697832831,0.7296458685582512,0.5783394571352791,0.40372019389729535,0.21282697781217963,0.013354710557792625,-0.1866558848089288,-0.3791423852358263,-0.5563456637854286,-0.7111226598849296,-0.8372343159533138,-0.9295970736862057,-0.9844877921882592,-0.9996938277073143,-0.9746022252592766,-0.9102244268311235,-0.8091555001748744,-0.6754695316790157,-0.5145554000286157,-0.33289955061459786,-0.13782452705116263,0.06280620040896567,0.26090521120142823,0.4484871382095131,0.6179905577510542,0.7625827904140614,0.8764353262255659,0.9549587717706963,0.9949878485483706,0.9949089852836285,0.9547253609530759,0.8760567766404026,0.7620743613874943,0.6173727440468412,0.4477848438855703,0.26014674572774354,0.06202213751343652,-0.13860258180908216,-0.33364023386335917,-0.5152288548414754,-0.6760486111060643,-0.8096168615361246,-0.9105494726594383,-0.9747778529638939,-0.9997129577390144,-0.9843496534158569,-0.9293072344808224,-0.8368044597274538,-0.7105701141343596,-0.5556927016181739,-0.3784153275436368,-0.18588403927266556,0.014140230860212164,0.21359450857322795,0.4044387959675248,0.5789801636797789,0.7301828527091766,0.8519518857203756,0.9393787554565565,0.9889392865676748,0.9986356950474322,0.9680771188662064,0.8984953736115409,0.7926952980267352,0.654941691017856,0.49078739769612684,0.3068494743038512,0.11054245481117471,-0.09022052879822594,-0.28734672471729084,-0.47288997997717086,-0.6393710497126195,-0.7800790853711561,-0.8893421488825138,-0.9627558483673523,-0.9973608790848895,-0.9917623129470988,-0.9461858280417136,-0.862468611553076,-0.7439853027839101,-0.5955119615133115,-0.423033545123691,-0.23350265508978857,-0.03455927775390577,0.1657771833689651,0.35943116958453625,0.5385964926269107,0.6960510019494472,0.8254477094672864,0.9215706365185953,0.9805450698588851,0.9999937512734968,0.9791327048081314,0.918802838823706,0.821436048997339,0.6909571886568133,0.5326258580223482,0.35282438982814546,0.15880057761904462,-0.04162448266074123,-0.24037166088670173,-0.42942946232599566,-0.6011769708279976,-0.7486910478001284,-0.8660254037844386,-0.9484502932653426,-0.9926431706156487,-0.9968226218435642,-0.9608201733546587,-0.8860870831190472,-0.7756358404919788,-0.6339187328289067,-0.4666483738721828,-0.280567428406827,-0.08317681557938901,0.11756665300105583,0.3135710121778699,0.49693533019858493,0.6602681951139766,0.79698566244418,0.9015766538474539,0.9698251085766245,0.9989799328024974,0.9878658961504456,0.9369310052130434,0.8482284444133457,0.7253338121823868,0.5732009886587487,0.39796244488041627,0.20668204300132,0.007070292150841735,-0.1928264620331768,-0.38495038543428556,-0.5615569665876182,-0.7155271977803388,-0.8406545421084999,-0.931895118854058,-0.9855710222145547,-0.9995185776116228,-0.9731755593694092,-0.9076038540202338,-0.8054466556799447,-0.6708219189465918,-0.509156364233902,-0.32696672678120525,-0.1315970671877978,0.06907726752121683,0.26696709897415954,0.454095492069262,0.6229193050672134,0.7666332534820448,0.879444230961045,0.9568048292846865,0.995596644299836,0.9942559787281458,0.9528368747716838,0.8730089356728614,0.7579900240415149,0.6124165498782131,0.4421565769809474,0.2540732814121688,0.05574829701058043,-0.1448239001154943,-0.33955824875827795,-0.5206050112642046,-0.6806661963000145,-0.8132897407355598,-0.9131295921781464,-0.9761612082362817,-0.9998437857420428,-0.9832226804753655,-0.9269678888532384,-0.8333470403876908,-0.7061339895860462,-0.5504566919520921,-0.37259049620348106,-0.17970518509189787,0.020424038394556077,0.21972996930661637,0.4101785896019397,0.5840929192499559,0.7344624751415333,0.8552258635212575,0.9415151146470664,0.9898519105520539,0.9982877959713361,0.9664827205343531,0.8957187461884264,0.7888483673076031,0.6501795267021557,0.4853019625310945,0.30086188606997283,0.10429407306900527,-0.09647783190708928,-0.29336071743117037,-0.4784182383713976,-0.6441907298032354,-0.7839959059512023,-0.8921982229936469,-0.9644360477199704,-0.997797474877069,-0.9909377060112956,-0.9441332582668329,-0.8592708179851911,-0.7397711884170702,-0.5904513972123339,-0.41733052213320276,-0.22738706215108484,-0.028277634294663494,0.17197166442806872,0.36528878883731614,0.5438811295597835,0.7005496329546304,0.8289789948199419,0.9239922301776442,0.981759357432906,0.9999517848549624,0.9778361760625245,0.9163040107985149,0.8178356493997229,0.6864003495216658,0.5272962654430494,0.3469368795736752,0.15259247510865973,-0.04790292894043015,-0.24646736689326051,-0.4350967102735801,-0.6061873140665676,-0.7528425194950668,-0.8691506581957643,-0.9504233514509406,-0.9933844986399997,-0.9963023367889995,-0.9590592479011951,-0.8831565001361008,-0.7716537317202657,-0.6290456169924556,-0.46108068617178666,-0.2745296022209771,-0.07691223555952739,0.12380546176114794,0.31953256342324743,0.5023793139192316,0.6649751644362127,0.8007658795299136,0.9042777382224105,0.9713381795843301,0.9992439985812318,0.9868703122140137,0.9347159035297771,0.8448831156872937,0.7209931065467737,0.5680398798699596,0.39218897712924616,0.20052894465605553,0.0007855944812178545,-0.1989894229911998,-0.39074318084925197,-0.5667460889935049,-0.7199034737580122,-0.8440415640618064,-0.9341563559966262,-0.9866153241229046,-0.9993038484969602,-0.9717104549579991,-0.9049474326412698,-0.8017059976254364,-0.6661478100670652,-0.5037372177636685,-0.321020988404883,-0.12536440949897135,0.0753456062171607,0.27301844207128284,0.4596859100497025,0.6278234482953514,0.7706534360435359,0.8824183993782047,0.9586130948888072,0.9961661159409864,0.9935637010159991,0.9509107534068163,0.8699266125684985,0.7538757475796566,0.6074361664597476,0.43651084576074956,0.24798978170143315,0.0494722545596136,-0.1510394981625453,-0.3454628517698413,-0.5259606048123893,-0.6852568965172813,-0.8169304965889935,-0.9156736448729981,-0.9775060070598731,-0.9999351218810189,-0.9820568721718113,-0.9245919298162696,-0.8298567054780361,-0.7016699741332558,-0.5451989403287874,-0.36675094827116006,-0.1735192329096131,0.026707039219532797,0.22585675113819131,0.4159021819883907,0.5891826042980527,0.7387130877499215,0.8584660615817418,0.9436142858413588,0.9907254373318077,0.9979004664897259,0.9648501480349413,0.8929067396356473,0.7849702786286731,0.6453916815732917,0.4797973588924886,0.294862414382996,0.09804157191596996,-0.10273132433127913,-0.29936312297333645,-0.48392760018570663,-0.6489849656263199,-0.7878817602341351,-0.8950190570288611,-0.9660781537445827,-0.9981946596304543,-0.9900739589840809,-0.9420433970842087,-0.8560390849091424,-0.7355278545425019,-0.5853675112419215,-0.4116110154074458,-0.2212624878704834,-0.02199487392442276,0.17815935294442523,0.37113197990101815,0.5491442842572218,0.7050205936264458,0.8324775371319189,0.9263773279599763,0.9829348674422477,0.9998703223066221,0.9765010247101777,0.9137689905661849,0.814202946901631,0.6818163989220781,0.5219458456977929,0.34103566599452667,0.14637834549547288,-0.05417948314862476,-0.25255333792333023,-0.44074677275644636,-0.6111737140978691,-0.7569642553904369,-0.8722415828646595,-0.9523588697824995,-0.9940865899294334,-0.9957426997506509,-0.9572604414927675,-0.8801910342074851,-0.7676411441430999,-0.6241476550907054,-0.4554947866906468,-0.26848093265550715,-0.07064461765752289,0.1300393804488761,0.325481493760534,0.5078034546445509,0.6696558685466796,0.8045144679375061,0.9069431054043419,0.9728128846433748,0.9994685961863281,0.9858357488402403,0.9324638824057769,0.8415044157390185,0.7166239231007736,0.5628563346225371,0.38640001868444085,0.194367925811644,-0.00549913421784372,-0.20514452425821733,-0.39652054267663583,-0.5719128260430066,-0.724251314963608,-0.8473952480325586,-0.9363806957994659,-0.9876206566654308,-0.999049648844703,-0.9702069698937973,-0.9022552676176402,-0.7979336737600079,-0.6614473896585246,-0.4982981746635754,-0.3150625703305488,-0.11912680016247287,0.08161096890980434,0.27905900147658036,0.4652581713403706,0.6327027937314019,0.7746431793092668,0.8853577140032538,0.9603834971601124,0.9966962409788139,0.9928321794908005,0.948947072936471,0.8668099290730327,0.7497316945077098,0.6024317905068499,0.43084787322020457,0.2418964868818779,0.04319425805181206,-0.15724913044626823,-0.3513538096778973,-0.5312954239506394,-0.6898205304342073,-0.8205389852937448,-0.9181815302588999,-0.9788121963177646,-0.9999869625483435,-0.9808522745523186,-0.9221794512156516,-0.826333592859822,-0.6971782440958688,-0.5399196544190601,-0.3608969143973972,-0.16732642705869963,0.03298898516899253,0.23197461207208336,0.42160934705625863,0.5942490177914894,0.7429345226435203,0.861672351920358,0.9456761861263192,0.9915598324043374,0.9974737219013508,0.9631794658513926,0.890059465021906,0.781061185166864,0.6405783447416864,0.4742738042014713,0.28885129621028877,0.09178519831354158,-0.10898075907010615,-0.30535370426069103,-0.4894178478111087,-0.6537535678190792,-0.7917364947363492,-0.8978045395707426,-0.9676821015812135,-0.9985524176570257,-0.9891711059817737,-0.9399163270392596,-0.8527735399720664,-0.731255468763573,-0.5802605044054739,-0.40587525085572135,-0.21512917415650493,-0.015711244799899323,0.18434000451662694,0.3769605119810818,0.5543857488349347,0.7094637073706909,0.8359431982176557,0.9287258356588942,0.9840715534565695,0.9997493668460876,0.9751273034869514,0.9111978782549804,0.810538084987689,0.677205517914995,0.5165748101176675,0.3351209821769165,0.14015843422538812,-0.06045389737374052,-0.25862933359295764,-0.4463794266082046,-0.6161359739688534,-0.7610560926857523,-0.875298055705645,-0.9542567718108402,-0.9947494167527383,-0.9951437328330838,-0.9554238251786563,-0.8771908024632894,-0.7635982362497219,-0.6192250405835226,-0.44989089606083993,-0.26242165862103584,-0.06437420943199343,0.1362681628366438,0.33141756821864543,0.5132075381315926,0.6743101225667418,0.8082312796051601,0.9095726501164699,0.9742491655058375,0.9996537167466211,0.9847622468923241,0.9301750307914504,0.8380924780205431,0.7122264344185881,0.5576505576563546,0.3805957981985377,0.18819922981624954,-0.011783645711850345,-0.21129152271979784,-0.4022822427221188,-0.5770569736601406,-0.7285705496660331,-0.8507154615568152,-0.9385680504055727,-0.9885869801334739,-0.9987559886952388,-0.9686651635615242,-0.8995274652845846,-0.794129833083075,-0.6567208433783593,-0.4928394497651881,-0.30909170790403356,-0.11288448555148335,0.08787310812960611,0.28508853859995226,0.4708120558478709,0.6375571486509106,0.7786023256922014,0.8882620587390275,0.9621159661711752,0.9971869984744189,0.9920614430462201,0.9469459109221758,0.8636590082893673,0.7455580285076455,0.5974036196824315,0.42516788303562403,0.2357936376265471,0.03691455545572834,-0.16345255169852013,-0.35723088980115897,-0.5366092579640591,-0.6943569177961781,-0.8241150643215848,-0.9206531492792843,-0.9800797244180414,-0.9999993056964125,-0.9796089351961312,-0.919730548339498,-0.8227778416890886,-0.6926589768883011,-0.5346190427443522,-0.35502862580490424,-0.16112701214284603,0.03926962811838752,0.2380833104647504,0.42729985938371357,0.5992919596168416,0.7471266130839285,0.8648446078949089,0.9477007340609289,0.9923550628126947,0.9970075790617849,0.9614707399723351,0.8871770348089669,0.7771212413236042,0.6357397063247066,0.46873151662745527,0.28282876897926323,0.0855251993762103,-0.11522588928312019,-0.31133222467698873,-0.49488876439356,-0.6584963480310524,-0.7955599572033709,-0.9005545605982067,-0.9692478278771085,-0.9988707348260446,-0.9882291826652745,-0.9377521321470712,-0.8494743121565029,-0.726954199831123,-0.5751305784197728,-0.400123455029512,-0.20898736326304618,-0.009426995112154802,0.19051337502102408,0.38277415486188904,0.5596053162653749,0.713878798693197,0.8393758411903522,0.931037660513008,0.9851693705790083,0.9995889232508597,0.9737150666521335,0.9085907754188092,0.8068412084127755,0.6725678886211984,0.5111833708480747,0.32919306173928803,0.13393298697273653,-0.06672592378874972,-0.26469511391238065,-0.4519944493501003,-0.6210738976801105,-0.7651178697614834,-0.8783199559941138,-0.9561169825725633,-0.9953729529295504,-0.9945054596943206,-0.9535494715016137,-0.8741559234068006,-0.7595251677270861,-0.6142779679045536,-0.44426923562503,-0.2563520194468539,-0.058101258551737624,0.1424915628999171,0.33734055233430976,0.5185913509297913,0.6789377426625152,0.811916167726083,0.9121662684969216,0.9756469654414326,0.999799352950211,0.983649848771492,0.9278494390919606,0.8346474372967001,0.7078008141922868,0.552422754589369,0.3747765449267188,0.18202310032123759,-0.018067691775079026,-0.21743017558158578,-0.40802805340981685,-0.5821783286611365,-0.7328610072639634,-0.8540020734926357,-0.9407183334187165,-0.9895142563591477,-0.9984228796475664,-0.9670850968594679,-0.8967641333849329,-0.7902946258387901,-0.6519683579158564,-0.4873612586772992,-0.30310863696266566,-0.10663771222522178,0.09413177653431368,0.29110681528647375,0.47634734420462727,0.6423863213163515,0.7825307188138007,0.8911313188696184,0.9638104334929105,0.9976383690438451,0.9912515221248168,0.9449073464058967,0.8604739746726154,0.7413549144310662,0.5923518525894059,0.41947109955551226,0.229681474986051,0.030633394807333864,-0.16964951689629343,-0.3630938600064555,-0.5419018969666507,-0.6988658794249023,-0.8276585924244217,-0.9230884043101086,-0.9813085412958351,-0.999972150837696,-0.9783269032127095,-0.9172453179146827,-0.8191895924110538,-0.6881123510127689,-0.5292973146684589,-0.34914631427960396,-0.15492123302681748,0.045548719994667704,0.24418260503473777,0.43297349420670483,0.6043112305879224,0.7512891934918142,0.8679827042075836,0.9496878496795244,0.993111097146833,0.9965020563827596,0.9597240378890988,0.8842595628471868,0.7731506027189696,0.6308759574391074,0.4631707150799605,0.2767950705677844,0.07926182236162828,-0.12146646830008062,-0.31729844808242563,-0.5003401338427208,-0.6632131189317442,-0.799351996616026,-0.9032690114908016,-0.9707752707891406,-0.999149598564606,-0.9872482262387116,-0.9355508978891096,-0.8461415317754978,-0.7226242176368631,-0.5699779359068105,-0.3943558551133299,-0.20283729777956394,-0.0031423730765713595,0.1966792206216173,0.38857267891609176,0.5648027803858894,0.7182656932064909,0.8427753304673246,0.9333127112097566,0.9862282754479355,0.9993889978581457,0.9722643699863175,0.905947785033108,0.8031124631961735,0.667903694217929,0.5057717408401587,0.3232521388228455,0.12770224963032084,-0.07299531466093845,-0.2707504392951393,-0.45759161919971664,-0.6259872901933102,-0.76914942618538,-0.8813071643709139,-0.9579394285929823,-0.9959571738314166,-0.9938279055448825,-0.9516374544949254,-0.8710865169097142,-0.7554220994533927,-0.6093066324533443,-0.43863002742775314,-0.25027225487183813,-0.051826012786047336,0.14870933482656443,0.3432502121612382,0.5239546803890702,0.6835385460520564,0.8155689867544379,0.9147238581029219,0.9770062292398103,0.9999054990447572,0.9824985984152829,0.9254871991635611,0.831169429639826,0.7033472372252131,0.5471731319095776,0.3689424887181075,0.17583978127164476,-0.024351024199999887,-0.22356024037879857,-0.4137577477915029,-0.5872766887626428,-0.7371225182927581,-0.8572549540253758,-0.9428314599069456,-0.9904024487168825,-0.998050334858838,-0.9654668321971722,-0.8939653810648913,-0.7864282035103382,-0.6471901209848974,-0.4818638177777427,-0.29711359382604646,-0.10038672691895474,0.10038672691895474,0.29711359382604646,0.4818638177777427,0.6471901209848974,0.7864282035103382,0.8939653810648913,0.9654668321971722,0.998050334858838,0.9904024487168825,0.9428314599069456,0.8572549540253758,0.7371225182927581,0.5872766887626428,0.4137577477915029,0.22356024037879857,0.024351024199999887,-0.17583978127164476,-0.3689424887181075,-0.5471731319095776,-0.7033472372252131,-0.831169429639826,-0.9254871991635611,-0.9824985984152829,-0.9999054990447572,-0.9770062292398103,-0.9147238581029219,-0.8155689867544379,-0.6835385460520564,-0.5239546803890702,-0.3432502121612382,-0.14870933482656443,0.051826012786047336,0.25027225487183813,0.43863002742775314,0.6093066324533443,0.7554220994533927,0.8710865169097142,0.9516374544949254,0.9938279055448825,0.9959571738314166,0.9579394285929823,0.8813071643709139,0.76914942618538,0.6259872901933102,0.45759161919971664,0.2707504392951393,0.07299531466093845,-0.12770224963032084,-0.3232521388228455,-0.5057717408401587,-0.667903694217929,-0.8031124631961735,-0.905947785033108,-0.9722643699863175,-0.9993889978581457,-0.9862282754479355,-0.9333127112097566,-0.8427753304673246,-0.7182656932064909,-0.5648027803858894,-0.38857267891609176,-0.1966792206216173,0.0031423730765713595,0.20283729777956394,0.3943558551133299,0.5699779359068105,0.7226242176368631,0.8461415317754978,0.9355508978891096,0.9872482262387116,0.999149598564606,0.9707752707891406,0.9032690114908016,0.799351996616026,0.6632131189317442,0.5003401338427208,0.31729844808242563,0.12146646830008062,-0.07926182236162828,-0.2767950705677844,-0.4631707150799605,-0.6308759574391074,-0.7731506027189696,-0.8842595628471868,-0.9597240378890988,-0.9965020563827596,-0.993111097146833,-0.9496878496795244,-0.8679827042075836,-0.7512891934918142,-0.6043112305879224,-0.43297349420670483,-0.24418260503473777,-0.045548719994667704,0.15492123302681748,0.34914631427960396,0.5292973146684589,0.6881123510127689,0.8191895924110538,0.9172453179146827,0.9783269032127095,0.999972150837696,0.9813085412958351,0.9230884043101086,0.8276585924244217,0.6988658794249023,0.5419018969666507,0.3630938600064555,0.16964951689629343,-0.030633394807333864,-0.229681474986051,-0.41947109955551226,-0.5923518525894059,-0.7413549144310662,-0.8604739746726154,-0.9449073464058967,-0.9912515221248168,-0.9976383690438451,-0.9638104334929105,-0.8911313188696184,-0.7825307188138007,-0.6423863213163515,-0.47634734420462727,-0.29110681528647375,-0.09413177653431368,0.10663771222522178,0.30310863696266566,0.4873612586772992,0.6519683579158564,0.7902946258387901,0.8967641333849329,0.9670850968594679,0.9984228796475664,0.9895142563591477,0.9407183334187165,0.8540020734926357,0.7328610072639634,0.5821783286611365,0.40802805340981685,0.21743017558158578,0.018067691775079026,-0.18202310032123759,-0.3747765449267188,-0.552422754589369,-0.7078008141922868,-0.8346474372967001,-0.9278494390919606,-0.983649848771492,-0.999799352950211,-0.9756469654414326,-0.9121662684969216,-0.811916167726083,-0.6789377426625152,-0.5185913509297913,-0.33734055233430976,-0.1424915628999171,0.058101258551737624,0.2563520194468539,0.44426923562503,0.6142779679045536,0.7595251677270861,0.8741559234068006,0.9535494715016137,0.9945054596943206,0.9953729529295504,0.9561169825725633,0.8783199559941138,0.7651178697614834,0.6210738976801105,0.4519944493501003,0.26469511391238065,0.06672592378874972,-0.13393298697273653,-0.32919306173928803,-0.5111833708480747,-0.6725678886211984,-0.8068412084127755,-0.9085907754188092,-0.9737150666521335,-0.9995889232508597,-0.9851693705790083,-0.931037660513008,-0.8393758411903522,-0.713878798693197,-0.5596053162653749,-0.38277415486188904,-0.19051337502102408,0.009426995112154802,0.20898736326304618,0.400123455029512,0.5751305784197728,0.726954199831123,0.8494743121565029,0.9377521321470712,0.9882291826652745,0.9988707348260446,0.9692478278771085,0.9005545605982067,0.7955599572033709,0.6584963480310524,0.49488876439356,0.31133222467698873,0.11522588928312019,-0.0855251993762103,-0.28282876897926323,-0.46873151662745527,-0.6357397063247066,-0.7771212413236042,-0.8871770348089669,-0.9614707399723351,-0.9970075790617849,-0.9923550628126947,-0.9477007340609289,-0.8648446078949089,-0.7471266130839285,-0.5992919596168416,-0.42729985938371357,-0.2380833104647504,-0.03926962811838752,0.16112701214284603,0.35502862580490424,0.5346190427443522,0.6926589768883011,0.8227778416890886,0.919730548339498,0.9796089351961312,0.9999993056964125,0.9800797244180414,0.9206531492792843,0.8241150643215848,0.6943569177961781,0.5366092579640591,0.35723088980115897,0.16345255169852013,-0.03691455545572834,-0.2357936376265471,-0.42516788303562403,-0.5974036196824315,-0.7455580285076455,-0.8636590082893673,-0.9469459109221758,-0.9920614430462201,-0.9971869984744189,-0.9621159661711752,-0.8882620587390275,-0.7786023256922014,-0.6375571486509106,-0.4708120558478709,-0.28508853859995226,-0.08787310812960611,0.11288448555148335,0.30909170790403356,0.4928394497651881,0.6567208433783593,0.794129833083075,0.8995274652845846,0.9686651635615242,0.9987559886952388,0.9885869801334739,0.9385680504055727,0.8507154615568152,0.7285705496660331,0.5770569736601406,0.4022822427221188,0.21129152271979784,0.011783645711850345,-0.18819922981624954,-0.3805957981985377,-0.5576505576563546,-0.7122264344185881,-0.8380924780205431,-0.9301750307914504,-0.9847622468923241,-0.9996537167466211,-0.9742491655058375,-0.9095726501164699,-0.8082312796051601,-0.6743101225667418,-0.5132075381315926,-0.33141756821864543,-0.1362681628366438,0.06437420943199343,0.26242165862103584,0.44989089606083993,0.6192250405835226,0.7635982362497219,0.8771908024632894,0.9554238251786563,0.9951437328330838,0.9947494167527383,0.9542567718108402,0.875298055705645,0.7610560926857523,0.6161359739688534,0.4463794266082046,0.25862933359295764,0.06045389737374052,-0.14015843422538812,-0.3351209821769165,-0.5165748101176675,-0.677205517914995,-0.810538084987689,-0.9111978782549804,-0.9751273034869514,-0.9997493668460876,-0.9840715534565695,-0.9287258356588942,-0.8359431982176557,-0.7094637073706909,-0.5543857488349347,-0.3769605119810818,-0.18434000451662694,0.015711244799899323,0.21512917415650493,0.40587525085572135,0.5802605044054739,0.731255468763573,0.8527735399720664,0.9399163270392596,0.9891711059817737,0.9985524176570257,0.9676821015812135,0.8978045395707426,0.7917364947363492,0.6537535678190792,0.4894178478111087,0.30535370426069103,0.10898075907010615,-0.09178519831354158,-0.28885129621028877,-0.4742738042014713,-0.6405783447416864,-0.781061185166864,-0.890059465021906,-0.9631794658513926,-0.9974737219013508,-0.9915598324043374,-0.9456761861263192,-0.861672351920358,-0.7429345226435203,-0.5942490177914894,-0.42160934705625863,-0.23197461207208336,-0.03298898516899253,0.16732642705869963,0.3608969143973972,0.5399196544190601,0.6971782440958688,0.826333592859822,0.9221794512156516,0.9808522745523186,0.9999869625483435,0.9788121963177646,0.9181815302588999,0.8205389852937448,0.6898205304342073,0.5312954239506394,0.3513538096778973,0.15724913044626823,-0.04319425805181206,-0.2418964868818779,-0.43084787322020457,-0.6024317905068499,-0.7497316945077098,-0.8668099290730327,-0.948947072936471,-0.9928321794908005,-0.9966962409788139,-0.9603834971601124,-0.8853577140032538,-0.7746431793092668,-0.6327027937314019,-0.4652581713403706,-0.27905900147658036,-0.08161096890980434,0.11912680016247287,0.3150625703305488,0.4982981746635754,0.6614473896585246,0.7979336737600079,0.9022552676176402,0.9702069698937973,0.999049648844703,0.9876206566654308,0.9363806957994659,0.8473952480325586,0.724251314963608,0.5719128260430066,0.39652054267663583,0.20514452425821733,0.00549913421784372,-0.194367925811644,-0.38640001868444085,-0.5628563346225371,-0.7166239231007736,-0.8415044157390185,-0.9324638824057769,-0.9858357488402403,-0.9994685961863281,-0.9728128846433748,-0.9069431054043419,-0.8045144679375061,-0.6696558685466796,-0.5078034546445509,-0.325481493760534,-0.1300393804488761,0.07064461765752289,0.26848093265550715,0.4554947866906468,0.6241476550907054,0.7676411441430999,0.8801910342074851,0.9572604414927675,0.9957426997506509,0.9940865899294334,0.9523588697824995,0.8722415828646595,0.7569642553904369,0.6111737140978691,0.44074677275644636,0.25255333792333023,0.05417948314862476,-0.14637834549547288,-0.34103566599452667,-0.5219458456977929,-0.6818163989220781,-0.814202946901631,-0.9137689905661849,-0.9765010247101777,-0.9998703223066221,-0.9829348674422477,-0.9263773279599763,-0.8324775371319189,-0.7050205936264458,-0.5491442842572218,-0.37113197990101815,-0.17815935294442523,0.02199487392442276,0.2212624878704834,0.4116110154074458,0.5853675112419215,0.7355278545425019,0.8560390849091424,0.9420433970842087,0.9900739589840809,0.9981946596304543,0.9660781537445827,0.8950190570288611,0.7878817602341351,0.6489849656263199,0.48392760018570663,0.29936312297333645,0.10273132433127913,-0.09804157191596996,-0.294862414382996,-0.4797973588924886,-0.6453916815732917,-0.7849702786286731,-0.8929067396356473,-0.9648501480349413,-0.9979004664897259,-0.9907254373318077,-0.9436142858413588,-0.8584660615817418,-0.7387130877499215,-0.5891826042980527,-0.4159021819883907,-0.22585675113819131,-0.026707039219532797,0.1735192329096131,0.36675094827116006,0.5451989403287874,0.7016699741332558,0.8298567054780361,0.9245919298162696,0.9820568721718113,0.9999351218810189,0.9775060070598731,0.9156736448729981,0.8169304965889935,0.6852568965172813,0.5259606048123893,0.3454628517698413,0.1510394981625453,-0.0494722545596136,-0.24798978170143315,-0.43651084576074956,-0.6074361664597476,-0.7538757475796566,-0.8699266125684985,-0.9509107534068163,-0.9935637010159991,-0.9961661159409864,-0.9586130948888072,-0.8824183993782047,-0.7706534360435359,-0.6278234482953514,-0.4596859100497025,-0.27301844207128284,-0.0753456062171607,0.12536440949897135,0.321020988404883,0.5037372177636685,0.6661478100670652,0.8017059976254364,0.9049474326412698,0.9717104549579991,0.9993038484969602,0.9866153241229046,0.9341563559966262,0.8440415640618064,0.7199034737580122,0.5667460889935049,0.39074318084925197,0.1989894229911998,-0.0007855944812178545,-0.20052894465605553,-0.39218897712924616,-0.5680398798699596,-0.7209931065467737,-0.8448831156872937,-0.9347159035297771,-0.9868703122140137,-0.9992439985812318,-0.9713381795843301,-0.9042777382224105,-0.8007658795299136,-0.6649751644362127,-0.5023793139192316,-0.31953256342324743,-0.12380546176114794,0.07691223555952739,0.2745296022209771,0.46108068617178666,0.6290456169924556,0.7716537317202657,0.8831565001361008,0.9590592479011951,0.9963023367889995,0.9933844986399997,0.9504233514509406,0.8691506581957643,0.7528425194950668,0.6061873140665676,0.4350967102735801,0.24646736689326051,0.04790292894043015,-0.15259247510865973,-0.3469368795736752,-0.5272962654430494,-0.6864003495216658,-0.8178356493997229,-0.9163040107985149,-0.9778361760625245,-0.9999517848549624,-0.981759357432906,-0.9239922301776442,-0.8289789948199419,-0.7005496329546304,-0.5438811295597835,-0.36528878883731614,-0.17197166442806872,0.028277634294663494,0.22738706215108484,0.41733052213320276,0.5904513972123339,0.7397711884170702,0.8592708179851911,0.9441332582668329,0.9909377060112956,0.997797474877069,0.9644360477199704,0.8921982229936469,0.7839959059512023,0.6441907298032354,0.4784182383713976,0.29336071743117037,0.09647783190708928,-0.1042940730689737,-0.30086188606997283,-0.4853019625310667,-0.6501795267021798,-0.7888483673076031,-0.8957187461884405,-0.9664827205343531,-0.9982877959713379,-0.9898519105520539,-0.941515114647077,-0.8552258635212575,-0.7344624751415547,-0.5840929192499559,-0.4101785896019686,-0.21972996930661637,-0.020424038394587816,0.17970518509192912,0.37259049620348106,0.5504566919521185,0.7061339895860462,0.8333470403877085,0.9269678888532384,0.9832226804753714,0.9998437857420428,0.9761612082362886,0.9131295921781464,0.8132897407355782,0.6806661963000145,0.5206050112642316,0.3395582487582481,0.1448239001154943,-0.055748297010612125,-0.2540732814121688,-0.4421565769809759,-0.6124165498782131,-0.7579900240415357,-0.8730089356728614,-0.9528368747716741,-0.9942559787281458,-0.995596644299839,-0.9568048292846865,-0.8794442309610601,-0.7666332534820245,-0.6229193050672134,-0.45409549206923366,-0.26696709897415954,-0.06907726752118516,0.1315970671877978,0.3269667267812353,0.509156364233902,0.6708219189465683,0.8054466556799447,0.9076038540202205,0.9731755593694092,0.9995185776116218,0.9855710222145547,0.931895118854058,0.8406545421084827,0.7155271977803388,0.5615569665875919,0.38495038543428556,0.19282646203314563,-0.007070292150841735,-0.20668204300128895,-0.39796244488041627,-0.5732009886587227,-0.7253338121823868,-0.8482284444133288,-0.9369310052130434,-0.9878658961504456,-0.998979932802496,-0.9698251085766245,-0.9015766538474401,-0.79698566244418,-0.6602681951139527,-0.49693533019858493,-0.31357101217790007,-0.11756665300105583,0.08317681557935737,0.280567428406827,0.4666483738721547,0.6339187328289067,0.7756358404919788,0.8860870831190619,0.9608201733546587,0.9968226218435667,0.9926431706156487,0.9484502932653325,0.8660254037844386,0.7486910478001494,0.6011769708279976,0.42942946232602436,0.24037166088670173,0.04162448266077295,-0.15880057761904462,-0.35282438982814546,-0.532625858022375,-0.6909571886568133,-0.8214360489973571,-0.918802838823706,-0.9791327048081379,-0.9999937512734968,-0.9805450698588913,-0.9215706365185953,-0.8254477094673044,-0.6960510019494472,-0.5385964926269374,-0.35943116958453625,-0.1657771833689651,0.0345592777539375,0.23350265508978857,0.4230335451237198,0.5955119615133115,0.7439853027839313,0.862468611553076,0.9461858280417034,0.9917623129470988,0.9973608790848917,0.9627558483673523,0.8893421488825284,0.7800790853711561,0.6393710497126195,0.4728899799771429,0.28734672471729084,0.09022052879819432,-0.11054245481117471,-0.3068494743038814,-0.49078739769612684,-0.6549416910178321,-0.7926952980267352,-0.8984953736115269,-0.9680771188662064,-0.9986356950474305,-0.9889392865676748,-0.9393787554565673,-0.8519518857203591,-0.7301828527091766,-0.578980163679753,-0.4044387959675248,-0.21359450857319692,-0.014140230860212164,0.18588403927263436,0.3784153275436368,0.5556927016181474,0.7105701141343596,0.8368044597274363,0.9293072344808224,0.9843496534158513,0.9997129577390136,0.9747778529638939,0.9105494726594252,0.8096168615361246,0.6760486111060409,0.5152288548414754,0.33364023386338915,0.13860258180908216,-0.06202213751340483,-0.26014674572774354,-0.44778484388554196,-0.6173727440468412,-0.7620743613874736,-0.8760567766404179,-0.9547253609530759,-0.9949089852836317,-0.9949878485483706,-0.9549587717706869,-0.8764353262255659,-0.7625827904140409,-0.6179905577510542,-0.4484871382095415,-0.26090521120142823,-0.06280620040899736,0.13782452705116263,0.3328995506145679,0.5145554000286429,0.6754695316790157,0.809155500174893,0.9102244268311235,0.9746022252592837,0.9996938277073143,0.9844877921882536,0.9295970736862057,0.8372343159533311,0.7111226598849296,0.5563456637854549,0.3791423852358263,0.18665588480895998,-0.01335471055782437,-0.21282697781217963,-0.4037201938973244,-0.5783394571352791,-0.7296458685582728,-0.8515402697832831,-0.9391090999634141,-0.9888224613259171,-0.998676409280203,-0.9682737313836033,-0.8988399589669814,-0.7931739659914868,-0.6555351464959827,-0.4914717185092662,-0.3075970754939264,-0.11132320058928158,0.08943811027854347,0.2865941727307917,0.4721976298791441,0.6387668101215623,0.7795873131727301,0.8889826674040723,0.9625431483000461,0.9973035343641109,0.9918626351373868,0.9464397731576155,0.8628659430720881,0.7445100042805719,0.596142882280868,0.4237452527588179,0.23426646067205825,0.035344392295812245,-0.16500240781878225,-0.35869796421279637,-0.5379344129272862,-0.6954867363412859,-0.8250040034857913,-0.9212653759429374,-0.9803905597366687,-0.999996219904634,-0.9792920526821515,-0.9191126426310187,-0.8218838205527647,-0.6915248782979775,-0.5332905821913472,-0.3535593535071242,-0.15957615443700163,0.04083955618961308,0.2396090251326336,0.42871985912074245,0.6005490042624613,0.7481700311938094,0.8656323393062371,0.9482010253363902,0.9925477472211377,0.9968848894985889,0.9610376220513002,0.8864509475047607,0.77613145320071,0.6345261157224094,0.4673430433583379,0.2813213823726485,0.08395966215582977,-0.11678647034371399,-0.31282494258669646,-0.4962534477237632,-0.6596779864242154,-0.7965109188398681,-0.9012365122336375,-0.9696332800549012,-0.9989441499766811,-0.9879876014255239,-0.9372052926518389,-0.8486442574947672,-0.725874389489503,-0.5738445395312906,-0.3986830277956822,-0.207450611276633,-0.007855864814514262,0.1920555513992599,0.3842252122221813,0.5609067625149434,0.7149781725599966,0.8402288269360224,0.9316098742994446,0.985437746480069,0.9995426430393799,0.9733559958825161,0.9079333882265102,0.8059120040622149,0.6714043233208986,0.509832347891785,0.32770904083509966,0.13237578897321517,-0.06829352826381503,-0.266209934758256,-0.4533954241690827,-0.6223045532056551,-0.7661285982942977,-0.8790700150874413,-0.9565761373595101,-0.9955226948899755,-0.994339752732829,-0.9530749952624513,-0.873391804017574,-0.7585022068249553,-0.613037401022754,-0.4428610699894083,-0.25483301818573945,-0.056532652575293885,0.14404654311658024,0.3388192255701818,0.5199341118965908,0.6800904646927933,0.8128323846181778,0.9128090475664513,0.9759903962771243,0.999829591862001,0.9833656768294693,0.9272623112613597,0.8337810206884573,0.7066900340423732,0.5511123864232049,0.3733194096585236,0.180477935044126,-0.019638601479992537,-0.21896350637581996,-0.409461996760145,-0.5834550823401213,-0.7339291053566819,-0.8548184609865307,-0.9412501017504065,-0.989739969957975,-0.9983334400029256,-0.9666841092816157,-0.8960677616750471,-0.7893309407263897,-0.6507762055282749,-0.48598869465319683,-0.3016109893301422,-0.10507535112998531,0.09569587234812696,0.29260959714831764,0.4777282350079949,0.6435896573808515,0.7835079936870769,0.8918431386213321,0.9642281046832337,0.9977450553555426,0.9910429230348399,0.9443918705393203,0.8596724008511998,0.7402995540793761,0.5910852472618315,0.41804430608717963,0.22815200739273703,0.02906290589683553,-0.17119772074770867,-0.3645573707329268,-0.54322172048046,-0.6999888136668543,-0.8285393719379089,-0.9236915248908096,-0.9816096911653573,-0.9999591906508682,-0.9780003553944138,-0.9166183456008666,-0.8182874688430012,-0.6869714407732082,-0.527963607826098,-0.3476735725303318,-0.15336882256069395,0.04711822154322807,0.24570593109000702,0.4343892395261608,0.6055623265064456,0.7523252083582853,0.8687618762836475,0.9501787705545408,0.9932939778102949,0.9963695249188231,0.9592814366383756,0.8835247330571435,0.7721531653636146,0.629656119198023,0.4617776476079065,0.2752849283864213,0.07769547927179393,-0.12302587304018943,-0.31878805489934825,-0.5016998967157448,-0.6643882258469238,-0.8002950790374426,-0.90394205378513,-0.9711511426351299,-0.9992131485757226,-0.9869968927153036,-0.9349948120804226,-0.8453031094891941,-0.7215372556583616,-0.568686249651523,-0.3929115124280274,-0.2012985200886039,-0.0015711884775991742,0.19821947770914616,0.3900199207602081,0.5660986686970879,0.719357990753315,0.8436200067576585,0.9338757173594053,0.986486916690433,0.9993328483702376,0.971895693152715,0.9052814422095408,0.8021753146483618,0.6667335163848254,0.5044157035665765,0.32176490394390456,0.1261437675538439,-0.07456222155391959,-0.27226260901965854,-0.4589880962246492,-0.6272117825579879,-0.7701525746274154,-0.8820485319969363,-0.958389130888947,-0.9960970833068667,-0.993652382451712,-0.9511535741654487,-0.8703137845502288,-0.7543916638897156,-0.6080600305221665,-0.4372175096277536,-0.24875075976678063,-0.05025687181294504,0.150262869626773,0.3447255178322542,0.5252922873892003,0.6846845354701311,0.8164771637801655,0.915357614138818,0.9773400175929046,0.9999258647132648,0.9822047204595301,0.924890923797999,0.8302947927124106,0.7022294953326766,0.5458573412050627,0.3674816886983484,0.174292856755827,-0.02592171671600762,-0.2250913863113949,-0.4151876266790682,-0.5885476622162134,-0.7381833533981803,-0.8580628885409635,-0.9433539260087022,-0.9906183858068504,-0.9979510385172938,-0.96505630505761,-0.8932601714680083,-0.7854567384407546,-0.6459915601798832,-0.48048647519904064,-0.29561299012518344,-0.09882335140081243,0.10194985461893397,0.2986134640619654,0.4832399708106765,0.6483870841138853,0.7873977271759256,0.8946683837877074,0.965874975951757,0.9981471673786456,0.9901840666850077,0.9423066662986783,0.8564449032604139,0.736059863501068,0.5860042655374271,0.41232684748718096,0.22202854255762283,0.022780271570207476,-0.177386271703267,-0.3704023779536161,-0.5484875718433754,-0.7044632428103141,-0.8320420147135701,-0.9260811898392574,-0.9827900509408481,-0.9998826649747822,-0.9766700290151819,-0.9140878439479179,-0.8146587963867639,-0.6823908692269701,-0.5226157799362056,-0.3417740591308185,-0.14715543291732341,0.053395025819526404,0.2517931321461088,0.4400414624105362,0.6105517302289925,0.7564506701558198,0.8718570988747486,0.9521189855791071,0.9940009752399444,0.995814805701472,0.9574873614944502,0.8805636211193951,0.7681443789943386,0.6247612524946514,0.4561940125482089,0.26923760118667545,0.0714282275690599,-0.12926041645658592,-0.32473857571032166,-0.507126529548043,-0.6690722232407593,-0.8040476291526458,-0.9066118914024863,-0.9726306466543043,-0.9994426802196391,-0.9859671995680402,-0.9327474010519109,-0.8419285736725185,-0.7171716225240127,-0.5635054977828123,-0.3871244778279552,-0.19513847800492867,0.004713549918172152,0.2043755747393209,0.3957992242780623,0.5712682150947553,0.7237093957201056,0.8469778652474078,0.9361046741643345,0.9874971226068359,0.9990835820180638,0.9703970024535777,0.9025937393551978,0.7984069408864887,0.6620363747856086,0.4989791358126527,0.31580805797152606,0.11990676370362652,-0.08082796978297316,-0.27830452944321604,-0.4645626391526893,-0.6320942382778766,-0.7741461314478755,-0.88499220972334,-0.9601642699317059,-0.9966321278470855,-0.9929257648548004,-0.9491945843720752,-0.8672013893992485,-0.7502513239667282,-0.6030586428456921,-0.4315566800338328,-0.24265867618180295,-0.04397910600295407,0.15647326104900078,0.3506181941141499,0.5306297148690726,0.6892515625542641,0.8200896936992073,0.9178700258848275,0.9786510358992095,0.9999826424585172,0.9810049689339415,0.9224830049612901,0.8267757697241673,0.6977412199383507,0.5405807356949841,0.36162945293386173,0.16810089424218452,-0.03220380809516909,-0.231210375579693,-0.4208968575029095,-0.5936169956166094,-0.7424084446482482,-0.8612734242980707,-0.9454204896413567,-0.9914576741768347,-0.9975292199273961,-0.963390383006653,-0.8904172992401588,-0.7815515121579945,-0.6411813994346522,-0.47496527747364986,-0.289603314788228,-0.09256744834352522,0.1081998100708956,0.3046055363306732,0.4887326195844597,0.6531589008316899,0.7912563600024098,0.8974582913117113,0.967483697057438,0.9985098545507854,0.9892861000110359,0.9401842427970534,0.8531835777795403,0.7317911000050912,0.5809001377964955,0.40659310278725475,0.21589630803166324,0.01649673746763364,-0.18356781624979734,-0.3762327550085096,-0.5537317590255212,-0.7089098470405103,-0.8355117934652703,-0.9284342764011881,-0.9839315924413105,-0.9997666458989893,-0.9753011260897325,-0.9115212376220385,-0.810997946509518,-0.6777833445829287,-0.5172473097503587,-0.3358610463278257,-0.14093623092362942,0.059669721097395156,0.2578703878684634,0.44567630452217566,0.615517018358412,0.7605462536389902,0.8749178848243326,0.9540215937754094,0.9946687115850694,0.9952207537568588,0.9556554674820029,0.8775677286496162,0.7641052524321035,0.6198417089499559,0.45059235872191084,0.2631796396309474,0.06515815459174981,-0.13548985434063132,-0.3306762699860429,-0.5125331318793287,-0.6737297935970327,-0.8077684209670868,-0.9092459196323414,-0.9740717336748952,-0.9996327358423819,-0.9848985626545991,-0.9304631483346437,-0.8385207833323073,-0.7127776625203834,-0.5583024885546729,-0.38132215257201446,-0.18897072833484926,0.010998102137987563,0.21052359933605297,0.4015628945046159,0.5764151975209202,0.7280322155883393,0.850302269776461,0.9382966566748199,0.9884683243281083,0.9987948538283956,0.9688599829804408,0.8998703858224605,0.7946070316199514,0.6573130840509182,0.4935228593637528,0.30983873820167024,0.11366502377195441,-0.08709052546611117,-0.2843354573848272,-0.4701188327697157,-0.6369517275179182,-0.7781091110179525,-0.8879009319971106,-0.9619014843732845,-0.9971278073774245,-0.9921599286420614,-0.9471981032584975,-0.8640547414981232,-0.7460813505912812,-0.5980334355383123,-0.42587880479940066,-0.2365570080562556,-0.037699603104729695,0.16267747208501082,0.35649702166662,0.5359461835182073,0.6937913655566006,0.8236698316874723,0.9203461835691549,0.9799233994134464,0.9999999228551489,0.9797664696405304,0.9200386498592937,0.823224090718288,0.6932253851375417,0.5352827783085141,0.3557629335168719,0.16190229207367063,-0.03848462748708984,-0.2373202324926669,-0.4265894637282745,-0.5986628823126052,-0.7466042122242577,-0.8644499414480014,-0.9474497110231691,-0.9922578019176873,-0.9970680008942447,-0.9616864089294259,-0.8875392572793632,-0.7776154161268708,-0.6363459132845719,-0.4694253195535933,-0.28358220068963785,-0.08630788905399667,0.11444549184305759,0.31058557727960795,0.49420596438051523,0.6579049190568852,0.7950837397581182,0.9002127509974233,0.9690542044589242,0.9988331025465317,0.988349058480843,0.9380246838660432,0.8498885532245918,0.7274934321992121,0.575773065642049,0.4008432984590453,0.2097555460258195,0.010212551776358963,-0.1897421102284417,-0.38204827160917515,-0.5589540748917062,-0.7133284507252277,-0.8389485711435698,-0.9307506916343085,-0.9850342705780747,-0.999611138006019,-0.9738937006870405,-0.9089186279991329,-0.807305063807637,-0.6731490488290633,-0.5118584093125768,-0.3299347676737355,-0.13471146222586503,0.06594205953857873,0.2639374582172938,0.45129354329589283,0.6204579947755839,0.7646117970402165,0.8779441132373106,0.9558865199941643,0.9952971604713974,0.994587392548868,0.9537858269571718,0.8745371739796699,0.760035945214468,0.6148976828762359,0.4449729073831005,0.2571112829969327,0.05888550799542065,-0.14171394064177492,-0.33660090319913993,-0.5179194901593293,-0.6783607529508706,-0.8114573075168031,-0.9118440344357579,-0.9754743467768565,-0.9997833079371276,-0.9837910241840373,-0.928142144152113,-0.8350798730694422,-0.7083555492002561,-0.5530774274757414,-0.37550476584064657,-0.18279551469247748,0.01728221995426152,0.2166633086644566,0.40731070378622514,0.5815394126798945,0.7323262796153038,0.8535930890373742,0.9404515783118612,0.9894004834936915,0.9984666752054173,0.967284695442552,0.89711148917844,0.7907757369376961,0.6525638307415473,0.4880470897321814,0.30385718041073345,0.10741879429528493,-0.093349641244695,-0.2903551546349376,-0.47565645761700287,-0.6417840584168365,-0.782041356807744,-0.8907745839295538,-0.9636007055971272,-0.9975841023195164,-0.9913549040625195,-0.9451642096818343,-0.860873965133324,-0.7418819084691255,-0.5929846070858372,-0.4201841081893675,-0.23044599639378835,-0.03141861114629221,0.16887525768066333,0.36236176828753275,0.5412414833467586,0.698303765163846,0.8272174363365481,0.922785989388439,0.9811570578797306,0.9999777052206192,0.9784892714975841,0.9175579550392311,0.8196398959791114,0.6886821692966647,0.5299636783045547,0.34988236216336355,0.1556972950828858,-0.044763926812004494,-0.24342071572297921,-0.43226522050840777,-0.6036851230015955,-0.7507704904015519,-0.8675923145245092,-0.9494415100038838,-0.993018737425935,-0.9965673996350849,-0.9599444501294861,-0.8846261592626214,-0.773648605815439,-0.6314852927218397,-0.4638668202560944,-0.2775498856515837,-0.08004492077251371,0.12068665324326766,0.31655335070878626,0.4996597890123732,0.662624951331081,0.7988797152690742,0.9029316540491006,0.9705864361243239,0.9991168985982241,0.9873729791057273,0.9358280748039804,0.8465599597424275,0.7231670298328611,0.5706232515833589,0.39507766160852076,0.20360649908824321,0.003927962709491848,-0.19590890976672526,-0.38784869805413896,-0.5641543131707196,-0.7177188793384852,-0.8423522120025063,-0.93303034404477,-0.9860980417975221,-0.9994161474381208,-0.9724478083976422,-0.906280117877165,-0.8035802941427282,-0.6684881650110394,-0.5064492914739428,-0.3239954572449048,-0.12848137269015728,0.07221179339803882,0.26999410355549314,0.45689295686179837,0.6253744643216528,0.7686471397785264,0.8809356645837314,0.9577136905744521,0.9958862970764324,0.9939147470940218,0.9518785137671192,0.8714720768105707,0.7559366180710683,0.6099293695528024,0.4393358804891721,0.25103277097254406,0.05261053553728224,-0.1479324295208431,-0.34251224133824754,-0.5232853916376988,-0.6829649183884823,-0.8151141430980277,-0.9144061331923086,-0.9768384305596983,-0.9998943905565725,-0.9826446279019474,-0.9257844801794214,-0.8316059787931831,-0.7039054572285043,-0.5478305209256591,-0.36967254740919175,-0.17661308098661305,0.023565655156947484,0.22279446021808266,0.41304242509572237,0.5866406581752526,0.7365914181938237,0.8568501930491901,0.9425693539602902,0.9902935632851309,0.9980990591115446,0.9656712020607053,0.8943171583941302,0.7869132081683312,0.6477888024436662,0.4825520431998535,0.29786362085849005,0.10116832198740365,-0.0996050698959555,-0.29636338342721735,-0.4811752949691438,-0.6465910401070604,-0.7859427135012711,-0.8936130520170079,-0.9652618664873028,-0.9980009946506081,-0.9905107229130632,-0.9430929839768836,-0.8576591859391361,-0.7376531634699697,-0.5879123569070658,-0.4144728151330549,-0.22432588256747213,-0.0251363782146038,0.17506637303561084,0.3682122023309255,0.5465154052006851,0.702788583144996,0.8307323675230248,0.9251893469751463,0.9823519625709779,0.9999159904324799,0.9771734249519186,0.9150410184836711,0.8160233270752839,0.6841117518639055,0.524623645777208,0.3439879711443452,0.14948614835501348,-0.05104145804980658,-0.24951158431341164,-0.43792390366207384,-0.6086835193149458,-0.7549071146203326,-0.870700419410162,-0.9513958079113565,-0.9937404506461214,-0.9960274359226823,-0.9581645754108159,-0.8816781202516385,-0.7696512379049087,-0.6265997297314128,-0.45828999913106044,-0.2715066079387735,-0.07377879087401179,0.1269230477579193,0.3225086209028892,0.505093878064902,0.6673188112222812,0.8026441366017073,0.9056148930754175,0.9720803315334665,0.9993612314964718,0.9863579004389055,0.933594502372605,0.8431979288060129,0.7188120637905147,0.5654508990279571,0.38929641996700254,0.19744941009420067,-0.0023567815043077237,-0.20206797128818893,-0.39363380523795893,-0.569332268463372,-0.7220809594668939,-0.8457225816048891,-0.9352731435907842,-0.9871228640827808,-0.9991816818970415,-0.9709635063314714,-0.9036058114720978,-0.7998237846358716,-0.6638008772246051,-0.5010201698837597,-0.3180433496324201,-0.1222462083927957,0.07847867503361294,0.2760400846573539,0.4624743240539511,0.6302662328057361,0.7726521224658144,0.8838924207031361,0.959503033346591,0.9964360981304368,0.9932028439604937,0.9499336032469664,0.8683725582075074,0.7518074329172676,0.604936965218265,0.43368150069160666,0.24494434364717985,0.046333485066538255,-0.15414507535974936,-0.3484100509171296,-0.5286306243717682,-0.6875421080542912,-0.8187387832729435,-0.9169321147041292,-0.9781639311447929,-0.9999659793131759,-0.9814594190887289,-0.923390249539661,-0.8280992377155247,-0.699427562374833,-0.5425619761470268,-0.363825727638813,-0.17042367141123396,0.029848159562579895,0.22891681182837373,0.41875783204138317,0.5917187325178255,0.7408274628593092,0.8600734531628348,0.9446498999721316,0.9911475284275302,0.9976920200668908,0.9640195665646524,0.8914875038401041,0.7830195978741503,0.6429881877615056,0.4770379368104155,0.2918582962788817,0.0949138537296796,-0.10585656434275782,-0.3023599064484401,-0.4866751268431351,-0.6513724827222627,-0.7898130270026136,-0.8964162241455634,-0.9668849014312888,-0.9983784679042721,-0.9896274185371885,-0.9409845079529889,-0.8544105308930819,-0.7333952826210147,-0.582816885345909,-0.4087451512153112,-0.2181969083097722,-0.018853152445261843,0.1812505736129673,0.37404809271615425,0.551767740770441,0.707245642358738,0.8342144864140303,0.9275561614013766,0.9835080662908018,0.999814780928344,0.9758189819769136,0.9124879396066601,0.812374526854168,0.679514313361768,0.5192628916470456,0.33807999327667493,0.1432690972181396,-0.05731697325035252,-0.25559259768687437,-0.44356528968241193,-0.6136578738258274,-0.7590139214920751,-0.8737741333408627,-0.9533125275546231,-0.9944229130719928,-0.9954481310845421,-0.9563468550749679,-0.8786952566880408,-0.7656234702834543,-0.6216894172834252,-0.452695076451963,-0.2654526062485528,-0.06750974685830399,0.13315442906168862,0.3284511526404509,0.5105080169021561,0.6719863133321531,0.8063768550687749,0.9082623620937071,0.9735358316804199,0.9995660915906157,0.9853038625739894,0.9313240547936369,0.839802593208961,0.7144287060845949,0.5602562122736017,0.38349980188217087,0.19128452223660358,-0.008641432629870814,-0.20821905152188583,-0.39940336466027365,-0.5744877362506081,-0.7264145188168636,-0.8490595468278803,-0.9374790016861776,-0.9881086969553851,-0.9989077506437093,-0.9694408531154818,-0.9008958144137773,-0.7960356836618077,-0.659087370608414,-0.495571258981767,-0.31207867993295224,-0.11600621561051305,0.08474245691579586,0.28207516271850763,0.4680374244195444,0.6351331070125951,0.7766265869131371,0.8868142648094706,0.9612544776351312,0.9969465419173497,0.992451711267058,0.947951172216856,0.8652387405954335,0.747648552847847,0.5999206670627807,0.42800999132729095,0.23884624150175082,0.04005460451408926,-0.16035163277119585,-0.35429409898390163,-0.533954977235352,-0.6920921411584886,-0.8223310848753891,-0.9194218791999155,-0.9794507961774725,-0.9999980713793202,-0.9802354445578252,-0.9209595468002356,-0.8245597883458463,-0.694922041507376,-0.5372720012367938,-0.35796453746739776,-0.1642275304358514,0.036129485024584816,0.2350301216747239,0.42445669887586857,0.5967734351336591,0.7450342462963235,0.8632627420658038,0.9466931341698671,0.991962345190945,0.997245574148698,0.9623298541907807,0.8886226372822122,0.7790950598451059,0.6381621763099085,0.47150498836023014,0.2858414438701814,0.08865563656131398,-0.11210387766336044,-0.3083444868477343,-0.49215573600631735,-0.6561281974047634,-0.7936521444419965,-0.8991839895954319,-0.9684697463223614,-0.9987165071710503,-0.9887050258236818,-0.9388388648908086,-0.8511281283106495,-0.729108434100012,-0.5776983936634772,-0.40300134266760185,-0.21205931570312345,-0.012569182013459647,0.18742761514884193,0.3798692089370209,0.5569982825990962,0.7116747667599035,0.837663655472644,0.9298863391826127,0.9846253233753781,0.9996740807057878,0.9744259960703493,0.9098988192497949,0.8086936394361995,0.6748900353800356,0.5138816276534253,0.3321586619139845,0.13704638723356263,-0.06359022454312822,-0.26166351565517,-0.4491891557456506,-0.6186079900570157,-0.7630907488059813,-0.8768133349109535,-0.9551915932271033,-0.995066097747625,-0.9948295080020666,-0.954491360918322,-0.8756776863891349,-0.7615654620400614,-0.6167545493255662,-0.44708227320724936,-0.25938811970220954,-0.06123803634043208,0.13938055102726374,0.3343807112031494,0.5159019916762944,0.6766272733037272,0.8100777232352353,0.9108739565341477,0.9749528790757893,0.9997314707890794,0.9842109071434251,0.9290168217452927,0.8363740870603533,0.710017129849202,0.5550393965003134,0.3776880363090452,0.18511207901640345,-0.01492574243583227,-0.21436190751248702,-0.4051571484348277,-0.5796205129015849,-0.7307193862213188,-0.852362975867845,-0.9396478312038483,-0.9890555014768744,-0.9985943644978701,-0.9678799088915118,-0.8981502337418158,-0.7922161408430786,-0.6543478313367117,-0.4901027739892338,-0.30610168373898794,-0.10976164081075772,0.09100289163751654,0.28809909936523476,0.47358203822693656,0.6399748947101681,0.7805703761369621,0.8897010814956361,0.9629679542614298,0.9974176082756359,0.9916613786819795,0.9459312989789165,0.8620707477539843,0.7434601421302257,0.5948806732202659,0.42232157640969575,0.2327387053993042,0.03377414188350091,-0.1665518566082404,-0.36016415313023176,-0.5392582399269786,-0.6966148379836185,-0.8258909060164411,-0.9218753283388641,-0.9806989748290984,-0.9999906654874318,-0.9789727526537746,-0.9184924679691252,-0.82098777048544,-0.6903890725853505,-0.531960805138676,-0.3520892084005547,-0.15802490279585352,0.042409383442954265,0.2411341482932879,0.4301388005050267,0.6018045663719364,0.7492116023451905,0.8664179337874549,0.948698975849845,0.992737981391715,0.9967597389907021,0.9606021316794073,0.8857226718769362,0.7751397490928155,0.6333109587068404,0.46595341638988463,0.2798133012863526,0.08239391766970916,-0.1183467631011681,-0.31431688824593873,-0.4976169059854025,-0.6608579963133736,-0.7974599141818278,-0.9019162390453186,-0.970016338562263,-0.99901509909907,-0.9877435812052421,-0.9366561395390257,-0.8478121078402886,-0.7247927872291369,-0.5725570840302336,-0.3972416163590734,-0.20591334717036863,-0.006284715123676299,0.1935972536624865,0.3856753210708779,0.5622068240905308,0.7160757814067855,0.8410797384636078,0.9321797882814128,0.9857036896952482,0.9994938953221936,0.9729945222524575,0.907273759678293,0.8049808102091957,0.6702391005685981,0.5084800663456962,0.32622421093698334,0.13081826418609444,-0.06986096414703954,-0.2677240984289729,-0.4547952797203629,-0.6235336724886507,-0.767137435535386,-0.8798179040779466,-0.9570329307093577,-0.9956699792684759,-0.9941715911096514,-0.9525981662292499,-0.8726255285430156,-0.7574773734579144,-0.6117953207754191,-0.44145181109161413,-0.25331338783504076,-0.054963907040379165,0.14560116773506623,0.3402970623850779,0.5212755893359167,0.6812415078281133,0.8137465949239973,0.9134495732438925,0.9763314177489885,0.9998573625597096,0.9830790773167594,0.9266728943587419,0.8329125457794432,0.7055775093329248,0.5498006577618495,0.37186135280094085,0.17893232423297376,-0.021209462704308395,-0.2204962966291321,-0.4108949292983568,-0.5847303956817145,-0.7349953916464594,-0.8556327382458301,-0.9417795464793814,-0.9899632402503312,-0.9982415358376605,-0.9662807353137898,-0.8953691779011416,-0.7883653070441172,-0.6495824466119823,-0.48461493090056745,-0.30011259713024774,-0.10351273064208506,0.09725973192391017,0.2941116566638794,0.47910794647478194,0.6447914046575547,0.7844833343653674,0.8925527567380485,0.9646433955465284,0.9978492785991192,0.9908318774218414,0.94387406331417,0.8588687048126492,0.7392423661984773,0.5898171827606723,0.41661648062002815,0.22662197657550984,0.02749234524070106,-0.17274550197448035,-0.36601998150052056,-0.5445402029781968,-0.7011100198920468,-0.8294181060903062,-0.9242923652145573,-0.9819084177990673,-0.9999437619300288,-0.9776713932504497,-0.9159891104911448,-0.8173833252219895,-0.6858288346521184,-0.5266285976344789,-0.34619997250199486,-0.1518160334828391,0.04868760677404568,0.24722865058701354,0.43580391249724265,0.6068119275128637,0.7533593660085577,0.8695389037039177,0.9506673457852202,0.9934744063937205,0.996234533782437,0.9588364672721753,0.8827877221672663,0.7711538218441187,0.62843472656586,0.46038344017555854,0.2737741066271774,0.07612894438019908,-0.1245849740744782,-0.3202768747449386,-0.5030584210749118,-0.6655616926302379,-0.8012361858226121,-0.9046128645767415,-0.9715246170636403,-0.9992742318945298,-0.9867431226570624,-0.9344364181110009,-0.8444626004582889,-0.720448512467957,-0.5673931595175946,-0.3914661997875926,-0.1997592454651831,0.0],"x":[0.0,11.522880720180044,23.04576144036009,34.568642160540136,46.09152288072018,57.614403600900225,69.13728432108027,80.66016504126031,92.18304576144035,103.70592648162041,115.22880720180045,126.75168792198049,138.27456864216055,149.7974493623406,161.32033008252063,172.84321080270067,184.3660915228807,195.88897224306078,207.41185296324082,218.93473368342086,230.4576144036009,241.98049512378094,253.50337584396098,265.026256564141,276.5491372843211,288.0720180045011,299.5948987246812,311.11777944486124,322.64066016504125,334.1635408852213,345.68642160540134,357.2093023255814,368.7321830457614,380.2550637659415,391.77794448612156,403.30082520630157,414.82370592648164,426.34658664666165,437.8694673668417,449.39234808702173,460.9152288072018,472.43810952738187,483.9609902475619,495.48387096774195,507.00675168792196,518.529632408102,530.052513128282,541.5753938484621,553.0982745686422,564.6211552888223,576.1440360090022,587.6669167291823,599.1897974493623,610.7126781695424,622.2355588897225,633.7584396099024,645.2813203300825,656.8042010502626,668.3270817704426,679.8499624906226,691.3728432108027,702.8957239309827,714.4186046511628,725.9414853713429,737.4643660915228,748.9872468117029,760.510127531883,772.033008252063,783.5558889722431,795.0787696924231,806.6016504126031,818.1245311327832,829.6474118529633,841.1702925731433,852.6931732933233,864.2160540135034,875.7389347336834,887.2618154538635,898.7846961740435,910.3075768942235,921.8304576144036,933.3533383345837,944.8762190547637,956.3990997749437,967.9219804951238,979.4448612153038,990.9677419354839,1002.490622655664,1014.0135033758439,1025.536384096024,1037.059264816204,1048.5821455363841,1060.105026256564,1071.6279069767443,1083.1507876969242,1094.6736684171042,1106.1965491372844,1117.7194298574643,1129.2423105776445,1140.7651912978245,1152.2880720180044,1163.8109527381846,1175.3338334583646,1186.8567141785447,1198.3795948987247,1209.9024756189046,1221.4253563390848,1232.9482370592648,1244.471117779445,1255.993998499625,1267.5168792198049,1279.039759939985,1290.562640660165,1302.0855213803452,1313.6084021005252,1325.131282820705,1336.6541635408853,1348.1770442610652,1359.6999249812452,1371.2228057014254,1382.7456864216053,1394.2685671417855,1405.7914478619655,1417.3143285821454,1428.8372093023256,1440.3600900225056,1451.8829707426858,1463.4058514628657,1474.9287321830457,1486.4516129032259,1497.9744936234058,1509.497374343586,1521.020255063766,1532.543135783946,1544.066016504126,1555.588897224306,1567.1117779444862,1578.6346586646662,1590.1575393848461,1601.6804201050263,1613.2033008252063,1624.7261815453865,1636.2490622655664,1647.7719429857464,1659.2948237059265,1670.8177044261065,1682.3405851462867,1693.8634658664666,1705.3863465866466,1716.9092273068268,1728.4321080270067,1739.9549887471867,1751.4778694673669,1763.0007501875468,1774.523630907727,1786.046511627907,1797.569392348087,1809.092273068267,1820.615153788447,1832.1380345086272,1843.6609152288072,1855.1837959489872,1866.7066766691673,1878.2295573893473,1889.7524381095275,1901.2753188297074,1912.7981995498874,1924.3210802700676,1935.8439609902475,1947.3668417104277,1958.8897224306077,1970.4126031507876,1981.9354838709678,1993.4583645911478,2004.981245311328,2016.504126031508,2028.0270067516878,2039.549887471868,2051.072768192048,2062.595648912228,2074.118529632408,2085.641410352588,2097.1642910727683,2108.6871717929484,2120.210052513128,2131.7329332333084,2143.2558139534885,2154.7786946736683,2166.3015753938485,2177.8244561140286,2189.3473368342084,2200.8702175543885,2212.3930982745687,2223.915978994749,2235.4388597149286,2246.961740435109,2258.484621155289,2270.0075018754687,2281.530382595649,2293.053263315829,2304.576144036009,2316.099024756189,2327.621905476369,2339.144786196549,2350.667666916729,2362.1905476369093,2373.7134283570895,2385.236309077269,2396.7591897974494,2408.2820705176296,2419.8049512378093,2431.3278319579895,2442.8507126781697,2454.3735933983494,2465.8964741185296,2477.4193548387098,2488.94223555889,2500.4651162790697,2511.98799699925,2523.51087771943,2535.0337584396098,2546.55663915979,2558.07951987997,2569.60240060015,2581.12528132033,2592.64816204051,2604.1710427606904,2615.69392348087,2627.2168042010503,2638.7396849212305,2650.26256564141,2661.7854463615904,2673.3083270817706,2684.8312078019503,2696.3540885221305,2707.8769692423107,2719.3998499624904,2730.9227306826706,2742.445611402851,2753.968492123031,2765.4913728432107,2777.014253563391,2788.537134283571,2800.060015003751,2811.582895723931,2823.105776444111,2834.628657164291,2846.151537884471,2857.6744186046512,2869.1972993248314,2880.720180045011,2892.2430607651913,2903.7659414853715,2915.2888222055512,2926.8117029257314,2938.3345836459116,2949.8574643660913,2961.3803450862715,2972.9032258064517,2984.426106526632,2995.9489872468116,3007.471867966992,3018.994748687172,3030.5176294073517,3042.040510127532,3053.563390847712,3065.086271567892,3076.609152288072,3088.132033008252,3099.654913728432,3111.177794448612,3122.7006751687923,3134.2235558889724,3145.746436609152,3157.2693173293324,3168.7921980495125,3180.3150787696923,3191.8379594898724,3203.3608402100526,3214.8837209302324,3226.4066016504125,3237.9294823705927,3249.452363090773,3260.9752438109526,3272.498124531133,3284.021005251313,3295.5438859714927,3307.066766691673,3318.589647411853,3330.112528132033,3341.635408852213,3353.158289572393,3364.6811702925734,3376.204051012753,3387.7269317329333,3399.2498124531135,3410.772693173293,3422.2955738934734,3433.8184546136536,3445.3413353338333,3456.8642160540135,3468.3870967741937,3479.9099774943734,3491.4328582145536,3502.9557389347337,3514.478619654914,3526.0015003750937,3537.524381095274,3549.047261815454,3560.5701425356337,3572.093023255814,3583.615903975994,3595.138784696174,3606.661665416354,3618.184546136534,3629.7074268567144,3641.230307576894,3652.7531882970743,3664.2760690172545,3675.798949737434,3687.3218304576144,3698.8447111777946,3710.3675918979743,3721.8904726181545,3733.4133533383347,3744.936234058515,3756.4591147786946,3767.9819954988748,3779.504876219055,3791.0277569392347,3802.550637659415,3814.073518379595,3825.5963990997748,3837.119279819955,3848.642160540135,3860.165041260315,3871.687921980495,3883.2108027006752,3894.7336834208554,3906.256564141035,3917.7794448612153,3929.3023255813955,3940.8252063015752,3952.3480870217554,3963.8709677419356,3975.3938484621153,3986.9167291822955,3998.4396099024757,4009.962490622656,4021.4853713428356,4033.008252063016,4044.531132783196,4056.0540135033757,4067.576894223556,4079.099774943736,4090.622655663916,4102.145536384096,4113.668417104276,4125.191297824456,4136.7141785446365,4148.237059264816,4159.759939984996,4171.282820705176,4182.805701425356,4194.3285821455365,4205.851462865717,4217.374343585897,4228.897224306076,4240.420105026256,4251.9429857464365,4263.465866466617,4274.988747186797,4286.511627906977,4298.034508627156,4309.5573893473365,4321.080270067517,4332.603150787697,4344.126031507877,4355.648912228057,4367.171792948237,4378.694673668417,4390.217554388597,4401.740435108777,4413.263315828957,4424.7861965491375,4436.309077269318,4447.831957989498,4459.354838709677,4470.877719429857,4482.4006001500375,4493.923480870218,4505.446361590398,4516.969242310578,4528.492123030757,4540.0150037509375,4551.537884471118,4563.060765191298,4574.583645911478,4586.106526631658,4597.629407351838,4609.152288072018,4620.675168792198,4632.198049512378,4643.720930232558,4655.243810952738,4666.766691672919,4678.289572393098,4689.812453113278,4701.335333833458,4712.858214553638,4724.381095273819,4735.903975993999,4747.426856714179,4758.949737434358,4770.472618154538,4781.995498874719,4793.518379594899,4805.041260315079,4816.564141035259,4828.087021755439,4839.609902475619,4851.132783195799,4862.655663915979,4874.178544636159,4885.701425356339,4897.2243060765195,4908.747186796699,4920.270067516879,4931.792948237059,4943.315828957239,4954.8387096774195,4966.3615903976,4977.88447111778,4989.407351837959,5000.930232558139,5012.4531132783195,5023.9759939985,5035.49887471868,5047.02175543886,5058.544636159039,5070.0675168792195,5081.5903975994,5093.11327831958,5104.63615903976,5116.15903975994,5127.68192048012,5139.2048012003,5150.72768192048,5162.25056264066,5173.77344336084,5185.29632408102,5196.819204801201,5208.342085521381,5219.86496624156,5231.38784696174,5242.91072768192,5254.433608402101,5265.956489122281,5277.479369842461,5289.00225056264,5300.52513128282,5312.048012003001,5323.570892723181,5335.093773443361,5346.616654163541,5358.139534883721,5369.662415603901,5381.185296324081,5392.708177044261,5404.231057764441,5415.753938484621,5427.2768192048015,5438.799699924981,5450.322580645161,5461.845461365341,5473.368342085521,5484.891222805702,5496.414103525882,5507.936984246062,5519.459864966241,5530.982745686421,5542.505626406602,5554.028507126782,5565.551387846962,5577.074268567142,5588.597149287322,5600.120030007502,5611.642910727682,5623.165791447862,5634.688672168042,5646.211552888222,5657.7344336084025,5669.257314328582,5680.780195048762,5692.303075768942,5703.825956489122,5715.3488372093025,5726.871717929483,5738.394598649663,5749.917479369842,5761.440360090022,5772.9632408102025,5784.486121530383,5796.009002250563,5807.531882970743,5819.054763690922,5830.5776444111025,5842.100525131283,5853.623405851463,5865.146286571643,5876.669167291823,5888.192048012003,5899.714928732183,5911.237809452363,5922.760690172543,5934.283570892723,5945.806451612903,5957.329332333084,5968.852213053264,5980.375093773443,5991.897974493623,6003.420855213803,6014.943735933984,6026.466616654164,6037.989497374344,6049.512378094523,6061.035258814703,6072.558139534884,6084.081020255064,6095.603900975244,6107.126781695424,6118.649662415604,6130.172543135784,6141.695423855964,6153.218304576144,6164.741185296324,6176.264066016504,6187.7869467366845,6199.309827456864,6210.832708177044,6222.355588897224,6233.878469617404,6245.4013503375845,6256.924231057765,6268.447111777945,6279.969992498124,6291.492873218304,6303.0157539384845,6314.538634658665,6326.061515378845,6337.584396099025,6349.107276819205,6360.6301575393845,6372.153038259565,6383.675918979745,6395.198799699925,6406.721680420105,6418.244561140285,6429.767441860465,6441.290322580645,6452.813203300825,6464.336084021005,6475.858964741185,6487.381845461366,6498.904726181546,6510.427606901725,6521.950487621905,6533.473368342085,6544.996249062266,6556.519129782446,6568.042010502626,6579.564891222805,6591.0877719429855,6602.610652663166,6614.133533383346,6625.656414103526,6637.179294823706,6648.702175543886,6660.225056264066,6671.747936984246,6683.270817704426,6694.793698424606,6706.316579144786,6717.839459864967,6729.362340585147,6740.885221305326,6752.408102025506,6763.930982745686,6775.453863465867,6786.976744186047,6798.499624906227,6810.022505626406,6821.545386346586,6833.068267066767,6844.591147786947,6856.114028507127,6867.636909227307,6879.159789947487,6890.682670667667,6902.205551387847,6913.728432108027,6925.251312828207,6936.774193548387,6948.2970742685675,6959.819954988747,6971.342835708927,6982.865716429107,6994.388597149287,7005.9114778694675,7017.434358589648,7028.957239309828,7040.480120030007,7052.003000750187,7063.5258814703675,7075.048762190548,7086.571642910728,7098.094523630908,7109.617404351088,7121.1402850712675,7132.663165791448,7144.186046511628,7155.708927231808,7167.231807951988,7178.754688672168,7190.277569392348,7201.800450112528,7213.323330832708,7224.846211552888,7236.369092273068,7247.891972993249,7259.414853713429,7270.937734433608,7282.460615153788,7293.983495873968,7305.506376594149,7317.029257314329,7328.552138034509,7340.075018754688,7351.597899474868,7363.120780195049,7374.643660915229,7386.166541635409,7397.689422355589,7409.212303075769,7420.735183795949,7432.258064516129,7443.780945236309,7455.303825956489,7466.826706676669,7478.3495873968495,7489.87246811703,7501.395348837209,7512.918229557389,7524.441110277569,7535.9639909977495,7547.48687171793,7559.00975243811,7570.532633158289,7582.055513878469,7593.5783945986495,7605.10127531883,7616.62415603901,7628.14703675919,7639.66991747937,7651.1927981995495,7662.71567891973,7674.23855963991,7685.76144036009,7697.28432108027,7708.8072018004505,7720.33008252063,7731.85296324081,7743.37584396099,7754.89872468117,7766.4216054013505,7777.944486121531,7789.467366841711,7800.99024756189,7812.51312828207,7824.0360090022505,7835.558889722431,7847.081770442611,7858.604651162791,7870.12753188297,7881.6504126031505,7893.173293323331,7904.696174043511,7916.219054763691,7927.741935483871,7939.264816204051,7950.787696924231,7962.310577644411,7973.833458364591,7985.356339084771,7996.879219804951,8008.402100525132,8019.924981245312,8031.447861965491,8042.970742685671,8054.493623405851,8066.016504126032,8077.539384846212,8089.062265566392,8100.585146286571,8112.108027006751,8123.630907726932,8135.153788447112,8146.676669167292,8158.199549887472,8169.722430607652,8181.245311327832,8192.768192048012,8204.291072768192,8215.813953488372,8227.336834208552,8238.859714928733,8250.382595648913,8261.905476369093,8273.428357089273,8284.951237809453,8296.474118529632,8307.996999249812,8319.519879969992,8331.042760690172,8342.565641410352,8354.088522130533,8365.611402850713,8377.134283570893,8388.657164291073,8400.180045011253,8411.702925731433,8423.225806451614,8434.748687171794,8446.271567891972,8457.794448612152,8469.317329332333,8480.840210052513,8492.363090772693,8503.885971492873,8515.408852213053,8526.931732933233,8538.454613653414,8549.977494373594,8561.500375093774,8573.023255813954,8584.546136534134,8596.069017254313,8607.591897974493,8619.114778694673,8630.637659414853,8642.160540135033,8653.683420855214,8665.206301575394,8676.729182295574,8688.252063015754,8699.774943735934,8711.297824456115,8722.820705176295,8734.343585896475,8745.866466616653,8757.389347336833,8768.912228057014,8780.435108777194,8791.957989497374,8803.480870217554,8815.003750937734,8826.526631657915,8838.049512378095,8849.572393098275,8861.095273818455,8872.618154538635,8884.141035258815,8895.663915978996,8907.186796699174,8918.709677419354,8930.232558139534,8941.755438859715,8953.278319579895,8964.801200300075,8976.324081020255,8987.846961740435,8999.369842460615,9010.892723180796,9022.415603900976,9033.938484621156,9045.461365341336,9056.984246061515,9068.507126781695,9080.030007501875,9091.552888222055,9103.075768942235,9114.598649662415,9126.121530382596,9137.644411102776,9149.167291822956,9160.690172543136,9172.213053263316,9183.735933983497,9195.258814703677,9206.781695423855,9218.304576144035,9229.827456864215,9241.350337584396,9252.873218304576,9264.396099024756,9275.918979744936,9287.441860465116,9298.964741185297,9310.487621905477,9322.010502625657,9333.533383345837,9345.056264066017,9356.579144786196,9368.102025506376,9379.624906226556,9391.147786946736,9402.670667666916,9414.193548387097,9425.716429107277,9437.239309827457,9448.762190547637,9460.285071267817,9471.807951987998,9483.330832708178,9494.853713428358,9506.376594148536,9517.899474868716,9529.422355588897,9540.945236309077,9552.468117029257,9563.990997749437,9575.513878469617,9587.036759189798,9598.559639909978,9610.082520630158,9621.605401350338,9633.128282070518,9644.651162790698,9656.174043510879,9667.696924231057,9679.219804951237,9690.742685671417,9702.265566391598,9713.788447111778,9725.311327831958,9736.834208552138,9748.357089272318,9759.879969992498,9771.402850712679,9782.925731432859,9794.448612153039,9805.97149287322,9817.494373593398,9829.017254313578,9840.540135033758,9852.063015753938,9863.585896474118,9875.108777194298,9886.631657914479,9898.154538634659,9909.677419354839,9921.20030007502,9932.7231807952,9944.24606151538,9955.76894223556,9967.291822955738,9978.814703675918,9990.337584396098,10001.860465116279,10013.383345836459,10024.906226556639,10036.42910727682,10047.951987997,10059.47486871718,10070.99774943736,10082.52063015754,10094.04351087772,10105.5663915979,10117.089272318079,10128.612153038259,10140.135033758439,10151.65791447862,10163.1807951988,10174.70367591898,10186.22655663916,10197.74943735934,10209.27231807952,10220.7951987997,10232.31807951988,10243.84096024006,10255.36384096024,10266.88672168042,10278.4096024006,10289.93248312078,10301.45536384096,10312.97824456114,10324.50112528132,10336.0240060015,10347.54688672168,10359.06976744186,10370.59264816204,10382.115528882221,10393.638409602401,10405.161290322581,10416.684171042762,10428.20705176294,10439.72993248312,10451.2528132033,10462.77569392348,10474.29857464366,10485.82145536384,10497.344336084021,10508.867216804201,10520.390097524381,10531.912978244562,10543.435858964742,10554.958739684922,10566.481620405102,10578.00450112528,10589.52738184546,10601.05026256564,10612.573143285821,10624.096024006001,10635.618904726181,10647.141785446362,10658.664666166542,10670.187546886722,10681.710427606902,10693.233308327082,10704.756189047263,10716.279069767443,10727.801950487621,10739.324831207801,10750.847711927981,10762.370592648162,10773.893473368342,10785.416354088522,10796.939234808702,10808.462115528882,10819.984996249063,10831.507876969243,10843.030757689423,10854.553638409603,10866.076519129783,10877.599399849962,10889.122280570142,10900.645161290322,10912.168042010502,10923.690922730682,10935.213803450863,10946.736684171043,10958.259564891223,10969.782445611403,10981.305326331583,10992.828207051763,11004.351087771944,11015.873968492124,11027.396849212302,11038.919729932482,11050.442610652663,11061.965491372843,11073.488372093023,11085.011252813203,11096.534133533383,11108.057014253563,11119.579894973744,11131.102775693924,11142.625656414104,11154.148537134284,11165.671417854464,11177.194298574645,11188.717179294823,11200.240060015003,11211.762940735183,11223.285821455363,11234.808702175544,11246.331582895724,11257.854463615904,11269.377344336084,11280.900225056264,11292.423105776445,11303.945986496625,11315.468867216805,11326.991747936985,11338.514628657163,11350.037509377344,11361.560390097524,11373.083270817704,11384.606151537884,11396.129032258064,11407.651912978245,11419.174793698425,11430.697674418605,11442.220555138785,11453.743435858965,11465.266316579145,11476.789197299326,11488.312078019504,11499.834958739684,11511.357839459864,11522.880720180045,11534.403600900225,11545.926481620405,11557.449362340585,11568.972243060765,11580.495123780946,11592.018004501126,11603.540885221306,11615.063765941486,11626.586646661666,11638.109527381845,11649.632408102025,11661.155288822205,11672.678169542385,11684.201050262565,11695.723930982746,11707.246811702926,11718.769692423106,11730.292573143286,11741.815453863466,11753.338334583646,11764.861215303827,11776.384096024007,11787.906976744185,11799.429857464365,11810.952738184546,11822.475618904726,11833.998499624906,11845.521380345086,11857.044261065266,11868.567141785446,11880.090022505627,11891.612903225807,11903.135783945987,11914.658664666167,11926.181545386347,11937.704426106528,11949.227306826706,11960.750187546886,11972.273068267066,11983.795948987246,11995.318829707427,12006.841710427607,12018.364591147787,12029.887471867967,12041.410352588147,12052.933233308328,12064.456114028508,12075.978994748688,12087.501875468868,12099.024756189046,12110.547636909227,12122.070517629407,12133.593398349587,12145.116279069767,12156.639159789947,12168.162040510128,12179.684921230308,12191.207801950488,12202.730682670668,12214.253563390848,12225.776444111028,12237.299324831209,12248.822205551387,12260.345086271567,12271.867966991747,12283.390847711928,12294.913728432108,12306.436609152288,12317.959489872468,12329.482370592648,12341.005251312828,12352.528132033009,12364.051012753189,12375.573893473369,12387.09677419355,12398.619654913728,12410.142535633908,12421.665416354088,12433.188297074268,12444.711177794448,12456.234058514628,12467.756939234809,12479.279819954989,12490.802700675169,12502.32558139535,12513.84846211553,12525.37134283571,12536.89422355589,12548.417104276068,12559.939984996248,12571.462865716428,12582.985746436609,12594.508627156789,12606.031507876969,12617.55438859715,12629.07726931733,12640.60015003751,12652.12303075769,12663.64591147787,12675.16879219805,12686.69167291823,12698.21455363841,12709.737434358589,12721.260315078769,12732.78319579895,12744.30607651913,12755.82895723931,12767.35183795949,12778.87471867967,12790.39759939985,12801.92048012003,12813.44336084021,12824.96624156039,12836.48912228057,12848.012003000751,12859.53488372093,12871.05776444111,12882.58064516129,12894.10352588147,12905.62640660165,12917.14928732183,12928.67216804201,12940.19504876219,12951.71792948237,12963.240810202551,12974.763690922731,12986.286571642911,12997.809452363092,13009.33233308327,13020.85521380345,13032.37809452363,13043.90097524381,13055.42385596399,13066.94673668417,13078.469617404351,13089.992498124531,13101.515378844711,13113.038259564892,13124.561140285072,13136.084021005252,13147.606901725432,13159.12978244561,13170.65266316579,13182.175543885971,13193.698424606151,13205.221305326331,13216.744186046511,13228.267066766692,13239.789947486872,13251.312828207052,13262.835708927232,13274.358589647412,13285.881470367593,13297.404351087773,13308.927231807951,13320.450112528131,13331.972993248311,13343.495873968492,13355.018754688672,13366.541635408852,13378.064516129032,13389.587396849212,13401.110277569393,13412.633158289573,13424.156039009753,13435.678919729933,13447.201800450113,13458.724681170293,13470.247561890472,13481.770442610652,13493.293323330832,13504.816204051012,13516.339084771193,13527.861965491373,13539.384846211553,13550.907726931733,13562.430607651913,13573.953488372093,13585.476369092274,13596.999249812454,13608.522130532634,13620.045011252812,13631.567891972993,13643.090772693173,13654.613653413353,13666.136534133533,13677.659414853713,13689.182295573893,13700.705176294074,13712.228057014254,13723.750937734434,13735.273818454614,13746.796699174794,13758.319579894975,13769.842460615153,13781.365341335333,13792.888222055513,13804.411102775694,13815.933983495874,13827.456864216054,13838.979744936234,13850.502625656414,13862.025506376594,13873.548387096775,13885.071267816955,13896.594148537135,13908.117029257315,13919.639909977494,13931.162790697674,13942.685671417854,13954.208552138034,13965.731432858214,13977.254313578394,13988.777194298575,14000.300075018755,14011.822955738935,14023.345836459115,14034.868717179295,14046.391597899476,14057.914478619656,14069.437359339834,14080.960240060014,14092.483120780194,14104.006001500375,14115.528882220555,14127.051762940735,14138.574643660915,14150.097524381095,14161.620405101276,14173.143285821456,14184.666166541636,14196.189047261816,14207.711927981996,14219.234808702176,14230.757689422355,14242.280570142535,14253.803450862715,14265.326331582895,14276.849212303076,14288.372093023256,14299.894973743436,14311.417854463616,14322.940735183796,14334.463615903976,14345.986496624157,14357.509377344337,14369.032258064517,14380.555138784695,14392.078019504876,14403.600900225056,14415.123780945236,14426.646661665416,14438.169542385596,14449.692423105776,14461.215303825957,14472.738184546137,14484.261065266317,14495.783945986497,14507.306826706677,14518.829707426858,14530.352588147036,14541.875468867216,14553.398349587396,14564.921230307576,14576.444111027757,14587.966991747937,14599.489872468117,14611.012753188297,14622.535633908477,14634.058514628658,14645.581395348838,14657.104276069018,14668.627156789198,14680.150037509376,14691.672918229557,14703.195798949737,14714.718679669917,14726.241560390097,14737.764441110277,14749.287321830458,14760.810202550638,14772.333083270818,14783.855963990998,14795.378844711178,14806.901725431358,14818.424606151539,14829.947486871717,14841.470367591897,14852.993248312077,14864.516129032258,14876.039009752438,14887.561890472618,14899.084771192798,14910.607651912978,14922.130532633159,14933.653413353339,14945.176294073519,14956.699174793699,14968.22205551388,14979.74493623406,14991.267816954238,15002.790697674418,15014.313578394598,15025.836459114778,15037.359339834959,15048.882220555139,15060.405101275319,15071.927981995499,15083.45086271568,15094.97374343586,15106.49662415604,15118.01950487622,15129.5423855964,15141.065266316578,15152.588147036759,15164.111027756939,15175.633908477119,15187.156789197299,15198.67966991748,15210.20255063766,15221.72543135784,15233.24831207802,15244.7711927982,15256.29407351838,15267.81695423856,15279.33983495874,15290.862715678919,15302.385596399099,15313.90847711928,15325.43135783946,15336.95423855964,15348.47711927982,15360.0,15371.52288072018,15383.04576144036,15394.56864216054,15406.09152288072,15417.614403600901,15429.137284321081,15440.66016504126,15452.18304576144,15463.70592648162,15475.2288072018,15486.75168792198,15498.27456864216,15509.79744936234,15521.32033008252,15532.843210802701,15544.366091522881,15555.888972243061,15567.411852963241,15578.934733683422,15590.4576144036,15601.98049512378,15613.50337584396,15625.02625656414,15636.54913728432,15648.072018004501,15659.594898724681,15671.117779444861,15682.640660165041,15694.163540885222,15705.686421605402,15717.209302325582,15728.732183045762,15740.25506376594,15751.77794448612,15763.300825206301,15774.823705926481,15786.346586646661,15797.869467366841,15809.392348087022,15820.915228807202,15832.438109527382,15843.960990247562,15855.483870967742,15867.006751687923,15878.529632408103,15890.052513128283,15901.575393848461,15913.098274568642,15924.621155288822,15936.144036009002,15947.666916729182,15959.189797449362,15970.712678169542,15982.235558889723,15993.758439609903,16005.281320330083,16016.804201050263,16028.327081770443,16039.849962490624,16051.372843210802,16062.895723930982,16074.418604651162,16085.941485371342,16097.464366091523,16108.987246811703,16120.510127531883,16132.033008252063,16143.555888972243,16155.078769692424,16166.601650412604,16178.124531132784,16189.647411852964,16201.170292573142,16212.693173293323,16224.216054013503,16235.738934733683,16247.261815453863,16258.784696174043,16270.307576894224,16281.830457614404,16293.353338334584,16304.876219054764,16316.399099774944,16327.921980495124,16339.444861215305,16350.967741935483,16362.490622655663,16374.013503375843,16385.536384096024,16397.059264816206,16408.582145536384,16420.105026256566,16431.627906976744,16443.150787696923,16454.673668417105,16466.196549137283,16477.719429857465,16489.242310577643,16500.765191297825,16512.288072018004,16523.810952738186,16535.333833458364,16546.856714178546,16558.379594898724,16569.902475618906,16581.425356339085,16592.948237059263,16604.471117779445,16615.993998499624,16627.516879219806,16639.039759939984,16650.562640660166,16662.085521380344,16673.608402100526,16685.131282820705,16696.654163540887,16708.177044261065,16719.699924981247,16731.222805701425,16742.745686421604,16754.268567141786,16765.791447861964,16777.314328582146,16788.837209302324,16800.360090022506,16811.882970742685,16823.405851462867,16834.928732183045,16846.451612903227,16857.974493623406,16869.497374343588,16881.020255063766,16892.543135783944,16904.066016504126,16915.588897224305,16927.111777944487,16938.634658664665,16950.157539384847,16961.680420105025,16973.203300825207,16984.726181545386,16996.249062265568,17007.771942985746,17019.294823705928,17030.817704426107,17042.340585146285,17053.863465866467,17065.386346586645,17076.909227306827,17088.432108027006,17099.954988747188,17111.477869467366,17123.000750187548,17134.523630907726,17146.04651162791,17157.569392348087,17169.09227306827,17180.615153788447,17192.138034508625,17203.660915228807,17215.183795948986,17226.706676669168,17238.229557389346,17249.752438109528,17261.275318829707,17272.79819954989,17284.321080270067,17295.84396099025,17307.366841710427,17318.88972243061,17330.412603150788,17341.935483870966,17353.458364591148,17364.981245311326,17376.50412603151,17388.027006751687,17399.54988747187,17411.072768192047,17422.59564891223,17434.118529632407,17445.64141035259,17457.164291072768,17468.68717179295,17480.210052513128,17491.732933233307,17503.25581395349,17514.778694673667,17526.30157539385,17537.824456114027,17549.34733683421,17560.870217554388,17572.39309827457,17583.915978994748,17595.43885971493,17606.96174043511,17618.48462115529,17630.00750187547,17641.530382595647,17653.05326331583,17664.576144036007,17676.09902475619,17687.621905476368,17699.14478619655,17710.66766691673,17722.19054763691,17733.71342835709,17745.23630907727,17756.75918979745,17768.28207051763,17779.80495123781,17791.32783195799,17802.85071267817,17814.373593398348,17825.89647411853,17837.41935483871,17848.94223555889,17860.46511627907,17871.98799699925,17883.51087771943,17895.03375843961,17906.55663915979,17918.07951987997,17929.60240060015,17941.125281320332,17952.64816204051,17964.17104276069,17975.69392348087,17987.21680420105,17998.73968492123,18010.26256564141,18021.78544636159,18033.30832708177,18044.83120780195,18056.35408852213,18067.876969242312,18079.39984996249,18090.922730682672,18102.44561140285,18113.96849212303,18125.49137284321,18137.01425356339,18148.53713428357,18160.06001500375,18171.582895723932,18183.10577644411,18194.628657164292,18206.15153788447,18217.674418604653,18229.19729932483,18240.720180045013,18252.24306076519,18263.76594148537,18275.28882220555,18286.81170292573,18298.334583645912,18309.85746436609,18321.380345086272,18332.90322580645,18344.426106526633,18355.94898724681,18367.471867966993,18378.99474868717,18390.517629407354,18402.040510127532,18413.56339084771,18425.086271567892,18436.60915228807,18448.132033008253,18459.65491372843,18471.177794448613,18482.70067516879,18494.223555888973,18505.74643660915,18517.269317329334,18528.792198049512,18540.315078769694,18551.837959489872,18563.36084021005,18574.883720930233,18586.40660165041,18597.929482370593,18609.45236309077,18620.975243810954,18632.498124531132,18644.021005251314,18655.543885971492,18667.066766691674,18678.589647411853,18690.112528132035,18701.635408852213,18713.15828957239,18724.681170292573,18736.20405101275,18747.726931732934,18759.249812453112,18770.772693173294,18782.295573893472,18793.818454613654,18805.341335333833,18816.864216054015,18828.387096774193,18839.909977494375,18851.432858214554,18862.955738934732,18874.478619654914,18886.001500375092,18897.524381095274,18909.047261815453,18920.570142535635,18932.093023255813,18943.615903975995,18955.138784696173,18966.661665416355,18978.184546136534,18989.707426856716,19001.230307576894,19012.753188297072,19024.276069017254,19035.798949737433,19047.321830457615,19058.844711177793,19070.367591897975,19081.890472618154,19093.413353338336,19104.936234058514,19116.459114778696,19127.981995498874,19139.504876219056,19151.027756939235,19162.550637659413,19174.073518379595,19185.596399099773,19197.119279819955,19208.642160540134,19220.165041260316,19231.687921980494,19243.210802700676,19254.733683420855,19266.256564141037,19277.779444861215,19289.302325581397,19300.825206301575,19312.348087021757,19323.870967741936,19335.393848462114,19346.916729182296,19358.439609902474,19369.962490622656,19381.485371342835,19393.008252063017,19404.531132783195,19416.054013503377,19427.576894223555,19439.099774943737,19450.622655663916,19462.145536384098,19473.668417104276,19485.191297824455,19496.714178544637,19508.237059264815,19519.759939984997,19531.282820705175,19542.805701425357,19554.328582145536,19565.851462865718,19577.374343585896,19588.897224306078,19600.420105026256,19611.94298574644,19623.465866466617,19634.988747186795,19646.511627906977,19658.034508627155,19669.557389347337,19681.080270067516,19692.603150787698,19704.126031507876,19715.648912228058,19727.171792948237,19738.69467366842,19750.217554388597,19761.74043510878,19773.263315828957,19784.786196549136,19796.309077269318,19807.831957989496,19819.354838709678,19830.877719429856,19842.40060015004,19853.923480870217,19865.4463615904,19876.969242310577,19888.49212303076,19900.015003750937,19911.53788447112,19923.060765191298,19934.583645911476,19946.10652663166,19957.629407351837,19969.15228807202,19980.675168792197,19992.19804951238,20003.720930232557,20015.24381095274,20026.766691672918,20038.2895723931,20049.812453113278,20061.33533383346,20072.85821455364,20084.381095273817,20095.903975994,20107.426856714177,20118.94973743436,20130.472618154537,20141.99549887472,20153.518379594898,20165.04126031508,20176.56414103526,20188.08702175544,20199.60990247562,20211.1327831958,20222.65566391598,20234.178544636157,20245.70142535634,20257.224306076518,20268.7471867967,20280.270067516878,20291.79294823706,20303.31582895724,20314.83870967742,20326.3615903976,20337.88447111778,20349.40735183796,20360.93023255814,20372.45311327832,20383.975993998498,20395.49887471868,20407.02175543886,20418.54463615904,20430.06751687922,20441.5903975994,20453.11327831958,20464.63615903976,20476.15903975994,20487.68192048012,20499.2048012003,20510.72768192048,20522.25056264066,20533.77344336084,20545.29632408102,20556.8192048012,20568.34208552138,20579.86496624156,20591.38784696174,20602.91072768192,20614.4336084021,20625.95648912228,20637.479369842462,20649.00225056264,20660.525131282822,20672.048012003,20683.57089272318,20695.09377344336,20706.61665416354,20718.13953488372,20729.6624156039,20741.18529632408,20752.70817704426,20764.231057764442,20775.75393848462,20787.276819204802,20798.79969992498,20810.322580645163,20821.84546136534,20833.368342085523,20844.8912228057,20856.41410352588,20867.936984246062,20879.45986496624,20890.982745686422,20902.5056264066,20914.028507126783,20925.55138784696,20937.074268567143,20948.59714928732,20960.120030007503,20971.64291072768,20983.165791447864,20994.688672168042,21006.21155288822,21017.734433608402,21029.25731432858,21040.780195048763,21052.30307576894,21063.825956489123,21075.3488372093,21086.871717929484,21098.394598649662,21109.917479369844,21121.440360090022,21132.963240810204,21144.486121530383,21156.00900225056,21167.531882970743,21179.05476369092,21190.577644411103,21202.10052513128,21213.623405851464,21225.146286571642,21236.669167291824,21248.192048012002,21259.714928732184,21271.237809452363,21282.760690172545,21294.283570892723,21305.8064516129,21317.329332333084,21328.852213053262,21340.375093773444,21351.897974493622,21363.420855213804,21374.943735933983,21386.466616654165,21397.989497374343,21409.512378094525,21421.035258814703,21432.558139534885,21444.081020255064,21455.603900975242,21467.126781695424,21478.649662415603,21490.172543135785,21501.695423855963,21513.218304576145,21524.741185296323,21536.264066016505,21547.786946736684,21559.309827456866,21570.832708177044,21582.355588897226,21593.878469617404,21605.401350337583,21616.924231057765,21628.447111777943,21639.969992498125,21651.492873218303,21663.015753938485,21674.538634658664,21686.061515378846,21697.584396099024,21709.107276819206,21720.630157539385,21732.153038259567,21743.675918979745,21755.198799699923,21766.721680420105,21778.244561140284,21789.767441860466,21801.290322580644,21812.813203300826,21824.336084021004,21835.858964741186,21847.381845461365,21858.904726181547,21870.427606901725,21881.950487621907,21893.473368342085,21904.996249062264,21916.519129782446,21928.042010502624,21939.564891222806,21951.087771942985,21962.610652663167,21974.133533383345,21985.656414103527,21997.179294823705,22008.702175543887,22020.225056264066,22031.747936984248,22043.270817704426,22054.793698424604,22066.316579144786,22077.839459864965,22089.362340585147,22100.885221305325,22112.408102025507,22123.930982745685,22135.453863465867,22146.976744186046,22158.499624906228,22170.022505626406,22181.54538634659,22193.068267066767,22204.591147786945,22216.114028507127,22227.636909227305,22239.159789947487,22250.682670667666,22262.205551387848,22273.728432108026,22285.251312828208,22296.774193548386,22308.29707426857,22319.819954988747,22331.34283570893,22342.865716429107,22354.38859714929,22365.911477869467,22377.434358589646,22388.957239309828,22400.480120030006,22412.00300075019,22423.525881470367,22435.04876219055,22446.571642910727,22458.09452363091,22469.617404351087,22481.14028507127,22492.663165791448,22504.18604651163,22515.708927231808,22527.231807951986,22538.75468867217,22550.277569392347,22561.80045011253,22573.323330832707,22584.84621155289,22596.369092273068,22607.89197299325,22619.414853713428,22630.93773443361,22642.46061515379,22653.98349587397,22665.50637659415,22677.029257314327,22688.55213803451,22700.075018754687,22711.59789947487,22723.120780195048,22734.64366091523,22746.166541635408,22757.68942235559,22769.21230307577,22780.73518379595,22792.25806451613,22803.78094523631,22815.30382595649,22826.826706676668,22838.34958739685,22849.872468117028,22861.39534883721,22872.91822955739,22884.44111027757,22895.96399099775,22907.48687171793,22919.00975243811,22930.53263315829,22942.05551387847,22953.57839459865,22965.10127531883,22976.624156039008,22988.14703675919,22999.66991747937,23011.19279819955,23022.71567891973,23034.23855963991,23045.76144036009,23057.28432108027,23068.80720180045,23080.33008252063,23091.85296324081,23103.375843960992,23114.89872468117,23126.42160540135,23137.94448612153,23149.46736684171,23160.99024756189,23172.51312828207,23184.03600900225,23195.55888972243,23207.08177044261,23218.60465116279,23230.127531882972,23241.65041260315,23253.173293323332,23264.69617404351,23276.21905476369,23287.74193548387,23299.26481620405,23310.78769692423,23322.31057764441,23333.833458364592,23345.35633908477,23356.879219804952,23368.40210052513,23379.924981245313,23391.44786196549,23402.970742685673,23414.49362340585,23426.01650412603,23437.53938484621,23449.06226556639,23460.585146286572,23472.10802700675,23483.630907726932,23495.15378844711,23506.676669167293,23518.19954988747,23529.722430607653,23541.24531132783,23552.768192048014,23564.291072768192,23575.81395348837,23587.336834208552,23598.85971492873,23610.382595648913,23621.90547636909,23633.428357089273,23644.95123780945,23656.474118529633,23667.99699924981,23679.519879969994,23691.042760690172,23702.565641410354,23714.088522130533,23725.61140285071,23737.134283570893,23748.65716429107,23760.180045011253,23771.70292573143,23783.225806451614,23794.748687171792,23806.271567891974,23817.794448612152,23829.317329332334,23840.840210052513,23852.363090772695,23863.885971492873,23875.408852213055,23886.931732933233,23898.45461365341,23909.977494373594,23921.500375093772,23933.023255813954,23944.546136534133,23956.069017254315,23967.591897974493,23979.114778694675,23990.637659414853,24002.160540135035,24013.683420855214,24025.206301575396,24036.729182295574,24048.252063015752,24059.774943735934,24071.297824456113,24082.820705176295,24094.343585896473,24105.866466616655,24117.389347336833,24128.912228057015,24140.435108777194,24151.957989497376,24163.480870217554,24175.003750937736,24186.526631657915,24198.049512378093,24209.572393098275,24221.095273818453,24232.618154538635,24244.141035258814,24255.663915978996,24267.186796699174,24278.709677419356,24290.232558139534,24301.755438859716,24313.278319579895,24324.801200300077,24336.324081020255,24347.846961740433,24359.369842460615,24370.892723180794,24382.415603900976,24393.938484621154,24405.461365341336,24416.984246061515,24428.507126781697,24440.030007501875,24451.552888222057,24463.075768942235,24474.598649662417,24486.121530382596,24497.644411102774,24509.167291822956,24520.690172543134,24532.213053263316,24543.735933983495,24555.258814703677,24566.781695423855,24578.304576144037,24589.827456864215,24601.350337584397,24612.873218304576,24624.396099024758,24635.918979744936,24647.441860465115,24658.964741185297,24670.487621905475,24682.010502625657,24693.533383345835,24705.056264066017,24716.579144786196,24728.102025506378,24739.624906226556,24751.147786946738,24762.670667666916,24774.1935483871,24785.716429107277,24797.239309827455,24808.762190547637,24820.285071267816,24831.807951987998,24843.330832708176,24854.853713428358,24866.376594148536,24877.89947486872,24889.422355588897,24900.94523630908,24912.468117029257,24923.99099774944,24935.513878469617,24947.036759189796,24958.559639909978,24970.082520630156,24981.605401350338,24993.128282070516,25004.6511627907,25016.174043510877,25027.69692423106,25039.219804951237,25050.74268567142,25062.265566391598,25073.78844711178,25085.311327831958,25096.834208552136,25108.35708927232,25119.879969992497,25131.40285071268,25142.925731432857,25154.44861215304,25165.971492873217,25177.4943735934,25189.017254313578,25200.54013503376,25212.063015753938,25223.58589647412,25235.1087771943,25246.631657914477,25258.15453863466,25269.677419354837,25281.20030007502,25292.723180795198,25304.24606151538,25315.768942235558,25327.29182295574,25338.81470367592,25350.3375843961,25361.86046511628,25373.38334583646,25384.90622655664,25396.42910727682,25407.951987997,25419.474868717178,25430.99774943736,25442.520630157538,25454.04351087772,25465.5663915979,25477.08927231808,25488.61215303826,25500.13503375844,25511.65791447862,25523.1807951988,25534.70367591898,25546.22655663916,25557.74943735934,25569.27231807952,25580.7951987997,25592.31807951988,25603.84096024006,25615.36384096024,25626.88672168042,25638.4096024006,25649.93248312078,25661.45536384096,25672.97824456114,25684.50112528132,25696.024006001502,25707.54688672168,25719.06976744186,25730.59264816204,25742.11552888222,25753.6384096024,25765.16129032258,25776.68417104276,25788.20705176294,25799.729932483122,25811.2528132033,25822.775693923482,25834.29857464366,25845.821455363843,25857.34433608402,25868.8672168042,25880.39009752438,25891.91297824456,25903.43585896474,25914.95873968492,25926.481620405102,25938.00450112528,25949.527381845463,25961.05026256564,25972.573143285823,25984.096024006,25995.618904726183,26007.14178544636,26018.66466616654,26030.187546886722,26041.7104276069,26053.233308327082,26064.75618904726,26076.279069767443,26087.80195048762,26099.324831207803,26110.84771192798,26122.370592648163,26133.89347336834,26145.416354088524,26156.939234808702,26168.46211552888,26179.984996249063,26191.50787696924,26203.030757689423,26214.5536384096,26226.076519129783,26237.59939984996,26249.122280570144,26260.645161290322,26272.168042010504,26283.690922730682,26295.213803450864,26306.736684171043,26318.25956489122,26329.782445611403,26341.30532633158,26352.828207051763,26364.351087771942,26375.873968492124,26387.396849212302,26398.919729932484,26410.442610652663,26421.965491372845,26433.488372093023,26445.011252813205,26456.534133533383,26468.05701425356,26479.579894973744,26491.102775693922,26502.625656414104,26514.148537134282,26525.671417854464,26537.194298574643,26548.717179294825,26560.240060015003,26571.762940735185,26583.285821455363,26594.808702175545,26606.331582895724,26617.854463615902,26629.377344336084,26640.900225056263,26652.423105776445,26663.945986496623,26675.468867216805,26686.991747936983,26698.514628657165,26710.037509377344,26721.560390097526,26733.083270817704,26744.606151537886,26756.129032258064,26767.651912978243,26779.174793698425,26790.697674418603,26802.220555138785,26813.743435858963,26825.266316579145,26836.789197299324,26848.312078019506,26859.834958739684,26871.357839459866,26882.880720180045,26894.403600900227,26905.926481620405,26917.449362340587,26928.972243060765,26940.495123780944,26952.018004501126,26963.540885221304,26975.063765941486,26986.586646661664,26998.109527381846,27009.632408102025,27021.155288822207,27032.678169542385,27044.201050262567,27055.723930982746,27067.246811702928,27078.769692423106,27090.292573143284,27101.815453863466,27113.338334583645,27124.861215303827,27136.384096024005,27147.906976744187,27159.429857464365,27170.952738184547,27182.475618904726,27193.998499624908,27205.521380345086,27217.044261065268,27228.567141785446,27240.090022505625,27251.612903225807,27263.135783945985,27274.658664666167,27286.181545386346,27297.704426106528,27309.227306826706,27320.750187546888,27332.273068267066,27343.79594898725,27355.318829707427,27366.84171042761,27378.364591147787,27389.887471867965,27401.410352588147,27412.933233308326,27424.456114028508,27435.978994748686,27447.501875468868,27459.024756189046,27470.54763690923,27482.070517629407,27493.59339834959,27505.116279069767,27516.63915978995,27528.162040510128,27539.684921230306,27551.207801950488,27562.730682670666,27574.25356339085,27585.776444111027,27597.29932483121,27608.822205551387,27620.34508627157,27631.867966991747,27643.39084771193,27654.913728432108,27666.43660915229,27677.959489872468,27689.482370592646,27701.00525131283,27712.528132033007,27724.05101275319,27735.573893473367,27747.09677419355,27758.619654913728,27770.14253563391,27781.665416354088,27793.18829707427,27804.71117779445,27816.23405851463,27827.75693923481,27839.279819954987,27850.80270067517,27862.325581395347,27873.84846211553,27885.371342835708,27896.89422355589,27908.417104276068,27919.93998499625,27931.46286571643,27942.98574643661,27954.50862715679,27966.03150787697,27977.55438859715,27989.077269317328,28000.60015003751,28012.123030757688,28023.64591147787,28035.16879219805,28046.69167291823,28058.21455363841,28069.73743435859,28081.26031507877,28092.78319579895,28104.30607651913,28115.82895723931,28127.35183795949,28138.874718679668,28150.39759939985,28161.92048012003,28173.44336084021,28184.96624156039,28196.48912228057,28208.01200300075,28219.53488372093,28231.05776444111,28242.58064516129,28254.10352588147,28265.626406601652,28277.14928732183,28288.67216804201,28300.19504876219,28311.71792948237,28323.24081020255,28334.76369092273,28346.28657164291,28357.80945236309,28369.33233308327,28380.85521380345,28392.378094523632,28403.90097524381,28415.423855963993,28426.94673668417,28438.469617404353,28449.99249812453,28461.51537884471,28473.03825956489,28484.56114028507,28496.084021005252,28507.60690172543,28519.129782445612,28530.65266316579,28542.175543885973,28553.69842460615,28565.221305326333,28576.74418604651,28588.267066766693,28599.789947486872,28611.31282820705,28622.835708927232,28634.35858964741,28645.881470367593,28657.40435108777,28668.927231807953,28680.45011252813,28691.972993248313,28703.49587396849,28715.018754688674,28726.541635408852,28738.064516129034,28749.587396849212,28761.11027756939,28772.633158289573,28784.15603900975,28795.678919729933,28807.20180045011,28818.724681170293,28830.247561890472,28841.770442610654,28853.293323330832,28864.816204051014,28876.339084771193,28887.861965491375,28899.384846211553,28910.90772693173,28922.430607651913,28933.95348837209,28945.476369092274,28956.999249812452,28968.522130532634,28980.045011252812,28991.567891972994,29003.090772693173,29014.613653413355,29026.136534133533,29037.659414853715,29049.182295573893,29060.705176294072,29072.228057014254,29083.750937734432,29095.273818454614,29106.796699174793,29118.319579894975,29129.842460615153,29141.365341335335,29152.888222055513,29164.411102775695,29175.933983495874,29187.456864216056,29198.979744936234,29210.502625656412,29222.025506376594,29233.548387096773,29245.071267816955,29256.594148537133,29268.117029257315,29279.639909977494,29291.162790697676,29302.685671417854,29314.208552138036,29325.731432858214,29337.254313578396,29348.777194298575,29360.300075018753,29371.822955738935,29383.345836459113,29394.868717179295,29406.391597899474,29417.914478619656,29429.437359339834,29440.960240060016,29452.483120780194,29464.006001500376,29475.528882220555,29487.051762940737,29498.574643660915,29510.097524381094,29521.620405101276,29533.143285821454,29544.666166541636,29556.189047261814,29567.711927981996,29579.234808702175,29590.757689422357,29602.280570142535,29613.803450862717,29625.326331582895,29636.849212303077,29648.372093023256,29659.894973743434,29671.417854463616,29682.940735183794,29694.463615903976,29705.986496624155,29717.509377344337,29729.032258064515,29740.555138784697,29752.078019504876,29763.600900225058,29775.123780945236,29786.646661665418,29798.169542385596,29809.692423105775,29821.215303825957,29832.738184546135,29844.261065266317,29855.783945986495,29867.306826706677,29878.829707426856,29890.352588147038,29901.875468867216,29913.398349587398,29924.921230307576,29936.44411102776,29947.966991747937,29959.48987246812,29971.012753188297,29982.535633908476,29994.058514628658,30005.581395348836,30017.104276069018,30028.627156789196,30040.15003750938,30051.672918229557,30063.19579894974,30074.718679669917,30086.2415603901,30097.764441110277,30109.28732183046,30120.810202550638,30132.333083270816,30143.855963990998,30155.378844711176,30166.90172543136,30178.424606151537,30189.94748687172,30201.470367591897,30212.99324831208,30224.516129032258,30236.03900975244,30247.561890472618,30259.0847711928,30270.60765191298,30282.130532633157,30293.65341335334,30305.176294073517,30316.6991747937,30328.222055513877,30339.74493623406,30351.267816954238,30362.79069767442,30374.313578394598,30385.83645911478,30397.35933983496,30408.88222055514,30420.40510127532,30431.927981995497,30443.45086271568,30454.973743435858,30466.49662415604,30478.019504876218,30489.5423855964,30501.06526631658,30512.58814703676,30524.11102775694,30535.63390847712,30547.1567891973,30558.67966991748,30570.20255063766,30581.725431357838,30593.24831207802,30604.771192798198,30616.29407351838,30627.81695423856,30639.33983495874,30650.86271567892,30662.3855963991,30673.90847711928,30685.43135783946,30696.95423855964,30708.47711927982,30720.0,30731.52288072018,30743.04576144036,30754.56864216054,30766.09152288072,30777.6144036009,30789.13728432108,30800.66016504126,30812.18304576144,30823.70592648162,30835.228807201802,30846.75168792198,30858.274568642162,30869.79744936234,30881.32033008252,30892.8432108027,30904.36609152288,30915.88897224306,30927.41185296324,30938.93473368342,30950.4576144036,30961.980495123782,30973.50337584396,30985.026256564142,30996.54913728432,31008.072018004503,31019.59489872468,31031.11777944486,31042.64066016504,31054.16354088522,31065.686421605402,31077.20930232558,31088.732183045762,31100.25506376594,31111.777944486123,31123.3008252063,31134.823705926483,31146.34658664666,31157.869467366843,31169.39234808702,31180.9152288072,31192.438109527382,31203.96099024756,31215.483870967742,31227.00675168792,31238.529632408103,31250.05251312828,31261.575393848463,31273.09827456864,31284.621155288824,31296.144036009002,31307.666916729184,31319.189797449362,31330.71267816954,31342.235558889723,31353.7584396099,31365.281320330083,31376.80420105026,31388.327081770443,31399.84996249062,31411.372843210804,31422.895723930982,31434.418604651164,31445.941485371342,31457.464366091524,31468.987246811703,31480.51012753188,31492.033008252063,31503.55588897224,31515.078769692424,31526.601650412602,31538.124531132784,31549.647411852962,31561.170292573144,31572.693173293323,31584.216054013505,31595.738934733683,31607.261815453865,31618.784696174043,31630.307576894225,31641.830457614404,31653.353338334582,31664.876219054764,31676.399099774942,31687.921980495124,31699.444861215303,31710.967741935485,31722.490622655663,31734.013503375845,31745.536384096024,31757.059264816206,31768.582145536384,31780.105026256566,31791.627906976744,31803.150787696923,31814.673668417105,31826.196549137283,31837.719429857465,31849.242310577643,31860.765191297825,31872.288072018004,31883.810952738186,31895.333833458364,31906.856714178546,31918.379594898724,31929.902475618906,31941.425356339085,31952.948237059263,31964.471117779445,31975.993998499624,31987.516879219806,31999.039759939984,32010.562640660166,32022.085521380344,32033.608402100526,32045.131282820705,32056.654163540887,32068.177044261065,32079.699924981247,32091.222805701425,32102.745686421604,32114.268567141786,32125.791447861964,32137.314328582146,32148.837209302324,32160.360090022506,32171.882970742685,32183.405851462867,32194.928732183045,32206.451612903227,32217.974493623406,32229.497374343588,32241.020255063766,32252.543135783944,32264.066016504126,32275.588897224305,32287.111777944487,32298.634658664665,32310.157539384847,32321.680420105025,32333.203300825207,32344.726181545386,32356.249062265568,32367.771942985746,32379.294823705928,32390.817704426107,32402.340585146285,32413.863465866467,32425.386346586645,32436.909227306827,32448.432108027006,32459.954988747188,32471.477869467366,32483.000750187548,32494.523630907726,32506.04651162791,32517.569392348087,32529.09227306827,32540.615153788447,32552.138034508625,32563.660915228807,32575.183795948986,32586.706676669168,32598.229557389346,32609.752438109528,32621.275318829707,32632.79819954989,32644.321080270067,32655.84396099025,32667.366841710427,32678.88972243061,32690.412603150788,32701.935483870966,32713.458364591148,32724.981245311326,32736.50412603151,32748.027006751687,32759.54988747187,32771.07276819205,32782.595648912225,32794.11852963241,32805.64141035259,32817.16429107277,32828.687171792946,32840.21005251313,32851.73293323331,32863.25581395349,32874.77869467367,32886.301575393845,32897.82445611403,32909.34733683421,32920.87021755439,32932.393098274566,32943.91597899475,32955.43885971493,32966.96174043511,32978.48462115529,32990.00750187547,33001.53038259565,33013.05326331583,33024.57614403601,33036.099024756186,33047.62190547637,33059.14478619655,33070.66766691673,33082.19054763691,33093.71342835709,33105.23630907727,33116.75918979745,33128.28207051763,33139.80495123781,33151.32783195799,33162.85071267817,33174.37359339835,33185.89647411853,33197.41935483871,33208.94223555889,33220.46511627907,33231.98799699925,33243.51087771943,33255.03375843961,33266.55663915979,33278.07951987997,33289.60240060015,33301.12528132033,33312.64816204051,33324.17104276069,33335.69392348087,33347.21680420105,33358.73968492123,33370.26256564141,33381.78544636159,33393.30832708177,33404.83120780195,33416.35408852213,33427.87696924231,33439.399849962494,33450.92273068267,33462.44561140285,33473.96849212303,33485.49137284321,33497.01425356339,33508.53713428357,33520.06001500375,33531.58289572393,33543.105776444114,33554.62865716429,33566.15153788447,33577.67441860465,33589.197299324835,33600.72018004501,33612.24306076519,33623.76594148537,33635.28882220555,33646.811702925734,33658.33458364591,33669.85746436609,33681.38034508627,33692.903225806454,33704.42610652663,33715.94898724681,33727.47186796699,33738.994748687175,33750.51762940735,33762.04051012753,33773.56339084771,33785.08627156789,33796.609152288074,33808.13203300825,33819.65491372843,33831.17779444861,33842.700675168795,33854.22355588897,33865.74643660915,33877.26931732933,33888.792198049516,33900.315078769694,33911.83795948987,33923.36084021005,33934.88372093023,33946.406601650415,33957.92948237059,33969.45236309077,33980.97524381095,33992.498124531136,34004.021005251314,34015.54388597149,34027.06676669167,34038.589647411856,34050.112528132035,34061.63540885221,34073.15828957239,34084.68117029257,34096.204051012755,34107.726931732934,34119.24981245311,34130.77269317329,34142.295573893476,34153.818454613654,34165.34133533383,34176.86421605401,34188.3870967742,34199.909977494375,34211.43285821455,34222.95573893473,34234.47861965491,34246.001500375096,34257.524381095274,34269.04726181545,34280.57014253563,34292.09302325582,34303.615903975995,34315.13878469617,34326.66166541635,34338.18454613654,34349.707426856716,34361.230307576894,34372.75318829707,34384.27606901725,34395.79894973744,34407.321830457615,34418.84471117779,34430.36759189797,34441.89047261816,34453.413353338336,34464.936234058514,34476.45911477869,34487.98199549888,34499.504876219056,34511.027756939235,34522.55063765941,34534.07351837959,34545.59639909978,34557.119279819955,34568.642160540134,34580.16504126031,34591.6879219805,34603.210802700676,34614.733683420855,34626.25656414103,34637.77944486122,34649.3023255814,34660.825206301575,34672.34808702175,34683.87096774193,34695.39384846212,34706.916729182296,34718.439609902474,34729.96249062265,34741.48537134284,34753.00825206302,34764.531132783195,34776.05401350337,34787.57689422356,34799.09977494374,34810.622655663916,34822.145536384094,34833.66841710427,34845.19129782446,34856.71417854464,34868.237059264815,34879.75993998499,34891.28282070518,34902.80570142536,34914.328582145536,34925.851462865714,34937.3743435859,34948.89722430608,34960.420105026256,34971.942985746435,34983.46586646661,34994.9887471868,35006.51162790698,35018.034508627155,35029.557389347334,35041.08027006752,35052.6031507877,35064.126031507876,35075.648912228055,35087.17179294824,35098.69467366842,35110.2175543886,35121.740435108775,35133.26331582895,35144.78619654914,35156.30907726932,35167.831957989496,35179.354838709674,35190.87771942986,35202.40060015004,35213.92348087022,35225.446361590395,35236.96924231058,35248.49212303076,35260.01500375094,35271.537884471116,35283.060765191294,35294.58364591148,35306.10652663166,35317.62940735184,35329.152288072015,35340.6751687922,35352.19804951238,35363.72093023256,35375.243810952736,35386.76669167292,35398.2895723931,35409.81245311328,35421.33533383346,35432.85821455364,35444.38109527382,35455.903975994,35467.42685671418,35478.949737434355,35490.47261815454,35501.99549887472,35513.5183795949,35525.041260315076,35536.56414103526,35548.08702175544,35559.60990247562,35571.1327831958,35582.65566391598,35594.17854463616,35605.70142535634,35617.22430607652,35628.747186796696,35640.27006751688,35651.79294823706,35663.31582895724,35674.83870967742,35686.3615903976,35697.88447111778,35709.40735183796,35720.93023255814,35732.45311327832,35743.9759939985,35755.49887471868,35767.02175543886,35778.54463615904,35790.06751687922,35801.5903975994,35813.11327831958,35824.63615903976,35836.15903975994,35847.68192048012,35859.2048012003,35870.72768192048,35882.250562640664,35893.77344336084,35905.29632408102,35916.8192048012,35928.34208552138,35939.86496624156,35951.38784696174,35962.91072768192,35974.4336084021,35985.95648912228,35997.47936984246,36009.00225056264,36020.52513128282,36032.048012003004,36043.57089272318,36055.09377344336,36066.61665416354,36078.13953488372,36089.6624156039,36101.18529632408,36112.70817704426,36124.23105776444,36135.753938484624,36147.2768192048,36158.79969992498,36170.32258064516,36181.845461365345,36193.36834208552,36204.8912228057,36216.41410352588,36227.93698424606,36239.459864966244,36250.98274568642,36262.5056264066,36274.02850712678,36285.551387846965,36297.07426856714,36308.59714928732,36320.1200300075,36331.642910727685,36343.165791447864,36354.68867216804,36366.21155288822,36377.7344336084,36389.257314328584,36400.78019504876,36412.30307576894,36423.82595648912,36435.348837209305,36446.87171792948,36458.39459864966,36469.91747936984,36481.440360090026,36492.963240810204,36504.48612153038,36516.00900225056,36527.53188297074,36539.054763690925,36550.5776444111,36562.10052513128,36573.62340585146,36585.146286571646,36596.669167291824,36608.192048012,36619.71492873218,36631.23780945237,36642.760690172545,36654.28357089272,36665.8064516129,36677.32933233308,36688.852213053266,36700.375093773444,36711.89797449362,36723.4208552138,36734.943735933986,36746.466616654165,36757.98949737434,36769.51237809452,36781.03525881471,36792.558139534885,36804.081020255064,36815.60390097524,36827.12678169542,36838.649662415606,36850.172543135785,36861.69542385596,36873.21830457614,36884.74118529633,36896.264066016505,36907.78694673668,36919.30982745686,36930.83270817705,36942.355588897226,36953.878469617404,36965.40135033758,36976.92423105776,36988.44711177795,36999.969992498125,37011.4928732183,37023.01575393848,37034.53863465867,37046.061515378846,37057.584396099024,37069.1072768192,37080.63015753939,37092.15303825957,37103.675918979745,37115.19879969992,37126.7216804201,37138.24456114029,37149.767441860466,37161.290322580644,37172.81320330082,37184.33608402101,37195.858964741186,37207.381845461365,37218.90472618154,37230.42760690173,37241.95048762191,37253.473368342085,37264.996249062264,37276.51912978244,37288.04201050263,37299.564891222806,37311.087771942985,37322.61065266316,37334.13353338335,37345.65641410353,37357.179294823705,37368.702175543884,37380.22505626407,37391.74793698425,37403.270817704426,37414.793698424604,37426.31657914478,37437.83945986497,37449.36234058515,37460.885221305325,37472.4081020255,37483.93098274569,37495.45386346587,37506.976744186046,37518.499624906224,37530.02250562641,37541.54538634659,37553.06826706677,37564.591147786945,37576.11402850712,37587.63690922731,37599.15978994749,37610.682670667666,37622.205551387844,37633.72843210803,37645.25131282821,37656.77419354839,37668.297074268565,37679.81995498875,37691.34283570893,37702.86571642911,37714.388597149285,37725.911477869464,37737.43435858965,37748.95723930983,37760.480120030006,37772.003000750185,37783.52588147037,37795.04876219055,37806.57164291073,37818.094523630905,37829.61740435109,37841.14028507127,37852.66316579145,37864.186046511626,37875.708927231804,37887.23180795199,37898.75468867217,37910.27756939235,37921.800450112525,37933.32333083271,37944.84621155289,37956.36909227307,37967.891972993246,37979.41485371343,37990.93773443361,38002.46061515379,38013.98349587397,38025.506376594145,38037.02925731433,38048.55213803451,38060.07501875469,38071.597899474866,38083.12078019505,38094.64366091523,38106.16654163541,38117.68942235559,38129.21230307577,38140.73518379595,38152.25806451613,38163.78094523631,38175.303825956486,38186.82670667667,38198.34958739685,38209.87246811703,38221.395348837206,38232.91822955739,38244.44111027757,38255.96399099775,38267.48687171793,38279.00975243811,38290.53263315829,38302.05551387847,38313.57839459865,38325.101275318826,38336.62415603901,38348.14703675919,38359.66991747937,38371.19279819955,38382.71567891973,38394.23855963991,38405.76144036009,38417.28432108027,38428.80720180045,38440.33008252063,38451.85296324081,38463.37584396099,38474.898724681174,38486.42160540135,38497.94448612153,38509.46736684171,38520.99024756189,38532.51312828207,38544.03600900225,38555.55888972243,38567.08177044261,38578.604651162794,38590.12753188297,38601.65041260315,38613.17329332333,38624.696174043514,38636.21905476369,38647.74193548387,38659.26481620405,38670.78769692423,38682.31057764441,38693.83345836459,38705.35633908477,38716.87921980495,38728.402100525134,38739.92498124531,38751.44786196549,38762.97074268567,38774.493623405855,38786.01650412603,38797.53938484621,38809.06226556639,38820.58514628657,38832.108027006754,38843.63090772693,38855.15378844711,38866.67666916729,38878.199549887475,38889.72243060765,38901.24531132783,38912.76819204801,38924.291072768196,38935.813953488374,38947.33683420855,38958.85971492873,38970.38259564891,38981.905476369095,38993.42835708927,39004.95123780945,39016.47411852963,39027.996999249815,39039.519879969994,39051.04276069017,39062.56564141035,39074.088522130536,39085.611402850715,39097.13428357089,39108.65716429107,39120.18004501125,39131.702925731435,39143.22580645161,39154.74868717179,39166.27156789197,39177.794448612156,39189.317329332334,39200.84021005251,39212.36309077269,39223.88597149288,39235.408852213055,39246.93173293323,39258.45461365341,39269.97749437359,39281.500375093776,39293.023255813954,39304.54613653413,39316.06901725431,39327.5918979745,39339.114778694675,39350.63765941485,39362.16054013503,39373.68342085522,39385.206301575396,39396.729182295574,39408.25206301575,39419.77494373593,39431.297824456116,39442.820705176295,39454.34358589647,39465.86646661665,39477.38934733684,39488.912228057015,39500.435108777194,39511.95798949737,39523.48087021756,39535.003750937736,39546.526631657915,39558.04951237809,39569.57239309827,39581.09527381846,39592.618154538635,39604.141035258814,39615.66391597899,39627.18679669918,39638.709677419356,39650.232558139534,39661.75543885971,39673.2783195799,39684.80120030008,39696.324081020255,39707.84696174043,39719.36984246061,39730.8927231808,39742.415603900976,39753.938484621154,39765.46136534133,39776.98424606152,39788.5071267817,39800.030007501875,39811.55288822205,39823.07576894224,39834.59864966242,39846.121530382596,39857.644411102774,39869.16729182295,39880.69017254314,39892.21305326332,39903.735933983495,39915.25881470367,39926.78169542386,39938.30457614404,39949.827456864215,39961.350337584394,39972.87321830458,39984.39609902476,39995.918979744936,40007.441860465115,40018.96474118529,40030.48762190548,40042.01050262566,40053.533383345835,40065.056264066014,40076.5791447862,40088.10202550638,40099.624906226556,40111.147786946734,40122.67066766692,40134.1935483871,40145.71642910728,40157.239309827455,40168.76219054763,40180.28507126782,40191.807951988,40203.330832708176,40214.853713428354,40226.37659414854,40237.89947486872,40249.4223555889,40260.945236309075,40272.46811702926,40283.99099774944,40295.51387846962,40307.036759189796,40318.559639909974,40330.08252063016,40341.60540135034,40353.12828207052,40364.651162790695,40376.17404351088,40387.69692423106,40399.21980495124,40410.742685671416,40422.2655663916,40433.78844711178,40445.31132783196,40456.834208552136,40468.357089272315,40479.8799699925,40491.40285071268,40502.92573143286,40514.448612153035,40525.97149287322,40537.4943735934,40549.01725431358,40560.540135033756,40572.06301575394,40583.58589647412,40595.1087771943,40606.63165791448,40618.154538634655,40629.67741935484,40641.20030007502,40652.7231807952,40664.246061515376,40675.76894223556,40687.29182295574,40698.81470367592,40710.3375843961,40721.86046511628,40733.38334583646,40744.90622655664,40756.42910727682,40767.951987996996,40779.47486871718,40790.99774943736,40802.52063015754,40814.04351087772,40825.5663915979,40837.08927231808,40848.61215303826,40860.13503375844,40871.65791447862,40883.1807951988,40894.70367591898,40906.22655663916,40917.749437359336,40929.27231807952,40940.7951987997,40952.31807951988,40963.84096024006,40975.36384096024,40986.88672168042,40998.4096024006,41009.93248312078,41021.45536384096,41032.97824456114,41044.50112528132,41056.0240060015,41067.54688672168,41079.06976744186,41090.59264816204,41102.11552888222,41113.6384096024,41125.16129032258,41136.68417104276,41148.20705176294,41159.72993248312,41171.252813203304,41182.77569392348,41194.29857464366,41205.82145536384,41217.34433608402,41228.8672168042,41240.39009752438,41251.91297824456,41263.43585896474,41274.958739684924,41286.4816204051,41298.00450112528,41309.52738184546,41321.050262565645,41332.57314328582,41344.096024006,41355.61890472618,41367.14178544636,41378.66466616654,41390.18754688672,41401.7104276069,41413.23330832708,41424.756189047264,41436.27906976744,41447.80195048762,41459.3248312078,41470.847711927985,41482.37059264816,41493.89347336834,41505.41635408852,41516.939234808706,41528.462115528884,41539.98499624906,41551.50787696924,41563.03075768942,41574.553638409605,41586.07651912978,41597.59939984996,41609.12228057014,41620.645161290326,41632.168042010504,41643.69092273068,41655.21380345086,41666.73668417105,41678.259564891225,41689.7824456114,41701.30532633158,41712.82820705176,41724.351087771945,41735.873968492124,41747.3968492123,41758.91972993248,41770.442610652666,41781.965491372845,41793.48837209302,41805.0112528132,41816.53413353339,41828.057014253565,41839.579894973744,41851.10277569392,41862.6256564141,41874.148537134286,41885.671417854464,41897.19429857464,41908.71717929482,41920.24006001501,41931.762940735185,41943.28582145536,41954.80870217554,41966.33158289573,41977.854463615906,41989.377344336084,42000.90022505626,42012.42310577644,42023.94598649663,42035.468867216805,42046.99174793698,42058.51462865716,42070.03750937735,42081.560390097526,42093.083270817704,42104.60615153788,42116.12903225807,42127.65191297825,42139.174793698425,42150.6976744186,42162.22055513878,42173.74343585897,42185.266316579145,42196.789197299324,42208.3120780195,42219.83495873969,42231.357839459866,42242.880720180045,42254.40360090022,42265.92648162041,42277.44936234059,42288.972243060765,42300.495123780944,42312.01800450112,42323.54088522131,42335.063765941486,42346.586646661664,42358.10952738184,42369.63240810203,42381.15528882221,42392.678169542385,42404.20105026256,42415.72393098275,42427.24681170293,42438.769692423106,42450.292573143284,42461.81545386346,42473.33833458365,42484.86121530383,42496.384096024005,42507.90697674418,42519.42985746437,42530.95273818455,42542.475618904726,42553.998499624904,42565.52138034509,42577.04426106527,42588.56714178545,42600.090022505625,42611.6129032258,42623.13578394599,42634.65866466617,42646.181545386346,42657.704426106524,42669.22730682671,42680.75018754689,42692.273068267066,42703.795948987245,42715.31882970743,42726.84171042761,42738.36459114779,42749.887471867965,42761.410352588144,42772.93323330833,42784.45611402851,42795.978994748686,42807.501875468864,42819.02475618905,42830.54763690923,42842.07051762941,42853.593398349585,42865.11627906977,42876.63915978995,42888.16204051013,42899.684921230306,42911.207801950484,42922.73068267067,42934.25356339085,42945.77644411103,42957.299324831205,42968.82220555139,42980.34508627157,42991.86796699175,43003.390847711926,43014.91372843211,43026.43660915229,43037.95948987247,43049.48237059265,43061.005251312825,43072.52813203301,43084.05101275319,43095.57389347337,43107.096774193546,43118.61965491373,43130.14253563391,43141.66541635409,43153.188297074266,43164.71117779445,43176.23405851463,43187.75693923481,43199.27981995499,43210.802700675165,43222.32558139535,43233.84846211553,43245.37134283571,43256.894223555886,43268.41710427607,43279.93998499625,43291.46286571643,43302.98574643661,43314.50862715679,43326.03150787697,43337.55438859715,43349.07726931733,43360.600150037506,43372.12303075769,43383.64591147787,43395.16879219805,43406.69167291823,43418.21455363841,43429.73743435859,43441.26031507877,43452.78319579895,43464.30607651913,43475.82895723931,43487.35183795949,43498.87471867967,43510.39759939985,43521.92048012003,43533.44336084021,43544.96624156039,43556.48912228057,43568.01200300075,43579.53488372093,43591.05776444111,43602.58064516129,43614.10352588147,43625.62640660165,43637.14928732183,43648.67216804201,43660.19504876219,43671.71792948237,43683.24081020255,43694.76369092273,43706.28657164291,43717.80945236309,43729.33233308327,43740.85521380345,43752.37809452363,43763.900975243814,43775.42385596399,43786.94673668417,43798.46961740435,43809.99249812453,43821.51537884471,43833.03825956489,43844.56114028507,43856.08402100525,43867.606901725434,43879.12978244561,43890.65266316579,43902.17554388597,43913.698424606155,43925.22130532633,43936.74418604651,43948.26706676669,43959.78994748687,43971.312828207054,43982.83570892723,43994.35858964741,44005.88147036759,44017.404351087775,44028.92723180795,44040.45011252813,44051.97299324831,44063.495873968495,44075.018754688674,44086.54163540885,44098.06451612903,44109.58739684921,44121.110277569394,44132.63315828957,44144.15603900975,44155.67891972993,44167.201800450115,44178.72468117029,44190.24756189047,44201.77044261065,44213.293323330836,44224.816204051014,44236.33908477119,44247.86196549137,44259.38484621155,44270.907726931735,44282.43060765191,44293.95348837209,44305.47636909227,44316.999249812456,44328.522130532634,44340.04501125281,44351.56789197299,44363.09077269318,44374.613653413355,44386.13653413353,44397.65941485371,44409.18229557389,44420.705176294075,44432.228057014254,44443.75093773443,44455.27381845461,44466.796699174796,44478.319579894975,44489.84246061515,44501.36534133533,44512.88822205552,44524.411102775695,44535.933983495874,44547.45686421605,44558.97974493624,44570.502625656416,44582.025506376594,44593.54838709677,44605.07126781695,44616.59414853714,44628.117029257315,44639.63990997749,44651.16279069767,44662.68567141786,44674.208552138036,44685.731432858214,44697.25431357839,44708.77719429858,44720.30007501876,44731.822955738935,44743.34583645911,44754.86871717929,44766.39159789948,44777.914478619656,44789.437359339834,44800.96024006001,44812.4831207802,44824.00600150038,44835.528882220555,44847.05176294073,44858.57464366092,44870.0975243811,44881.620405101276,44893.143285821454,44904.66616654163,44916.18904726182,44927.711927981996,44939.234808702175,44950.75768942235,44962.28057014254,44973.80345086272,44985.326331582895,44996.849212303074,45008.37209302326,45019.89497374344,45031.417854463616,45042.940735183794,45054.46361590397,45065.98649662416,45077.50937734434,45089.032258064515,45100.55513878469,45112.07801950488,45123.60090022506,45135.123780945236,45146.646661665414,45158.1695423856,45169.69242310578,45181.21530382596,45192.738184546135,45204.26106526631,45215.7839459865,45227.30682670668,45238.829707426856,45250.352588147034,45261.87546886722,45273.3983495874,45284.92123030758,45296.444111027755,45307.96699174794,45319.48987246812,45331.0127531883,45342.535633908476,45354.058514628654,45365.58139534884,45377.10427606902,45388.627156789196,45400.150037509375,45411.67291822956,45423.19579894974,45434.71867966992,45446.241560390095,45457.76444111028,45469.28732183046,45480.81020255064,45492.333083270816,45503.855963990994,45515.37884471118,45526.90172543136,45538.42460615154,45549.947486871715,45561.4703675919,45572.99324831208,45584.51612903226,45596.039009752436,45607.56189047262,45619.0847711928,45630.60765191298,45642.13053263316,45653.653413353335,45665.17629407352,45676.6991747937,45688.22205551388,45699.744936234056,45711.26781695424,45722.79069767442,45734.3135783946,45745.83645911478,45757.35933983496,45768.88222055514,45780.40510127532,45791.9279819955,45803.450862715676,45814.97374343586,45826.49662415604,45838.01950487622,45849.542385596396,45861.06526631658,45872.58814703676,45884.11102775694,45895.63390847712,45907.1567891973,45918.67966991748,45930.20255063766,45941.72543135784,45953.248312078016,45964.7711927982,45976.29407351838,45987.81695423856,45999.33983495874,46010.86271567892,46022.3855963991,46033.90847711928,46045.43135783946,46056.95423855964,46068.47711927982,46080.0],"cosine":[1.0,0.9798450101169925,0.9201924877023385,0.8234470247275643,0.6935084288476367,0.5356145222333002,0.3561300050653556,0.16228989459915577,-0.03809211823456467,-0.2369386385530054,-0.42623416714558715,-0.598348205084946,-0.7463428389842997,-0.8642524081456858,-0.9473239802219898,-0.9922089418236847,-0.9970979810568079,-0.9617940208487967,-0.8877201631212965,-0.7778623235804935,-0.6366488695154153,-0.4697721124021147,-0.2839588509432467,-0.08669921394847557,0.11405526660628847,0.31021218167194464,0.4938644499712343,0.6576090522850293,0.7948454470072659,0.9000416378435312,0.9689571684697523,0.998814055240823,0.9884087676551249,0.9381607426446967,0.8500954770809913,0.7277628800369708,0.5760941760242027,0.40120312743258063,0.21013958889208859,0.010605327775318703,-0.1893564338894872,-0.3816852415356431,-0.5586283248185099,-0.7130531116312205,-0.838734741941982,-0.9306069917760087,-0.9849664926014329,-0.9996220140398905,-0.973982792318737,-0.9090823439467682,-0.8075368046846648,-0.6734394731654094,-0.5121958101092204,-0.33030554431129117,-0.1351006687055711,0.06555011212204365,0.2635585692563608,0.4509429857967941,0.6201498997041323,0.7643585837024992,0.8777559886578402,0.955771067470885,0.9952590338932359,0.9946281287974067,0.9539037839550452,0.8747275968827305,0.7602911580792978,0.6152073980774087,0.44532464030711627,0.25749085529673804,0.059277619119412595,-0.1413250966851939,-0.33623100070199013,-0.5175834398837821,-0.678072101076633,-0.811227689595187,-0.911682706360528,-0.9753878116794502,-0.9997750540455561,-0.9838613842125195,-0.9282882818893126,-0.8352958977061186,-0.7086327527877555,-0.5534046359429843,-0.3758687894209309,-0.18318167960264323,0.01688948001393161,0.21627982503288637,0.40695193468096635,0.5812198200763179,0.7320587462847847,0.8533883992429803,0.9403179830951373,0.9893433680751104,0.9984883419063342,0.9673842708787125,0.8972849594660076,0.7910161094928801,0.6528614161515003,0.4883898923350445,0.30423138184063714,0.10780931050004319,-0.09295855196539166,-0.2899792570820274,-0.4753109042131187,-0.6414827784128134,-0.7817964947944434,-0.8905960102897654,-0.9634956186306151,-0.9975567380798194,-0.991406365601575,-0.9452924225860321,-0.8610737611430802,-0.7421452338114022,-0.5933008471213447,-0.4205405152886667,-0.23082820379390945,-0.031811212074797895,0.16848808895938117,0.36199563853679684,0.5409111512494049,0.6980225463999409,0.8269966668288701,0.9226345683513663,0.9810810890921944,0.9999802509828953,0.9785702291900612,0.9177140612589517,0.8198648580875071,0.688966919075686,0.5302967374964731,0.35025030515879035,0.15608529010711975,-0.04437151983054132,-0.2430397147016498,-0.43191098359079294,-0.6033719294706751,-0.7505109650822097,-0.8673969188771087,-0.9493181204229695,-0.9929723277430677,-0.9965998406236305,-0.9600544340938412,-0.8848092527514569,-0.7738974283338766,-0.6317898142391892,-0.46421476551614266,-0.2779272289880584,-0.08043645148304106,0.12029671775371158,0.3161807287318902,0.4993195009324827,0.6623307141537135,0.7986433896889947,0.9027627663456534,0.9704917941574053,0.9991003173835893,0.9874351270318217,0.9359664466891495,0.8467689778187674,0.7234382685860236,0.5709457773846166,0.3954384734493409,0.20399105265062198,0.004320756647104539,-0.19552370896942767,-0.3874866178336262,-0.5638299489733531,-0.7174453062784878,-0.8421404578043169,-0.9328889445159091,-0.9860326967501267,-0.999429490929718,-0.9725393025523739,-0.9064460745674882,-0.8038140236578049,-0.668780245718837,-0.5067879496070293,-0.32436704150090534,-0.12887090451511407,0.07182001602410171,0.2696158731705989,0.4565435199249925,0.625067906628904,0.7683958186642135,0.8807497107968835,0.9576005999084068,0.9958506282136969,0.993957937845721,0.9519988231149131,0.8716646550870762,0.7561937024499257,0.61024059696783,0.43968870536955956,0.2514129709545042,0.053002784767351735,-0.14754394260131518,-0.3421431766291174,-0.5229506261299274,-0.6826779464728147,-0.8148865326066729,-0.9142470590995632,-0.9767543051390105,-0.9998886049019354,-0.9827174152329952,-0.9259329064403015,-0.8318240609243109,-0.704184404343582,-0.5481590886722149,-0.37003749122791313,-0.17699968999955473,0.023172965151284163,0.22241151854575622,0.4126846681279127,0.5863225070880959,0.7363256976511982,0.8566476142407832,0.9424380828337138,0.9902388913768988,0.9981231902451589,0.9657731635106477,0.8944928400964606,0.7871555283971391,0.6480879932754274,0.4828960442581806,0.2982385654677974,0.10155909613796173,-0.09921421830224215,-0.29598820961018946,-0.4808309221777708,-0.6462913500014854,-0.785699786583696,-0.8934366806665548,-0.9651591602295264,-0.9979760935726645,-0.9905646307769209,-0.9432235277576313,-0.8578611034196004,-0.7379183153606734,-0.5882300549405852,-0.4148302529080868,-0.22470865177452576,-0.025529049434684883,0.17467962837130593,0.3678469738921222,0.5461864153383569,0.702509093433824,0.8305136441875381,0.9250402067486525,0.9822784172929776,0.9999210047116288,0.9772567966627416,0.9151993869141777,0.8162503083972378,0.6843981964647978,0.5249580070809641,0.3443567710536962,0.14987452055295647,-0.050649168838714245,-0.2491311912593309,-0.4375707404011933,-0.6083718218512908,-0.7546494474723485,-0.8705071691353569,-0.9512747644243525,-0.993696493207481,-0.9960623364558557,-0.9582769270760053,-0.8818633941554813,-0.7699019656601649,-0.6269058045072675,-0.4586390830594844,-0.2718846294536694,-0.07417051193589419,0.12653341741725962,0.3221367872745988,0.5047548297550027,0.6670262152611913,0.802409787526799,0.9054482374931452,0.9719880873269725,0.9993471170278412,0.9864224846620914,0.9337351818988723,0.8434090328464913,0.7190850827455932,0.5657748275091831,0.38965820042375104,0.1978344591635755,-0.0019639851424965373,-0.20168326124722155,-0.393272689171927,-0.5690093029535854,-0.7218091632465045,-0.8455129107740388,-0.9351340499763663,-0.9870599545456328,-0.9991974923193231,-0.9710573993953677,-0.9037740023501485,-0.8000594935571417,-0.6640946027672376,-0.5013600719770729,-0.318415726830018,-0.12263605017726388,0.07808708317671983,0.27566252778785516,0.46212602148162113,0.6299612246001136,0.7724027035015958,0.883708645053719,0.9593923090046734,0.9964028883919777,0.9932484875094036,0.9500562601926998,0.8685672842510516,0.7520663786558253,0.6052496925542779,0.4340354035924803,0.24532515629414298,0.04672585690948693,-0.15375696082174029,-0.3480418385733516,-0.528297156854352,-0.6872568274321098,-0.818513189202023,-0.9167753008769823,-0.978082218723612,-0.999962662123993,-0.981534630847386,-0.923540958461677,-0.8283193687272911,-0.6997082419997147,-0.5428918901950107,-0.3641915772814118,-0.17081070925665368,0.02945553500206644,0.22853442724085607,0.41840110134172875,0.5914020355134313,0.7405635656000139,0.8598729933418114,0.9445209581206545,0.9910953021890802,0.9977186146800706,0.9641239100011321,0.8916653900181154,0.7832638562054117,0.6432889721976165,0.47738312273684114,0.29223396925790013,0.0953048703912307,-0.1054659658725041,-0.30198547118592284,-0.4863319482662063,-0.6510743943523059,-0.7895720447758999,-0.8962420620507656,-0.9667845799389128,-0.9983560309716261,-0.9896837705965955,-0.9411173774540629,-0.854614561868911,-0.733662250587081,-0.583136028828996,-0.40910360554797925,-0.2185802242051194,-0.019245878447315873,0.18086426828129368,0.373683780015089,0.5514401061375878,0.7069678927395108,0.8339978178898813,0.9274093078762032,0.9834369474272294,0.9998222635263118,0.9759047644130362,0.9126485639927127,0.8126035184243595,0.679802441470527,0.5195985418561432,0.33844963553307505,0.14365783124985332,-0.05692481730427975,-0.25521282762469316,-0.4432132140275275,-0.6133476847408813,-0.7587581226927872,-0.8735830360716592,-0.953193834942548,-0.9943814096138116,-0.9954854897838401,-0.9564615700033197,-0.8788827036890012,-0.7658760933722731,-0.6219970332284335,-0.45304528526063387,-0.26583129101088915,-0.06790164279932163,0.13276511925956577,0.3280801220474524,0.51017022175399,0.6716953701444004,0.8061444917553634,0.9080979452151827,0.9734459888778173,0.9995544444254775,0.985370880543319,0.9314670364044381,0.8400157748753835,0.7147034944579681,0.5605815306402512,0.38386253666522363,0.1916700516043049,-0.008248649358549237,-0.20783484743266328,-0.39904322701209366,-0.5741661821849009,-0.7261445101715042,-0.8488519676458907,-0.9373422194801231,-0.9880482254132876,-0.9989260273721947,-0.969537141379982,-0.9010662328363415,-0.7962733626792279,-0.6593827293843091,-0.49591239160983885,-0.3124518353638595,-0.11639635195650852,0.08435106604304742,0.28169829427716625,0.4676902699688513,0.6348296603413173,0.776379079950572,0.8866326745562612,0.961146123990699,0.996915792614887,0.9924998058103475,0.9480761719158232,0.8654356067147283,0.7479093497181731,0.6002348819676642,0.4283649582701819,0.23922765177235836,0.04044708347211953,-0.1599639059444591,-0.3539267535491396,-0.5336228208796026,-0.6918085630977245,-0.8221075161354207,-0.9192673318322084,-0.9793714999832805,-0.999997222786614,-0.9803130777733501,-0.9211125324306818,-0.8247819595435091,-0.6952044425557626,-0.537603248555349,-0.3583312784835398,-0.16461498182651507,0.03573694141711955,0.23464830927533079,0.4241010085345236,0.5964582047209429,0.7447721827437868,0.8630644091499292,0.9465665266864801,0.9919125666851111,0.9972746311910085,0.9624365754924352,0.8888027209096885,0.7793412466311023,0.6384645424699874,0.4718513455205889,0.286217830380688,0.08904688028946865,-0.111713547744446,-0.3079708049291922,-0.49181376519870523,-0.6558317225444255,-0.7934131164244687,-0.8990120436353498,-0.9683718135578856,-0.9986965352699229,-0.9887638198528393,-0.9389740548641249,-0.8513342647230213,-0.7293772075968167,-0.5780189699905913,-0.4033607993996719,-0.2124431631465477,-0.012961947285573629,0.1870417644082256,0.37950582636332936,0.5566720161366422,0.7113987682031797,0.8374490503178784,0.9297417781591943,0.9845566337352907,0.9996840313270267,0.974514185843561,0.910061693247046,0.8089246322099165,0.6751798356161735,0.5142185535103341,0.3325291319171716,0.13743546774481702,-0.06319821735146401,-0.2612843835850593,-0.44883818160316485,-0.6182993216026316,-0.7628368284589445,-0.8766243981953182,-0.9550752561780429,-0.9950270499092082,-0.9948693233918948,-0.9546084345788244,-0.8758672990834134,-0.7618199704842454,-0.6170636942895029,-0.4474335930636077,-0.25976745275468266,-0.06163009168134685,0.13899157714064173,0.33401049830042945,0.5155654630321057,0.6763379943809013,0.8098473548612148,0.9107117848535115,0.9748654412256907,0.9997222913874745,0.9842803562117968,0.9291620997931351,0.8365893379324634,0.7102936767872694,0.5553660919028517,0.37805171109109864,0.18549807345477135,-0.014532987769167394,-0.21397822455019125,-0.4047980034292289,-0.5793003829807106,-0.7304511758157948,-0.8521574965336818,-0.9395133658088318,-0.9889974703183347,-0.9986151068106648,-0.9679785885534191,-0.8983228729776485,-0.7924557805687997,-0.6546448116797603,-0.4904451236779963,-0.30647560266441914,-0.11015205630866173,0.09061171720808286,0.2877229342376057,0.47323604560979193,0.6396730215588858,0.780324790952089,0.8895216838110926,0.962861975594239,0.9973893206237154,0.9917119223200097,0.9460586364938676,0.8622697461732012,0.7437227798314403,0.595196363283149,0.42267759337410776,0.23312069822860793,0.03416671245447342,-0.16616453280735652,-0.3597976891139083,-0.5389274078524192,-0.6963329736850477,-0.8256693714380223,-0.9217230535349111,-0.9806220979939374,-0.9999922855247201,-0.9790528042598325,-0.91864772426537,-0.8212119730936739,-0.6906731839029618,-0.5322933726441916,-0.3524568263045497,-0.15841275242819294,0.042016936293238036,0.2407529231628586,0.4297841645711752,0.6014908150018736,0.7489513828504022,0.8662217356104935,0.9485747077352532,0.9926906525846505,0.9967912573144474,0.9607112266309574,0.8859049458409893,0.7753878546095576,0.6336148946480125,0.46630093110374954,0.2801903864618202,0.08278537301098271,-0.11795671715084957,-0.3139439744310654,-0.4972761564542887,-0.6605631466727325,-0.7972228498146228,-0.90174651601148,-0.9699207983938393,-0.9989975930183048,-0.9878048148819041,-0.9367936446448463,-0.84802034154722,-0.7250633556406554,-0.5728790805391365,-0.3976020612927112,-0.2062977110006505,-0.006677504152378206,0.19321187275314836,0.38531288297745736,0.5618819386853598,0.7158015448139656,0.8408672051546376,0.9320375254696199,0.9856374319917517,0.9995063135736738,0.973085115879436,0.907438876853487,0.8052137950626778,0.6705305614855752,0.5088182545424939,0.32659549405424004,0.1312076758089742,-0.06946912119329736,-0.26734561932590417,-0.4544454209529509,-0.6232265368566255,-0.7668854036699553,-0.8796311353785087,-0.9569189538183968,-0.9956333885921483,-0.9942138616173806,-0.9527175939977236,-0.8728172994412913,-0.7577337572049622,-0.6121059825476661,-0.4418042281192164,-0.25369335419474076,-0.05535610629590251,0.145212545127649,0.33992768179533334,0.5209403404879256,0.680953904596163,0.8135182305885397,0.9132896531666073,0.9762463883050173,0.999850651284206,0.9831509547410935,0.9268204631054286,0.8331298573552545,0.7058558039126264,0.5501287172965554,0.3722259532175561,0.17931876849597111,-0.02081675215533748,-0.22011314994848588,-0.4105367911209768,-0.584411702550176,-0.7347289900745548,-0.8554293668755231,-0.9416474032064779,-0.9899076517674664,-0.9982647429154841,-0.9663818024754516,-0.8955440311313877,-0.7886068980128413,-0.6498810367920568,-0.48495848412788095,-0.3004872647811404,-0.10390340987112666,0.09686878938841226,0.29373620970774583,0.478763129357214,0.6444911169495663,0.7842396806583185,0.8923755587080272,0.9645397960425283,0.9978234537150379,0.9908848681582383,0.9440037336155289,0.8590698276717422,0.7395068343569076,0.5901343355123156,0.41697353354399097,0.22700453687554398,0.02788499191884996,-0.17235859649786842,-0.365654413377244,-0.5442107082520442,-0.7008298804887553,-0.8291986144235454,-0.9241423689889139,-0.9818339633594214,-0.9999478505333237,-0.9777538600851596,-0.9161466313208189,-0.8176095503852323,-0.6861146450171157,-0.5269624721911921,-0.3465684527737918,-0.1522042660375562,0.048295271582969444,0.24684802778319137,0.4354503449781919,0.6064996675780169,0.7531010008496768,0.8693448480153197,0.9505454219477751,0.9934295291548367,0.9962685121427042,0.9589479315645896,0.8829721792684407,0.7714038362920262,0.6287402202832532,0.4607320987167817,0.2741518755734828,0.07652059587300154,-0.12419522749880389,-0.3199047437630968,-0.5027189062792469,-0.6652684798552868,-0.8010010944693919,-0.9044453711728795,-0.971431473264914,-0.9992591923255822,-0.986806793562601,-0.9345762329181444,-0.8446729232349581,-0.7207208651072692,-0.5677165634901608,-0.39182761868593186,-0.2001441105007069,-0.0003927972709112142,0.19937434960892705,0.39110472049016687,0.5670696680020548,0.7201760486708366,0.8442521473897537,0.9342964591299746,0.9866792995072059,0.999289117285755,0.9716176109661155,0.9047802184081273,0.8014711535534159,0.6658548027159211,0.503397858253843,0.3206489563112967,0.12497470142784799,-0.07573728114142116,-0.273396295440316,-0.46003471060193973,-0.6281291358875343,-0.7709036884150573,-0.8826031288610223,-0.9587248550411773,-0.9962004017134459,-0.9935191303497487,-0.9507891229445035,-0.8697328252316173,-0.7536176149318049,-0.6071240938227782,-0.4361574127762947,-0.24760923524600092,-0.04907993445309387,0.15142777750456554,0.3458314388150031,0.5262946418243558,0.6855429184708062,0.8171569739449629,0.9158314483337393,0.9775887755711018,0.999939519045709,0.981982720740344,0.9244422188313585,0.8296374697864302,0.7013900511212823,0.5448696136873773,0.3663854931505946,0.1731323807983497,-0.02709969432071881,-0.22623938131005394,-0.4162593634165048,-0.5894999390062218,-0.7389777839825303,-0.8586674494389679,-0.9437442473827843,-0.9907787338103067,-0.9978749495253368,-0.9647468462159866,-0.8927298170563566,-0.7847268670346574,-0.6450915928809423,-0.47945268967096943,-0.29448705824159793,-0.09765065945315404,0.10312203544198457,0.2997378831750264,0.4842713029021745,0.6492837562080739,0.788123594438823,0.8951941865246235,0.9661795190649612,0.9982181747414498,0.9900186759920493,0.9419115444454315,0.8558359776008416,0.7352616798161334,0.5850489985953101,0.41125300407898197,0.22087940928951685,0.02160216998086176,-0.1785458523626239,-0.37149669501006616,-0.5494725133985109,-0.7052991058898798,-0.8326951056938209,-0.9265251826360063,-0.98300704821343,-0.9998639195675194,-0.9764162965550729,-0.9136093523852832,-0.8139748337067999,-0.6815290059515493,-0.521610757756439,-0.34066639047043035,-0.14598976787759704,0.054571699304427575,0.2529333823916936,0.44109932595260054,0.6114845646095297,0.7572208728398463,0.8724336230075839,0.9524785914846937,0.9941291672114924,0.9957064163231895,0.9571467599400068,0.8800045370305347,0.7673893490393596,0.623840711915752,0.4551450683176033,0.2681025362249702,0.07025279632189105,-0.13042883237939812,-0.3258528774866003,-0.5081417996956197,-0.6699475362406416,-0.8047477011555112,-0.9071085025200544,-0.9729037785024331,-0.9994813228590985,-0.9857697953148029,-0.9323219072674179,-0.8412921420026701,-0.7163499075164864,-0.5625316227529259,-0.38603769965848017,-0.19398260470185555,0.005891925125259948,0.20552895156979334,0.3968811101352179,0.5722349991815779,0.7245221069895224,0.8476037433246881,0.9365184899168363,0.9876821951299372,0.9990324510420961,0.9701117290671549,0.9020858229227421,0.797696855509123,0.6611527439905028,0.4979575787393797,0.31468975356493795,0.11873679079172099,-0.08200244961579187,-0.2794361729385284,-0.46560582978422,-0.6330069250523707,-0.7748915239799123,-0.8855402612549665,-0.9604928885168407,-0.9967280668771988,-0.9927851570295207,-0.9488230975899845,-0.8666139982850675,-0.7494717062443332,-0.6021182248896886,-0.43049337007299115,-0.24151533621924753,-0.0428018240493235,0.15763702878197733,0.3517215361727018,0.5316281555570326,0.6901048547478151,0.820763441207284,0.9183370699590016,0.978892550002283,0.9999888911618815,0.9807757003525037,0.9220274609069167,0.8261123131684607,0.6968965948017276,0.5395889887995315,0.3605305615768613,0.16693915471199752,-0.033381566101462666,-0.23235667666081497,-0.42196549428547114,-0.5945648913735231,-0.7431973897207037,-0.8618716163261124,-0.9458038155165123,-0.9916106820408208,-0.9974457420362988,-0.9630737843525948,-0.8898803419084574,-0.7808158408878149,-0.6402766691199999,-0.4739279577753056,-0.2884752200421396,-0.09139405202607798,0.10937120837788906,0.30572771758512846,0.4897603486826327,0.6540507500345432,0.7919763788866137,0.8979774559306022,0.9677810798956898,0.9985734681122492,0.9891133800343237,0.9397821516209189,0.852568323691212,0.7309874838843664,0.579940553392931,0.4055162309287347,0.214745557401041,0.01531849479964054,-0.18472605601717926,-0.37732430325369065,-0.5547126154608197,-0.7097404733627695,-0.8361587071443434,-0.9288714003597509,-0.984141306221426,-0.9997404959424151,-0.9750401665006988,-0.9110359876762865,-0.8103079666225309,-0.6769164478300029,-0.5162384407221456,-0.33475087251433916,-0.13976950340882344,0.06084597155100802,0.25900874662877477,0.4467308843707145,0.6164453092028164,0.7613108360940972,0.8754879385867765,0.9543741399896319,0.9947895391202964,0.9951049920575776,0.9553077828999564,0.8770021363433358,0.7633445514159533,0.6189165630664952,0.44954006058297463,0.26204260735334084,0.0639822219234598,-0.13665728557754062,-0.3317881406620317,-0.5135446225098323,-0.6746001310153152,-0.8084625218894192,-0.9097358048645786,-0.9743376559532266,-0.999663975845132,-0.9846938610979122,-0.9300307567341156,-0.8378781313845944,-0.7119506555125731,-0.5573244631224381,-0.38023253290073206,-0.18781343697141653,0.012176414802002702,0.21167543554113058,0.4026418237566329,0.5773777282035536,0.7288395481092409,0.8509218605779558,0.9387035300643346,0.9886460792475323,0.9987363249805111,0.9685675296619406,0.8993557968206771,0.7938910500071232,0.6564245710313611,0.49249763087940907,0.3087181211918974,0.11249419028573789,-0.08826437915463405,-0.28546501325722273,-0.4711585584514793,-0.637859711688002,-0.7788487528528246,-0.8884424165493632,-0.9622229844115268,-0.9972163632416662,-0.9920119706471943,-0.9468195955882883,-0.8634609417891512,-0.7452961948977485,-0.5970885734703288,-0.424812323727801,-0.23541189781145128,-0.03652202305767433,0.1638400537066023,0.3575977412211028,0.5369406710226078,0.6946395332396403,0.8243374899271083,0.9208064190752463,0.9801576601020436,0.9999987656826221,0.9795299412524933,0.9195762847102698,0.8225545267380672,0.6923756124366084,0.5342870512073471,0.354661389754703,0.160739334857233,-0.03966211937593496,-0.23846479437958165,-0.4276549583468803,-0.5996063595963798,-0.7473876406229749,-0.8650417409786875,-0.94782602625879,-0.9924034635986976,-0.9969771374012175,-0.961362682967914,-0.8869957182363712,-0.7768739740501976,-0.6354364556893015,-0.46838450665698084,-0.28245198763860196,-0.08513383471364008,0.11561606136603197,0.3117054763514128,0.49523004989211195,0.6587919101421369,0.7957978818243174,0.9007252569923215,0.9693444152762256,0.9988893197940447,0.9881690160424813,0.9376156392488432,0.8492669950087841,0.726684415383976,0.5748092016787607,0.3997634406845548,0.20860322348516164,0.009034214567955945,-0.1908989633556859,-0.38313700792910665,-0.5599308074652932,-0.7141538074821849,-0.8395892819696467,-0.9311809294891366,-0.9852366925824367,-0.9995775845330025,-0.9736255242764799,-0.9084266388366958,-0.8066090939664948,-0.67227715283942,-0.5108457332842334,-0.32882213255680387,-0.13354371831939135,0.06711784050135434,0.2650738805295518,0.4523447977971037,0.621381705418167,0.7653707290668798,0.8785076741134058,0.9562319925921309,0.9954106187978501,0.9944642631009507,0.9534310730804261,0.8739650957957388,0.759269603183321,0.6139679682296328,0.4439172968996262,0.2559723283138112,0.05770912035300656,-0.1428803410815424,-0.33771029885810305,-0.5189271613209498,-0.679226080410913,-0.8121454099429621,-0.9123271744331478,-0.9757330489819468,-0.9998071440692506,-0.9835790334092048,-0.9277028718141566,-0.8344310262274048,-0.7075232828572906,-0.5520952902712138,-0.3744123477053919,-0.18163685097945023,0.018460423534265316,0.21781355874884253,0.40838663381749,0.5824976519402432,0.7331282014995334,0.8542063680904818,0.940851493267701,0.9895709137884734,0.9984007507973945,0.9669850737432978,0.8965902479325693,0.7900538873692717,0.6516704705920808,0.4870182303311937,0.30273429505997523,0.10624714648041009,-0.09452282242397729,-0.2914825782690274,-0.47669267728190695,-0.6426873041189448,-0.7827752187310728,-0.8913094801148127,-0.9639150743898662,-0.9976652715201066,-0.9911996017421149,-0.9447786960738259,-0.8602737802834339,-0.7410912458165828,-0.5920353382260937,-0.4191144981309444,-0.22929916109649287,-0.03024077951787731,0.17003660727121245,0.3634598218617176,0.5422319783872173,0.6991467748354414,0.8278789789365737,0.9232393981480628,0.9813840559010087,0.9999691422179067,0.9782454926453605,0.9170887870580837,0.8189642510208556,0.6878272825958863,0.5289640103269633,0.3487782095048098,0.15453316611469015,-0.04594110607469105,-0.24456349320777304,-0.4333275308781436,-0.6046241445467585,-0.7515483711826489,-0.868177698182969,-0.9498107997362482,-0.9931570471706158,-0.9964691541290599,-0.9596136096471027,-0.8840760599770774,-0.772901422217757,-0.6305711437677141,-0.462822555271361,-0.27641759893676365,-0.07887025478205466,0.12185634774705946,0.317670923364129,0.5006801904881115,0.6635070492643034,0.7995879523100422,0.9034374811770133,0.9708694634578785,0.9991657173113141,0.9871856213170339,0.9354120929021622,0.8459321219495178,0.7223526442776657,0.5696551461310526,0.39399486057029004,0.20245265015202488,0.0027495775025870354,-0.19706433056037626,-0.38893457944584736,-0.5651268833035524,-0.7185389339300597,-0.8429866946687516,-0.9334536788023257,-0.9862931640308649,-0.9993751917739602,-0.9721724257579889,-0.9057814089306346,-0.802878361836853,-0.667611304222856,-0.5054328484440995,-0.3228804047714581,-0.12731265851563614,0.0733870584289088,0.27112854453309704,0.45794084449316674,0.6262935582776847,0.7694003914004431,0.8814927103138851,0.9580520759106838,0.9959923817127333,0.9937842547608366,0.9515167046077456,0.8708935353449058,0.755164665293949,0.608995122864983,0.4382769993557273,0.24989193887053202,0.05143373938577512,-0.1490977530929129,-0.34361911816126717,-0.5242892035293245,-0.6838252017115742,-0.8157962198493388,-0.9148825088717841,-0.9770899024733262,-0.99991082187659,-0.9824253562821941,-0.9253383444544424,-0.8309509626850136,-0.7030679644232005,-0.5468443107413542,-0.3685773739583631,-0.17545309068889908,0.024743703116119398,0.2239430787491908,0.41411531340914304,0.5875945681647754,0.7373878977670648,0.8574571361306589,0.9429622946865897,0.9904566622236045,0.9980257417472702,0.9653644238151404,0.8937892854921908,0.7861855191559693,0.646890630450236,0.4815195935202284,0.2967385115184802,0.0999959061216244,-0.10077753222767849,-0.29748863029201467,-0.4822079676886599,-0.6474895116647394,-0.7866707665269337,-0.8941413387079111,-0.9655690916176143,-0.9980747739815211,-0.9903480824012619,-0.9427004796580953,-0.8570526396544974,-0.7368570250880163,-0.5869587187497906,-0.41340011833527424,-0.22317736751539444,-0.023958341526736374,0.17622644472406046,0.36930754655382525,0.5475018686545684,0.70362640150799,0.83138776835379,0.9256359110795357,0.9825716889589676,0.9999000219378035,0.9769224052642878,0.914565066201601,0.8153416278256228,0.6832517849296034,0.5236200764079773,0.34288125320129587,0.14832089361589698,-0.05221827819003608,-0.2506525322587126,-0.4389829878237398,-0.6096180480319668,-0.7556794170590272,-0.8712793640748436,-0.9517580575542558,-0.9938714029915134,-0.9959218122841614,-0.957826633475101,-0.8811214824513082,-0.7688983422985012,-0.6256809255255433,-0.45724232330464837,-0.270372292283177,-0.07260355963047943,0.1280918210418635,0.3236238229998168,0.5061105552008467,0.6681959811623636,0.8033464406434924,0.9061140213571811,0.9723561642042586,0.9994026497469017,0.9861632347001447,0.9331715996166473,0.842563836234377,0.7179923416619224,0.5644785903249212,0.3882107184335734,0.19629408033721774,-0.003535168165719878,-0.20322191411142784,-0.3947167888112932,-0.5703006377408685,-0.7228956795025635,-0.8463508110505699,-0.9356895585301767,-0.9873106788381547,-0.9991333256594065,-0.9706809283397756,-0.9031004024395107,-0.7991159175902285,-0.662919086272183,-0.5,-0.3169259238448091,-0.1210765701121081,0.0796533777119506,0.27717249949214573,0.46351880342611645,0.6311806737728125,0.7733996639310062,0.8844429292851221,0.959834318055559,0.9965348048864486,0.993064993896235,0.9495647530957255,0.8677875763114055,0.7510298998847728,0.6039982233901119,0.4326193907318861,0.2438016791868719,0.045156326886914205,-0.1553092760361626,-0.3495143651847174,-0.5296305373447757,-0.688397313261002,-0.8194148074086977,-0.9174017072497749,-0.9784081628343053,-0.9999750051720802,-0.9812328752848468,-0.9229372680491318,-0.8274380782130544,-0.6985848761865776,-0.5415717319361752,-0.3627278421295794,-0.16926240034620105,0.031026005370309598,0.23006375343812274,0.4198276362599515,0.5926682755589274,0.7416184686621634,0.8606740362995239,0.9450358509485154,0.9913032895676127,0.9976113126422546,0.9637056438899386,0.890953020132024,0.7822860981601168,0.6420852394001398,0.4760019376319136,0.2907310073891363,0.09374071612114952,-0.10702826151693265,-0.3034829320988754,-0.4877042118285813,-0.6522661446476764,-0.7905352423739666,-0.8969378804758396,-0.9671849707643584,-0.9984448544513713,-0.9894574462579668,-0.94058502842657,-0.8537976471310972,-0.7325936999554871,-0.5818589155579607,-0.40766941004761686,-0.21704675886703007,-0.017674957228233954,0.18240932157879747,0.3751406843238549,0.5527501336744084,0.7080782363208838,0.8348637195885084,0.9279958632121394,0.9837205123667426,0.9997914075724285,0.9755607313686387,0.9120052218228597,0.8116868002389004,0.6786493001609688,0.5182554605253277,0.33697075376228347,0.14210276273334246,-0.05849338778607451,-0.25673167102738914,-0.4446211058042942,-0.6145878728026847,-0.7597806150839601,-0.8743466161445747,-0.9536677227999376,-0.9945465028457326,-0.9953351334854544,-0.9560018250339636,-0.8781321023590976,-0.7648648924062177,-0.6207659941167473,-0.45164403116500806,-0.26431630645550996,-0.0663339967810222,0.1343222349615696,0.3295639401306728,0.5115209295415589,0.6728585206326777,0.807073198371748,0.9087547718147225,0.9738044587936012,0.9996001077424398,0.9851018965740751,0.9308942478873563,0.8391622709040094,0.7136036797600841,0.559279738724119,0.3824112427365904,0.1901277572921104,-0.009819774201833645,-0.20937147079633273,-0.40048340763951146,-0.5754518664240594,-0.7272238721167884,-0.8496814982390832,-0.9378884803598353,-0.9882891968144816,-0.9988519957425765,-0.9691510909330406,-0.9003837252577972,-0.7953219098357347,-0.6582006843207625,-0.4945474025387957,-0.31095892496720845,-0.11483569942207181,0.085916550843123,0.28320550668232763,0.4690784542774837,0.6360428588720953,0.777368388695206,0.8873582144992823,0.9615786486317134,0.9970378668943501,0.9923065089165287,0.947575295642604,0.8646473413745295,0.7468654702709396,0.5989774671727508,0.4269446944925789,0.23770178981614698,0.03887713080194087,-0.1615146645683144,-0.3553958070778447,-0.5349509517951446,-0.692942234469824,-0.823001029693962,-0.9198846700637616,-0.9796877779961984,-0.999999691420608,-0.9800016375178305,-0.9204997374360346,-0.8238925115635936,-0.6940741952206169,-0.5362777621122281,-0.35686398326407864,-0.16306502447139248,0.03730708215827831,0.23617534106108198,0.42552337674442114,0.5977185737212822,0.7458197470856166,0.8638569415358762,0.947072080152061,0.9921107623803777,0.997157479851487,0.9620087994862467,0.8880815638790036,0.7783557784011976,0.6372544872453169,0.4704654806027827,0.28471201995648654,0.08748182354666251,-0.11327476340028361,-0.30946524692650224,-0.49318119261088766,-0.6570170144000945,-0.7943684936329523,-0.8996989949606674,-0.9687626480060405,-0.9987754983122027,-0.9885277284906107,-0.9384324259354259,-0.8505089312790228,-0.7283014388119139,-0.5767361300827791,-0.4019225996196264,-0.21090757729835902,-0.011390874803634548,0.18858499362387945,0.3809590047743017,0.5579765661505328,0.7125021034353767,0.838306695347453,0.9303191613323918,0.9848304807480622,0.9996433034118352,0.9741605247418421,0.909409355030668,0.8079999126191563,0.6740200100790605,0.512870374570742,0.3310469446409413,0.13587901907100425,-0.06476618700824947,-0.2628006693997407,-0.450241662125173,-0.6195334225605778,-0.7638518032681462,-0.8773793332417812,-0.9555397200452895,-0.99518232006816,-0.9947091409055924,-0.9541392564000556,-0.8751080377750526,-0.7608012318542895,-0.6158265436714796,-0.44602789997394604,-0.2582498806533284,-0.06006181386905921,0.14054734341704408,0.33549104013377745,0.5169110998110972,0.6774944835141494,0.8107680782951675,0.9113596282452122,0.9752142900211032,0.9997580834987276,0.9840016488596062,0.9285801276652168,0.8357275603135411,0.7091868319156907,0.5540587966730377,0.3765966625472597,0.18395392457431023,-0.01610399237617006,-0.21551275771975267,-0.4062342081603365,-0.5805803658897706,-0.7315233408175912,-0.8529786246787289,-0.9400503574381904,-0.9892286793103039,-0.9985312131354472,-0.967582973963362,-0.897631484688888,-0.7914964884292388,-0.6534562847361723,-0.48907527142736773,-0.30497964382332154,-0.10859029294771441,0.09217633043946268,0.2892273278116575,0.4746195774520451,0.6408799215287311,0.7813064089361957,0.8902384508083451,0.963284998741509,0.9975015478664795,0.991508829780387,0.9455484108280292,0.8614729545673848,0.7426715409391909,0.5939330525229518,0.42125313477709436,0.231592511692058,0.03259639914669343,-0.16771367358865713,-0.36126321153522606,-0.5402502367345461,-0.6974597858225637,-0.8265547450564195,-0.9223312992415815,-0.9809286974167283,-0.9999848796471146,-0.9787316916126042,-0.9180258488928437,-0.8203144027795084,-0.6895360996883955,-0.5309626103708607,-0.3509860289728182,-0.15686120784866903,0.04358668538987141,0.24227760022234057,0.43120230989202796,0.6027452631749646,0.7499915670952068,0.8670057261211997,0.9490709018701964,0.992879048768303,0.9966642613004657,0.9602739576261006,0.8851750301499779,0.7743947151191563,0.6323985647909323,0.46491044111197666,0.27868178695873264,0.08121947561208473,-0.11951679115315474,-0.31543533848524963,-0.4986386937055768,-0.6617419332720257,-0.7981703688979633,-0.9024245731038282,-0.9703020610274954,-0.999066692504236,-0.9875589658212276,-0.9362427572082083,-0.847186621996069,-0.7239804111931958,-0.571590564664176,-0.3961599140390466,-0.20476006529495383,-0.005106342461872471,0.1947532169324631,0.38676227809288705,0.5631809596491859,0.7168978281173692,0.8417165596398842,0.9326057136745612,0.9859015502613685,0.9994557153058459,0.9727218406893137,0.9067775683566479,0.8042811105912224,0.669364097531713,0.5074650312445566,0.325110059816025,0.12964990845458538,-0.07103642809338605,-0.26885928766220096,-0.45584443478550707,-0.6244545019661031,-0.7678928208076965,-0.8803773955800231,-0.9573739753500907,-0.995778829545268,-0.9940438592700542,-0.9522390011411391,-0.8720494081437946,-0.756707521149238,-0.610862769288323,-0.44039415155763245,-0.2521732544885877,-0.05378725863351734,0.1467669005286774,0.34140488890030185,0.5222808531082778,0.6821036866953346,0.8144309344733321,0.9139284877619284,0.9765856022012306,0.9998765707760322,0.9828625350143376,0.9262293303534286,0.8322598401273058,0.7047419725855945,0.5488159703886515,0.3707672075301276,0.1777728260381043,-0.022387574474401213,-0.22164553231289563,-0.41196896322856874,-0.5856859335723285,-0.7357939157844969,-0.856242060139477,-0.942175104375391,-0.9901290892179098,-0.9981709905083023,-0.9659766393682937,-0.8948437894408892,-0.7876398044674052,-0.6486860749128932,-0.48358382280419354,-0.29898831658302977,-0.10234059737018826,0.09843246925194936,0.29523772503016005,0.48014195408629984,0.645691670688351,0.7852135691099172,0.8930835244486232,0.9649533009874542,0.9979258294883472,0.9906719879945763,0.9434841787099768,0.8582645412720428,0.7384482775415118,0.5888651786850752,0.41554493639088164,0.22547408611895786,0.026314379997757393,-0.17390605824864575,-0.36711634680591965,-0.5455281828516154,-0.7019497888847781,-0.8300758131312805,-0.9247414981461674,-0.9821308720820106,-0.9999305704366367,-0.9774230877295406,-0.9155157001332431,-0.8167038931890798,-0.6849707688356741,-0.5256264866501448,-0.3450942114233191,-0.15065119551659178,0.04986456703307391,0.2483702898945959,0.4368642113960475,0.607748145375572,0.7541337639122229,0.8701202656846619,0.9510322371533825,0.9936081183856023,0.9961316764703563,0.9585011868323082,0.88223353374733,0.7704030647681255,0.6275176638364016,0.4593370385726632,0.272640546578285,0.07495391966788077,-0.1257540982276573,-0.3213929709682066,-0.5040764995520289,-0.6664407146384386,-0.8019407180024773,-0.905114507250329,-0.9718031490249661,-0.9993184255258711,-0.986551196514019,-0.9340161087325379,-0.8438308505069376,-0.7196307877714735,-0.5664224225418959,-0.39038158092068814,-0.19860446567148488,0.0011783915703153566,0.20091374787182195,0.39255027506184004,0.5683631086070287,0.7212652367444669,0.8450931777828481,0.9348554299243714,0.9869336786015154,0.9992286506638226,0.9712447360362605,0.9041099657512125,0.8005305410405065,0.6646817464183425,0.5020396440472618,0.31916033378284414,0.1234156769215842,-0.07730386337925568,-0.2749072865113809,-0.46142920248676184,-0.6293509166463974,-0.7719035080903415,-0.8833406847418076,-0.9591704162648442,-0.9963360077161015,-0.9933393148561644,-0.9503011343135801,-0.8689563342752129,-0.7525839219846296,-0.6058748670266582,-0.4347430084380551,-0.2460866679759531,-0.04751057890699393,0.15298066063631574,0.34730525284484526,0.5276299773385097,0.6866859481217683,0.8180616222305858,0.9164612488999445,0.9779183411698339,0.9999555648943383,0.9816846000310377,0.9238419488038885,0.8287592473134341,0.7002692773329113,0.5435514669522921,0.3649231079370898,0.17158470582473398,-0.028670272307513397,-0.22776955234322094,-0.41768744633259813,-0.5907683678117948,-0.740035428338146,-0.8594716757220099,-0.9442626372480875,-0.9909903909728696,-0.9977713420892274,-0.9643321505948621,-0.892020749622283,-0.7837520102815914,-0.643890243264836,-0.47807327357058765,-0.2929851798919813,-0.09608685954024618,0.10468472017533507,0.3012364609388994,0.4856453660571712,0.6504779162962734,0.7890897148911854,0.8958933230453008,0.9665834894749237,0.9983106950016634,0.9897960166126852,0.9413826808215577,0.8550222282144565,0.7341958468885045,0.5837740458302262,0.4098203247966137,0.2193467547626909,0.020031321482603486,-0.18009157396119643,-0.37295498170252933,-0.5507845816778563,-0.7064120663102633,-0.8335640948432783,-0.927115171579449,-0.9832942545085092,-0.9998367659342803,-0.9760758775559207,-0.9129693903031993,-0.8130611254003759,-0.6803783829840928,-0.5202696017165321,-0.3391887633308517,-0.1444352327585032,0.0561404791239019,0.25445316942870594,0.4425088576225004,0.6127270227191933,0.7582461739280336,0.8732004372081353,0.9529560085327312,0.9942979424354507,0.9955597463972186,0.9566905571258487,0.8792571908544157,0.7663809850104876,0.6226119771677674,0.45374549312328666,0.2665885374321408,0.06868540319119362,-0.13198643826254913,-0.3273379090606017,-0.5094943953677127,-0.6711131729067062,-0.8056793920250777,-0.9077686911530324,-0.9732658527084118,-0.9995306874341467,-0.9855044603739013,-0.9317525684566759,-0.8404417493580061,-0.7152527403482338,-0.5612319078473933,-0.38458782849723344,-0.1924410215620367,0.007463079058416121,0.20706634311309421,0.39832276706659975,0.5735228083393122,0.7256041568125694,0.8484364164065321,0.9370682212224295,0.9879268250014525,0.9989621184543723,0.9697292691253829,0.9014066525794208,0.796748352107057,0.6599731416826138,0.49659442727087716,0.3131980015438813,0.117176570711954,-0.08356824531442177,-0.28094442706315376,-0.46699574464153537,-0.6342224732026562,-0.7758837067017773,-0.8862690836830077,-0.9609289718337017,-0.9968538325732181,-0.9925955354920278,-0.9483257324593086,-0.8658289383395823,-0.7484305972345253,-0.6008630338987186,-0.4290746938243154,-0.23999036152368833,-0.04123202260606298,0.15918837830858687,0.35319189891457126,0.5329582612218468,0.691241086803086,0.821659998161899,0.9189578116202258,0.9792124542863436,0.9999950627335356,0.980467890435823,0.9214180773134266,0.8252259201384605,0.6957689228203564,0.5382654943015499,0.359064594598651,0.1653898083528458,-0.03495183772122919,-0.23388457592391418,-0.4233894316035835,-0.595827467862111,-0.7442477109471304,-0.8626673438629257,-0.9463128736028353,-0.9918125505554742,-0.9973322836635494,-0.962649572597157,-0.8891624767376216,-0.7798332594320637,-0.639068979217972,-0.4725438413824677,-0.2869704708623355,-0.08982932646823891,0.11093283625812528,0.3072232985995995,0.491129595990816,0.6552384693052054,0.7929346931799397,0.8986677356168566,0.9681754998146594,0.9986561292049934,0.9888809502338696,0.9392440001678292,0.8517461434596504,0.7299144169428636,0.5786598550481443,0.4040795261050794,0.21321075964080055,0.013747471769564928,-0.18626997641059795,-0.3787788856105722,-0.5560192255958479,-0.7108464418477874,-0.8370194524121073,-0.9294522257859675,-0.984418798744894,-0.9997034698451391,-0.9746901143039124,-0.9103870199769454,-0.8093862432954899,-0.6757591235238651,-0.5148921671563387,-0.33326991794900673,-0.13821356509258728,0.06241417377616491,0.2605259985628252,0.44813602561890026,0.6176816985499103,0.7623286347104862,0.8762461190308682,0.954842140023036,0.9949484936711545,0.9949484936711545,0.954842140023036,0.8762461190308682,0.7623286347104862,0.6176816985499103,0.44813602561890026,0.2605259985628252,0.06241417377616491,-0.13821356509258728,-0.33326991794900673,-0.5148921671563387,-0.6757591235238651,-0.8093862432954899,-0.9103870199769454,-0.9746901143039124,-0.9997034698451391,-0.984418798744894,-0.9294522257859675,-0.8370194524121073,-0.7108464418477874,-0.5560192255958479,-0.3787788856105722,-0.18626997641059795,0.013747471769564928,0.21321075964080055,0.4040795261050794,0.5786598550481443,0.7299144169428636,0.8517461434596504,0.9392440001678292,0.9888809502338696,0.9986561292049934,0.9681754998146594,0.8986677356168566,0.7929346931799397,0.6552384693052054,0.491129595990816,0.3072232985995995,0.11093283625812528,-0.08982932646823891,-0.2869704708623355,-0.4725438413824677,-0.639068979217972,-0.7798332594320637,-0.8891624767376216,-0.962649572597157,-0.9973322836635494,-0.9918125505554742,-0.9463128736028353,-0.8626673438629257,-0.7442477109471304,-0.595827467862111,-0.4233894316035835,-0.23388457592391418,-0.03495183772122919,0.1653898083528458,0.359064594598651,0.5382654943015499,0.6957689228203564,0.8252259201384605,0.9214180773134266,0.980467890435823,0.9999950627335356,0.9792124542863436,0.9189578116202258,0.821659998161899,0.691241086803086,0.5329582612218468,0.35319189891457126,0.15918837830858687,-0.04123202260606298,-0.23999036152368833,-0.4290746938243154,-0.6008630338987186,-0.7484305972345253,-0.8658289383395823,-0.9483257324593086,-0.9925955354920278,-0.9968538325732181,-0.9609289718337017,-0.8862690836830077,-0.7758837067017773,-0.6342224732026562,-0.46699574464153537,-0.28094442706315376,-0.08356824531442177,0.117176570711954,0.3131980015438813,0.49659442727087716,0.6599731416826138,0.796748352107057,0.9014066525794208,0.9697292691253829,0.9989621184543723,0.9879268250014525,0.9370682212224295,0.8484364164065321,0.7256041568125694,0.5735228083393122,0.39832276706659975,0.20706634311309421,0.007463079058416121,-0.1924410215620367,-0.38458782849723344,-0.5612319078473933,-0.7152527403482338,-0.8404417493580061,-0.9317525684566759,-0.9855044603739013,-0.9995306874341467,-0.9732658527084118,-0.9077686911530324,-0.8056793920250777,-0.6711131729067062,-0.5094943953677127,-0.3273379090606017,-0.13198643826254913,0.06868540319119362,0.2665885374321408,0.45374549312328666,0.6226119771677674,0.7663809850104876,0.8792571908544157,0.9566905571258487,0.9955597463972186,0.9942979424354507,0.9529560085327312,0.8732004372081353,0.7582461739280336,0.6127270227191933,0.4425088576225004,0.25445316942870594,0.0561404791239019,-0.1444352327585032,-0.3391887633308517,-0.5202696017165321,-0.6803783829840928,-0.8130611254003759,-0.9129693903031993,-0.9760758775559207,-0.9998367659342803,-0.9832942545085092,-0.927115171579449,-0.8335640948432783,-0.7064120663102633,-0.5507845816778563,-0.37295498170252933,-0.18009157396119643,0.020031321482603486,0.2193467547626909,0.4098203247966137,0.5837740458302262,0.7341958468885045,0.8550222282144565,0.9413826808215577,0.9897960166126852,0.9983106950016634,0.9665834894749237,0.8958933230453008,0.7890897148911854,0.6504779162962734,0.4856453660571712,0.3012364609388994,0.10468472017533507,-0.09608685954024618,-0.2929851798919813,-0.47807327357058765,-0.643890243264836,-0.7837520102815914,-0.892020749622283,-0.9643321505948621,-0.9977713420892274,-0.9909903909728696,-0.9442626372480875,-0.8594716757220099,-0.740035428338146,-0.5907683678117948,-0.41768744633259813,-0.22776955234322094,-0.028670272307513397,0.17158470582473398,0.3649231079370898,0.5435514669522921,0.7002692773329113,0.8287592473134341,0.9238419488038885,0.9816846000310377,0.9999555648943383,0.9779183411698339,0.9164612488999445,0.8180616222305858,0.6866859481217683,0.5276299773385097,0.34730525284484526,0.15298066063631574,-0.04751057890699393,-0.2460866679759531,-0.4347430084380551,-0.6058748670266582,-0.7525839219846296,-0.8689563342752129,-0.9503011343135801,-0.9933393148561644,-0.9963360077161015,-0.9591704162648442,-0.8833406847418076,-0.7719035080903415,-0.6293509166463974,-0.46142920248676184,-0.2749072865113809,-0.07730386337925568,0.1234156769215842,0.31916033378284414,0.5020396440472618,0.6646817464183425,0.8005305410405065,0.9041099657512125,0.9712447360362605,0.9992286506638226,0.9869336786015154,0.9348554299243714,0.8450931777828481,0.7212652367444669,0.5683631086070287,0.39255027506184004,0.20091374787182195,0.0011783915703153566,-0.19860446567148488,-0.39038158092068814,-0.5664224225418959,-0.7196307877714735,-0.8438308505069376,-0.9340161087325379,-0.986551196514019,-0.9993184255258711,-0.9718031490249661,-0.905114507250329,-0.8019407180024773,-0.6664407146384386,-0.5040764995520289,-0.3213929709682066,-0.1257540982276573,0.07495391966788077,0.272640546578285,0.4593370385726632,0.6275176638364016,0.7704030647681255,0.88223353374733,0.9585011868323082,0.9961316764703563,0.9936081183856023,0.9510322371533825,0.8701202656846619,0.7541337639122229,0.607748145375572,0.4368642113960475,0.2483702898945959,0.04986456703307391,-0.15065119551659178,-0.3450942114233191,-0.5256264866501448,-0.6849707688356741,-0.8167038931890798,-0.9155157001332431,-0.9774230877295406,-0.9999305704366367,-0.9821308720820106,-0.9247414981461674,-0.8300758131312805,-0.7019497888847781,-0.5455281828516154,-0.36711634680591965,-0.17390605824864575,0.026314379997757393,0.22547408611895786,0.41554493639088164,0.5888651786850752,0.7384482775415118,0.8582645412720428,0.9434841787099768,0.9906719879945763,0.9979258294883472,0.9649533009874542,0.8930835244486232,0.7852135691099172,0.645691670688351,0.48014195408629984,0.29523772503016005,0.09843246925194936,-0.10234059737018826,-0.29898831658302977,-0.48358382280419354,-0.6486860749128932,-0.7876398044674052,-0.8948437894408892,-0.9659766393682937,-0.9981709905083023,-0.9901290892179098,-0.942175104375391,-0.856242060139477,-0.7357939157844969,-0.5856859335723285,-0.41196896322856874,-0.22164553231289563,-0.022387574474401213,0.1777728260381043,0.3707672075301276,0.5488159703886515,0.7047419725855945,0.8322598401273058,0.9262293303534286,0.9828625350143376,0.9998765707760322,0.9765856022012306,0.9139284877619284,0.8144309344733321,0.6821036866953346,0.5222808531082778,0.34140488890030185,0.1467669005286774,-0.05378725863351734,-0.2521732544885877,-0.44039415155763245,-0.610862769288323,-0.756707521149238,-0.8720494081437946,-0.9522390011411391,-0.9940438592700542,-0.995778829545268,-0.9573739753500907,-0.8803773955800231,-0.7678928208076965,-0.6244545019661031,-0.45584443478550707,-0.26885928766220096,-0.07103642809338605,0.12964990845458538,0.325110059816025,0.5074650312445566,0.669364097531713,0.8042811105912224,0.9067775683566479,0.9727218406893137,0.9994557153058459,0.9859015502613685,0.9326057136745612,0.8417165596398842,0.7168978281173692,0.5631809596491859,0.38676227809288705,0.1947532169324631,-0.005106342461872471,-0.20476006529495383,-0.3961599140390466,-0.571590564664176,-0.7239804111931958,-0.847186621996069,-0.9362427572082083,-0.9875589658212276,-0.999066692504236,-0.9703020610274954,-0.9024245731038282,-0.7981703688979633,-0.6617419332720257,-0.4986386937055768,-0.31543533848524963,-0.11951679115315474,0.08121947561208473,0.27868178695873264,0.46491044111197666,0.6323985647909323,0.7743947151191563,0.8851750301499779,0.9602739576261006,0.9966642613004657,0.992879048768303,0.9490709018701964,0.8670057261211997,0.7499915670952068,0.6027452631749646,0.43120230989202796,0.24227760022234057,0.04358668538987141,-0.15686120784866903,-0.3509860289728182,-0.5309626103708607,-0.6895360996883955,-0.8203144027795084,-0.9180258488928437,-0.9787316916126042,-0.9999848796471146,-0.9809286974167283,-0.9223312992415815,-0.8265547450564195,-0.6974597858225637,-0.5402502367345461,-0.36126321153522606,-0.16771367358865713,0.03259639914669343,0.231592511692058,0.42125313477709436,0.5939330525229518,0.7426715409391909,0.8614729545673848,0.9455484108280292,0.991508829780387,0.9975015478664795,0.963284998741509,0.8902384508083451,0.7813064089361957,0.6408799215287311,0.4746195774520451,0.2892273278116575,0.09217633043946268,-0.10859029294771441,-0.30497964382332154,-0.48907527142736773,-0.6534562847361723,-0.7914964884292388,-0.897631484688888,-0.967582973963362,-0.9985312131354472,-0.9892286793103039,-0.9400503574381904,-0.8529786246787289,-0.7315233408175912,-0.5805803658897706,-0.4062342081603365,-0.21551275771975267,-0.01610399237617006,0.18395392457431023,0.3765966625472597,0.5540587966730377,0.7091868319156907,0.8357275603135411,0.9285801276652168,0.9840016488596062,0.9997580834987276,0.9752142900211032,0.9113596282452122,0.8107680782951675,0.6774944835141494,0.5169110998110972,0.33549104013377745,0.14054734341704408,-0.06006181386905921,-0.2582498806533284,-0.44602789997394604,-0.6158265436714796,-0.7608012318542895,-0.8751080377750526,-0.9541392564000556,-0.9947091409055924,-0.99518232006816,-0.9555397200452895,-0.8773793332417812,-0.7638518032681462,-0.6195334225605778,-0.450241662125173,-0.2628006693997407,-0.06476618700824947,0.13587901907100425,0.3310469446409413,0.512870374570742,0.6740200100790605,0.8079999126191563,0.909409355030668,0.9741605247418421,0.9996433034118352,0.9848304807480622,0.9303191613323918,0.838306695347453,0.7125021034353767,0.5579765661505328,0.3809590047743017,0.18858499362387945,-0.011390874803634548,-0.21090757729835902,-0.4019225996196264,-0.5767361300827791,-0.7283014388119139,-0.8505089312790228,-0.9384324259354259,-0.9885277284906107,-0.9987754983122027,-0.9687626480060405,-0.8996989949606674,-0.7943684936329523,-0.6570170144000945,-0.49318119261088766,-0.30946524692650224,-0.11327476340028361,0.08748182354666251,0.28471201995648654,0.4704654806027827,0.6372544872453169,0.7783557784011976,0.8880815638790036,0.9620087994862467,0.997157479851487,0.9921107623803777,0.947072080152061,0.8638569415358762,0.7458197470856166,0.5977185737212822,0.42552337674442114,0.23617534106108198,0.03730708215827831,-0.16306502447139248,-0.35686398326407864,-0.5362777621122281,-0.6940741952206169,-0.8238925115635936,-0.9204997374360346,-0.9800016375178305,-0.999999691420608,-0.9796877779961984,-0.9198846700637616,-0.823001029693962,-0.692942234469824,-0.5349509517951446,-0.3553958070778447,-0.1615146645683144,0.03887713080194087,0.23770178981614698,0.4269446944925789,0.5989774671727508,0.7468654702709396,0.8646473413745295,0.947575295642604,0.9923065089165287,0.9970378668943501,0.9615786486317134,0.8873582144992823,0.777368388695206,0.6360428588720953,0.4690784542774837,0.28320550668232763,0.085916550843123,-0.11483569942207181,-0.31095892496720845,-0.4945474025387957,-0.6582006843207625,-0.7953219098357347,-0.9003837252577972,-0.9691510909330406,-0.9988519957425765,-0.9882891968144816,-0.9378884803598353,-0.8496814982390832,-0.7272238721167884,-0.5754518664240594,-0.40048340763951146,-0.20937147079633273,-0.009819774201833645,0.1901277572921104,0.3824112427365904,0.559279738724119,0.7136036797600841,0.8391622709040094,0.9308942478873563,0.9851018965740751,0.9996001077424398,0.9738044587936012,0.9087547718147225,0.807073198371748,0.6728585206326777,0.5115209295415589,0.3295639401306728,0.1343222349615696,-0.0663339967810222,-0.26431630645550996,-0.45164403116500806,-0.6207659941167473,-0.7648648924062177,-0.8781321023590976,-0.9560018250339636,-0.9953351334854544,-0.994546502845736,-0.9536677227999376,-0.8743466161445901,-0.7597806150839395,-0.6145878728026847,-0.4446211058042658,-0.25673167102738914,-0.05849338778604282,0.14210276273334246,0.33697075376225355,0.5182554605253277,0.6786493001609455,0.8116868002389004,0.9120052218228467,0.9755607313686387,0.9997914075724278,0.983720512366737,0.9279958632121394,0.8348637195884909,0.7080782363208838,0.5527501336743819,0.3751406843238549,0.18240932157876624,-0.017674957228233954,-0.2170467588669991,-0.40766941004761686,-0.5818589155579348,-0.7325936999554871,-0.8537976471310806,-0.9405850284265808,-0.9894574462579668,-0.9984448544513695,-0.9671849707643584,-0.8969378804758256,-0.7905352423739666,-0.6522661446476523,-0.4877042118285813,-0.30348293209890564,-0.10702826151693265,0.09374071612111791,0.2907310073891363,0.4760019376318857,0.6420852394001642,0.7822860981601168,0.8909530201320385,0.9637056438899386,0.9976113126422568,0.9913032895676127,0.9450358509485051,0.8606740362995239,0.7416184686621847,0.5926682755589274,0.4198276362599803,0.23006375343812274,0.03102600537034133,-0.16926240034620105,-0.3627278421295794,-0.5415717319362019,-0.6985848761865776,-0.8274380782130721,-0.9229372680491318,-0.981232875284853,-0.9999750051720802,-0.9784081628343119,-0.9174017072497749,-0.8194148074087159,-0.688397313261002,-0.5296305373448026,-0.3495143651847174,-0.1553092760361626,0.04515632688694592,0.2438016791868719,0.43261939073191474,0.6039982233901119,0.7510298998847937,0.8677875763114055,0.9495647530957155,0.993064993896235,0.9965348048864513,0.959834318055559,0.8844429292851369,0.7733996639310062,0.6311806737728125,0.4635188034260883,0.27717249949214573,0.07965337771191895,-0.1210765701121081,-0.31692592384483925,-0.5,-0.6629190862721592,-0.7991159175902285,-0.9031004024394971,-0.9706809283397756,-0.9991333256594052,-0.9873106788381547,-0.9356895585301767,-0.846350811050553,-0.7228956795025635,-0.5703006377408424,-0.3947167888112932,-0.20322191411139676,-0.003535168165719878,0.1962940803371866,0.3882107184335734,0.564478590324895,0.7179923416619224,0.8425638362343599,0.9331715996166473,0.9861632347001447,0.9994026497469006,0.9723561642042586,0.9061140213571677,0.8033464406434924,0.6681959811623399,0.5061105552008467,0.3236238229998468,0.1280918210418635,-0.07260355963044776,-0.270372292283177,-0.4572423233046201,-0.6256809255255433,-0.7688983422985012,-0.8811214824513232,-0.957826633475101,-0.9959218122841643,-0.9938714029915134,-0.9517580575542461,-0.8712793640748436,-0.7556794170590481,-0.6096180480319668,-0.4389829878237683,-0.2506525322587126,-0.05221827819006778,0.14832089361589698,0.34288125320126606,0.5236200764080043,0.6832517849296034,0.8153416278256411,0.914565066201601,0.9769224052642945,0.9999000219378035,0.9825716889589735,0.9256359110795357,0.8313877683538077,0.70362640150799,0.5475018686545949,0.36930754655382525,0.1762264447240917,-0.023958341526768113,-0.22317736751539444,-0.41340011833530316,-0.5869587187497906,-0.7368570250880379,-0.8570526396544974,-0.9427004796580847,-0.9903480824012619,-0.998074773981523,-0.9655690916176143,-0.8941413387079253,-0.7866707665269337,-0.6474895116647637,-0.4822079676886321,-0.29748863029201467,-0.1007775322276469,0.0999959061216244,0.2967385115185105,0.4815195935202284,0.6468906304502602,0.7861855191559693,0.8937892854921766,0.9653644238151404,0.9980257417472682,0.9904566622236045,0.9429622946866003,0.8574571361306426,0.7373878977670648,0.5875945681647496,0.41411531340914304,0.22394307874915986,0.024743703116119398,-0.17545309068893034,-0.3685773739583631,-0.5468443107413277,-0.7030679644232005,-0.8309509626849959,-0.9253383444544424,-0.9824253562821881,-0.9999108218765895,-0.9770899024733262,-0.9148825088717714,-0.8157962198493388,-0.6838252017115511,-0.5242892035293245,-0.34361911816123736,-0.1490977530929129,0.051433739385743416,0.24989193887053202,0.43827699935569875,0.608995122864983,0.7551646652939282,0.8708935353449058,0.9515167046077456,0.9937842547608402,0.9959923817127333,0.9580520759106746,0.8814927103138851,0.7694003914004228,0.6262935582776847,0.45794084449319494,0.27112854453309704,0.07338705842894047,-0.12731265851563614,-0.32288040477142804,-0.5054328484440995,-0.667611304222856,-0.802878361836872,-0.9057814089306346,-0.9721724257579963,-0.9993751917739602,-0.9862931640308596,-0.9334536788023257,-0.8429866946687687,-0.7185389339300597,-0.5651268833035786,-0.38893457944584736,-0.1970643305604074,0.0027495775025870354,0.20245265015202488,0.39399486057031924,0.5696551461310526,0.7223526442776875,0.8459321219495178,0.9354120929021734,0.9871856213170339,0.9991657173113154,0.9708694634578785,0.9034374811770268,0.7995879523100422,0.6635070492643271,0.5006801904881115,0.317670923364129,0.12185634774702794,-0.07887025478205466,-0.27641759893679413,-0.462822555271361,-0.6305711437677387,-0.772901422217757,-0.8840760599770625,-0.9596136096471027,-0.9964691541290572,-0.9931570471706158,-0.949810799736258,-0.868177698182969,-0.7515483711826489,-0.6046241445467332,-0.4333275308781436,-0.24456349320774226,-0.04594110607469105,0.1545331661147215,0.3487782095048098,0.5289640103269364,0.6878272825958863,0.8189642510208374,0.9170887870580837,0.978245492645354,0.9999691422179067,0.9813840559010149,0.923239398148075,0.8278789789365381,0.6991467748354186,0.5422319783872173,0.3634598218617472,0.17003660727114986,-0.030240779517909044,-0.22929916109649287,-0.41911449813091556,-0.5920353382260425,-0.741091245816604,-0.8602737802834339,-0.9447786960738155,-0.9911996017421106,-0.9976652715201023,-0.9639150743898578,-0.8913094801148127,-0.7827752187310926,-0.6426873041188962,-0.47669267728187903,-0.2914825782690274,-0.09452282242400889,0.10624714648034694,0.3027342950600055,0.4870182303311937,0.6516704705920567,0.7900538873692523,0.8965902479325973,0.9669850737433058,0.9984007507973945,0.989570913788478,0.9408514932676795,0.8542063680904652,0.7331282014995334,0.5824976519402689,0.408386633817548,0.21781355874881156,0.018460423534265316,-0.181636850979419,-0.3744123477053624,-0.5520952902712668,-0.707523282857313,-0.8344310262274048,-0.9277028718141447,-0.9835790334092163,-0.99980714406925,-0.9757330489819468,-0.9123271744331608,-0.8121454099429992,-0.6792260804108897,-0.5189271613209498,-0.3377102988581329,-0.14288034108157383,0.05770912035306995,0.2559723283138419,0.4439172968996262,0.6139679682296078,0.7592696031833625,0.8739650957957542,0.9534310730804261,0.9944642631009474,0.9954106187978562,0.9562319925921215,0.8785076741134058,0.7653707290669002,0.6213817054182167,0.452344797797047,0.26507388052952113,0.06711784050135434,-0.1335437183193599,-0.3288221325568638,-0.5108457332842608,-0.67227715283942,-0.8066090939664761,-0.9084266388366693,-0.9736255242764872,-0.9995775845330025,-0.9852366925824422,-0.9311809294891596,-0.8395892819696121,-0.7141538074821628,-0.5599308074652932,-0.38313700792913596,-0.1908989633556236,0.00903421456798769,0.20860322348516164,0.3997634406845257,0.5748092016787087,0.7266844153839979,0.8492669950087841,0.9376156392488322,0.9881690160424715,0.9988893197940417,0.9693444152762178,0.9007252569923215,0.7957978818243368,0.6587919101420892,0.49523004989208436,0.3117054763514128,0.11561606136606352,-0.08513383471357681,-0.28245198763863244,-0.46838450665698084,-0.635436455689277,-0.7768739740501577,-0.8869957182364006,-0.9613626829679228,-0.9969771374012175,-0.9924034635987015,-0.9478260262587698,-0.8650417409786715,-0.7473876406229749,-0.5996063595964052,-0.4276549583469377,-0.23846479437955082,-0.03966211937593496,0.16073933485720165,0.3546613897546436,0.5342870512074007,0.6923756124366313,0.8225545267380672,0.9195762847102572,0.979529941252506,0.9999987656826221,0.9801576601020436,0.9208064190752587,0.8243374899271443,0.6946395332396175,0.5369406710226078,0.35759774122113247,0.16384005370666493,-0.036522023057706056,-0.23541189781148214,-0.424812323727801,-0.5970885734703033,-0.7452961948977908,-0.8634609417891672,-0.9468195955882883,-0.9920119706471903,-0.997216363241671,-0.9622229844115181,-0.8884424165493632,-0.7788487528528445,-0.6378597116880509,-0.4711585584514513,-0.2854650132571923,-0.08826437915463405,0.11249419028570634,0.3087181211919578,0.4924976308794367,0.6564245710313611,0.7938910500071039,0.8993557968206494,0.9685675296619485,0.9987363249805111,0.9886460792475371,0.9387035300643565,0.8509218605779392,0.7288395481092191,0.5773777282035536,0.40264182375666197,0.21167543554106852,0.012176414801970957,-0.18781343697141653,-0.3802325329007027,-0.5573244631223854,-0.7119506555125953,-0.8378781313845944,-0.930030756734104,-0.9846938610979012,-0.9996639758451312,-0.9743376559532195,-0.9097358048645786,-0.8084625218894379,-0.6746001310152684,-0.513544622509805,-0.3317881406620317,-0.13665728557757206,0.06398222192339643,0.2620426073533715,0.44954006058297463,0.6189165630664702,0.7633445514159122,0.877002136343351,0.9553077828999658,0.9951049920575776,0.9947895391202997,0.954374139989613,0.8754879385867612,0.7613108360940972,0.6164453092028414,0.4467308843707713,0.2590087466287441,0.06084597155100802,-0.13976950340879202,-0.3347508725142793,-0.5162384407221728,-0.6769164478300029,-0.8103079666225309,-0.9110359876762734,-0.9750401665007129,-0.9997404959424159,-0.984141306221426,-0.9288714003597627,-0.8361587071443782,-0.709740473362747,-0.5547126154608197,-0.3773243032537201,-0.18472605601724165,0.015318494799672283,0.214745557401041,0.4055162309287347,0.5799405533929052,0.7309874838844097,0.8525683236912286,0.9397821516209189,0.989113380034319,0.9985734681122527,0.9677810798956819,0.8979774559306022,0.791976378886633,0.6540507500345911,0.489760348682605,0.30572771758512846,0.10937120837788906,-0.09139405202604636,-0.2884752200422004,-0.4739279577753336,-0.6402766691199999,-0.7808158408877951,-0.8898803419084864,-0.9630737843526034,-0.9974457420362988,-0.9916106820408249,-0.9458038155165328,-0.8618716163260963,-0.7431973897207037,-0.5945648913735231,-0.42196549428549995,-0.23235667666075321,-0.033381566101430935,0.16693915471199752,0.3605305615768317,0.539588988799585,0.6968965948017504,0.8261123131684607,0.9220274609069044,0.9807757003524914,0.9999888911618813,0.978892550002283,0.9183370699590016,0.820763441207302,0.6901048547477692,0.5316281555570057,0.3517215361727018,0.15763702878200866,-0.042801824049386934,-0.24151533621927834,-0.43049337007299115,-0.6021182248896632,-0.7494717062442912,-0.8666139982850832,-0.9488230975899845,-0.992785157029517,-0.9967280668772014,-0.9604928885168229,-0.8855402612549518,-0.7748915239799123,-0.6330069250523952,-0.4656058297841638,-0.27943617293849793,-0.08200244961579187,0.11873679079168947,0.31468975356487766,0.4979575787394072,0.6611527439905028,0.7976968555091037,0.9020858229227284,0.9701117290671704,0.9990324510420975,0.9876821951299372,0.9365184899168475,0.8476037433246544,0.7245221069895005,0.5722349991815779,0.396881110135247,0.20552895156985546,0.005891925125228202,-0.19398260470185555,-0.3860376996584509,-0.5625316227528997,-0.7163499075165308,-0.8412921420026872,-0.9323219072674179,-0.9857697953147976,-0.9994813228590965,-0.9729037785024258,-0.9071085025200544,-0.8047477011555301,-0.6699475362406888,-0.5081417996955923,-0.3258528774866003,-0.1304288323794296,0.07025279632185938,0.2681025362250314,0.4551450683176316,0.623840711915752,0.7673893490393393,0.8800045370305649,0.957146759940016,0.9957064163231895,0.9941291672114958,0.952478591484713,0.8724336230075683,0.7572208728398463,0.6114845646095549,0.441099325952629,0.25293338239163216,0.05457169930439587,-0.14598976787759704,-0.3406663904704005,-0.5216107577564931,-0.6815290059515726,-0.8139748337067999,-0.9136093523852702,-0.9764162965550591,-0.99986391956752,-0.98300704821343,-0.9265251826360181,-0.8326951056938561,-0.7052991058898347,-0.5494725133984844,-0.37149669501006616,-0.17854585236265513,0.02160216998092524,0.22087940928954783,0.41125300407898197,0.5850489985952844,0.7352616798160905,0.855835977600858,0.9419115444454315,0.9900186759920448,0.9982181747414536,0.9661795190649449,0.8951941865246092,0.788123594438823,0.649283756208098,0.484271302902119,0.2997378831749961,0.10312203544198457,-0.09765065945312244,-0.29448705824153726,-0.4794526896709973,-0.6450915928809423,-0.7847268670346378,-0.8927298170563279,-0.9647468462160033,-0.9978749495253388,-0.9907787338103067,-0.9437442473827947,-0.8586674494389354,-0.738977783982509,-0.5894999390062218,-0.4162593634165337,-0.22623938131011578,-0.027099694320687075,0.1731323807983497,0.36638549315056507,0.544869613687324,0.7013900511213276,0.8296374697864479,0.9244422188313585,0.981982720740338,0.9999395190457083,0.9775887755710951,0.9158314483337393,0.8171569739449812,0.6855429184708524,0.5262946418243288,0.3458314388150031,0.1514277775045969,-0.04907993445303045,-0.24760923524606243,-0.43615741277632325,-0.6071240938227782,-0.753617614931784,-0.8697328252316486,-0.9507891229445133,-0.9935191303497487,-0.9962004017134487,-0.9587248550411954,-0.8826031288610074,-0.7709036884150573,-0.6281291358875589,-0.4600347106019961,-0.2733962954402855,-0.0757372811413895,0.12497470142784799,0.32064895631126666,0.5033978582538978,0.6658548027159448,0.8014711535534159,0.9047802184081137,0.9716176109661006,0.9992891172857562,0.9866792995072059,0.9342964591299859,0.8442521473897878,0.7201760486708145,0.5670696680020286,0.39110472049016687,0.19937434960895817,-0.00039279727097470894,-0.200144110500738,-0.39182761868593186,-0.5677165634901346,-0.7207208651072251,-0.8446729232349751,-0.9345762329181444,-0.9868067935625959,-0.9992591923255847,-0.9714314732649064,-0.9044453711728659,-0.8010010944693919,-0.6652684798553105,-0.5027189062791919,-0.3199047437630667,-0.12419522749880389,0.0765205958729699,0.27415187557342174,0.46073209871680987,0.6287402202832532,0.771403836292006,0.882972179268411,0.9589479315645986,0.996268512142707,0.9934295291548367,0.950545421947785,0.8693448480152884,0.7531010008496558,0.6064996675780169,0.4354503449782205,0.24684802778325288,0.048295271582937734,-0.1522042660375562,-0.3465684527737769,-0.5269624721911517,-0.6861146450171504,-0.8176095503852414,-0.9161466313208125,-0.9777538600851496,-0.9999478505333241,-0.9818339633594154,-0.9241423689889139,-0.8291986144235631,-0.7008298804888006,-0.5442107082520176,-0.365654413377244,-0.17235859649788404,0.027884991918802355,0.22700453687559036,0.4169735335440054,0.5901343355123028,0.7395068343568755,0.8590698276717665,0.9440037336155394,0.9908848681582383,0.99782345371504,0.964539796042545,0.8923755587080129,0.7842396806583185,0.6444911169495905,0.4787631293572558,0.2937362097077003,0.09686878938839645,-0.10390340987111088,-0.300487264781095,-0.4849584841279226,-0.649881036792081,-0.7886068980128413,-0.8955440311313736,-0.9663818024754353,-0.998264742915486,-0.9899076517674664,-0.9416474032064885,-0.8554293668755477,-0.7347289900745225,-0.5844117025501632,-0.4105367911209913,-0.22011314994853232,-0.02081675215528987,0.17931876849600234,0.3722259532175561,0.5501287172965289,0.7058558039126713,0.833129857355272,0.9268204631054286,0.9831509547410877,0.9998506512842068,0.976246388305007,0.9132896531666008,0.8135182305885489,0.6809539045961979,0.520940340487885,0.33992768179530347,0.145212545127649,-0.055356106295870816,-0.2536933541948022,-0.44180422811924486,-0.6121059825476661,-0.7577337572049414,-0.872817299441268,-0.9527175939977381,-0.9942138616173822,-0.9956333885921498,-0.9569189538184106,-0.879631135378486,-0.7668854036699451,-0.6232265368566255,-0.45444542095297913,-0.267345619325843,-0.06946912119326569,0.1312076758089742,0.32659549405421,0.5088182545424529,0.6705305614856105,0.8052137950626872,0.9074388768534803,0.973085115879425,0.9995063135736753,0.9856374319917489,0.9320375254696199,0.8408672051546549,0.7158015448139213,0.5618819386853335,0.38531288297745736,0.1932118727531795,-0.006677504152330586,-0.2062977110006971,-0.39760206129272574,-0.5728790805391235,-0.7250633556406226,-0.8480203415472453,-0.9367936446448518,-0.9878048148819041,-0.9989975930183063,-0.9699207983938237,-0.9017465160114663,-0.7972228498146228,-0.6605631466727564,-0.4972761564543438,-0.31394397443102023,-0.1179567171508338,0.08278537301096689,0.28019038646177447,0.46630093110379167,0.6336148946480247,0.7753878546095576,0.8859049458409747,0.9607112266309751,0.99679125731445,0.9926906525846505,0.9485747077352633,0.8662217356105253,0.7489513828503707,0.601490815001861,0.4297841645711895,0.24075292316290484,0.042016936293190456,-0.1584127524282086,-0.3524568263045497,-0.5322933726441648,-0.6906731839030077,-0.821211973093692,-0.91864772426537,-0.979052804259826,-0.9999922855247199,-0.9806220979939281,-0.921723053534905,-0.8256693714380312,-0.6963329736850818,-0.5389274078523791,-0.35979768911389354,-0.16616453280737217,0.03416671245444169,0.23312069822866965,0.4226775933741365,0.595196363283149,0.7437227798314191,0.862269746173169,0.946058636493883,0.9917119223200117,0.9973893206237167,0.9628619755942518,0.889521683811071,0.780324790952079,0.639673021558898,0.4732360456098199,0.28772293423754486,0.09061171720805124,-0.11015205630866173,-0.30647560266438895,-0.49044512367794096,-0.6546448116797963,-0.7924557805688094,-0.8983228729776416,-0.9679785885534071,-0.9986151068106672,-0.9889974703183324,-0.9395133658088373,-0.8521574965336983,-0.7304511758157515,-0.5793003829806848,-0.4047980034292289,-0.21397822455022225,-0.014532987769230881,0.18549807345480254,0.3780517110911133,0.5553660919028385,0.7102936767872359,0.8365893379324895,0.929162099793141,0.984280356211794,0.9997222913874751,0.9748654412256766,0.9107117848534984,0.8098473548612148,0.6763379943809246,0.5155654630321601,0.3340104983003995,0.13899157714062602,-0.06163009168133101,-0.25976745275463664,-0.44743359306365027,-0.6170636942895155,-0.7618199704842351,-0.8758672990833981,-0.9546084345788433,-0.994869323391898,-0.9950270499092082,-0.9550752561780522,-0.8766243981953488,-0.762836828458924,-0.618299321602619,-0.44883818160317906,-0.26128438358510525,-0.06319821735141648,0.13743546774483276,0.3325291319171566,0.5142185535102932,0.6751798356162203,0.8089246322099352,0.910061693247046,0.9745141858435539,0.999684031327025,0.9845566337352851,0.9297417781591885,0.8374490503178871,0.7113987682032131,0.5566720161366026,0.37950582636331465,0.1870417644082412,-0.012961947285526012,-0.21244316314660974,-0.40336079939970093,-0.5780189699905913,-0.729377207596795,-0.851334264722988,-0.9389740548641358,-0.9887638198528418,-0.9986965352699236,-0.9683718135578975,-0.8990120436353289,-0.793413116424459,-0.6558317225444374,-0.4918137651987467,-0.3079708049291318,-0.11171354774441446,0.08904688028946865,0.28621783038065757,0.47185134552053287,0.6384645424700118,0.7793412466311023,0.8888027209096812,0.9624365754924223,0.9972746311910119,0.9919125666851091,0.9465665266864852,0.8630644091499532,0.7447721827437443,0.5964582047209174,0.4241010085345236,0.23464830927536165,0.035736941417183005,-0.16461498182654638,-0.3583312784835398,-0.5376032485553357,-0.6952044425557284,-0.8247819595435361,-0.9211125324306879,-0.980313077773347,-0.9999972227866141,-0.9793714999832677,-0.9192673318321959,-0.8221075161354207,-0.6918085630977474,-0.5336228208796563,-0.3539267535491099,-0.1599639059444591,0.04044708347210368,0.23922765177231212,0.4283649582702249,0.6002348819676769,0.7479093497181626,0.8654356067147044,0.9480761719158383,0.9924998058103514,0.996915792614887,0.9611461239907078,0.8866326745562906,0.776379079950552,0.6348296603413173,0.46769026996886537,0.28169829427721194,0.08435106604299997,-0.11639635195652429,-0.31245183536384447,-0.4959123916097975,-0.6593827293843448,-0.7962733626792471,-0.9010662328363415,-0.9695371413799743,-0.9989260273721918,-0.9880482254132827,-0.9373422194801231,-0.8488519676458991,-0.726144510171537,-0.5741661821848619,-0.3990432270120791,-0.2078348474326788,-0.008248649358596857,0.19167005160435163,0.38386253666525294,0.5605815306402512,0.7147034944579459,0.8400157748753491,0.9314670364044496,0.985370880543319,0.9995544444254784,0.9734459888778283,0.9080979452151627,0.8061444917553541,0.671695370144412,0.5101702217540309,0.32808012204740744,0.1327651192595343,-0.06790164279932163,-0.26583129101085856,-0.45304528526069043,-0.6219970332284583,-0.7658760933722731,-0.878882703688986,-0.9564615700033058,-0.9954854897838447,-0.9943814096138099,-0.9531938349425528,-0.8735830360716824,-0.7587581226927562,-0.6133476847408562,-0.4432132140275275,-0.25521282762472386,-0.056924817304216356,0.14365783124988474,0.33844963553307505,0.519598541856116,0.6798024414704922,0.8126035184243873,0.9126485639927191,0.9759047644130328,0.9998222635263109,0.9834369474272209,0.9274093078761972,0.8339978178898813,0.7069678927395332,0.5514401061375348,0.37368378001505953,0.18086426828129368,-0.01924587844728413,-0.21858022420507295,-0.4091036055480227,-0.5831360288290088,-0.7336622505870701,-0.8546145618688864,-0.941117377454079,-0.9896837705965978,-0.9983560309716261,-0.9667845799389209,-0.8962420620507375,-0.7895720447758804,-0.6510743943523059,-0.4863319482662271,-0.3019854711859758,-0.10546596587246464,0.09530487039124651,0.292233969257885,0.4773831227367993,0.643288972197659,0.7832638562054266,0.8916653900181117,0.9641239100011215,0.9977186146800748,0.9910953021890759,0.9445209581206545,0.8598729933418237,0.7405635656000512,0.5914020355133992,0.4184011013417144,0.22853442724087153,0.02945553500211404,-0.17081070925670058,-0.36419157728143403,-0.5428918901950041,-0.6997082419996863,-0.8283193687273267,-0.9235409584616893,-0.981534630847386,-0.9999626621239932,-0.9780822187236236,-0.9167753008769665,-0.8185131892020139,-0.6872568274321214,-0.5282971568543925,-0.34804183857330695,-0.15375696082171675,0.04672585690947901,0.2453251562941045,0.4340354035925375,0.6052496925543032,0.7520663786558253,0.8685672842510397,0.9500562601926824,0.9932484875094083,0.996402888391977,0.959392309004678,0.8837086450537412,0.7724027035015656,0.6299612246000951,0.4621260214816282,0.2756625277878933,0.07808708317665652,-0.1226360501772954,-0.318415726830018,-0.5013600719770454,-0.6640946027671961,-0.8000594935571655,-0.9037740023501519,-0.971057399395364,-0.9991974923193212,-0.9870599545456251,-0.9351340499763579,-0.845512910774043,-0.721809163246532,-0.5690093029535332,-0.3932726891718978,-0.20168326124722155,-0.001963985142528285,0.19783445916352105,0.3896582004237876,0.5657748275091896,0.7190850827455822,0.8434090328464657,0.9337351818988894,0.9864224846620953,0.9993471170278415,0.9719880873269818,0.9054482374931215,0.8024097875267802,0.6670262152611913,0.5047548297550302,0.32213678727465145,0.12653341741722024,-0.0741705119359021,-0.27188462945365416,-0.4586390830594421,-0.6269058045073047,-0.769901965660175,-0.8818633941554775,-0.958276927075994,-0.9960623364558607,-0.9936964932074774,-0.9512747644243525,-0.8705071691353725,-0.7546494474723849,-0.6083718218512593,-0.4375707404011862,-0.24913119125934624,-0.050649168838761804,0.14987452055300357,0.3443567710537111,0.5249580070809574,0.6843981964647688,0.8162503083972699,0.9151993869141904,0.9772567966627416,0.9999210047116285,0.982278417292988,0.9250402067486375,0.8305136441875337,0.7025090934338409,0.5461864153383967,0.36784697389207793,0.1746796283712903,-0.02552904943467695,-0.2247086517744871,-0.41483025290813735,-0.5882300549406109,-0.7379183153606734,-0.8578611034195841,-0.9432235277576102,-0.9905646307769264,-0.9979760935726639,-0.9651591602295326,-0.8934366806665762,-0.7856997865836665,-0.6462913500014733,-0.48083092217777773,-0.29598820961022737,-0.09921421830218687,0.10155909613799331,0.2982385654677974,0.4828960442581528,0.648087993275379,0.7871555283971635,0.8944928400964641,0.9657731635106415,0.9981231902451561,0.9902388913768921,0.9424380828337084,0.8566476142407873,0.736325697651225,0.5863225070880509,0.41268466812789106,0.22241151854575622,0.0231729651513159,-0.17699968999949225,-0.37003749122795,-0.5481590886722215,-0.7041844043435651,-0.8318240609242845,-0.9259329064403194,-0.982717415232998,-0.9998886049019357,-0.9767543051390191,-0.9142470590995406,-0.8148865326066591,-0.6826779464728147,-0.5229506261299545,-0.34214317662917704,-0.14754394260127593,0.05300278476735966,0.2514129709544812,0.43968870536951676,0.6102405969678677,0.756193702449936,0.8716646550870685,0.951998823114901,0.9939579378457271,0.9958506282136947,0.9576005999084068,0.8807497107968986,0.7683958186642541,0.625067906628873,0.45654351992498543,0.2696158731706218,0.07182001602415712,-0.12887090451516128,-0.3243670415009204,-0.506787949607019,-0.6687802457188045,-0.8038140236578379,-0.9064460745674998,-0.9725393025523729,-0.9994294909297169,-0.9860326967501373,-0.9328889445158962,-0.8421404578043126,-0.7174453062785044,-0.5638299489733958,-0.38748661783358596,-0.1955237089694121,0.004320756647092633,0.20399105265057924,0.3954384734493919,0.5709457773846361,0.7234382685860208,0.8467689778187505,0.9359664466891272,0.9874351270318273,0.9991003173835891,0.970491794157411,0.9027627663456755,0.7986433896889685,0.6623307141537016,0.49931950093249644,0.3161807287319316,0.12029671775365641,-0.08043645148306479,-0.27792722898805455,-0.4642147655161145,-0.63178981423914,-0.7738974283338993,-0.8848092527514587,-0.9600544340938345,-0.9965998406236263,-0.9929723277430625,-0.9493181204229645,-0.8673969188771166,-0.7505109650822386,-0.6033719294706308,-0.43191098359077146,-0.24303971470165367,-0.044371519830577,0.15608529010718245,0.35025030515882377,0.5302967374964765,0.6889669190756688,0.8198648580874752,0.917714061258969,0.9785702291900644,0.9999802509828952,0.9810810890922028,0.9226345683513464,0.8269966668288566,0.6980225463999437,0.5409111512494349,0.36199563853673766,0.16848808895934986,-0.031811212074801865,-0.2308282037938863,-0.4205405152886163,-0.5933008471213799,-0.7421452338114128,-0.8610737611430721,-0.9452924225860179,-0.9914063656015818,-0.9975567380798177,-0.9634956186306161,-0.8905960102897816,-0.7817964947944037,-0.641482778412789,-0.4753109042131153,-0.28997925708205013,-0.09295855196544697,0.10780931050008659,0.30423138184064846,0.4883898923350306,0.6528614161514672,0.7910161094929117,0.8972849594660182,0.9673842708787105,0.9984883419063322,0.9893433680751011,0.9403179830951264,0.8533883992429782,0.7320587462848037,0.5812198200763631,0.40695193468092833,0.2162798250328728,0.016889480013947484,-0.18318167960259837,-0.3758687894209787,-0.5534046359430024,-0.7086327527877514,-0.8352958977060989,-0.9282882818893354,-0.9838613842125251,-0.9997750540455561,-0.975387811679456,-0.9116827063605508,-0.8112276895951627,-0.6780721010766242,-0.5175834398837957,-0.3362310007020331,-0.14132509668514284,0.05927761911943438,0.2574908552967303,0.4453246403070843,0.6152073980774571,0.7602911580793185,0.8747275968827314,0.9539037839550368,0.9946281287974009,0.9952590338932318,0.9557710674708815,0.8777559886578488,0.76435858370253,0.6201498997040917,0.4509429857967746,0.2635585692563684,0.06555011212208127,-0.13510066870563203,-0.3303055443113211,-0.5121958101092222,-0.6734394731653889,-0.807536804684631,-0.9090823439467856,-0.9739827923187396,-0.99962201403989,-0.9849664926014411,-0.9306069917759906,-0.8387347419419707,-0.7130531116312261,-0.5586283248185411,-0.3816852415355872,-0.189356433889457,0.010605327775319695,0.21013958889206144,0.40120312743252795,0.5760941760242358,0.7277628800369783,0.8500954770809819,0.9381607426446803,0.9884087676551324,0.998814055240822,0.9689571684697545,0.9000416378435476,0.7948454470072298,0.6576090522850062,0.4938644499712334,0.31021218167197195,0.11405526660634563,-0.08669921394851511,-0.2839588509432567,-0.46977211240209804,-0.6366488695153782,-0.7778623235805247,-0.8877201631213059,-0.9617940208487943,-0.9970979810568049,-0.9922089418236774,-0.9473239802219803,-0.8642524081456856,-0.7463428389843189,-0.5983482050849928,-0.42623416714555146,-0.23693863855299552,-0.038092118234584,0.1622898945991078,0.35613000506540143,0.5356145222333168,0.6935084288476298,0.8234470247275422,0.9201924877023615,0.9798450101169984,1.0]}
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/runner.jl
new file mode 100755
index 000000000000..7f1bc45857c3
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/test/fixtures/julia/runner.jl
@@ -0,0 +1,87 @@
+#!/usr/bin/env julia
+#
+# @license Apache-2.0
+#
+# Copyright (c) 2025 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, filepath )
+
+Generate fixture data and write to file.
+
+# Arguments
+
+* `domain`: domain
+* `filepath::AbstractString`: filepath of the output file
+
+# Examples
+
+``` julia
+julia> x = range( -1000.0, stop = 1000.0, length = 2001 );
+julia> gen( x, \"./data.json\" );
+```
+"""
+function gen( domain, filepath )
+ x = collect( domain );
+ s = sind.( x );
+ c = cosd.( x );
+ data = Dict([
+ ("x", x),
+ ("sine", s),
+ ("cosine", c)
+ ]);
+ outfile = open( filepath, "w" );
+ write( outfile, JSON.json(data) );
+ write( outfile, "\n" );
+ close( outfile );
+end
+
+# Get the filename:
+file = @__FILE__;
+
+# Extract the directory in which this file resides:
+dir = dirname( file );
+
+# Negative medium sized values:
+x = range( -256.0*180.0, stop = 0.0, length = 4000 );
+out = joinpath( dir, "medium_negative.json" );
+gen( x, out );
+
+# Positive medium sized values:
+x = range( 0.0, stop = 256.0*180.0, length = 4000 );
+out = joinpath( dir, "medium_positive.json" );
+gen( x, out );
+
+# Negative large values:
+x = range( -2.0^20*(180.0/2.0), stop = -2.0^60*(180.0/2.0), length = 4000 );
+out = joinpath( dir, "large_negative.json" );
+gen( x, out );
+
+# Positive large values:
+x = range( 2.0^20*(180.0/2.0), stop = 2.0^60*(180.0/2.0), length = 4000 );
+out = joinpath( dir, "large_positive.json" );
+gen( x, out );
+
+# Negative huge values:
+x = range( -2.0^60*(180.0/2.0), stop = -2.0^1000*(180.0/2.0), length = 4000 );
+out = joinpath( dir, "huge_negative.json" );
+gen( x, out );
+
+# Positive huge values:
+x = range( 2.0^60*(180.0/2.0), stop = 2.0^1000*(180.0/2.0), length = 4000 );
+out = joinpath( dir, "huge_positive.json" );
+gen( x, out );
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/test/test.assign.js b/lib/node_modules/@stdlib/math/base/special/sincosd/test/test.assign.js
new file mode 100644
index 000000000000..e88f9d98ad46
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/test/test.assign.js
@@ -0,0 +1,383 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 isnan = require( '@stdlib/math/base/assert/is-nan' );
+var PINF = require( '@stdlib/constants/float64/pinf' );
+var NINF = require( '@stdlib/constants/float64/ninf' );
+var EPS = require( '@stdlib/constants/float64/eps' );
+var abs = require( '@stdlib/math/base/special/abs' );
+var Float64Array = require( '@stdlib/array/float64' );
+var sincosd = require( './../lib/assign.js' );
+
+
+// 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', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof sincosd, '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++ ) {
+ y = sincosd( x[i], z, 1, 0 );
+ t.equal( y, z, 'returns output array' );
+ if ( y[0] === sine[ i ] ) {
+ t.equal( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] );
+ } else {
+ delta = abs( y[0] - sine[i] );
+ tol = EPS * abs( 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.equal( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] );
+ } else {
+ delta = abs( y[1] - cosine[i] );
+ tol = 1.01 * EPS * abs( 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 -256*180.0 < x < 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 = mediumNegative.x;
+ sine = mediumNegative.sine;
+ cosine = mediumNegative.cosine;
+
+ for ( i = 0; i < x.length; i++ ) {
+ y = sincosd( x[i], z, 1, 0 );
+ t.equal( y, z, 'returns output array' );
+ if ( y[0] === sine[ i ] ) {
+ t.equal( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] );
+ } else {
+ delta = abs( y[0] - sine[i] );
+ tol = EPS * abs( 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.equal( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] );
+ } else {
+ delta = abs( y[1] - cosine[i] );
+ tol = 1.01 * EPS * abs( 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++ ) {
+ y = sincosd( x[i], z, 1, 0 );
+ t.equal( y, z, 'returns output array' );
+ if ( y[0] === sine[ i ] ) {
+ t.equal( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] );
+ } else {
+ delta = abs( y[0] - sine[i] );
+ tol = EPS * abs( 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.equal( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] );
+ } else {
+ delta = abs( y[1] - cosine[i] );
+ tol = 1.01 * EPS * abs( 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++ ) {
+ y = sincosd( x[i], z, 1, 0 );
+ t.equal( y, z, 'returns output array' );
+ if ( y[0] === sine[ i ] ) {
+ t.equal( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] );
+ } else {
+ delta = abs( y[0] - sine[i] );
+ tol = EPS * abs( 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.equal( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] );
+ } else {
+ delta = abs( y[1] - cosine[i] );
+ tol = EPS * abs( 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++ ) {
+ y = sincosd( x[i], z, 1, 0 );
+ t.equal( y, z, 'returns output array' );
+ if ( y[0] === sine[ i ] ) {
+ t.equal( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] );
+ } else {
+ delta = abs( y[0] - sine[i] );
+ tol = EPS * abs( 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.equal( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] );
+ } else {
+ delta = abs( y[1] - cosine[i] );
+ tol = EPS * abs( 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++ ) {
+ y = sincosd( x[i], z, 1, 0 );
+ t.equal( y, z, 'returns output array' );
+ if ( y[0] === sine[ i ] ) {
+ t.equal( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] );
+ } else {
+ delta = abs( y[0] - sine[i] );
+ tol = EPS * abs( 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.equal( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] );
+ } else {
+ delta = abs( y[1] - cosine[i] );
+ tol = EPS * abs( 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++ ) {
+ y = sincosd( x[i], z, 1, 0 );
+ t.equal( y, z, 'returns output array' );
+ if ( y[0] === sine[ i ] ) {
+ t.equal( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] );
+ } else {
+ delta = abs( y[0] - sine[i] );
+ tol = EPS * abs( 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.equal( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] );
+ } else {
+ delta = abs( y[1] - cosine[i] );
+ tol = EPS * abs( 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 = sincosd( NaN, z, 1, 0 );
+ t.equal( v, z, 'returns output array' );
+ t.equal( isnan( v[0] ), true, 'returns expected value' );
+ t.equal( isnan( 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 = sincosd( PINF, z, 1, 0 );
+ t.equal( v, z, 'returns output array' );
+ t.equal( isnan( v[0] ), true, 'returns expected value' );
+ t.equal( isnan( 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 = sincosd( NINF, z, 1, 0 );
+ t.equal( v, z, 'returns output array' );
+ t.equal( isnan( v[0] ), true, 'returns expected value' );
+ t.equal( isnan( 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 Float64Array( 2 );
+ parts = sincosd( 1.0, out, 1, 0 );
+
+ t.strictEqual( parts, out, 'returns output array' );
+ t.equal( parts[ 0 ], 0.01745240643728351, 'has expected first element' );
+ t.equal( parts[ 1 ], 0.9998476951563913, 'has expected second element' );
+
+ t.end();
+});
+
+tape( 'the function supports specifying a stride', function test( t ) {
+ var out;
+ var val;
+
+ out = new Float64Array( 4 );
+ val = sincosd( 1.0, out, 2, 0 );
+
+ t.strictEqual( val, out, 'returns output array' );
+ t.equal( val[ 0 ], 0.01745240643728351, 'returns expected value' );
+ t.equal( val[ 1 ], 0, 'returns expected value' );
+ t.equal( val[ 2 ], 0.9998476951563913, 'returns expected value' );
+ t.equal( val[ 3 ], 0, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'the function supports specifying an offset', function test( t ) {
+ var out;
+ var val;
+
+ out = new Float64Array( 4 );
+ val = sincosd( 1.0, out, 2, 1 );
+
+ t.strictEqual( val, out, 'returns output array' );
+ t.equal( val[ 0 ], 0, 'returns expected value' );
+ t.equal( val[ 1 ], 0.01745240643728351, 'returns expected value' );
+ t.equal( val[ 2 ], 0, 'returns expected value' );
+ t.equal( val[ 3 ], 0.9998476951563913, 'returns expected value' );
+
+ t.end();
+});
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/test/test.js b/lib/node_modules/@stdlib/math/base/special/sincosd/test/test.js
new file mode 100644
index 000000000000..3687f650e917
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/test/test.js
@@ -0,0 +1,40 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 sincosd = require( './../lib' );
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof sincosd, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'attached to the main export is an `assign` method', function test( t ) {
+ t.strictEqual( hasOwnProp( sincosd, 'assign' ), true, 'has property' );
+ t.strictEqual( typeof sincosd.assign, 'function', 'has method' );
+ t.end();
+});
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/test/test.main.js b/lib/node_modules/@stdlib/math/base/special/sincosd/test/test.main.js
new file mode 100644
index 000000000000..e054b24f8e19
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/test/test.main.js
@@ -0,0 +1,267 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 isnan = require( '@stdlib/math/base/assert/is-nan' );
+var PINF = require( '@stdlib/constants/float64/pinf' );
+var NINF = require( '@stdlib/constants/float64/ninf' );
+var EPS = require( '@stdlib/constants/float64/eps' );
+var abs = require( '@stdlib/math/base/special/abs' );
+var sincosd = require( './../lib/main.js' );
+
+
+// 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', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof sincosd, '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++ ) {
+ y = sincosd( x[i] );
+ if ( y[0] === sine[ i ] ) {
+ t.equal( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] );
+ } else {
+ delta = abs( y[0] - sine[i] );
+ tol = EPS * abs( 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.equal( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] );
+ } else {
+ delta = abs( y[1] - cosine[i] );
+ tol = 1.01 * EPS * abs( 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++ ) {
+ y = sincosd( x[i] );
+ if ( y[0] === sine[ i ] ) {
+ t.equal( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] );
+ } else {
+ delta = abs( y[0] - sine[i] );
+ tol = EPS * abs( 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.equal( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] );
+ } else {
+ delta = abs( y[1] - cosine[i] );
+ tol = 1.01 * EPS * abs( 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++ ) {
+ y = sincosd( x[i] );
+ if ( y[0] === sine[ i ] ) {
+ t.equal( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] );
+ } else {
+ delta = abs( y[0] - sine[i] );
+ tol = EPS * abs( 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.equal( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] );
+ } else {
+ delta = abs( y[1] - cosine[i] );
+ tol = EPS * abs( 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++ ) {
+ y = sincosd( x[i] );
+ if ( y[0] === sine[ i ] ) {
+ t.equal( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] );
+ } else {
+ delta = abs( y[0] - sine[i] );
+ tol = EPS * abs( 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.equal( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] );
+ } else {
+ delta = abs( y[1] - cosine[i] );
+ tol = EPS * abs( 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++ ) {
+ y = sincosd( x[i] );
+ if ( y[0] === sine[ i ] ) {
+ t.equal( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] );
+ } else {
+ delta = abs( y[0] - sine[i] );
+ tol = EPS * abs( 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.equal( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] );
+ } else {
+ delta = abs( y[1] - cosine[i] );
+ tol = EPS * abs( 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++ ) {
+ y = sincosd( x[i] );
+ if ( y[0] === sine[ i ] ) {
+ t.equal( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] );
+ } else {
+ delta = abs( y[0] - sine[i] );
+ tol = EPS * abs( 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.equal( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] );
+ } else {
+ delta = abs( y[1] - cosine[i] );
+ tol = EPS * abs( 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 = sincosd( NaN );
+ t.equal( isnan( v[0] ), true, 'returns expected value' );
+ t.equal( isnan( v[1] ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided `+infinity`', function test( t ) {
+ var v = sincosd( PINF );
+ t.equal( isnan( v[0] ), true, 'returns expected value' );
+ t.equal( isnan( v[1] ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided `-infinity`', function test( t ) {
+ var v = sincosd( NINF );
+ t.equal( isnan( v[0] ), true, 'returns expected value' );
+ t.equal( isnan( v[1] ), true, 'returns expected value' );
+ t.end();
+});
diff --git a/lib/node_modules/@stdlib/math/base/special/sincosd/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/sincosd/test/test.native.js
new file mode 100644
index 000000000000..dc84b5a1864b
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/sincosd/test/test.native.js
@@ -0,0 +1,276 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 isnan = require( '@stdlib/math/base/assert/is-nan' );
+var PINF = require( '@stdlib/constants/float64/pinf' );
+var NINF = require( '@stdlib/constants/float64/ninf' );
+var EPS = require( '@stdlib/constants/float64/eps' );
+var abs = require( '@stdlib/math/base/special/abs' );
+var tryRequire = require( '@stdlib/utils/try-require' );
+
+
+// VARIABLES //
+
+var sincosd = tryRequire( resolve( __dirname, './../lib/native.js' ) );
+var opts = {
+ 'skip': ( sincosd 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 sincosd, '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++ ) {
+ y = sincosd( x[i] );
+ if ( y[0] === sine[ i ] ) {
+ t.equal( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] );
+ } else {
+ delta = abs( y[0] - sine[i] );
+ tol = EPS * abs( 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.equal( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] );
+ } else {
+ delta = abs( y[1] - cosine[i] );
+ tol = 1.01 * EPS * abs( 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++ ) {
+ y = sincosd( x[i] );
+ if ( y[0] === sine[ i ] ) {
+ t.equal( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] );
+ } else {
+ delta = abs( y[0] - sine[i] );
+ tol = EPS * abs( 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.equal( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] );
+ } else {
+ delta = abs( y[1] - cosine[i] );
+ tol = 1.01 * EPS * abs( 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++ ) {
+ y = sincosd( x[i] );
+ if ( y[0] === sine[ i ] ) {
+ t.equal( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] );
+ } else {
+ delta = abs( y[0] - sine[i] );
+ tol = EPS * abs( 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.equal( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] );
+ } else {
+ delta = abs( y[1] - cosine[i] );
+ tol = EPS * abs( 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++ ) {
+ y = sincosd( x[i] );
+ if ( y[0] === sine[ i ] ) {
+ t.equal( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] );
+ } else {
+ delta = abs( y[0] - sine[i] );
+ tol = EPS * abs( 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.equal( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] );
+ } else {
+ delta = abs( y[1] - cosine[i] );
+ tol = EPS * abs( 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++ ) {
+ y = sincosd( x[i] );
+ if ( y[0] === sine[ i ] ) {
+ t.equal( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] );
+ } else {
+ delta = abs( y[0] - sine[i] );
+ tol = EPS * abs( 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.equal( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] );
+ } else {
+ delta = abs( y[1] - cosine[i] );
+ tol = EPS * abs( 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++ ) {
+ y = sincosd( x[i] );
+ if ( y[0] === sine[ i ] ) {
+ t.equal( y[0], sine[ i ], 'x: '+x[i]+'. Expected: '+sine[i] );
+ } else {
+ delta = abs( y[0] - sine[i] );
+ tol = EPS * abs( 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.equal( y[1], cosine[ i ], 'x: '+x[i]+'. Expected: '+cosine[i] );
+ } else {
+ delta = abs( y[1] - cosine[i] );
+ tol = EPS * abs( 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 = sincosd( NaN );
+ t.equal( isnan( v[0] ), true, 'returns expected value' );
+ t.equal( isnan( v[1] ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided `+infinity`', opts, function test( t ) {
+ var v = sincosd( PINF );
+ t.equal( isnan( v[0] ), true, 'returns expected value' );
+ t.equal( isnan( v[1] ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided `-infinity`', opts, function test( t ) {
+ var v = sincosd( NINF );
+ t.equal( isnan( v[0] ), true, 'returns expected value' );
+ t.equal( isnan( v[1] ), true, 'returns expected value' );
+ t.end();
+});