diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/README.md b/lib/node_modules/@stdlib/math/base/special/havercosf/README.md
new file mode 100644
index 000000000000..6134908b3ff3
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/README.md
@@ -0,0 +1,200 @@
+
+
+# Havercosine
+
+> Compute the half-value [versed cosine][versed-cosine] of a single-precision floating-point number (in radians).
+
+
+
+The half-value [versed cosine][versed-cosine] is defined as
+
+
+
+```math
+\mathop{\mathrm{havercos}}(\theta) = \frac{1 + \cos \theta}{2}
+```
+
+
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var havercosf = require( '@stdlib/math/base/special/havercosf' );
+```
+
+#### havercosf( x )
+
+Computes the half-value [versed cosine][versed-cosine] of a single-precision floating-point number (in radians).
+
+```javascript
+var v = havercosf( 0.0 );
+// returns 1.0
+
+v = havercosf( 3.141592653589793/2.0 );
+// returns 0.5
+
+v = havercosf( -3.141592653589793/6.0 );
+// returns ~0.9330
+```
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var uniform = require( '@stdlib/random/array/uniform' );
+var logEachMap = require( '@stdlib/console/log-each-map' );
+var TWO_PI = require( '@stdlib/constants/float32/two-pi' );
+var havercosf = require( '@stdlib/math/base/special/havercosf' );
+
+var opts = {
+ 'dtype': 'float32'
+};
+var x = uniform( 100, 0.0, TWO_PI, opts );
+
+logEachMap( 'havercosf(%0.4f) = %0.4f', x, havercosf );
+```
+
+
+
+
+
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/math/base/special/havercosf.h"
+```
+
+#### stdlib_base_havercosf( x )
+
+Computes the half-value [versed cosine][versed-cosine] of a single-precision floating-point number (in radians).
+
+```c
+float out = stdlib_base_havercosf( 0.0f );
+// returns 1.0f
+
+out = stdlib_base_havercosf( 3.141592653589793f / 2.0f );
+// returns 0.5f
+```
+
+The function accepts the following arguments:
+
+- **x**: `[in] float` input value.
+
+```c
+float stdlib_base_havercosf( const float x );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Examples
+
+```c
+#include "stdlib/math/base/special/havercosf.h"
+#include
+
+int main( void ) {
+ const float x[] = { 0.0f, 0.523f, 0.785f, 1.047f, 3.14f };
+
+ float y;
+ int i;
+ for ( i = 0; i < 5; i++ ) {
+ y = stdlib_base_havercosf( x[ i ] );
+ printf( "havercosf(%f) = %f\n", x[ i ], y );
+ }
+}
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[versed-cosine]: https://en.wikipedia.org/wiki/Versine
+
+
+
+
+
+
+
+
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/havercosf/benchmark/benchmark.js
new file mode 100644
index 000000000000..781dafcd179d
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/benchmark/benchmark.js
@@ -0,0 +1,54 @@
+/**
+* @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 isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var pkg = require( './../package.json' ).name;
+var havercosf = require( './../lib' );
+
+
+// MAIN //
+
+bench( pkg, function benchmark( b ) {
+ var x;
+ var y;
+ var i;
+
+ x = uniform( 100, -10.0, 10.0, {
+ 'dtype': 'float32'
+ });
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ y = havercosf( x[ i%x.length ] );
+ if ( isnanf( y ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnanf( y ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/havercosf/benchmark/benchmark.native.js
new file mode 100644
index 000000000000..d7987d8772cf
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/benchmark/benchmark.native.js
@@ -0,0 +1,63 @@
+/**
+* @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 isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var tryRequire = require( '@stdlib/utils/try-require' );
+var pkg = require( './../package.json' ).name;
+
+
+// VARIABLES //
+
+var havercosf = tryRequire( resolve( __dirname, './../lib/native.js' ) );
+var opts = {
+ 'skip': ( havercosf instanceof Error )
+};
+
+
+// MAIN //
+
+bench( pkg+'::native', opts, function benchmark( b ) {
+ var x;
+ var y;
+ var i;
+
+ x = uniform( 100, -10.0, 10.0, {
+ 'dtype': 'float32'
+ });
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ y = havercosf( x[ i%x.length ] );
+ if ( isnanf( y ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnanf( y ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/benchmark/c/Makefile b/lib/node_modules/@stdlib/math/base/special/havercosf/benchmark/c/Makefile
new file mode 100644
index 000000000000..d564e8b2d6f9
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/benchmark/c/Makefile
@@ -0,0 +1,127 @@
+#/
+# @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 C targets:
+c_targets := benchmark.out
+
+
+# RULES #
+
+#/
+# Compiles C source files.
+#
+# @param {string} [C_COMPILER] - C compiler
+# @param {string} [CFLAGS] - C compiler flags
+# @param {(string|void)} [fPIC] - compiler flag indicating whether to generate position independent code
+#
+# @example
+# make
+#
+# @example
+# make all
+#/
+all: $(c_targets)
+
+.PHONY: all
+
+#/
+# Compiles C source files.
+#
+# @private
+# @param {string} CC - C compiler
+# @param {string} CFLAGS - C compiler flags
+# @param {(string|void)} fPIC - compiler flag indicating whether to generate position independent code
+#/
+$(c_targets): %.out: %.c
+ $(QUIET) $(CC) $(CFLAGS) $(fPIC) -o $@ $< -lm
+
+#/
+# 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/havercosf/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/math/base/special/havercosf/benchmark/c/benchmark.c
new file mode 100644
index 000000000000..c3e68f85ea69
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/benchmark/c/benchmark.c
@@ -0,0 +1,137 @@
+/**
+* @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
+#include
+#include
+#include
+#include
+
+#define NAME "havercosf"
+#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 [min,max).
+*
+* @param min minimum value (inclusive)
+* @param max maximum value (exclusive)
+* @return random number
+*/
+static float random_uniform( const float min, const float max ) {
+ float v = (float)rand() / ( (float)RAND_MAX + 1.0f );
+ return min + ( v*(max-min) );
+}
+
+/**
+* Runs a benchmark.
+*
+* @return elapsed time in seconds
+*/
+static double benchmark( void ) {
+ float x[ 100 ];
+ double elapsed;
+ double t;
+ float y;
+ int i;
+
+ for ( i = 0; i < 100; i++ ) {
+ x[ i ] = random_uniform( -10.0f, 10.0f );
+ }
+
+ t = tic();
+ for ( i = 0; i < ITERATIONS; i++ ) {
+ y = ( 1.0f + cosf( x[ i%100 ] ) ) / 2.0f;
+ if ( y != y ) {
+ printf( "should not return NaN\n" );
+ break;
+ }
+ }
+ elapsed = tic() - t;
+ if ( y != y ) {
+ printf( "should not return NaN\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::%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/havercosf/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/havercosf/benchmark/c/native/Makefile
new file mode 100644
index 000000000000..a4bd7b38fd74
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/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/havercosf/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/havercosf/benchmark/c/native/benchmark.c
new file mode 100644
index 000000000000..27284be926fb
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/benchmark/c/native/benchmark.c
@@ -0,0 +1,138 @@
+/**
+* @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/havercosf.h"
+#include
+#include
+#include
+#include
+#include
+
+#define NAME "havercosf"
+#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 [min,max).
+*
+* @param min minimum value (inclusive)
+* @param max maximum value (exclusive)
+* @return random number
+*/
+static float random_uniform( const float min, const float max ) {
+ float v = (float)rand() / ( (float)RAND_MAX + 1.0f );
+ return min + ( v*(max-min) );
+}
+
+/**
+* Runs a benchmark.
+*
+* @return elapsed time in seconds
+*/
+static double benchmark( void ) {
+ float x[ 100 ];
+ double elapsed;
+ double t;
+ float y;
+ int i;
+
+ for ( i = 0; i < 100; i++ ) {
+ x[ i ] = random_uniform( -10.0f, 10.0f );
+ }
+
+ t = tic();
+ for ( i = 0; i < ITERATIONS; i++ ) {
+ y = stdlib_base_havercosf( x[ i%100 ] );
+ if ( y != y ) {
+ printf( "should not return NaN\n" );
+ break;
+ }
+ }
+ elapsed = tic() - t;
+ if ( y != y ) {
+ printf( "should not return NaN\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/havercosf/binding.gyp b/lib/node_modules/@stdlib/math/base/special/havercosf/binding.gyp
new file mode 100644
index 000000000000..68a1ca11d160
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/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/havercosf/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/havercosf/docs/repl.txt
new file mode 100644
index 000000000000..91955f1013e4
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/docs/repl.txt
@@ -0,0 +1,33 @@
+
+{{alias}}( x )
+ Computes the half-value versed cosine of a single-precision floating-point
+ number (in radians).
+
+ The half-value versed cosine is defined as `(1 + cos(x)) / 2`.
+
+ Parameters
+ ----------
+ x: number
+ Input value (in radians).
+
+ Returns
+ -------
+ y: number
+ Half-value versed cosine.
+
+ Examples
+ --------
+ > var y = {{alias}}( 3.14 )
+ ~0.0
+ > y = {{alias}}( -4.2 )
+ ~0.2549
+ > y = {{alias}}( -4.6 )
+ ~0.4439
+ > y = {{alias}}( 9.5 )
+ ~0.0014
+ > y = {{alias}}( -0.0 )
+ 1.0
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/havercosf/docs/types/index.d.ts
new file mode 100644
index 000000000000..90688863f792
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/docs/types/index.d.ts
@@ -0,0 +1,48 @@
+/*
+* @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
+
+/**
+* Computes the half-value versed cosine of a single-precision floating-point number (in radians).
+*
+* @param x - input value (in radians)
+* @returns half-value versed cosine
+*
+* @example
+* var v = havercosf( 0.0 );
+* // returns 1.0
+*
+* @example
+* var v = havercosf( 3.141592653589793/2.0 );
+* // returns 0.5
+*
+* @example
+* var v = havercosf( -3.141592653589793/6.0 );
+* // returns ~0.933
+*
+* @example
+* var v = havercosf( NaN );
+* // returns NaN
+*/
+declare function havercosf( x: number ): number;
+
+
+// EXPORTS //
+
+export = havercosf;
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/havercosf/docs/types/test.ts
new file mode 100644
index 000000000000..7d5d88592b52
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/docs/types/test.ts
@@ -0,0 +1,44 @@
+/*
+* @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 havercosf = require( './index' );
+
+
+// TESTS //
+
+// The function returns a number...
+{
+ havercosf( 8 ); // $ExpectType number
+}
+
+// The compiler throws an error if the function is provided a value other than a number...
+{
+ havercosf( true ); // $ExpectError
+ havercosf( false ); // $ExpectError
+ havercosf( null ); // $ExpectError
+ havercosf( undefined ); // $ExpectError
+ havercosf( '5' ); // $ExpectError
+ havercosf( [] ); // $ExpectError
+ havercosf( {} ); // $ExpectError
+ havercosf( ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided insufficient arguments...
+{
+ havercosf(); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/havercosf/examples/c/Makefile
new file mode 100644
index 000000000000..25ced822f96a
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/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/havercosf/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/havercosf/examples/c/example.c
new file mode 100644
index 000000000000..2326cceb9104
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/examples/c/example.c
@@ -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.
+*/
+
+#include "stdlib/math/base/special/havercosf.h"
+#include
+
+int main( void ) {
+ const float x[] = { 0.0f, 0.523f, 0.785f, 1.047f, 3.14f };
+
+ float y;
+ int i;
+ for ( i = 0; i < 5; i++ ) {
+ y = stdlib_base_havercosf( x[ i ] );
+ printf( "havercosf(%f) = %f\n", x[ i ], y );
+ }
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/examples/index.js b/lib/node_modules/@stdlib/math/base/special/havercosf/examples/index.js
new file mode 100644
index 000000000000..22a9c4154443
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/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 uniform = require( '@stdlib/random/array/uniform' );
+var logEachMap = require( '@stdlib/console/log-each-map' );
+var TWO_PI = require( '@stdlib/constants/float32/two-pi' );
+var havercosf = require( './../lib' );
+
+var opts = {
+ 'dtype': 'float32'
+};
+var x = uniform( 100, 0.0, TWO_PI, opts );
+
+logEachMap( 'havercosf(%0.4f) = %0.4f', x, havercosf );
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/include.gypi b/lib/node_modules/@stdlib/math/base/special/havercosf/include.gypi
new file mode 100644
index 000000000000..ecfaf82a3279
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/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.10.0",
+ "npm": ">2.7.0"
+ },
+ "os": [
+ "aix",
+ "darwin",
+ "freebsd",
+ "linux",
+ "macos",
+ "openbsd",
+ "sunos",
+ "win32",
+ "windows"
+ ],
+ "keywords": [
+ "stdlib",
+ "stdmath",
+ "mathematics",
+ "math",
+ "havercos",
+ "havercosf",
+ "havercosin",
+ "havercosine",
+ "versed",
+ "haversed",
+ "hac",
+ "hvc",
+ "cosine",
+ "cos",
+ "trig",
+ "trigonometry",
+ "radians",
+ "angle"
+ ]
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/src/Makefile b/lib/node_modules/@stdlib/math/base/special/havercosf/src/Makefile
new file mode 100644
index 000000000000..7733b6180cb4
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/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/havercosf/src/addon.c b/lib/node_modules/@stdlib/math/base/special/havercosf/src/addon.c
new file mode 100644
index 000000000000..15a95dbe0c60
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/src/addon.c
@@ -0,0 +1,22 @@
+/**
+* @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/havercosf.h"
+#include "stdlib/math/base/napi/unary.h"
+
+STDLIB_MATH_BASE_NAPI_MODULE_F_F( stdlib_base_havercosf )
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/src/main.c b/lib/node_modules/@stdlib/math/base/special/havercosf/src/main.c
new file mode 100644
index 000000000000..50958b7e4571
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/src/main.c
@@ -0,0 +1,34 @@
+/**
+* @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/havercosf.h"
+#include "stdlib/math/base/special/cosf.h"
+
+/**
+* Computes the half-value versed cosine of a single-precision floating-point number (in radians).
+*
+* @param x input value (in radians)
+* @return half-value versed cosine
+*
+* @example
+* float y = stdlib_base_havercosf( 3.141592653589793f / 2.0f );
+* // returns 0.5f
+*/
+float stdlib_base_havercosf( const float x ) {
+ return ( 1.0f + stdlib_base_cosf( x ) ) / 2.0f;
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/REQUIRE
new file mode 100644
index 000000000000..308c3be89c85
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/REQUIRE
@@ -0,0 +1,2 @@
+julia 1.5
+JSON 0.21
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/huge_negative.json b/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/huge_negative.json
new file mode 100644
index 000000000000..1cb458ae70bf
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/huge_negative.json
@@ -0,0 +1 @@
+{"expected":[0.00293988,0.99569273,0.98284507,0.9616785,0.9325576,0.8490607,0.8525882,0.74411577,0.7484243,0.62241966,0.4873735,0.49232322,0.49727368,0.5022244,0.23837,0.24260166,0.24685854,0.25114024,0.0599463,0.062318325,0.0006377101,0.00041222572,0.00023573637,0.00010821223,2.9742718e-5,2.3841858e-7,1.9788742e-5,0.2782272,0.27380103,0.26939702,0.26501563,0.26065728,0.25632238,0.2520114,0.24772471,0.77871287,0.774589,0.7704382,0.766261,0.76205754,0.99745077,0.75357413,0.99835175,0.7449913,0.9990573,0.7363124,0.99956715,0.6988641,0.9998811,0.7079092,0.999999,0.71687275,0.99992085,0.7257513,0.1967327,0.73454124,0.2046639,0.7432392,0.21271092,0.7518418,0.22087061,0.7603457,0.22913975,0.0037060082,0.23751509,0.0026001036,0.2459934,0.0016892254,0.2545713,0.0009737611,0.3107234,0.00045397878,0.30159646,0.00013011694,0.29254735,2.2649765e-6,0.2835796,0.8114724,0.2746967,0.80366623,0.98982906,0.79574096,0.2571994,0.0014509261,0.99341786,0.77954566,0.24008295,0.65158474,0.99623275,0.7629119,0.22337416,0.6703319,0.9982693,0.7458659,0.15818778,0.68881196,0.99952435,0.72843415,0.17290494,0.70699584,0.99999595,0.0146482885,0.18813515,0.7248551,0.9996834,0.010271877,0.2038545,0.74236166,0.36788425,0.006663561,0.22003832,0.7594881,0.34889364,0.0038290024,0.23666126,0.85634553,0.33014005,0.0017726719,0.25369722,0.84217834,0.3116529,0.0004977584,0.27111948,0.8274745,0.2934611,6.28829e-6,0.98523086,0.812257,0.27559328,0.0002990365,0.98962665,0.79654974,0.25807744,0.6316316,0.99325454,0.7803774,0.24094102,0.65062785,0.9961088,0.7637653,0.14330253,0.6693878,0.99818486,0.74673945,0.15745583,0.68788207,0.9994796,0.0200665,0.17214638,0.7060817,0.99999094,0.014890462,0.18735117,0.7239581,0.38806015,0.010475278,0.20304629,0.7414832,0.36885265,0.006827891,0.95973015,0.75862956,0.34985083,0.5331584,0.23580849,0.857049,0.9942047,0.0018581152,0.97384477,0.79167914,0.31258315,0.57253194,0.2702275,0.8282324,0.0919117,1.23381615e-5,0.98498774,0.05750096,0.27649078,0.6114506,0.30608743,0.7973573,0.11605185,0.0013021231,0.9930892,0.04046741,0.2418001,0.64967036,0.4673424,0.7646175,0.14259982,0.9299257,0.9980984,0.02631569,0.20872867,0.68695146,0.4279647,0.7302182,0.17138916,0.9083781,0.9999839,0.015134603,0.94226515,0.72306013,0.3890387,0.6943751,0.2022393,0.8842695,0.9987339,0.0069942176,0.95933455,0.75776994,0.35080862,0.53215677,0.23495677,0.857751,0.06981829,0.001945585,0.9735234,0.7908633,0.31351414,0.5715386,0.2693364,0.82898897,0.091332525,2.041459e-5,0.98474264,0.057969213,0.27738917,0.61047184,0.5079286,0.7981638,0.11540958,0.0012307167,0.9929219,0.04086393,0.24266025,0.6487123,0.46834415,0.7654687,0.14189854,0.9304373,0.9980099,0.026638031,0.20954517,0.6860201,0.42895818,0.7311088,0.17063326,0.90895647,0.99997485,0.015380681,0.94179595,0.7221613,0.39001775,0.49156952,0.20143348,0.88491094,0.9988042,0.0071625113,0.9589371,0.7569093,0.351767,0.53115493,0.23410612,0.85845155,0.069307536,0.0020350516,0.9732001,0.07838535,0.3144459,0.57054496,0.26844627,0.8297442,0.090754986,3.0487776e-5,0.9844955,0.058439285,0.27828845,0.6094926,0.5089323,0.798969,0.11476889,0.94965863,0.99275255,0.04126233,0.24352142,0.6477536,0.46934602,0.7663188,0.14119872,0.9309472,0.99791944,0.02696225,0.92134464,0.6850879,0.42995197,0.7319985,0.16987866,0.90953314,0.99996376,0.015628725,0.94132507,0.72126156,0.39099717,0.49056587,0.20062888,0.88555086,0.050122112,0.007332802,0.9585378,0.7560476,0.35272598,0.53015304,0.23325655,0.85915065,0.06879851,0.0021265447,0.9728749,0.07892582,0.8454073,0.62121314,0.26755702,0.8304981,0.090179086,0.9659153,0.0043979287,0.82059443,0.27918863,0.60851294,0.5099359,0.37217835,0.97695315,0.0010939538,0.9925813,0.041662574,0.8981154,0.18467158,0.34030688,0.7671678,0.14050034,0.9314554,0.021043539,0.8771117,0.21118164,0.68415505,0.430946,0.450039,0.66614425,0.012556851,0.99995065,0.015878707,0.9408523,0.1274038,0.7832216,0.6971461,0.1998255,0.8861892,0.04968497,0.98891735,0.15040833,0.7551849,0.3536856,0.52915096,0.58966476,0.29660165,0.9947983,0.0022200346,0.9725478,0.07946795,0.8446808,0.6221868,0.26666874,0.8312507,0.089604855,0.9662787,0.0042660832,0.81982344,0.2800897,0.6075328,0.51093954,0.37120813,0.73934436,0.0010285974,0.99240804,0.042064637,0.89750725,0.18545124,0.33935595,0.7680158,0.13980338,0.9319618,0.020756334,0.99936235,0.21200165,0.68322146,0.43194035,0.4490403,0.66709065,0.012334287,0.9999355,0.016130656,0.94037783,0.12807396,0.7823938,0.69806826,0.1990233,0.88682604,0.04924962,0.98912656,0.15112671,0.7543211,0.35464576,0.5281488,0.5906521,0.29568505,0.9949417,0.0023155212,0.9722189,0.080011815,0.8439529,0.25157732,0.2657814,0.832002,0.08903226,0.9666401,0.0041362345,0.81905115,0.28099167,0.60655224,0.5119431,0.37023848,0.7402252,0.0009652674,0.9922328,0.042468578,0.89689755,0.18623218,0.33840567,0.76886266,0.13910791,0.93246645,0.020471096,0.99941206,0.2128228,0.6822871,0.43293494,0.44804183,0.66803646,0.01211369,0.99991834,0.016384542,0.9399016,0.12874559,0.78156483,0.6989895,0.19822234,0.8874613,0.048816115,0.98933375,0.0002514422,0.75345635,0.3556065,0.5271465,0.5916391,0.2947693,0.9950832,0.0024130344,0.97188795,0.08055735,0.8432237,0.25244898,0.26489502,0.83275187,0.08846134,0.96699977,0.0040083826,0.81827766,0.2818945,0.60557127,0.5129466,0.3692693,0.7411051,0.00090390444,0.99205554,0.042874336,0.89628625,0.18701437,0.33745605,0.7697085,0.13841388,0.93296933,0.020187765,0.99945974,0.2136451,0.68135196,0.43392983,0.44704354,0.66898155,0.22457111,0.99989927,0.016640395,0.93942356,0.12941873,0.7807347,0.69991004,0.19742256,0.88809496,0.0483844,0.989539,0.00028428435,0.75259054,0.35656786,0.52614415,0.59262574,0.29385436,0.99522257,0.0025125146,0.9715551,0.08110458,0.84249306,0.2533216,0.26400954,0.83350044,0.087892085,0.9673574,0.0038825274,0.996758,0.28279823,0.6045899,0.51395005,0.36830068,0.741984,0.0008445978,0.9918763,0.043281972,0.89567333,0.18779781,0.7110356,0.7705532,0.1377213,0.93347055,0.019906372,0.9995054,0.21446857,0.68041617,0.434925,0.4460455,0.6699259,0.22373387,0.99987805,0.016898185,0.93894374,0.13009337,0.77990353,0.7008297,0.19662404,0.88872707,0.04795453,0.9897423,0.00031915307,0.75172377,0.35752976,0.5251416,0.593612,0.29294026,0.8087715,0.0026140213,0.97122043,0.081653506,0.841761,0.25419527,0.26312506,0.8342477,0.08732447,0.96771324,0.003758669,0.9966428,0.2837028,0.6036081,0.51495343,0.36733258,0.7428619,0.00078728795,0.9916951,0.043691427,0.8950589,0.18858254,0.7101252,0.7713968,0.13703018,0.93397,0.019626915,0.99954903,0.21529317,0.6794796,0.4359204,0.44504762,0.6708697,0.22289777,0.9998549,0.017157912,0.93846214,0.13076949,0.77907115,0.32690573,0.19582674,0.8893577,0.04752645,0.98994356,0.00035601854,0.7508559,0.35849226,0.52413905,0.5945979,0.29202697,0.8095604,0.0027175546,0.97088385,0.0822041,0.8410276,0.25506988,0.2622415,0.8349936,0.086758524,0.96806717,0.0036368072,0.9965257,0.28460827,0.60262585,0.5159568,0.366365,0.7437389,0.00073197484,0.99151194,0.04410273,0.89444274,0.18936852,0.7092139,0.4040618,0.47722483,0.6401977,0.058770478,0.8731296,0.21611893,0.6785423,0.43691605,0.44405,0.6718127,0.22206277,0.8683085,0.06219572,0.98248565,0.47004977,0.41112304,0.70266664,0.19503063,0.88998663,0.047100216,0.99014294,0.00039488077,0.9807501,0.06535351,0.86390746,0.90993726,0.034010947,0.99562895,0.0028230548,0.97054535,0.0827564,0.8402928,0.2559455,0.6339834,0.48368186,0.39772803,0.95825624,0.1020076,0.8151707,0.2855146,0.6016432,0.5169601,0.36539796,0.74461484,0.15923688,0.9175972,0.029237837,0.5688528,0.55016315,0.33366418,0.77308077,0.13565233,0.9349636,0.019073814,0.9996302,0.009984404,0.9526273,0.11041564,0.80446017,0.95040333,0.011040151,0.9998025,0.017683238,0.9374937,0.13212621,0.7774031,0.3287906,0.5553117,0.56372106,0.32085788,0.9204221,0.15546638,0.74911726,0.36041895,0.5221335,0.59656847,0.29020292,0.8111346,0.10516286,0.95616066,0.008370638,0.48885736,0.62898815,0.2604773,0.8364813,0.08563164,0.9687694,0.0033991039,0.99628544,0.03215906,0.9128796,0.16548353,0.06793594,0.9793016,0.0006273985,0.9911396,0.044930816,0.89320576,0.1909442,0.70738876,0.4060329,0.47521946,0.64212364,0.0597184,0.87179023,0.21777388,0.6766656,0.43890816,0.44205543,0.6736967,0.22039613,0.8696633,0.061229527,0.9830085,0.47205403,0.4091481,0.7045003,0.19344217,0.8912399,0.046253234,0.9905356,0.0004786849,0.9801945,0.06634936,0.8625278,0.22914287,0.03328693,0.9958898,0.003040105,0.9698627,0.08386603,0.83881915,0.2576997,0.6320481,0.48568857,0.39576367,0.7168761,0.103226036,0.8136096,0.28732985,0.59967667,0.5189664,0.36346555,0.7463639,0.15777045,0.91869795,0.028565198,0.9974512,0.5521602,0.3317722,0.7747603,0.13428038,0.9359503,0.018528461,0.9997034,0.01038757,0.95177066,0.11167717,0.80286515,0.9512714,0.010624558,0.99974203,0.018216312,0.9365182,0.13348886,0.77573055,0.33067822,0.55331594,0.5657118,0.318985,0.919332,0.1569241,0.74737453,0.3623479,0.5201277,0.59853756,0.28838226,0.8127036,0.10393432,0.95697904,0.008008778,0.48685032,0.6309268,0.25871694,0.8379636,0.08451143,0.969464,0.0031694174,0.9960372,0.032871217,0.9117439,0.16697836,0.06692904,0.97986937,0.0005308986,0.9907594,0.045766264,0.8919625,0.19252485,0.7055603,0.4080055,0.47321448,0.6440473,0.24685535,0.87044483,0.2194334,0.67478603,0.44090125,0.4400618,0.6755779,0.218734,0.87101215,0.0602704,0.98352355,8.827448e-5,0.40717462,0.7063307,0.19185862,0.8924868,0.045413554,0.9909204,0.00057053566,0.9796312,0.067352235,0.8611422,0.23083258,0.032570392,0.99614275,0.0032651722,0.9691724,0.084982365,0.83734,0.2594578,0.6301106,0.4876955,0.39380097,0.7186833,0.10445091,0.8120434,0.28914857,0.5977085,0.52097243,0.3615353,0.74810886,0.15630955,0.91979194,0.02790013,0.9976496,0.5541565,0.32988298,0.77643543,0.1329143,0.9369298,0.017990887,0.9997685,0.010798603,0.95090675,0.11294499,0.8012653,0.9521322,0.010216832,0.99967355,0.018757164,0.9355356,0.13485742,0.7740536,0.33256862,0.5513193,0.56770146,0.317115,0.7877028,0.15838733,0.7456278,0.36427903,0.51812154,0.600505,0.286565,0.81426764,0.102712154,0.9577901,0.0076548755,0.99899447,0.6328633,0.2569605,0.8394404,0.083397925,0.97015107,0.002947718,0.99578094,0.033590913,0.91060156,0.16847855,0.7336509,0.9804294,0.00044241548,0.9903712,0.046609014,0.89071286,0.19411048,0.70372856,0.4099796,0.47120994,0.6459687,0.24512607,0.8690935,0.22109744,0.67290366,0.44289526,0.43806913,0.67745626,0.21707642,0.872355,0.059318364,0.9840308,5.4597855e-5,0.40520266,0.7081578,0.19028005,0.8937275,0.044581205,0.99129736,0.00067046285,0.9790601,0.06836206,0.85975087,0.23252663,0.031861424,0.9963876,0.0034982264,0.9684746,0.08610538,0.8358555,0.26121977,0.62817115,0.4897026,0.39184,0.72048694,0.105682135,0.81047225,0.29097062,0.5957388,0.5229781,0.3596073,0.7498499,0.15485418,0.9208791,0.02724266,0.99784005,0.005294472,0.3279965,0.7781061,0.13155416,0.93790233,0.017461061,0.9998256,0.011217535,0.9500356,0.11421904,0.79966056,0.3034443,0.009817004,0.99959695,0.019305795,0.93454605,0.13623184,0.7723721,0.3344617,0.5493219,0.56969005,0.31524795,0.7893424,0.15985605,0.7438772,0.36621237,0.51611507,0.6024708,0.2847512,0.8158266,0.1014964,0.9585937,0.0073088706,0.99886316,0.6347977,0.25520796,0.84091175,0.082291126,0.97083056,0.002734065,0.99551666,0.03431812,0.9094526,0.1699841,0.7318741,0.9809817,0.0003620088,0.98997515,0.047459096,0.889457,0.19570103,0.70189345,0.41195515,0.4692059,0.6478877,0.24340093,0.86773616,0.22276595,0.6710185,0.44489023,0.43607748,0.6793318,0.21542338,0.8736919,0.05837342,0.9845302,2.8938055e-5,0.9870739,0.70998144,0.18870646,0.8949617,0.043756187,0.9916663,0.00077840686,0.97848135,0.06937885,0.8583537,0.234225,0.6581324,0.99662447,0.0037392974,0.9677692,0.08723506,0.8343655,0.2629856,0.6262295,0.4917099,0.38988078,0.72228706,0.17814416,0.80889606,0.2927961,0.5937676,0.52498347,0.35768157,0.7515869,0.15340438,0.9219595,0.02659282,0.99802244,0.0055898726,0.3261128,0.7797723,0.13019994,0.93886787,0.016939044,0.9998746,0.011644363,0.9491571,0.11549932,0.79805106,0.3052919,0.009425074,0.9995124,0.019862145,0.93354946,0.13761216,0.7706864,0.3363574,0.54732364,0.57167757,0.31338388,0.7909774,0.16133028,0.7421226,0.3681479,0.51410836,0.604435,0.28294086,0.8173805,0.10028705,0.95939,0.006970823,0.99872386,0.6367299,0.2534594,0.84237766,0.08119106,0.9715024,0.0025283992,0.9952444,0.035052836,0.90829706,0.17149496,0.73009354,0.38135946,0.00028964877,0.9895712,0.04831645,0.8881948,0.1972965,0.7000552,0.4139321,0.4672023,0.6498043,0.2416799,0.85219455,0.22443894,0.66913056,0.44688606,0.43408683,0.6812044,0.21377495,0.8750227,0.05743563,0.9850218,1.1384487e-5,0.98661643,0.71180177,0.1871379,0.8961897,0.04293853,0.9920274,0.0008944273,0.97789484,0.07040259,0.8569507,0.23592767,0.6562265,0.99685335,0.003988385,0.9670563,0.088371426,0.83287007,0.26475525,0.62428594,0.4937173,0.38792336,0.7240836,0.17661038,0.8073149,0.2946249,0.5917948,0.5269884,0.35575813,0.75331986,0.15196016,0.92303324,0.02595064,0.9981968,0.0058932006,0.3242319,0.78143394,0.12885171,0.93982625,0.016424775,0.9999155,0.01207906,0.9482714,0.116785794,0.79643667,0.3071426,0.5783471,0.9994197,0.020426273,0.9325459,0.1389983,0.7689962,0.33825582,0.5453246,0.57366383,0.31152284,0.79260767,0.11984652,0.7403641,0.37008554,0.5121014,0.6063975,0.28113404,0.8189292,0.09908417,0.96017885,0.0066407323,0.99857646,0.024465263,0.25171477,0.843838,0.080097765,0.9721668,0.00233078,0.9949642,0.035795033,0.90713495,0.17301115,0.7283093,0.38331068,0.00022536516,0.98915935,0.049181104,0.88692635,0.19889686,0.69821364,0.41591048,0.4651993,0.6517185,0.23996305,0.8536167,0.22611639,0.6672399,0.44888276,0.43209726,0.68307406,0.21213111,0.87634754,0.056504935,0.98550564,1.8775463e-6,0.9861511,0.7136187,0.18557438,0.89741117,0.042128265,0.9923805,0.0010184646,0.97730064,0.071433276,0.855542,0.2376346,0.65431815,0.99707425,0.00424546,0.96633583,0.089514405,0.83136934,0.26652867,0.6223403,0.49572483,0.3859677,0.7258765,0.17508182,0.9055438,0.036816567,0.99457026,0.0020748377,0.9730581,0.07862157,0.13104358,0.77873397,0.32728696,0.5569029,0.5621325,0.3223538,0.78309107,0.12750944,0.94077754,0.015918344,0.9999484,0.012521595,0.9473785,0.11807844,0.79481757,0.30899644,0.5763636,0.54260457,0.34084207,0.7666904,0.14089301,0.93116975,0.96820986,0.0035880506,0.9964777,0.031596452,0.91378057,0.16429508,0.7386017,0.37202525,0.5100943,0.6083583,0.27933073,0.82047284,0.097887725,0.96096027,0.006318599,0.9984211,0.025089413,0.9244826,0.15000483,0.7556703,0.35314572,0.52971464,0.5891092,0.67219424,0.2217251,0.86858314,0.06199962,0.9825921,0.00016912818,0.9887396,0.05005303,0.8856517,0.20050207,0.6963689,0.4178902,0.4631968,0.65363026,0.23825037,0.8550333,0.07180616,0.97708476,0.001065135,0.9925057,0.04183823,0.89784956,0.839995,0.2563002,0.63359183,0.48408797,0.39733034,0.71543217,0.18401593,0.89862627,0.04132536,0.99272573,0.0011505783,0.97669876,0.072470844,0.8541275,0.23934573,0.6524073,0.46447802,0.41662332,0.6975496,0.19947442,0.886468,0.049494296,0.01896283,0.9996457,0.010065347,0.95245445,0.11067045,0.8041377,0.2982924,0.58784485,0.53099686,0.35191828,0.7567734,0.14908859,0.92516,0.024689168,0.99852145,0.006523788,0.96046114,0.09865251,0.8194858,0.28048417,0.60710394,0.5113786,0.37078387,0.28983417,0.8114525,0.10491371,0.95632684,0.008296758,0.99921024,0.021577656,0.93051785,0.14178804,0.7656029,0.3420604,0.5413245,0.5776329,0.3078099,0.7958541,0.11725062,0.94795066,0.012237519,0.99992824,0.01624149,0.9401697,0.1283676,0.1912637,0.707019,0.406432,0.47481364,0.64251316,0.24823755,0.84674203,0.07793149,0.9734725,0.0019595623,0.99437976,0.037301898,0.90479106,0.17605925,0.7247297,0.3872188,0.49444032,0.62358546,0.26539353,0.8323302,0.08878231,0.9667977,0.9906142,0.0004966259,0.9800811,0.066551775,0.8622478,0.22948447,0.6634506,0.4528786,0.42812142,0.68680453,0.20885742,0.87897885,0.05466506,0.9864497,7.033348e-6,0.98519695,0.05709961,0.87550056,0.21318239,0.6818781,0.43337014,0.44760507,0.66845,0.74671733,0.15747434,0.91891986,0.028429985,0.99749196,0.0047835708,0.9648724,0.09182021,0.82835186,0.27008682,0.6184432,0.49974006,0.38206196,0.72945136,0.1720404,0.9078793,0.03531927,0.9951444,0.0024563074,0.9717426,0.08079654,0.8429042,0.7753915,0.3310606,0.55291194,0.56611454,0.3186063,0.7863916,0.12484294,0.9426589,0.014928848,0.99999,0.013430297,0.94557106,0.12068218,0.79156506,0.3127133,0.57239306,0.5466038,0.33704084,0.7700782,0.1381107,0.9331888,0.020064414,0.0031239092,0.995986,0.033016264,0.9115132,0.16728154,0.73506546,0.37591085,0.50607955,0.61227465,0.27573484,0.8235445,0.09551436,0.9625008,0.005698204,0.9980861,0.02636066,0.922347,0.15288359,0.75221145,0.35698858,0.5257056,0.5930572,0.29345435,0.21839818,0.87128437,0.06007716,0.98362684,8.08239e-5,0.98787653,0.05181861,0.8830837,0.20372692,0.69267,0.42185354,0.45919365,0.65744627,0.23483774,0.85784906,0.06974676,0.978271,0.00081926584,0.99179727,0.043460876,0.8954047,0.18814096,0.25981408,0.6297183,0.48810166,0.39340398,0.7190486,0.18091434,0.9010372,0.039741755,0.9933922,0.0014388859,0.9754719,0.07456663,0.8512815,0.24278063,0.6485782,0.46848425,0.412667,0.7012318,0.19627509,0.88900316,0.047767043,0.9898306,0.9997807,0.010882765,0.950731,0.11320233,0.80094093,0.3019729,0.58388925,0.53500336,0.34808797,0.76021045,0.14623967,0.9272593,0.023458362,0.99881387,0.007186204,0.9588814,0.10106009,0.8163868,0.2840988,0.60317844,0.51539236,0.3669092,0.28619766,0.81458354,0.10246557,0.95795333,0.007584214,0.9989685,0.022759914,0.928462,0.14460087,0.7621925,0.34587508,0.5373217,0.5815969,0.30410933,0.79908144,0.114679426,0.94972,0.011370361,0.99984413,0.017272145,0.9382509,0.13106576,0.77870667,0.7033574,0.41037932,0.47080433,0.64635724,0.2447766,0.8496237,0.07579243,0.9747477,0.0016205013,0.99376357,0.038838595,0.902421,0.17912826,0.7211357,0.3911342,0.49042553,0.6274721,0.2618553,0.8353194,0.08651146,0.9682214,0.0035841465,0.0006916523,0.9789436,0.068567276,0.8594686,0.23287001,0.6596507,0.45687747,0.4241502,0.690523,0.20560247,0.88158584,0.052853882,0.9873625,4.4435263e-5,0.98421156,0.058977216,0.8728372,0.21648055,0.67813206,0.4373517,0.44361365,0.67222506,0.75020176,0.15456033,0.92109835,0.027110547,0.9978776,0.0053536296,0.963379,0.09415233,0.8253132,0.2736598,0.61453843,0.5037553,0.37816384,0.7330115,0.16902018,0.91018856,0.03385195,0.99568665,0.0028698444,0.97039664,0.082998544,0.83997095,0.25632888,0.33484513,0.54891753,0.5700924,0.31487048,0.7896737,0.12220064,0.94451165,0.013970643,0.9999993,0.014370352,0.9437349,0.12331042,0.78829384,0.31644225,0.5684178,0.55060005,0.3332501,0.77344847,0.13535175,0.93518007,0.01895386,0.9996469,0.9954622,0.034466207,0.90921926,0.17028946,0.7315141,0.37980446,0.5020644,0.6161837,0.27215338,0.82659537,0.09316704,0.96401155,0.005109668,0.9977191,0.027662456,0.92018425,0.15578476,0.7487364,0.36084068,0.52169484,0.5969993,0.2898044,0.21508941,0.8739617,0.058183044,0.98463035,2.4735928e-5,0.986982,0.053613096,0.880491,0.20697087,0.6889586,0.42582196,0.45519313,0.66125214,0.23144221,0.8606418,0.06771511,0.9794264,0.000605613,0.9910571,0.045112938,0.8929344,0.19128951,0.7069891,0.6258364,0.49211615,0.3894845,0.72265095,0.17783332,0.90342224,0.03818783,0.9940269,0.0017593801,0.97421443,0.0766899,0.8484129,0.24623206,0.64473957,0.47249252,0.40871632,0.704901,0.19309536,0.8915132,0.046068937,0.9906205,0.0004980862,0.011731714,0.9489784,0.115759194,0.7977247,0.30566618,0.5799282,0.5390076,0.34426743,0.76363075,0.14341354,0.9293312,0.022258282,0.9990742,0.0078804195,0.957272,0.10349342,0.81326747,0.2877274,0.5992463,0.51940525,0.36304313,0.7467459,0.8176943,0.10004309,0.95955026,0.00690338,0.99869466,0.023972929,0.9263786,0.14743662,0.7587651,0.3496998,0.53331643,0.5855557,0.30042142,0.8022895,0.112133056,0.95146036,0.010534704,0.9997277,0.018333972,0.93630385,0.13378769,0.7753641,0.3310915,0.4143324,0.4667969,0.6501919,0.24133208,0.8524828,0.0736807,0.9759923,0.0013135672,0.9931154,0.040405005,0.90002507,0.18221796,0.7175274,0.3950566,0.48641133,0.6313505,0.25833243,0.83828706,0.08426729,0.9696149,0.0031202435,0.9959818,0.9777752,0.07061064,0.8566661,0.23627278,0.6558405,0.46087915,0.4201839,0.6942292,0.20236653,0.88416815,0.051071554,0.9882438,0.00011405349,0.9831949,0.060883284,0.87014973,0.21979699,0.6743746,0.44133732,0.43962586,0.67598903,0.21837106,0.15166858,0.92324966,0.025821596,0.99823105,0.005955577,0.9618557,0.09651065,0.8222535,0.27724737,0.6106263,0.5077703,0.37427357,0.73655653,0.16602129,0.9124713,0.032414675,0.996197,0.0033154786,0.9690204,0.08522743,0.83701575,0.25984287,0.33864033,0.54491997,0.5740657,0.31114656,0.79293704,0.11958271,0.94633573,0.013043791,0.9999764,0.015341729,0.9418701,0.12596291,0.7850039,0.32018304,0.5644381,0.554593,0.32947013,0.7768012,0.13261628,0.93714315,0.01787433,0.99978167,0.01088956,0.03594616,0.906899,0.17331862,0.7279477,0.38370582,0.49804917,0.6200853,0.26858664,0.8296251,0.09084597,0.96549237,0.0045530796,0.99731994,0.02899471,0.9179944,0.15870813,0.7452452,0.36470175,0.5176827,0.6009351,0.28616798,0.81460905,0.8766149,0.05631745,0.9856026,9.23872e-7,0.98605597,0.055436373,0.8778738,0.21023375,0.685235,0.42979515,0.4511955,0.66504765,0.22806397,0.8634113,0.06571135,0.9805509,0.00042414665,0.9902853,0.046794325,0.89043874,0.19445798,0.7033274,0.62194633,0.49613112,0.38557214,0.7262389,0.1747731,0.90578127,0.03666368,0.9946298,0.0021119714,0.9729264,0.078840435,0.8455218,0.24969989,0.6408916,0.47650254,0.4047715,0.70855695,0.18993542,0.893998,0.044400126,0.9913787,0.00069338083,0.97893417,0.94719696,0.11834079,0.7944893,0.30937198,0.57596207,0.54300934,0.34045696,0.76703393,0.14061043,0.93137527,0.021089017,0.9993024,0.008606344,0.95563316,0.10595229,0.810128,0.29136965,0.59530777,0.5234168,0.35918587,0.7502302,0.1545366,0.097646385,0.9611175,0.006254375,0.99838865,0.025216669,0.92426765,0.15029511,0.755321,0.35353416,0.52930903,0.58950895,0.29674637,0.8054781,0.10961172,0.95317155,0.0097305775,0.9995792,0.019426823,0.9343287,0.13653326,0.77200377,0.33487612,0.41829103,0.4627916,0.65401685,0.23790428,0.85531926,0.0715965,0.97720623,0.0010387897,0.99243546,0.0420011,0.8976033,0.18532816,0.71390504,0.39898577,0.48239803,0.6352205,0.25482517,0.8412329,0.082049936,0.97097814,0.002688378,0.99545777,0.034478188,0.072681665,0.8538406,0.23969257,0.6520203,0.46488333,0.41622272,0.6979228,0.19914979,0.88672566,0.049318194,0.98909366,0.00021594763,0.9821471,0.06281763,0.8674385,0.22313151,0.6706058,0.44532672,0.43564194,0.6797416,0.21506241,0.8739835,0.9253737,0.024563223,0.99855244,0.006589383,0.9603026,0.09889498,0.8191731,0.2808493,0.606707,0.5117848,0.37039143,0.7400863,0.16304392,0.91472745,0.031007588,0.99667525,0.0037931204,0.96761394,0.08748305,0.83403885,0.26337236,0.6258046,0.54091954,0.5780343,0.30743486,0.79618156,0.116989315,0.948131,0.0121483505,0.9999212,0.016344368,0.9399768,0.12863955,0.7816957,0.3239354,0.5604543,0.5585825,0.32570115,0.7801361,0.12990454,0.9390781,0.016825885,0.9998842,0.011738777,0.948964,0.9045524,0.17636886,0.72436666,0.38761467,0.49403402,0.6239791,0.2650348,0.8326337,0.08855131,0.96694314,0.0040284097,0.99688876,0.030357331,0.91577756,0.16165346,0.74173826,0.36857152,0.5136694,0.6048644,0.28254536,0.8177197,0.10002339,0.054480463,0.98654354,9.328127e-6,0.9850987,0.05728832,0.8752321,0.21351528,0.68149954,0.43377286,0.447201,0.6688325,0.22470331,0.8661573,0.063735604,0.9816444,0.00027489662,0.9894818,0.04850495,0.8879179,0.19764614,0.6996527,0.41436476,0.5001464,0.38166717,0.72981226,0.17173383,0.9081142,0.035169423,0.99520075,0.0024966896,0.9716078,0.08101812,0.8426084,0.25318387,0.63703454,0.48051408,0.40083286,0.7121995,0.18679547,0.8964574,0.04276067,0.9921053,0.00092086196,0.97776556,0.9453865,0.12094703,0.79123497,0.3130901,0.57199097,0.54700834,0.33665675,0.77041996,0.13783047,0.9333916,0.019950628,0.99949825,0.009363949,0.95396495,0.108436584,0.8069684,0.29502535,0.5913631,0.52742684,0.35533774,0.75369835,0.15164503,0.9232671,0.96265507,0.0056371987,0.99805045,0.026491016,0.9221294,0.15317616,0.75186056,0.35737795,0.5252998,0.5934564,0.29308438,0.8086469,0.10711557,0.95485353,0.008958101,0.99939835,0.020550668,0.9323255,0.13930228,0.7686259,0.3386714,0.5448873,0.4587887,0.65783185,0.23449337,0.8581327,0.069539905,0.9783893,0.00079616904,0.99172384,0.043626696,0.8951559,0.18845865,0.71026886,0.40292147,0.47838587,0.6390817,0.25133368,0.8441566,0.079859525,0.972311,0.0022886097,0.99490184,0.03595838,0.074780256,0.8509923,0.24312913,0.6481902,0.46888977,0.41226697,0.70160365,0.19595245,0.88925827,0.04759386,0.9899119,0.00035005808,0.98106813,0.064780205,0.86470354,0.22648388,0.666826,0.44931963,0.4316622,0.68348265,0.21177217,0.8766365,0.05630234,0.023335516,0.9988417,0.0072550178,0.95871985,0.10130516,0.8160721,0.28446537,0.6027808,0.5157985,0.3665176,0.7436006,0.16008827,0.9169569,0.02963072,0.9971215,0.00430274,0.9661772,0.08976531,0.8310404,0.2669171,0.6219145,0.49616396,0.58199775,0.30373555,0.799407,0.11442062,0.9498974,0.011284351,0.9998338,0.017378181,0.93805516,0.13134012,0.77836925,0.32769912,0.5564666,0.5625682,0.3219434,0.7834529,0.12721664,0.9409847,0.015808582,0.99995446,0.012619466,0.94718224,0.9021797,0.17943999,0.7207712,0.39153078,0.4900193,0.62786496,0.2614981,0.83562076,0.08628315,0.96836376,0.0035357475,0.9964255,0.03175026,0.9135339,0.16462067,0.7382157,0.37244982,0.50965524,0.608787,0.27893677,0.8208098,0.097626895,0.9611302,0.9874531,5.0008297e-5,0.9841101,0.059168816,0.87256634,0.21681532,0.6777524,0.43775484,0.44320995,0.67260647,0.22136039,0.86887974,0.061787963,0.9827068,0.0001578927,0.98864675,0.05024472,0.88537204,0.2008538,0.69596493,0.4183234,0.46275887,0.37776983,0.7333709,0.16871575,0.9104207,0.033705145,0.99573976,0.002913475,0.9702588,0.083222866,0.8396729,0.25668377,0.63316864,0.4845269,0.3969006,0.71582836,0.1836757,0.8988912,0.04115072,0.9928001,0.0011805296,0.9765661,0.07269871,0.123577714,0.7879617,0.31682023,0.5680153,0.55100423,0.3328671,0.7737886,0.13507387,0.93538,0.018843204,0.99966204,0.010153204,0.9522674,0.11094612,0.803789,0.29869428,0.58741254,0.53143513,0.3514989,0.7571502,0.1487759,0.92539096,0.02455306,0.005051911,0.9976802,0.027795881,0.9199639,0.15607956,0.7483838,0.36123097,0.5212889,0.59739786,0.2894358,0.81179595,0.104644716,0.9565062,0.008217305,0.9991853,0.021705449,0.9302944,0.14209455,0.7652307,0.34247708,0.5408868,0.5780667,0.6616367,0.23109958,0.8609231,0.06751108,0.9795416,0.00058576465,0.99098045,0.045281738,0.892683,0.19160923,0.7066192,0.40686342,0.47437507,0.642934,0.24785826,0.8470583,0.077696204,0.97361344,0.0019209385,0.99431396,0.037468493,0.90453315,0.8481214,0.24658224,0.64435065,0.47289822,0.40831685,0.70527154,0.19277468,0.8917658,0.045898736,0.99069864,0.00051638484,0.9799582,0.06677085,0.86194503,0.2298539,0.6630355,0.4533158,0.42768687,0.6872118,0.2085005,0.8792652,0.054465592,0.022138566,0.9990988,0.007952422,0.95710754,0.10374108,0.81295073,0.28809533,0.59884804,0.5198112,0.36265242,0.7470992,0.15715456,0.9191594,0.028284192,0.9975357,0.0048443675,0.96471053,0.09207398,0.8280206,0.27047688,0.6180165,0.5001792,0.38163528,0.30004895,0.8026131,0.111876786,0.9516348,0.010451883,0.9997142,0.018443137,0.93610525,0.13406447,0.7750249,0.33147398,0.5524752,0.5665498,0.31819713,0.78675145,0.12455279,0.94286287,0.014822543,0.99999255,0.013531566,0.9453716,0.12096843,0.18253177,0.7171614,0.3954539,0.4860052,0.63174254,0.25797683,0.83858615,0.084041685,0.9697543,0.003075093,0.99593025,0.033173382,0.91126364,0.16760945,0.7346778,0.3763363,0.50564045,0.6127025,0.2753424,0.82387924,0.09525636,0.96266747,0.98833126,0.00012290478,0.9830903,0.061077744,0.8698765,0.2201336,0.6739937,0.44174084,0.43922254,0.67636925,0.2180354,0.87157834,0.059868604,0.98373806,7.31051e-5,0.9877802,0.052013457,0.8828013,0.20408076,0.6922647,0.42228732,0.458756,0.657863,0.23446554,0.8581556,0.069523215,0.97839886,0.0007943213,0.9917179,0.043640107,0.89513576,0.18848431,0.7102391,0.40295365,0.5445153,0.57446754,0.31077042,0.7932663,0.11931917,0.94651866,0.0129517615,0.9999722,0.015441775,0.94167984,0.12623265,0.78467,0.3205622,0.5640352,0.5549969,0.3290882,0.77713954,0.13234079,0.93734026,0.017766833,0.9997935,0.010974079,0.9505407,0.11348075,0.80059016,0.3023762,0.5834563,0.5354414,0.34766963,0.7605853,0.14592946,0.92748725,0.023325622,0.9988439,0.007260591,0.9587068,0.101324975,0.81604666,0.284495,0.6027487,0.5158313,0.36648598,0.7436293,0.16006422,0.876882,0.05613026,0.98569924,2.9802322e-7,0.98596054,0.05562246,0.8776075,0.21056497,0.6848576,0.43019745,0.45079115,0.66543114,0.22772312,0.8636902,0.065510154,0.98066294,0.00040757656,0.9902054,0.046966106,0.89018476,0.1947797,0.7029562,0.41081136,0.47036594,0.6467771,0.24439907,0.8499375,0.07556012,0.97488534,0.0015853643,0.9936942,0.03900844,0.9021603,0.17946517,0.72074175,0.39156282,0.48998645,0.62789667,0.26146924,0.8356451,0.08626473,0.9683753,0.0035318434,0.9964216,0.031761765,0.94701505,0.11860341,0.79416084,0.30974767,0.57556045,0.5434142,0.34007192,0.7673774,0.14032805,0.9315806,0.02097243,0.9993236,0.0086815655,0.9554657,0.10620254,0.8098091,0.29173896,0.5949089,0.52382267,0.35879606,0.75058186,0.15424296,0.921335,0.026968092,0.9979178,0.005417913,0.96321386,0.09440899,0.82497954,0.27405146,0.61411095,0.5041944,0.377738,0.73339987,0.16869116,0.9104395,0.033693284,0.99574405,0.0029170215,0.9702476,0.083240986,0.83964884,0.25671244,0.633137,0.48455968,0.46238643,0.6544033,0.23755834,0.855605,0.07138714,0.97732735,0.0010127723,0.9923649,0.042164236,0.8973568,0.18564403,0.7135377,0.39938372,0.48199198,0.63561165,0.25447112,0.8415297,0.081827044,0.9711144,0.002646476,0.995403,0.034626603,0.9089668,0.1706197,0.73112476,0.38023078,0.5016253,0.61661077,0.27176258,0.8269278,0.09291193,0.964175,0.005047232,0.99767697,0.02780667,0.9199461,0.1561034,0.7483553,0.3612625,0.5212561,0.59743005,0.28940603,0.8118216,0.10462463,0.92558706,0.024437606,0.9985832,0.0066553056,0.9601438,0.09913769,0.81886023,0.2812146,0.60631,0.51219094,0.36999905,0.74044263,0.16274384,0.9149543,0.030866861,0.99672186,0.003843218,0.96746993,0.087712795,0.8337364,0.26373035,0.62541133,0.49255523,0.38905627,0.72304404,0.17749763,0.9036815,0.038019687,0.99409443,0.0017963648,0.9740751,0.07692376,0.8480978,0.24661055,0.6443192,0.47293097,0.4082846,0.70530146,0.19274879,0.89178616,0.045884997,0.99070495,0.00051787496,0.979949,0.06678721,0.9043135,0.17667869,0.7240035,0.38801062,0.49362776,0.6243727,0.2646762,0.8329369,0.08832058,0.9670882,0.00397709,0.99684334,0.030496925,0.9155518,0.16195273,0.74138254,0.3689636,0.5132632,0.6052617,0.28217956,0.81803334,0.099779725,0.9597231,0.0068308413,0.9986627,0.024107456,0.92614913,0.14774814,0.75838923,0.35011867,0.5328783,0.58598834,0.30001885,0.80263925,0.1118561,0.9516489,0.010445207,0.99971306,0.018451959,0.93608916,0.13408682,0.7749975,0.33150488,0.5524426,0.5665823,0.38127244,0.73017305,0.17142746,0.9083488,0.035019875,0.9952568,0.0025373995,0.9714726,0.08124,0.84231234,0.2535373,0.63664377,0.4809201,0.40043464,0.7125673,0.18647885,0.8967048,0.0425964,0.99217707,0.0009456873,0.9776455,0.07083577,0.8563582,0.23664597,0.65542316,0.46131694,0.41975042,0.6946337,0.20201379,0.884449,0.050878376,0.9883383,0.00012364984,0.9830818,0.06109345,0.8698544,0.22016081,0.67396295,0.44177344,0.43918997,0.67639995,0.21800831,0.87160033,0.059853047,0.96280897,0.005576521,0.99801445,0.02662167,0.9219115,0.15346894,0.7515095,0.35776746,0.524894,0.59385556,0.2927146,0.8089665,0.10686436,0.9550221,0.008881718,0.99937826,0.020666122,0.93212116,0.13958377,0.7682831,0.33905602,0.5444826,0.57449996,0.31074005,0.7932929,0.11929789,0.94653344,0.012944341,0.9999719,0.015449852,0.94166446,0.12625447,0.78464305,0.32059285,0.56400263,0.5550295,0.3290574,0.77716684,0.13231856,0.9373561,0.01775816,0.9997945,0.010980904,0.9505265,0.11350158,0.8507028,0.24347779,0.6478021,0.4692953,0.411867,0.7019754,0.19562998,0.88951313,0.04742101,0.989993,0.00036543608,0.98095727,0.06498036,0.8644254,0.2268241,0.66644293,0.44972384,0.43125972,0.68386054,0.21144027,0.8769036,0.05611515,0.98570704,2.682209e-7,0.98595285,0.05563751,0.877586,0.21059173,0.6848271,0.43022996,0.4507585,0.6654621,0.22769558,0.8637127,0.06549391,0.980672,0.00040626526,0.9901989,0.046979994,0.89016426,0.19480571,0.70292616,0.41084367,0.4703332,0.58239853,0.30336195,0.7997323,0.11416209,0.95007455,0.0111986995,0.9998232,0.017484546,0.9378592,0.13161471,0.77803165,0.32808062,0.5560629,0.56297123,0.32156378,0.78378755,0.12694597,0.94117606,0.015707403,0.9999598,0.012710333,0.9470003,0.11862463,0.7941343,0.30977803,0.575528,0.54344684,0.34004083,0.76740515,0.14030525,0.9315972,0.020963013,0.9993254,0.008687645,0.95545214,0.10622275,0.80978334,0.2917688,0.59487665,0.52385545,0.3587646,0.75061023,0.15421927,0.9213526,0.026957452,0.9875434,5.5909157e-5,0.9840083,0.059360683,0.87229526,0.21715027,0.6773725,0.438158,0.4428063,0.6729877,0.22102308,0.86915386,0.06159246,0.9828125,0.00014784932,0.9885605,0.05042237,0.885113,0.20117947,0.6955911,0.41872427,0.4623537,0.65443456,0.23753041,0.855628,0.071370244,0.9773371,0.0010106862,0.9923592,0.04217744,0.89733684,0.18566954,0.713508,0.3994159,0.48195916,0.63564324,0.2544425,0.8415537,0.08180907,0.9711254,0.0026431084,0.9953985,0.034638584,0.90894794,0.1706444,0.7876295,0.31719837,0.5676127,0.5514084,0.33248422,0.77412844,0.13479623,0.9355796,0.018732876,0.9996768,0.010234833,0.952094,0.111201465,0.8034662,0.29906628,0.5870124,0.5318407,0.35111097,0.7574985,0.14848685,0.92560434,0.024427474,0.9985857,0.0066606402,0.96013093,0.0991573,0.81883496,0.2812441,0.60627794,0.5122238,0.36996734,0.74047136,0.1627196,0.9149726,0.030855507,0.9967256,0.003847301,0.96745825,0.08773136,0.833712,0.2637593,0.62537956,0.49258804,0.38902426,0.66202116,0.23075712,0.86120415,0.06730732,0.97965646,0.0005662739,0.99090344,0.045450866,0.8924314,0.19192916,0.7062491,0.40726265,0.4739693,0.6433233,0.24750748,0.8473506,0.077478826,0.97374356,0.0018855035,0.9942527,0.03762296,0.9042942,0.17670372,0.72397417,0.38804263,0.4935949,0.6244045,0.26464725,0.8329614,0.08830196,0.96709996,0.0039729774,0.99683964,0.03050822,0.9155335,0.16197693,0.74135375,0.36899528,0.51323044,0.60529375,0.28215003,0.8180586,0.099760026,0.959736,0.006825447,0.999123,0.008024752,0.9569427,0.103989005,0.81263375,0.2884634,0.5984497,0.5202172,0.36226177,0.7474524,0.15685892,0.9193808,0.028149635,0.9975758,0.0049009323,0.96456045,0.09230909,0.8277138,0.2708379,0.61762166,0.5005855,0.38124055,0.7302022,0.17140272,0.90836775,0.035007805,0.99526125,0.0025407076,0.9714617,0.08125794,0.8422884,0.25356585,0.6366122,0.4809529,0.4004025,0.712597,0.18645328,0.8967248,0.042583168,0.99218285,0.00094771385,0.97763586,0.07085264,0.85633516,0.18284577,0.7167954,0.39585125,0.48559904,0.63213444,0.25762135,0.838885,0.08381638,0.9698933,0.0030302703,0.99587834,0.033319056,0.91103244,0.16791311,0.734319,0.37673002,0.5052342,0.6130983,0.27497953,0.82418865,0.09501794,0.96282136,0.0055716336,0.9980115,0.02663222,0.9218939,0.1534926,0.7514811,0.35779893,0.5248612,0.5938878,0.29268473,0.8089923,0.1068441,0.9550357,0.008875549,0.99937665,0.02067548,0.9321047,0.13960654,0.7682555,0.33908713,0.5444499,0.57453245,0.31070966,0.73727214,0.16541696,0.9129301,0.03212747,0.99629635,0.0034095347,0.9687382,0.085681766,0.83641505,0.26055592,0.6289016,0.4889469,0.39257812,0.7198083,0.18026388,0.9015416,0.03941208,0.9935285,0.001503706,0.9752097,0.07501143,0.8506794,0.24350598,0.64777076,0.46932805,0.4118347,0.70200545,0.19560394,0.88953376,0.04740706,0.98999953,0.00036668777,0.98094827,0.06499654,0.864403,0.22685158,0.666412,0.4497565,0.4312272,0.68389106,0.21141344,0.8769252,0.05610004,0.9857148,2.3841858e-7,0.9972353,0.029268026,0.91754794,0.15930244,0.74453676,0.36548424,0.51687056,0.6017309,0.2854337,0.81524026,0.10195336,0.958292,0.0074382126,0.9989135,0.023012757,0.92802566,0.14519608,0.7614722,0.3466796,0.5364785,0.5824309,0.30333173,0.79975855,0.114141196,0.95008886,0.011191785,0.9998223,0.017493129,0.9378433,0.13163692,0.7780044,0.32811144,0.5560303,0.56300384,0.32153314,0.78381455,0.12692413,0.94119155,0.015699238,0.9999602,0.012717694,0.9469856,0.11864588,0.7941078,0.2504037,0.6401117,0.4773143,0.40397388,0.7092953,0.18929833,0.89449775,0.044065952,0.99152833,0.0007368326,0.97870016,0.06899521,0.8588804,0.23358509,0.65884924,0.45771983,0.42331466,0.6913044,0.20491955,0.8821316,0.052476197,0.9875507,5.6415796e-5,0.9840001,0.05937621,0.8722733,0.21717733,0.6773418,0.43819058,0.44277367,0.6730185,0.22099584,0.86917603,0.061576694,0.9828211,0.00014704466,0.9885535,0.050436735,0.88509214,0.20120579,0.6955609,0.41875666,0.46232098,0.6544658,0.23750249,0.806121,0.109104514,0.95351434,0.009571701,0.9995452,0.01965177,0.9339255,0.13709179,0.77132154,0.33564338,0.5480761,0.5709294,0.31408536,0.79036236,0.12164739,0.9448981,0.013772905,0.99999714,0.014572293,0.9433446,0.123866886,0.78760266,0.3172289,0.5675802,0.5514411,0.3324533,0.7741559,0.13477382,0.93559575,0.018723994,0.99967796,0.010241449,0.95208,0.11122212,0.80344015,0.29909635,0.5869801,0.5318734,0.35107964,0.75752664,0.14846352,0.9256215,0.02441734,0.99858814,0.006665975,0.9819312,0.06321257,0.86688685,0.22380856,0.6698417,0.44613454,0.43483618,0.6804997,0.21439505,0.8745223,0.057787865,0.98483765,1.7046928e-5,0.9867896,0.053994626,0.87994194,0.20765632,0.68817556,0.42665815,0.45435116,0.6620522,0.23072943,0.86122686,0.0672909,0.97966576,0.0005647242,0.9908972,0.045464516,0.892411,0.191955,0.7062192,0.4072949,0.47393653,0.6433548,0.24747914,0.84737426,0.07746127,0.97375405,0.0018826723,0.99424773,0.037635475,0.9042749,0.17672879,0.7239448,0.3246962,0.55964756,0.5593894,0.32493973,0.7808088,0.12935862,0.93946624,0.016617477,0.99990106,0.011914462,0.9486057,0.1163007,0.7970451,0.30644542,0.5790936,0.5398505,0.34346426,0.76434875,0.1428214,0.9297639,0.022009522,0.99912494,0.008030623,0.9569294,0.10400903,0.8126081,0.28849316,0.5984175,0.52025,0.36223024,0.74748087,0.15683505,0.91939867,0.028138757,0.99757904,0.004905522,0.96454835,0.09232807,0.827689,0.2708671,0.6175897,0.50061834,0.38120866,0.73023134,0.17137799,0.8667102,0.063339144,0.9818619,0.00024861097,0.98931533,0.04885471,0.8874047,0.19829375,0.6989074,0.41516548,0.46595335,0.65099806,0.24060896,0.85308194,0.073239565,0.9762504,0.0012530386,0.9929749,0.040738612,0.8995173,0.18287113,0.7167658,0.39588338,0.48556623,0.6321661,0.25759265,0.83890915,0.08379817,0.96990454,0.0030266643,0.99587417,0.033330858,0.9110137,0.16793764,0.73428994,0.37676185,0.50520134,0.61313033,0.2749502,0.8242136,0.09499869,0.9628338,0.005566746,0.9980086,0.009521127,0.9536238,0.10894245,0.8063265,0.29576683,0.590564,0.52823824,0.35456005,0.7543982,0.15106255,0.92369914,0.02555409,0.99830145,0.0060863793,0.96153116,0.09701052,0.82160664,0.2780046,0.60980165,0.5086156,0.37345546,0.737301,0.16539258,0.9129486,0.032115906,0.99630034,0.0034133792,0.96872675,0.085700154,0.83639073,0.26058477,0.6288699,0.48897973,0.39254606,0.7198378,0.18023866,0.90156114,0.039399326,0.9935338,0.0015062392,0.97519946,0.07502872,0.85065603,0.24353415,0.6477394,0.40371874,0.47757402,0.6398621,0.250629,0.8447457,0.07941952,0.9725771,0.0022116005,0.9947854,0.03626159,0.90640706,0.17395914,0.7271949,0.38452825,0.49720374,0.6209058,0.26783752,0.8302604,0.09036061,0.9658003,0.00443995,0.99723184,0.029279113,0.9175298,0.15932646,0.74450815,0.36551583,0.5168377,0.601763,0.28540406,0.8152657,0.10193351,0.9583051,0.00743258,0.9989114,0.023022622,0.9280087,0.1452192,0.7614442,0.34671086,0.5364458,0.58246326,0.30330157,0.79978484,0.114120334,0.91740483,0.029355764,0.9972079,0.00440979,0.96588284,0.090230405,0.8304309,0.26763633,0.62112623,0.49697655,0.3847493,0.72699255,0.1741314,0.9062747,0.036346555,0.99475265,0.0021903217,0.97265124,0.07929671,0.8449102,0.25043213,0.6400802,0.47734708,0.4039417,0.7093251,0.18927261,0.89451796,0.04405248,0.99153435,0.00073862076,0.9786907,0.06901187,0.8588575,0.23361287,0.6588181,0.45775253,0.4232822,0.6913347,0.20489305,0.8821528,0.052461565,0.987558,5.6892633e-5,0.98399186,0.032035828,0.91307664,0.1652238,0.7375009,0.3732357,0.50884277,0.60958,0.27820817,0.8214327,0.09714505,0.9614437,0.0061217546,0.9983201,0.025482446,0.9238197,0.15089989,0.7545938,0.3543427,0.52846503,0.5903406,0.2959742,0.806147,0.10908404,0.95352817,0.009565324,0.9995438,0.01966089,0.9339092,0.13711438,0.771294,0.33567438,0.54804343,0.5709619,0.3140549,0.79038906,0.12162593,0.9449131,0.013765246,0.999997,0.01458016,0.94332945,0.12388852,0.7875758,0.31725946,0.5675477,0.48533913,0.39610556,0.7165611,0.18304682,0.8993807,0.040828496,0.9929369,0.001237005,0.97631955,0.07312125,0.85324275,0.24041477,0.6512146,0.46572673,0.41538936,0.6986989,0.19847494,0.88726103,0.0489527,0.98926854,0.00024151802,0.9819225,0.06322855,0.86686456,0.22383592,0.66981083,0.44616717,0.43480363,0.6805303,0.2143681,0.87454414,0.057772547,0.98484564,1.6778708e-5,0.9867821,0.054009438,0.8799206,0.20768297,0.68814516,0.42669064,0.45431846,0.66208327,0.2307018,0.86124957,0.10414776,0.95683706,0.008071214,0.99913836,0.021942914,0.9298799,0.14266247,0.7645415,0.34324855,0.5400769,0.5788692,0.3066549,0.7968623,0.116446406,0.9485054,0.0119638145,0.99990547,0.016559452,0.9395746,0.12920618,0.7809968,0.32472694,0.55961496,0.559422,0.32490897,0.780836,0.1293366,0.9394819,0.016609102,0.99990165,0.011921585,0.94859123,0.11632174,0.79701865,0.3064757,0.57906115,0.53988314,0.34343308,0.7643766,0.14279842,0.92978066,0.021999896,0.9991269,0.008036494,0.95691603,0.06717712,0.8613839,0.23053807,0.6622671,0.45412493,0.42688286,0.6879651,0.20784065,0.87979424,0.054097354,0.98673767,1.5228987e-5,0.9848931,0.05768189,0.87467283,0.2142086,0.6807115,0.43461096,0.44636038,0.669628,0.22399795,0.8667325,0.06332317,0.98187065,0.0002475977,0.9893086,0.048868865,0.88738394,0.19831994,0.6988772,0.41519782,0.46592063,0.65102935,0.24058089,0.8531052,0.07322249,0.9762604,0.0012507141,0.9929694,0.040751606,0.8994975,0.18289652,0.7167362,0.39591548,0.48553342,0.5673551,0.3174404,0.7874168,0.12401661,0.94323957,0.014626771,0.9999963,0.013719976,0.9450017,0.12149891,0.79054725,0.31387448,0.57115424,0.54784995,0.33585793,0.77113074,0.1372481,0.9338126,0.019714892,0.99953544,0.009527504,0.95360994,0.10896289,0.80630064,0.29579678,0.59053177,0.528271,0.35452867,0.7544265,0.15103903,0.92371655,0.02554372,0.9983041,0.0060914755,0.9615185,0.097029954,0.8215815,0.27803403,0.6097696,0.50864846,0.3734237,0.7373299,0.16536817,0.9129671,0.059483618,0.983943,5.9872866e-5,0.98760104,0.05237493,0.8822781,0.20473617,0.69151425,0.42309016,0.45794618,0.6586338,0.23377734,0.8587222,0.06911042,0.9786345,0.0007492006,0.99156994,0.04397273,0.89463735,0.18912038,0.7095015,0.40375096,0.47754124,0.63989365,0.25060058,0.8447695,0.07940176,0.9725878,0.002208531,0.99478066,0.036273867,0.9063879,0.17398402,0.7271657,0.3845602,0.4971709,0.62093765,0.26780844,0.8302851,0.09034181,0.9658122,0.004435569,0.9972284,0.02929017,0.9175118,0.113996774,0.79994035,0.30312294,0.58265495,0.53625196,0.34689584,0.7612785,0.14535618,0.9279082,0.023080945,0.9988985,0.007399231,0.95838284,0.10181594,0.8154166,0.28522855,0.60195327,0.5166435,0.36570305,0.7443386,0.15946874,0.9174229,0.029344678,0.99721134,0.004414141,0.9658709,0.09024921,0.8304063,0.2676654,0.62109435,0.49700937,0.38471735,0.7270218,0.17410651,0.9062938,0.036334276,0.9947574,0.0021933913,0.9726405,0.07931444,0.8448864,0.25046057,0.6400487,0.47737986,0.40390947,0.6475537,0.24370101,0.85051745,0.07513115,0.975139,0.001521349],"x":[-1.8110049e18,-5.2211715e32,-1.0442343e33,-1.5663515e33,-2.0884686e33,-2.6105856e33,-3.132703e33,-3.65482e33,-4.1769372e33,-4.6990542e33,-5.221171e33,-5.7432885e33,-6.265406e33,-6.787523e33,-7.30964e33,-7.831757e33,-8.3538744e33,-8.875992e33,-9.3981084e33,-9.920226e33,-1.0442342e34,-1.096446e34,-1.1486577e34,-1.2008694e34,-1.2530812e34,-1.3052929e34,-1.3575046e34,-1.4097162e34,-1.461928e34,-1.5141397e34,-1.5663514e34,-1.6185631e34,-1.6707749e34,-1.7229866e34,-1.7751983e34,-1.82741e34,-1.8796217e34,-1.9318334e34,-1.9840451e34,-2.0362569e34,-2.0884685e34,-2.1406803e34,-2.192892e34,-2.2451038e34,-2.2973154e34,-2.3495273e34,-2.4017389e34,-2.4539505e34,-2.5061623e34,-2.558374e34,-2.6105858e34,-2.6627974e34,-2.7150092e34,-2.7672208e34,-2.8194325e34,-2.8716443e34,-2.923856e34,-2.9760678e34,-3.0282794e34,-3.0804912e34,-3.1327028e34,-3.1849147e34,-3.2371263e34,-3.289338e34,-3.3415498e34,-3.3937614e34,-3.4459732e34,-3.4981848e34,-3.5503967e34,-3.6026083e34,-3.65482e34,-3.7070317e34,-3.7592434e34,-3.8114552e34,-3.8636668e34,-3.9158787e34,-3.9680903e34,-4.020302e34,-4.0725137e34,-4.1247253e34,-4.176937e34,-4.229149e34,-4.2813607e34,-4.3335725e34,-4.385784e34,-4.4379957e34,-4.4902076e34,-4.542419e34,-4.594631e34,-4.6468427e34,-4.6990545e34,-4.751266e34,-4.8034777e34,-4.8556896e34,-4.907901e34,-4.960113e34,-5.0123246e34,-5.0645365e34,-5.116748e34,-5.1689597e34,-5.2211716e34,-5.273383e34,-5.325595e34,-5.3778066e34,-5.4300185e34,-5.48223e34,-5.5344417e34,-5.5866536e34,-5.638865e34,-5.691077e34,-5.7432886e34,-5.7955005e34,-5.847712e34,-5.8999237e34,-5.9521355e34,-6.004347e34,-6.056559e34,-6.1087706e34,-6.1609825e34,-6.213194e34,-6.2654057e34,-6.3176175e34,-6.3698294e34,-6.4220407e34,-6.4742526e34,-6.5264645e34,-6.578676e34,-6.6308877e34,-6.6830995e34,-6.7353114e34,-6.7875227e34,-6.8397346e34,-6.8919464e34,-6.944158e34,-6.9963697e34,-7.0485815e34,-7.1007934e34,-7.1530047e34,-7.2052166e34,-7.2574284e34,-7.30964e34,-7.3618516e34,-7.4140635e34,-7.4662754e34,-7.5184867e34,-7.5706986e34,-7.6229104e34,-7.675122e34,-7.7273336e34,-7.7795455e34,-7.8317573e34,-7.8839687e34,-7.9361806e34,-7.9883924e34,-8.040604e34,-8.0928156e34,-8.1450275e34,-8.1972393e34,-8.2494507e34,-8.3016625e34,-8.353874e34,-8.406086e34,-8.458298e34,-8.510509e34,-8.562721e34,-8.614933e34,-8.667145e34,-8.719356e34,-8.771568e34,-8.82378e34,-8.875991e34,-8.928203e34,-8.980415e34,-9.032627e34,-9.084838e34,-9.13705e34,-9.189262e34,-9.241473e34,-9.293685e34,-9.345897e34,-9.398109e34,-9.45032e34,-9.502532e34,-9.554744e34,-9.606955e34,-9.659167e34,-9.711379e34,-9.7635905e34,-9.815802e34,-9.868014e34,-9.920226e34,-9.972437e34,-1.0024649e35,-1.0076861e35,-1.0129073e35,-1.0181284e35,-1.0233496e35,-1.0285708e35,-1.0337919e35,-1.0390131e35,-1.0442343e35,-1.0494554e35,-1.0546766e35,-1.0598978e35,-1.065119e35,-1.0703402e35,-1.0755613e35,-1.0807825e35,-1.0860037e35,-1.0912248e35,-1.096446e35,-1.1016672e35,-1.1068883e35,-1.1121095e35,-1.1173307e35,-1.1225518e35,-1.127773e35,-1.1329942e35,-1.1382154e35,-1.1434366e35,-1.1486577e35,-1.1538789e35,-1.1591001e35,-1.1643212e35,-1.1695424e35,-1.1747636e35,-1.1799847e35,-1.1852059e35,-1.1904271e35,-1.1956482e35,-1.2008694e35,-1.2060906e35,-1.2113118e35,-1.216533e35,-1.2217541e35,-1.2269753e35,-1.2321965e35,-1.2374176e35,-1.2426388e35,-1.24786e35,-1.2530811e35,-1.2583023e35,-1.2635235e35,-1.2687446e35,-1.2739659e35,-1.279187e35,-1.2844081e35,-1.2896294e35,-1.2948505e35,-1.3000717e35,-1.3052929e35,-1.310514e35,-1.3157352e35,-1.3209564e35,-1.3261775e35,-1.3313987e35,-1.3366199e35,-1.341841e35,-1.3470623e35,-1.3522834e35,-1.3575045e35,-1.3627258e35,-1.3679469e35,-1.3731681e35,-1.3783893e35,-1.3836104e35,-1.3888316e35,-1.3940528e35,-1.3992739e35,-1.4044951e35,-1.4097163e35,-1.4149374e35,-1.4201587e35,-1.4253798e35,-1.4306009e35,-1.4358222e35,-1.4410433e35,-1.4462645e35,-1.4514857e35,-1.4567068e35,-1.461928e35,-1.4671492e35,-1.4723703e35,-1.4775915e35,-1.4828127e35,-1.4880338e35,-1.4932551e35,-1.4984762e35,-1.5036973e35,-1.5089186e35,-1.5141397e35,-1.5193608e35,-1.5245821e35,-1.5298032e35,-1.5350244e35,-1.5402456e35,-1.5454667e35,-1.550688e35,-1.5559091e35,-1.5611302e35,-1.5663515e35,-1.5715726e35,-1.5767937e35,-1.582015e35,-1.5872361e35,-1.5924572e35,-1.5976785e35,-1.6028996e35,-1.6081208e35,-1.613342e35,-1.6185631e35,-1.6237844e35,-1.6290055e35,-1.6342266e35,-1.6394479e35,-1.644669e35,-1.6498901e35,-1.6551114e35,-1.6603325e35,-1.6655536e35,-1.6707748e35,-1.6759961e35,-1.6812173e35,-1.6864384e35,-1.6916595e35,-1.6968807e35,-1.7021018e35,-1.7073231e35,-1.7125443e35,-1.7177654e35,-1.7229865e35,-1.7282077e35,-1.733429e35,-1.7386501e35,-1.7438713e35,-1.7490924e35,-1.7543135e35,-1.7595347e35,-1.764756e35,-1.7699772e35,-1.7751983e35,-1.7804194e35,-1.7856406e35,-1.7908619e35,-1.796083e35,-1.8013042e35,-1.8065253e35,-1.8117464e35,-1.8169676e35,-1.822189e35,-1.82741e35,-1.8326312e35,-1.8378523e35,-1.8430735e35,-1.8482946e35,-1.853516e35,-1.858737e35,-1.8639582e35,-1.8691793e35,-1.8744005e35,-1.8796218e35,-1.884843e35,-1.890064e35,-1.8952852e35,-1.9005063e35,-1.9057275e35,-1.9109488e35,-1.91617e35,-1.921391e35,-1.9266122e35,-1.9318334e35,-1.9370547e35,-1.9422758e35,-1.947497e35,-1.9527181e35,-1.9579392e35,-1.9631604e35,-1.9683817e35,-1.9736028e35,-1.978824e35,-1.9840451e35,-1.9892663e35,-1.9944874e35,-1.9997087e35,-2.0049299e35,-2.010151e35,-2.0153721e35,-2.0205933e35,-2.0258146e35,-2.0310357e35,-2.0362569e35,-2.041478e35,-2.0466991e35,-2.0519203e35,-2.0571416e35,-2.0623627e35,-2.0675839e35,-2.072805e35,-2.0780262e35,-2.0832475e35,-2.0884686e35,-2.0936898e35,-2.0989109e35,-2.104132e35,-2.1093532e35,-2.1145745e35,-2.1197956e35,-2.1250168e35,-2.130238e35,-2.135459e35,-2.1406804e35,-2.1459015e35,-2.1511227e35,-2.1563438e35,-2.161565e35,-2.166786e35,-2.1720074e35,-2.1772285e35,-2.1824497e35,-2.1876708e35,-2.192892e35,-2.198113e35,-2.2033344e35,-2.2085555e35,-2.2137767e35,-2.2189978e35,-2.224219e35,-2.2294403e35,-2.2346614e35,-2.2398826e35,-2.2451037e35,-2.2503248e35,-2.255546e35,-2.2607673e35,-2.2659884e35,-2.2712096e35,-2.2764307e35,-2.2816518e35,-2.2868732e35,-2.2920943e35,-2.2973154e35,-2.3025366e35,-2.3077577e35,-2.3129789e35,-2.3182002e35,-2.3234213e35,-2.3286425e35,-2.3338636e35,-2.3390847e35,-2.344306e35,-2.3495272e35,-2.3547483e35,-2.3599695e35,-2.3651906e35,-2.3704117e35,-2.375633e35,-2.3808542e35,-2.3860754e35,-2.3912965e35,-2.3965176e35,-2.4017388e35,-2.40696e35,-2.4121812e35,-2.4174024e35,-2.4226235e35,-2.4278446e35,-2.433066e35,-2.4382871e35,-2.4435082e35,-2.4487294e35,-2.4539505e35,-2.4591717e35,-2.464393e35,-2.4696141e35,-2.4748353e35,-2.4800564e35,-2.4852775e35,-2.4904989e35,-2.49572e35,-2.5009411e35,-2.5061623e35,-2.5113834e35,-2.5166045e35,-2.5218259e35,-2.527047e35,-2.5322681e35,-2.5374893e35,-2.5427104e35,-2.5479318e35,-2.5531529e35,-2.558374e35,-2.5635952e35,-2.5688163e35,-2.5740374e35,-2.5792588e35,-2.58448e35,-2.589701e35,-2.5949222e35,-2.6001433e35,-2.6053644e35,-2.6105858e35,-2.615807e35,-2.621028e35,-2.6262492e35,-2.6314703e35,-2.6366917e35,-2.6419128e35,-2.647134e35,-2.652355e35,-2.6575762e35,-2.6627973e35,-2.6680187e35,-2.6732398e35,-2.678461e35,-2.683682e35,-2.6889032e35,-2.6941245e35,-2.6993457e35,-2.7045668e35,-2.709788e35,-2.715009e35,-2.7202302e35,-2.7254516e35,-2.7306727e35,-2.7358938e35,-2.741115e35,-2.7463361e35,-2.7515572e35,-2.7567786e35,-2.7619997e35,-2.7672208e35,-2.772442e35,-2.7776631e35,-2.7828845e35,-2.7881056e35,-2.7933267e35,-2.7985479e35,-2.803769e35,-2.8089901e35,-2.8142115e35,-2.8194326e35,-2.8246537e35,-2.8298749e35,-2.835096e35,-2.8403173e35,-2.8455385e35,-2.8507596e35,-2.8559808e35,-2.8612019e35,-2.866423e35,-2.8716444e35,-2.8768655e35,-2.8820866e35,-2.8873078e35,-2.892529e35,-2.8977502e35,-2.9029714e35,-2.9081925e35,-2.9134136e35,-2.9186348e35,-2.923856e35,-2.9290773e35,-2.9342984e35,-2.9395195e35,-2.9447407e35,-2.9499618e35,-2.955183e35,-2.9604043e35,-2.9656254e35,-2.9708465e35,-2.9760677e35,-2.9812888e35,-2.9865101e35,-2.9917313e35,-2.9969524e35,-3.0021735e35,-3.0073947e35,-3.0126158e35,-3.0178372e35,-3.0230583e35,-3.0282794e35,-3.0335006e35,-3.0387217e35,-3.043943e35,-3.0491642e35,-3.0543853e35,-3.0596064e35,-3.0648276e35,-3.0700487e35,-3.07527e35,-3.0804912e35,-3.0857123e35,-3.0909335e35,-3.0961546e35,-3.101376e35,-3.106597e35,-3.1118182e35,-3.1170393e35,-3.1222605e35,-3.1274816e35,-3.132703e35,-3.137924e35,-3.1431452e35,-3.1483663e35,-3.1535875e35,-3.1588086e35,-3.16403e35,-3.169251e35,-3.1744722e35,-3.1796934e35,-3.1849145e35,-3.1901358e35,-3.195357e35,-3.2005781e35,-3.2057992e35,-3.2110204e35,-3.2162415e35,-3.2214628e35,-3.226684e35,-3.2319051e35,-3.2371262e35,-3.2423474e35,-3.2475687e35,-3.2527899e35,-3.258011e35,-3.2632321e35,-3.2684533e35,-3.2736744e35,-3.2788957e35,-3.2841169e35,-3.289338e35,-3.2945591e35,-3.2997803e35,-3.3050016e35,-3.3102227e35,-3.3154439e35,-3.320665e35,-3.325886e35,-3.3311073e35,-3.3363284e35,-3.3415496e35,-3.3467707e35,-3.3519922e35,-3.3572134e35,-3.3624345e35,-3.3676556e35,-3.3728768e35,-3.378098e35,-3.383319e35,-3.38854e35,-3.3937613e35,-3.3989825e35,-3.4042036e35,-3.409425e35,-3.4146463e35,-3.4198674e35,-3.4250885e35,-3.4303097e35,-3.4355308e35,-3.440752e35,-3.445973e35,-3.4511942e35,-3.4564153e35,-3.4616365e35,-3.466858e35,-3.472079e35,-3.4773003e35,-3.4825214e35,-3.4877426e35,-3.4929637e35,-3.498185e35,-3.503406e35,-3.508627e35,-3.5138482e35,-3.5190694e35,-3.524291e35,-3.529512e35,-3.534733e35,-3.5399543e35,-3.5451754e35,-3.5503966e35,-3.5556177e35,-3.560839e35,-3.56606e35,-3.571281e35,-3.5765023e35,-3.5817238e35,-3.586945e35,-3.592166e35,-3.5973872e35,-3.6026083e35,-3.6078295e35,-3.6130506e35,-3.6182717e35,-3.623493e35,-3.628714e35,-3.633935e35,-3.6391563e35,-3.644378e35,-3.649599e35,-3.65482e35,-3.6600412e35,-3.6652624e35,-3.6704835e35,-3.6757046e35,-3.6809258e35,-3.686147e35,-3.691368e35,-3.696589e35,-3.7018107e35,-3.707032e35,-3.712253e35,-3.717474e35,-3.7226953e35,-3.7279164e35,-3.7331375e35,-3.7383587e35,-3.7435798e35,-3.748801e35,-3.754022e35,-3.7592436e35,-3.7644647e35,-3.769686e35,-3.774907e35,-3.780128e35,-3.7853493e35,-3.7905704e35,-3.7957916e35,-3.8010127e35,-3.806234e35,-3.811455e35,-3.8166765e35,-3.8218976e35,-3.8271188e35,-3.83234e35,-3.837561e35,-3.842782e35,-3.8480033e35,-3.8532244e35,-3.8584456e35,-3.8636667e35,-3.868888e35,-3.8741094e35,-3.8793305e35,-3.8845517e35,-3.8897728e35,-3.894994e35,-3.900215e35,-3.9054362e35,-3.9106573e35,-3.9158785e35,-3.9210996e35,-3.9263207e35,-3.9315423e35,-3.9367634e35,-3.9419845e35,-3.9472057e35,-3.952427e35,-3.957648e35,-3.962869e35,-3.9680902e35,-3.9733114e35,-3.9785325e35,-3.9837536e35,-3.9889748e35,-3.9941963e35,-3.9994174e35,-4.0046386e35,-4.0098597e35,-4.015081e35,-4.020302e35,-4.025523e35,-4.0307443e35,-4.0359654e35,-4.0411865e35,-4.0464077e35,-4.051629e35,-4.0568503e35,-4.0620715e35,-4.0672926e35,-4.0725137e35,-4.077735e35,-4.082956e35,-4.088177e35,-4.0933983e35,-4.0986194e35,-4.1038406e35,-4.109062e35,-4.1142832e35,-4.1195044e35,-4.1247255e35,-4.1299466e35,-4.1351678e35,-4.140389e35,-4.14561e35,-4.150831e35,-4.1560523e35,-4.1612734e35,-4.166495e35,-4.171716e35,-4.1769372e35,-4.1821584e35,-4.1873795e35,-4.1926007e35,-4.1978218e35,-4.203043e35,-4.208264e35,-4.2134852e35,-4.2187063e35,-4.223928e35,-4.229149e35,-4.23437e35,-4.2395913e35,-4.2448124e35,-4.2500335e35,-4.2552547e35,-4.260476e35,-4.265697e35,-4.270918e35,-4.2761392e35,-4.2813608e35,-4.286582e35,-4.291803e35,-4.297024e35,-4.3022453e35,-4.3074664e35,-4.3126876e35,-4.3179087e35,-4.32313e35,-4.328351e35,-4.333572e35,-4.3387937e35,-4.3440148e35,-4.349236e35,-4.354457e35,-4.359678e35,-4.3648993e35,-4.3701205e35,-4.3753416e35,-4.3805627e35,-4.385784e35,-4.391005e35,-4.396226e35,-4.4014477e35,-4.406669e35,-4.41189e35,-4.417111e35,-4.4223322e35,-4.4275534e35,-4.4327745e35,-4.4379956e35,-4.4432168e35,-4.448438e35,-4.453659e35,-4.4588806e35,-4.4641017e35,-4.469323e35,-4.474544e35,-4.479765e35,-4.4849862e35,-4.4902074e35,-4.4954285e35,-4.5006497e35,-4.5058708e35,-4.511092e35,-4.5163135e35,-4.5215346e35,-4.5267557e35,-4.531977e35,-4.537198e35,-4.542419e35,-4.5476403e35,-4.5528614e35,-4.5580825e35,-4.5633037e35,-4.568525e35,-4.5737464e35,-4.5789675e35,-4.5841886e35,-4.5894098e35,-4.594631e35,-4.599852e35,-4.605073e35,-4.6102943e35,-4.6155154e35,-4.6207366e35,-4.6259577e35,-4.6311792e35,-4.6364004e35,-4.6416215e35,-4.6468427e35,-4.6520638e35,-4.657285e35,-4.662506e35,-4.667727e35,-4.6729483e35,-4.6781695e35,-4.6833906e35,-4.688612e35,-4.6938333e35,-4.6990544e35,-4.7042755e35,-4.7094967e35,-4.714718e35,-4.719939e35,-4.72516e35,-4.7303812e35,-4.7356024e35,-4.7408235e35,-4.7460446e35,-4.751266e35,-4.7564873e35,-4.7617084e35,-4.7669296e35,-4.7721507e35,-4.777372e35,-4.782593e35,-4.787814e35,-4.7930352e35,-4.7982564e35,-4.8034775e35,-4.808699e35,-4.81392e35,-4.8191413e35,-4.8243625e35,-4.8295836e35,-4.8348047e35,-4.840026e35,-4.845247e35,-4.850468e35,-4.8556893e35,-4.8609104e35,-4.866132e35,-4.871353e35,-4.8765742e35,-4.8817954e35,-4.8870165e35,-4.8922376e35,-4.8974588e35,-4.90268e35,-4.907901e35,-4.913122e35,-4.9183433e35,-4.923565e35,-4.928786e35,-4.934007e35,-4.9392282e35,-4.9444494e35,-4.9496705e35,-4.9548917e35,-4.9601128e35,-4.965334e35,-4.970555e35,-4.975776e35,-4.9809977e35,-4.986219e35,-4.99144e35,-4.996661e35,-5.0018823e35,-5.0071034e35,-5.0123245e35,-5.0175457e35,-5.022767e35,-5.027988e35,-5.033209e35,-5.0384306e35,-5.0436518e35,-5.048873e35,-5.054094e35,-5.059315e35,-5.0645363e35,-5.0697574e35,-5.0749786e35,-5.0801997e35,-5.085421e35,-5.090642e35,-5.0958635e35,-5.1010846e35,-5.1063058e35,-5.111527e35,-5.116748e35,-5.121969e35,-5.1271903e35,-5.1324115e35,-5.1376326e35,-5.1428537e35,-5.148075e35,-5.153296e35,-5.1585175e35,-5.1637387e35,-5.16896e35,-5.174181e35,-5.179402e35,-5.1846232e35,-5.1898444e35,-5.1950655e35,-5.2002866e35,-5.2055078e35,-5.210729e35,-5.2159504e35,-5.2211716e35,-5.2263927e35,-5.231614e35,-5.236835e35,-5.242056e35,-5.2472772e35,-5.2524984e35,-5.2577195e35,-5.2629406e35,-5.2681618e35,-5.2733833e35,-5.2786045e35,-5.2838256e35,-5.2890467e35,-5.294268e35,-5.299489e35,-5.30471e35,-5.3099313e35,-5.3151524e35,-5.3203735e35,-5.3255947e35,-5.3308162e35,-5.3360373e35,-5.3412585e35,-5.3464796e35,-5.3517008e35,-5.356922e35,-5.362143e35,-5.367364e35,-5.3725853e35,-5.3778064e35,-5.3830276e35,-5.388249e35,-5.3934702e35,-5.3986914e35,-5.4039125e35,-5.4091336e35,-5.4143548e35,-5.419576e35,-5.424797e35,-5.430018e35,-5.4352393e35,-5.4404605e35,-5.445682e35,-5.450903e35,-5.4561243e35,-5.4613454e35,-5.4665665e35,-5.4717877e35,-5.477009e35,-5.48223e35,-5.487451e35,-5.4926722e35,-5.4978934e35,-5.5031145e35,-5.508336e35,-5.513557e35,-5.5187783e35,-5.5239994e35,-5.5292206e35,-5.5344417e35,-5.539663e35,-5.544884e35,-5.550105e35,-5.5553262e35,-5.5605474e35,-5.565769e35,-5.57099e35,-5.576211e35,-5.5814323e35,-5.5866535e35,-5.5918746e35,-5.5970957e35,-5.602317e35,-5.607538e35,-5.612759e35,-5.6179803e35,-5.6232018e35,-5.628423e35,-5.633644e35,-5.6388652e35,-5.6440863e35,-5.6493075e35,-5.6545286e35,-5.6597498e35,-5.664971e35,-5.670192e35,-5.675413e35,-5.6806347e35,-5.685856e35,-5.691077e35,-5.696298e35,-5.7015192e35,-5.7067404e35,-5.7119615e35,-5.7171826e35,-5.7224038e35,-5.727625e35,-5.732846e35,-5.7380676e35,-5.7432887e35,-5.74851e35,-5.753731e35,-5.758952e35,-5.7641733e35,-5.7693944e35,-5.7746155e35,-5.7798367e35,-5.785058e35,-5.790279e35,-5.7955005e35,-5.8007216e35,-5.8059427e35,-5.811164e35,-5.816385e35,-5.821606e35,-5.8268273e35,-5.8320484e35,-5.8372696e35,-5.8424907e35,-5.847712e35,-5.8529334e35,-5.8581545e35,-5.8633756e35,-5.8685968e35,-5.873818e35,-5.879039e35,-5.88426e35,-5.8894813e35,-5.8947025e35,-5.8999236e35,-5.9051447e35,-5.910366e35,-5.9155874e35,-5.9208085e35,-5.9260297e35,-5.9312508e35,-5.936472e35,-5.941693e35,-5.9469142e35,-5.9521353e35,-5.9573565e35,-5.9625776e35,-5.9677988e35,-5.9730203e35,-5.9782414e35,-5.9834626e35,-5.9886837e35,-5.993905e35,-5.999126e35,-6.004347e35,-6.0095682e35,-6.0147894e35,-6.0200105e35,-6.0252316e35,-6.030453e35,-6.0356743e35,-6.0408954e35,-6.0461166e35,-6.0513377e35,-6.056559e35,-6.06178e35,-6.067001e35,-6.0722223e35,-6.0774434e35,-6.0826645e35,-6.087886e35,-6.0931072e35,-6.0983283e35,-6.1035495e35,-6.1087706e35,-6.1139917e35,-6.119213e35,-6.124434e35,-6.129655e35,-6.1348763e35,-6.1400974e35,-6.145319e35,-6.15054e35,-6.1557612e35,-6.1609824e35,-6.1662035e35,-6.1714246e35,-6.1766458e35,-6.181867e35,-6.187088e35,-6.192309e35,-6.1975303e35,-6.202752e35,-6.207973e35,-6.213194e35,-6.2184153e35,-6.2236364e35,-6.2288575e35,-6.2340787e35,-6.2392998e35,-6.244521e35,-6.249742e35,-6.2549632e35,-6.2601843e35,-6.265406e35,-6.270627e35,-6.275848e35,-6.2810693e35,-6.2862904e35,-6.2915116e35,-6.2967327e35,-6.301954e35,-6.307175e35,-6.312396e35,-6.3176172e35,-6.3228388e35,-6.32806e35,-6.333281e35,-6.338502e35,-6.3437233e35,-6.3489444e35,-6.3541656e35,-6.3593867e35,-6.364608e35,-6.369829e35,-6.37505e35,-6.3802717e35,-6.3854928e35,-6.390714e35,-6.395935e35,-6.4011562e35,-6.4063773e35,-6.4115985e35,-6.4168196e35,-6.4220407e35,-6.427262e35,-6.432483e35,-6.4377045e35,-6.4429257e35,-6.448147e35,-6.453368e35,-6.458589e35,-6.4638102e35,-6.4690314e35,-6.4742525e35,-6.4794736e35,-6.4846948e35,-6.489916e35,-6.4951374e35,-6.5003586e35,-6.5055797e35,-6.510801e35,-6.516022e35,-6.521243e35,-6.5264643e35,-6.5316854e35,-6.5369065e35,-6.5421277e35,-6.5473488e35,-6.5525703e35,-6.5577915e35,-6.5630126e35,-6.5682337e35,-6.573455e35,-6.578676e35,-6.583897e35,-6.5891183e35,-6.5943394e35,-6.5995606e35,-6.6047817e35,-6.6100032e35,-6.6152244e35,-6.6204455e35,-6.6256666e35,-6.6308878e35,-6.636109e35,-6.64133e35,-6.646551e35,-6.651772e35,-6.6569934e35,-6.6622146e35,-6.667436e35,-6.672657e35,-6.677878e35,-6.683099e35,-6.68832e35,-6.6935414e35,-6.698763e35,-6.7039845e35,-6.7092056e35,-6.714427e35,-6.719648e35,-6.724869e35,-6.73009e35,-6.735311e35,-6.7405324e35,-6.7457535e35,-6.750975e35,-6.756196e35,-6.761417e35,-6.766638e35,-6.771859e35,-6.77708e35,-6.7823015e35,-6.787523e35,-6.792744e35,-6.797965e35,-6.803186e35,-6.808407e35,-6.813629e35,-6.81885e35,-6.824071e35,-6.8292925e35,-6.834514e35,-6.839735e35,-6.844956e35,-6.850177e35,-6.855398e35,-6.860619e35,-6.8658405e35,-6.8710616e35,-6.876283e35,-6.881504e35,-6.886725e35,-6.891946e35,-6.897167e35,-6.9023884e35,-6.9076096e35,-6.912831e35,-6.918052e35,-6.923273e35,-6.928494e35,-6.933716e35,-6.938937e35,-6.944158e35,-6.9493794e35,-6.9546006e35,-6.959822e35,-6.965043e35,-6.970264e35,-6.975485e35,-6.980706e35,-6.985927e35,-6.9911485e35,-6.99637e35,-7.001591e35,-7.006812e35,-7.012033e35,-7.017254e35,-7.022475e35,-7.0276965e35,-7.032918e35,-7.038139e35,-7.04336e35,-7.048582e35,-7.053803e35,-7.059024e35,-7.064245e35,-7.069466e35,-7.0746875e35,-7.079909e35,-7.08513e35,-7.090351e35,-7.095572e35,-7.100793e35,-7.106014e35,-7.1112354e35,-7.1164566e35,-7.121678e35,-7.126899e35,-7.13212e35,-7.137341e35,-7.142562e35,-7.147783e35,-7.1530045e35,-7.158226e35,-7.1634476e35,-7.168669e35,-7.17389e35,-7.179111e35,-7.184332e35,-7.189553e35,-7.1947744e35,-7.1999955e35,-7.205217e35,-7.210438e35,-7.215659e35,-7.22088e35,-7.226101e35,-7.231322e35,-7.2365435e35,-7.241765e35,-7.246986e35,-7.252207e35,-7.257428e35,-7.262649e35,-7.26787e35,-7.2730914e35,-7.2783126e35,-7.2835345e35,-7.288756e35,-7.293977e35,-7.299198e35,-7.304419e35,-7.30964e35,-7.314861e35,-7.3200825e35,-7.3253036e35,-7.330525e35,-7.335746e35,-7.340967e35,-7.346188e35,-7.351409e35,-7.3566304e35,-7.3618515e35,-7.367073e35,-7.372294e35,-7.377515e35,-7.382736e35,-7.387957e35,-7.393178e35,-7.3984e35,-7.4036214e35,-7.4088426e35,-7.414064e35,-7.419285e35,-7.424506e35,-7.429727e35,-7.434948e35,-7.440169e35,-7.4453905e35,-7.450612e35,-7.455833e35,-7.461054e35,-7.466275e35,-7.471496e35,-7.476717e35,-7.4819385e35,-7.4871596e35,-7.492381e35,-7.497602e35,-7.502823e35,-7.508044e35,-7.513266e35,-7.518487e35,-7.523708e35,-7.5289295e35,-7.534151e35,-7.539372e35,-7.544593e35,-7.549814e35,-7.555035e35,-7.560256e35,-7.5654774e35,-7.5706986e35,-7.57592e35,-7.581141e35,-7.586362e35,-7.591583e35,-7.596804e35,-7.602025e35,-7.6072465e35,-7.612468e35,-7.617689e35,-7.62291e35,-7.628131e35,-7.633353e35,-7.638574e35,-7.643795e35,-7.6490164e35,-7.6542375e35,-7.659459e35,-7.66468e35,-7.669901e35,-7.675122e35,-7.680343e35,-7.685564e35,-7.6907855e35,-7.696007e35,-7.701228e35,-7.706449e35,-7.71167e35,-7.716891e35,-7.722112e35,-7.7273334e35,-7.7325546e35,-7.737776e35,-7.742997e35,-7.748219e35,-7.75344e35,-7.758661e35,-7.763882e35,-7.769103e35,-7.7743245e35,-7.7795456e35,-7.784767e35,-7.789988e35,-7.795209e35,-7.80043e35,-7.805651e35,-7.8108724e35,-7.8160935e35,-7.821315e35,-7.826536e35,-7.831757e35,-7.836978e35,-7.842199e35,-7.84742e35,-7.8526415e35,-7.857863e35,-7.8630846e35,-7.868306e35,-7.873527e35,-7.878748e35,-7.883969e35,-7.88919e35,-7.894411e35,-7.8996325e35,-7.904854e35,-7.910075e35,-7.915296e35,-7.920517e35,-7.925738e35,-7.930959e35,-7.9361805e35,-7.9414016e35,-7.946623e35,-7.951844e35,-7.957065e35,-7.962286e35,-7.967507e35,-7.9727284e35,-7.9779495e35,-7.9831715e35,-7.988393e35,-7.993614e35,-7.998835e35,-8.004056e35,-8.009277e35,-8.014498e35,-8.0197194e35,-8.0249406e35,-8.030162e35,-8.035383e35,-8.040604e35,-8.045825e35,-8.051046e35,-8.056267e35,-8.0614885e35,-8.06671e35,-8.071931e35,-8.077152e35,-8.082373e35,-8.087594e35,-8.092815e35,-8.098037e35,-8.103258e35,-8.1084795e35,-8.113701e35,-8.118922e35,-8.124143e35,-8.129364e35,-8.134585e35,-8.139806e35,-8.1450275e35,-8.150249e35,-8.15547e35,-8.160691e35,-8.165912e35,-8.171133e35,-8.176354e35,-8.1815754e35,-8.1867966e35,-8.192018e35,-8.197239e35,-8.20246e35,-8.207681e35,-8.212903e35,-8.218124e35,-8.223345e35,-8.2285664e35,-8.2337876e35,-8.239009e35,-8.24423e35,-8.249451e35,-8.254672e35,-8.259893e35,-8.2651144e35,-8.2703355e35,-8.275557e35,-8.280778e35,-8.285999e35,-8.29122e35,-8.296441e35,-8.301662e35,-8.3068835e35,-8.312105e35,-8.317326e35,-8.322547e35,-8.327769e35,-8.33299e35,-8.338211e35,-8.343432e35,-8.348653e35,-8.3538745e35,-8.359096e35,-8.364317e35,-8.369538e35,-8.374759e35,-8.37998e35,-8.385201e35,-8.3904225e35,-8.3956436e35,-8.400865e35,-8.406086e35,-8.411307e35,-8.416528e35,-8.421749e35,-8.4269704e35,-8.4321915e35,-8.437413e35,-8.442634e35,-8.447856e35,-8.453077e35,-8.458298e35,-8.463519e35,-8.46874e35,-8.4739614e35,-8.4791826e35,-8.484404e35,-8.489625e35,-8.494846e35,-8.500067e35,-8.505288e35,-8.510509e35,-8.5157305e35,-8.520952e35,-8.526173e35,-8.531394e35,-8.536615e35,-8.541836e35,-8.547057e35,-8.5522785e35,-8.5574996e35,-8.5627215e35,-8.567943e35,-8.573164e35,-8.578385e35,-8.583606e35,-8.588827e35,-8.594048e35,-8.5992695e35,-8.604491e35,-8.609712e35,-8.614933e35,-8.620154e35,-8.625375e35,-8.630596e35,-8.6358174e35,-8.6410386e35,-8.64626e35,-8.651481e35,-8.656702e35,-8.661923e35,-8.667144e35,-8.672365e35,-8.677587e35,-8.6828084e35,-8.6880296e35,-8.693251e35,-8.698472e35,-8.703693e35,-8.708914e35,-8.714135e35,-8.719356e35,-8.7245775e35,-8.729799e35,-8.73502e35,-8.740241e35,-8.745462e35,-8.750683e35,-8.755904e35,-8.7611255e35,-8.766347e35,-8.771568e35,-8.776789e35,-8.78201e35,-8.787231e35,-8.792452e35,-8.797674e35,-8.802895e35,-8.8081165e35,-8.813338e35,-8.818559e35,-8.82378e35,-8.829001e35,-8.834222e35,-8.839443e35,-8.8446644e35,-8.8498856e35,-8.855107e35,-8.860328e35,-8.865549e35,-8.87077e35,-8.875991e35,-8.881212e35,-8.8864335e35,-8.891655e35,-8.896876e35,-8.902097e35,-8.907318e35,-8.91254e35,-8.917761e35,-8.922982e35,-8.9282034e35,-8.9334245e35,-8.938646e35,-8.943867e35,-8.949088e35,-8.954309e35,-8.95953e35,-8.964751e35,-8.9699725e35,-8.975194e35,-8.980415e35,-8.985636e35,-8.990857e35,-8.996078e35,-9.001299e35,-9.0065204e35,-9.0117416e35,-9.016963e35,-9.022184e35,-9.027406e35,-9.032627e35,-9.037848e35,-9.043069e35,-9.04829e35,-9.0535115e35,-9.0587326e35,-9.063954e35,-9.069175e35,-9.074396e35,-9.079617e35,-9.084838e35,-9.0900594e35,-9.0952806e35,-9.100502e35,-9.105723e35,-9.110944e35,-9.116165e35,-9.121386e35,-9.126607e35,-9.1318285e35,-9.13705e35,-9.142271e35,-9.147493e35,-9.152714e35,-9.157935e35,-9.163156e35,-9.168377e35,-9.173598e35,-9.1788195e35,-9.184041e35,-9.189262e35,-9.194483e35,-9.199704e35,-9.204925e35,-9.210146e35,-9.2153675e35,-9.220589e35,-9.22581e35,-9.231031e35,-9.236252e35,-9.241473e35,-9.246694e35,-9.2519154e35,-9.2571366e35,-9.2623585e35,-9.26758e35,-9.272801e35,-9.278022e35,-9.283243e35,-9.288464e35,-9.293685e35,-9.2989064e35,-9.3041276e35,-9.309349e35,-9.31457e35,-9.319791e35,-9.325012e35,-9.330233e35,-9.335454e35,-9.3406755e35,-9.345897e35,-9.351118e35,-9.356339e35,-9.36156e35,-9.366781e35,-9.372002e35,-9.377224e35,-9.3824454e35,-9.3876665e35,-9.392888e35,-9.398109e35,-9.40333e35,-9.408551e35,-9.413772e35,-9.418993e35,-9.4242145e35,-9.429436e35,-9.434657e35,-9.439878e35,-9.445099e35,-9.45032e35,-9.455541e35,-9.4607624e35,-9.4659836e35,-9.471205e35,-9.476426e35,-9.481647e35,-9.486868e35,-9.492089e35,-9.497311e35,-9.502532e35,-9.5077535e35,-9.5129746e35,-9.518196e35,-9.523417e35,-9.528638e35,-9.533859e35,-9.53908e35,-9.5443014e35,-9.5495225e35,-9.554744e35,-9.559965e35,-9.565186e35,-9.570407e35,-9.575628e35,-9.580849e35,-9.5860705e35,-9.591292e35,-9.596513e35,-9.601734e35,-9.606955e35,-9.612177e35,-9.617398e35,-9.622619e35,-9.62784e35,-9.6330615e35,-9.638283e35,-9.643504e35,-9.648725e35,-9.653946e35,-9.659167e35,-9.664388e35,-9.6696095e35,-9.6748306e35,-9.680052e35,-9.685273e35,-9.690494e35,-9.695715e35,-9.700936e35,-9.7061574e35,-9.7113786e35,-9.7166e35,-9.721821e35,-9.727043e35,-9.732264e35,-9.737485e35,-9.742706e35,-9.747927e35,-9.7531484e35,-9.7583696e35,-9.763591e35,-9.768812e35,-9.774033e35,-9.779254e35,-9.784475e35,-9.789696e35,-9.7949175e35,-9.800139e35,-9.80536e35,-9.810581e35,-9.815802e35,-9.821023e35,-9.826244e35,-9.8314655e35,-9.836687e35,-9.8419085e35,-9.84713e35,-9.852351e35,-9.857572e35,-9.862793e35,-9.868014e35,-9.873235e35,-9.8784565e35,-9.883678e35,-9.888899e35,-9.89412e35,-9.899341e35,-9.904562e35,-9.909783e35,-9.9150044e35,-9.9202256e35,-9.925447e35,-9.930668e35,-9.935889e35,-9.94111e35,-9.946331e35,-9.951552e35,-9.9567735e35,-9.9619955e35,-9.9672166e35,-9.972438e35,-9.977659e35,-9.98288e35,-9.988101e35,-9.993322e35,-9.9985434e35,-1.00037645e36,-1.0008986e36,-1.0014207e36,-1.0019428e36,-1.0024649e36,-1.002987e36,-1.0035091e36,-1.00403125e36,-1.0045534e36,-1.0050755e36,-1.0055976e36,-1.0061197e36,-1.0066418e36,-1.0071639e36,-1.0076861e36,-1.0082082e36,-1.00873035e36,-1.0092525e36,-1.0097746e36,-1.0102967e36,-1.0108188e36,-1.0113409e36,-1.011863e36,-1.01238515e36,-1.01290726e36,-1.0134294e36,-1.0139515e36,-1.0144736e36,-1.0149957e36,-1.0155178e36,-1.01603994e36,-1.01656205e36,-1.0170842e36,-1.0176063e36,-1.0181284e36,-1.0186505e36,-1.0191727e36,-1.0196948e36,-1.0202169e36,-1.02073904e36,-1.02126116e36,-1.0217833e36,-1.0223054e36,-1.0228275e36,-1.0233496e36,-1.0238717e36,-1.0243938e36,-1.02491595e36,-1.0254381e36,-1.0259602e36,-1.0264823e36,-1.0270044e36,-1.0275265e36,-1.0280486e36,-1.02857075e36,-1.02909286e36,-1.029615e36,-1.0301371e36,-1.0306592e36,-1.0311814e36,-1.0317035e36,-1.0322256e36,-1.0327477e36,-1.03326985e36,-1.033792e36,-1.0343141e36,-1.0348362e36,-1.0353583e36,-1.0358804e36,-1.0364025e36,-1.03692464e36,-1.03744676e36,-1.0379689e36,-1.038491e36,-1.0390131e36,-1.0395352e36,-1.0400573e36,-1.0405794e36,-1.04110155e36,-1.0416237e36,-1.0421458e36,-1.042668e36,-1.0431901e36,-1.0437122e36,-1.0442343e36,-1.0447564e36,-1.04527854e36,-1.04580065e36,-1.0463228e36,-1.0468449e36,-1.047367e36,-1.0478891e36,-1.0484112e36,-1.0489333e36,-1.04945545e36,-1.0499776e36,-1.0504997e36,-1.0510218e36,-1.0515439e36,-1.052066e36,-1.0525881e36,-1.05311024e36,-1.05363236e36,-1.05415455e36,-1.0546767e36,-1.0551988e36,-1.0557209e36,-1.056243e36,-1.0567651e36,-1.0572872e36,-1.05780935e36,-1.05833146e36,-1.0588536e36,-1.0593757e36,-1.0598978e36,-1.0604199e36,-1.060942e36,-1.06146414e36,-1.06198625e36,-1.0625084e36,-1.0630305e36,-1.0635526e36,-1.0640747e36,-1.0645968e36,-1.0651189e36,-1.06564105e36,-1.06616324e36,-1.06668536e36,-1.0672075e36,-1.0677296e36,-1.0682517e36,-1.0687738e36,-1.0692959e36,-1.069818e36,-1.07034015e36,-1.0708623e36,-1.0713844e36,-1.0719065e36,-1.0724286e36,-1.0729507e36,-1.0734728e36,-1.07399495e36,-1.07451706e36,-1.0750392e36,-1.0755613e36,-1.0760834e36,-1.0766055e36,-1.0771276e36,-1.0776498e36,-1.0781719e36,-1.07869405e36,-1.0792162e36,-1.0797383e36,-1.0802604e36,-1.0807825e36,-1.0813046e36,-1.0818267e36,-1.08234884e36,-1.08287096e36,-1.0833931e36,-1.0839152e36,-1.0844373e36,-1.0849594e36,-1.0854815e36,-1.0860036e36,-1.08652575e36,-1.0870479e36,-1.08757e36,-1.0880921e36,-1.0886142e36,-1.0891364e36,-1.0896585e36,-1.0901806e36,-1.0907027e36,-1.09122485e36,-1.091747e36,-1.0922691e36,-1.0927912e36,-1.0933133e36,-1.0938354e36,-1.0943575e36,-1.09487965e36,-1.0954018e36,-1.0959239e36,-1.096446e36,-1.0969681e36,-1.0974902e36,-1.0980123e36,-1.09853444e36,-1.09905656e36,-1.0995787e36,-1.1001008e36,-1.1006229e36,-1.1011451e36,-1.1016672e36,-1.1021893e36,-1.1027114e36,-1.10323354e36,-1.10375566e36,-1.1042778e36,-1.1047999e36,-1.105322e36,-1.1058441e36,-1.1063662e36,-1.1068883e36,-1.10741045e36,-1.1079326e36,-1.1084547e36,-1.1089768e36,-1.1094989e36,-1.110021e36,-1.1105431e36,-1.11106525e36,-1.1115874e36,-1.1121095e36,-1.1126317e36,-1.1131538e36,-1.1136759e36,-1.114198e36,-1.1147201e36,-1.1152422e36,-1.11576435e36,-1.1162865e36,-1.1168086e36,-1.1173307e36,-1.1178528e36,-1.1183749e36,-1.118897e36,-1.11941914e36,-1.11994126e36,-1.1204634e36,-1.1209855e36,-1.1215076e36,-1.1220297e36,-1.1225518e36,-1.12307394e36,-1.12359605e36,-1.12411825e36,-1.12464036e36,-1.1251625e36,-1.1256846e36,-1.1262067e36,-1.1267288e36,-1.1272509e36,-1.12777304e36,-1.12829516e36,-1.1288173e36,-1.1293394e36,-1.1298615e36,-1.1303836e36,-1.1309057e36,-1.1314278e36,-1.13194995e36,-1.1324721e36,-1.1329942e36,-1.1335163e36,-1.1340384e36,-1.1345605e36,-1.1350826e36,-1.1356048e36,-1.1361269e36,-1.13664905e36,-1.1371712e36,-1.1376933e36,-1.1382154e36,-1.1387375e36,-1.1392596e36,-1.1397817e36,-1.14030385e36,-1.140826e36,-1.1413481e36,-1.1418702e36,-1.1423923e36,-1.1429144e36,-1.1434365e36,-1.14395864e36,-1.14448076e36,-1.1450029e36,-1.145525e36,-1.1460471e36,-1.1465692e36,-1.1470913e36,-1.1476135e36,-1.1481356e36,-1.14865774e36,-1.14917986e36,-1.149702e36,-1.1502241e36,-1.1507462e36,-1.1512683e36,-1.1517904e36,-1.1523125e36,-1.15283465e36,-1.1533568e36,-1.1538789e36,-1.154401e36,-1.1549231e36,-1.1554452e36,-1.1559673e36,-1.15648945e36,-1.1570116e36,-1.1575337e36,-1.1580558e36,-1.1585779e36,-1.1591001e36,-1.1596222e36,-1.1601443e36,-1.1606664e36,-1.16118855e36,-1.1617107e36,-1.1622328e36,-1.1627549e36,-1.163277e36,-1.1637991e36,-1.1643212e36,-1.16484334e36,-1.16536546e36,-1.1658876e36,-1.1664097e36,-1.1669318e36,-1.1674539e36,-1.167976e36,-1.1684981e36,-1.16902025e36,-1.1695424e36,-1.1700645e36,-1.1705867e36,-1.1711088e36,-1.1716309e36,-1.172153e36,-1.1726751e36,-1.17319724e36,-1.17371935e36,-1.1742415e36,-1.1747636e36,-1.1752857e36,-1.1758078e36,-1.1763299e36,-1.176852e36,-1.17737415e36,-1.1778963e36,-1.1784184e36,-1.1789405e36,-1.1794626e36,-1.1799847e36,-1.1805068e36,-1.18102894e36,-1.18155106e36,-1.1820732e36,-1.1825954e36,-1.1831175e36,-1.1836396e36,-1.1841617e36,-1.1846838e36,-1.1852059e36,-1.18572805e36,-1.18625016e36,-1.1867723e36,-1.1872944e36,-1.1878165e36,-1.1883386e36,-1.1888607e36,-1.18938284e36,-1.18990496e36,-1.1904271e36,-1.1909492e36,-1.1914713e36,-1.1919934e36,-1.1925155e36,-1.1930376e36,-1.19355975e36,-1.19408194e36,-1.19460406e36,-1.1951262e36,-1.1956483e36,-1.1961704e36,-1.1966925e36,-1.1972146e36,-1.1977367e36,-1.19825885e36,-1.198781e36,-1.1993031e36,-1.1998252e36,-1.2003473e36,-1.2008694e36,-1.2013915e36,-1.20191365e36,-1.2024358e36,-1.2029579e36,-1.20348e36,-1.2040021e36,-1.2045242e36,-1.2050463e36,-1.2055685e36,-1.2060906e36,-1.20661275e36,-1.2071349e36,-1.207657e36,-1.2081791e36,-1.2087012e36,-1.2092233e36,-1.2097454e36,-1.21026754e36,-1.21078966e36,-1.2113118e36,-1.2118339e36,-1.212356e36,-1.2128781e36,-1.2134002e36,-1.2139223e36,-1.21444445e36,-1.2149666e36,-1.2154887e36,-1.2160108e36,-1.2165329e36,-1.217055e36,-1.2175772e36,-1.2180993e36,-1.21862144e36,-1.21914355e36,-1.2196657e36,-1.2201878e36,-1.2207099e36,-1.221232e36,-1.2217541e36,-1.2222762e36,-1.22279835e36,-1.2233205e36,-1.2238426e36,-1.2243647e36,-1.2248868e36,-1.2254089e36,-1.225931e36,-1.22645314e36,-1.22697526e36,-1.2274974e36,-1.2280195e36,-1.2285416e36,-1.2290638e36,-1.2295859e36,-1.230108e36,-1.2306301e36,-1.23115225e36,-1.23167436e36,-1.2321965e36,-1.2327186e36,-1.2332407e36,-1.2337628e36,-1.2342849e36,-1.23480704e36,-1.23532915e36,-1.2358513e36,-1.2363734e36,-1.2368955e36,-1.2374176e36,-1.2379397e36,-1.2384618e36,-1.23898395e36,-1.2395061e36,-1.2400282e36,-1.2405504e36,-1.2410725e36,-1.2415946e36,-1.2421167e36,-1.2426388e36,-1.2431609e36,-1.24368305e36,-1.2442052e36,-1.2447273e36,-1.2452494e36,-1.2457715e36,-1.2462936e36,-1.2468157e36,-1.24733785e36,-1.24785996e36,-1.2483821e36,-1.2489042e36,-1.2494263e36,-1.2499484e36,-1.2504705e36,-1.25099264e36,-1.25151475e36,-1.2520369e36,-1.2525591e36,-1.2530812e36,-1.2536033e36,-1.2541254e36,-1.2546475e36,-1.2551696e36,-1.25569174e36,-1.25621386e36,-1.256736e36,-1.2572581e36,-1.2577802e36,-1.2583023e36,-1.2588244e36,-1.2593465e36,-1.25986865e36,-1.2603908e36,-1.2609129e36,-1.261435e36,-1.2619571e36,-1.2624792e36,-1.2630013e36,-1.26352345e36,-1.2640456e36,-1.26456775e36,-1.2650899e36,-1.265612e36,-1.2661341e36,-1.2666562e36,-1.2671783e36,-1.2677004e36,-1.26822255e36,-1.2687447e36,-1.2692668e36,-1.2697889e36,-1.270311e36,-1.2708331e36,-1.2713552e36,-1.27187734e36,-1.27239946e36,-1.2729216e36,-1.2734437e36,-1.2739658e36,-1.2744879e36,-1.27501e36,-1.2755322e36,-1.2760543e36,-1.27657645e36,-1.27709856e36,-1.2776207e36,-1.2781428e36,-1.2786649e36,-1.279187e36,-1.2797091e36,-1.28023124e36,-1.28075335e36,-1.2812755e36,-1.2817976e36,-1.2823197e36,-1.2828418e36,-1.2833639e36,-1.283886e36,-1.28440815e36,-1.2849303e36,-1.2854524e36,-1.2859745e36,-1.2864966e36,-1.2870188e36,-1.2875409e36,-1.288063e36,-1.2885851e36,-1.28910725e36,-1.2896294e36,-1.2901515e36,-1.2906736e36,-1.2911957e36,-1.2917178e36,-1.2922399e36,-1.29276205e36,-1.29328416e36,-1.2938063e36,-1.2943284e36,-1.2948505e36,-1.2953726e36,-1.2958947e36,-1.29641684e36,-1.29693895e36,-1.2974611e36,-1.2979832e36,-1.2985053e36,-1.2990275e36,-1.2995496e36,-1.3000717e36,-1.3005938e36,-1.30111594e36,-1.30163806e36,-1.3021602e36,-1.3026823e36,-1.3032044e36,-1.3037265e36,-1.3042486e36,-1.3047707e36,-1.30529285e36,-1.305815e36,-1.3063371e36,-1.3068592e36,-1.3073813e36,-1.3079034e36,-1.3084255e36,-1.30894765e36,-1.30946976e36,-1.3099919e36,-1.3105141e36,-1.3110362e36,-1.3115583e36,-1.3120804e36,-1.3126025e36,-1.3131246e36,-1.31364675e36,-1.3141689e36,-1.314691e36,-1.3152131e36,-1.3157352e36,-1.3162573e36,-1.3167794e36,-1.31730154e36,-1.31782366e36,-1.3183458e36,-1.3188679e36,-1.31939e36,-1.3199121e36,-1.3204342e36,-1.3209563e36,-1.32147845e36,-1.32200064e36,-1.32252276e36,-1.3230449e36,-1.323567e36,-1.3240891e36,-1.3246112e36,-1.3251333e36,-1.3256554e36,-1.32617755e36,-1.3266997e36,-1.3272218e36,-1.3277439e36,-1.328266e36,-1.3287881e36,-1.3293102e36,-1.3298323e36,-1.3303545e36,-1.3308766e36,-1.3313987e36,-1.3319208e36,-1.3324429e36,-1.332965e36,-1.3334871e36,-1.3340093e36,-1.3345314e36,-1.3350535e36,-1.3355756e36,-1.3360977e36,-1.3366198e36,-1.337142e36,-1.337664e36,-1.3381862e36,-1.3387083e36,-1.3392304e36,-1.3397527e36,-1.3402748e36,-1.3407969e36,-1.341319e36,-1.3418411e36,-1.3423632e36,-1.3428853e36,-1.3434075e36,-1.3439296e36,-1.3444517e36,-1.3449738e36,-1.3454959e36,-1.346018e36,-1.3465401e36,-1.3470623e36,-1.3475844e36,-1.3481065e36,-1.3486286e36,-1.3491507e36,-1.3496728e36,-1.350195e36,-1.350717e36,-1.3512392e36,-1.3517613e36,-1.3522834e36,-1.3528055e36,-1.3533276e36,-1.3538497e36,-1.3543718e36,-1.354894e36,-1.355416e36,-1.3559382e36,-1.3564603e36,-1.3569824e36,-1.3575045e36,-1.3580266e36,-1.3585488e36,-1.3590709e36,-1.359593e36,-1.3601151e36,-1.3606372e36,-1.3611593e36,-1.3616814e36,-1.3622035e36,-1.3627258e36,-1.363248e36,-1.36377e36,-1.3642922e36,-1.3648143e36,-1.3653364e36,-1.3658585e36,-1.3663806e36,-1.3669027e36,-1.3674248e36,-1.367947e36,-1.368469e36,-1.3689912e36,-1.3695133e36,-1.3700354e36,-1.3705575e36,-1.3710796e36,-1.3716018e36,-1.3721239e36,-1.372646e36,-1.3731681e36,-1.3736902e36,-1.3742123e36,-1.3747344e36,-1.3752565e36,-1.3757787e36,-1.3763008e36,-1.3768229e36,-1.377345e36,-1.3778671e36,-1.3783892e36,-1.3789113e36,-1.3794335e36,-1.3799556e36,-1.3804777e36,-1.3809998e36,-1.3815219e36,-1.382044e36,-1.3825661e36,-1.3830883e36,-1.3836104e36,-1.3841325e36,-1.3846546e36,-1.3851767e36,-1.3856988e36,-1.3862211e36,-1.3867432e36,-1.3872653e36,-1.3877874e36,-1.3883095e36,-1.3888317e36,-1.3893538e36,-1.3898759e36,-1.390398e36,-1.3909201e36,-1.3914422e36,-1.3919643e36,-1.3924865e36,-1.3930086e36,-1.3935307e36,-1.3940528e36,-1.3945749e36,-1.395097e36,-1.3956191e36,-1.3961412e36,-1.3966634e36,-1.3971855e36,-1.3977076e36,-1.3982297e36,-1.3987518e36,-1.399274e36,-1.399796e36,-1.4003182e36,-1.4008403e36,-1.4013624e36,-1.4018845e36,-1.4024066e36,-1.4029287e36,-1.4034508e36,-1.403973e36,-1.404495e36,-1.4050172e36,-1.4055393e36,-1.4060614e36,-1.4065835e36,-1.4071056e36,-1.4076277e36,-1.4081499e36,-1.408672e36,-1.4091941e36,-1.4097164e36,-1.4102385e36,-1.4107606e36,-1.4112827e36,-1.4118048e36,-1.412327e36,-1.412849e36,-1.4133712e36,-1.4138933e36,-1.4144154e36,-1.4149375e36,-1.4154596e36,-1.4159817e36,-1.4165038e36,-1.417026e36,-1.417548e36,-1.4180702e36,-1.4185923e36,-1.4191144e36,-1.4196365e36,-1.4201586e36,-1.4206807e36,-1.4212029e36,-1.421725e36,-1.4222471e36,-1.4227692e36,-1.4232913e36,-1.4238134e36,-1.4243355e36,-1.4248577e36,-1.4253798e36,-1.4259019e36,-1.426424e36,-1.4269461e36,-1.4274682e36,-1.4279903e36,-1.4285125e36,-1.4290346e36,-1.4295567e36,-1.4300788e36,-1.4306009e36,-1.431123e36,-1.4316451e36,-1.4321672e36,-1.4326895e36,-1.4332116e36,-1.4337337e36,-1.4342559e36,-1.434778e36,-1.4353001e36,-1.4358222e36,-1.4363443e36,-1.4368664e36,-1.4373885e36,-1.4379107e36,-1.4384328e36,-1.4389549e36,-1.439477e36,-1.4399991e36,-1.4405212e36,-1.4410433e36,-1.4415654e36,-1.4420876e36,-1.4426097e36,-1.4431318e36,-1.4436539e36,-1.444176e36,-1.4446981e36,-1.4452202e36,-1.4457424e36,-1.4462645e36,-1.4467866e36,-1.4473087e36,-1.4478308e36,-1.448353e36,-1.448875e36,-1.4493972e36,-1.4499193e36,-1.4504414e36,-1.4509635e36,-1.4514856e36,-1.4520077e36,-1.4525298e36,-1.453052e36,-1.453574e36,-1.4540962e36,-1.4546183e36,-1.4551404e36,-1.4556625e36,-1.4561848e36,-1.4567069e36,-1.457229e36,-1.4577511e36,-1.4582732e36,-1.4587954e36,-1.4593175e36,-1.4598396e36,-1.4603617e36,-1.4608838e36,-1.461406e36,-1.461928e36,-1.4624502e36,-1.4629723e36,-1.4634944e36,-1.4640165e36,-1.4645386e36,-1.4650607e36,-1.4655828e36,-1.466105e36,-1.466627e36,-1.4671492e36,-1.4676713e36,-1.4681934e36,-1.4687155e36,-1.4692376e36,-1.4697597e36,-1.4702819e36,-1.470804e36,-1.4713261e36,-1.4718482e36,-1.4723703e36,-1.4728924e36,-1.4734145e36,-1.4739367e36,-1.4744588e36,-1.4749809e36,-1.475503e36,-1.4760251e36,-1.4765472e36,-1.4770693e36,-1.4775914e36,-1.4781136e36,-1.4786357e36,-1.4791578e36,-1.47968e36,-1.4802022e36,-1.4807243e36,-1.4812464e36,-1.4817685e36,-1.4822906e36,-1.4828127e36,-1.4833349e36,-1.483857e36,-1.4843791e36,-1.4849012e36,-1.4854233e36,-1.4859454e36,-1.4864675e36,-1.4869896e36,-1.4875118e36,-1.4880339e36,-1.488556e36,-1.4890781e36,-1.4896002e36,-1.4901223e36,-1.4906444e36,-1.4911666e36,-1.4916887e36,-1.4922108e36,-1.4927329e36,-1.493255e36,-1.4937771e36,-1.4942992e36,-1.4948214e36,-1.4953435e36,-1.4958656e36,-1.4963877e36,-1.4969098e36,-1.4974319e36,-1.497954e36,-1.4984761e36,-1.4989983e36,-1.4995204e36,-1.5000425e36,-1.5005646e36,-1.5010867e36,-1.5016088e36,-1.502131e36,-1.5026532e36,-1.5031753e36,-1.5036974e36,-1.5042196e36,-1.5047417e36,-1.5052638e36,-1.5057859e36,-1.506308e36,-1.5068301e36,-1.5073522e36,-1.5078744e36,-1.5083965e36,-1.5089186e36,-1.5094407e36,-1.5099628e36,-1.5104849e36,-1.511007e36,-1.5115291e36,-1.5120513e36,-1.5125734e36,-1.5130955e36,-1.5136176e36,-1.5141397e36,-1.5146618e36,-1.515184e36,-1.515706e36,-1.5162282e36,-1.5167503e36,-1.5172724e36,-1.5177945e36,-1.5183166e36,-1.5188387e36,-1.5193608e36,-1.519883e36,-1.520405e36,-1.5209272e36,-1.5214493e36,-1.5219714e36,-1.5224935e36,-1.5230156e36,-1.5235378e36,-1.5240599e36,-1.524582e36,-1.5251041e36,-1.5256262e36,-1.5261485e36,-1.5266706e36,-1.5271927e36,-1.5277148e36,-1.528237e36,-1.528759e36,-1.5292812e36,-1.5298033e36,-1.5303254e36,-1.5308475e36,-1.5313696e36,-1.5318917e36,-1.5324138e36,-1.532936e36,-1.533458e36,-1.5339802e36,-1.5345023e36,-1.5350244e36,-1.5355465e36,-1.5360686e36,-1.5365908e36,-1.5371129e36,-1.537635e36,-1.5381571e36,-1.5386792e36,-1.5392013e36,-1.5397234e36,-1.5402456e36,-1.5407677e36,-1.5412898e36,-1.5418119e36,-1.542334e36,-1.5428561e36,-1.5433782e36,-1.5439003e36,-1.5444225e36,-1.5449446e36,-1.5454667e36,-1.5459888e36,-1.5465109e36,-1.547033e36,-1.5475551e36,-1.5480773e36,-1.5485994e36,-1.5491216e36,-1.5496438e36,-1.5501659e36,-1.550688e36,-1.5512101e36,-1.5517322e36,-1.5522543e36,-1.5527764e36,-1.5532985e36,-1.5538207e36,-1.5543428e36,-1.5548649e36,-1.555387e36,-1.5559091e36,-1.5564312e36,-1.5569533e36,-1.5574755e36,-1.5579976e36,-1.5585197e36,-1.5590418e36,-1.5595639e36,-1.560086e36,-1.5606081e36,-1.5611303e36,-1.5616524e36,-1.5621745e36,-1.5626966e36,-1.5632187e36,-1.5637408e36,-1.564263e36,-1.564785e36,-1.5653072e36,-1.5658293e36,-1.5663514e36,-1.5668735e36,-1.5673956e36,-1.5679177e36,-1.5684398e36,-1.568962e36,-1.569484e36,-1.5700062e36,-1.5705283e36,-1.5710504e36,-1.5715725e36,-1.5720946e36,-1.5726169e36,-1.573139e36,-1.5736611e36,-1.5741833e36,-1.5747054e36,-1.5752275e36,-1.5757496e36,-1.5762717e36,-1.5767938e36,-1.577316e36,-1.577838e36,-1.5783602e36,-1.5788823e36,-1.5794044e36,-1.5799265e36,-1.5804486e36,-1.5809707e36,-1.5814928e36,-1.582015e36,-1.582537e36,-1.5830592e36,-1.5835813e36,-1.5841034e36,-1.5846255e36,-1.5851476e36,-1.5856698e36,-1.5861919e36,-1.586714e36,-1.5872361e36,-1.5877582e36,-1.5882803e36,-1.5888024e36,-1.5893245e36,-1.5898467e36,-1.5903688e36,-1.5908909e36,-1.591413e36,-1.5919351e36,-1.5924572e36,-1.5929793e36,-1.5935015e36,-1.5940236e36,-1.5945457e36,-1.5950678e36,-1.5955899e36,-1.5961122e36,-1.5966343e36,-1.5971564e36,-1.5976785e36,-1.5982006e36,-1.5987227e36,-1.5992449e36,-1.599767e36,-1.6002891e36,-1.6008112e36,-1.6013333e36,-1.6018554e36,-1.6023775e36,-1.6028997e36,-1.6034218e36,-1.6039439e36,-1.604466e36,-1.6049881e36,-1.6055102e36,-1.6060323e36,-1.6065545e36,-1.6070766e36,-1.6075987e36,-1.6081208e36,-1.6086429e36,-1.609165e36,-1.6096871e36,-1.6102092e36,-1.6107314e36,-1.6112535e36,-1.6117756e36,-1.6122977e36,-1.6128198e36,-1.613342e36,-1.613864e36,-1.6143862e36,-1.6149083e36,-1.6154304e36,-1.6159525e36,-1.6164746e36,-1.6169967e36,-1.6175188e36,-1.618041e36,-1.618563e36,-1.6190853e36,-1.6196075e36,-1.6201296e36,-1.6206517e36,-1.6211738e36,-1.6216959e36,-1.622218e36,-1.6227401e36,-1.6232622e36,-1.6237844e36,-1.6243065e36,-1.6248286e36,-1.6253507e36,-1.6258728e36,-1.626395e36,-1.626917e36,-1.6274392e36,-1.6279613e36,-1.6284834e36,-1.6290055e36,-1.6295276e36,-1.6300497e36,-1.6305718e36,-1.631094e36,-1.631616e36,-1.6321382e36,-1.6326603e36,-1.6331824e36,-1.6337045e36,-1.6342266e36,-1.6347487e36,-1.6352709e36,-1.635793e36,-1.6363151e36,-1.6368372e36,-1.6373593e36,-1.6378814e36,-1.6384035e36,-1.6389257e36,-1.6394478e36,-1.6399699e36,-1.640492e36,-1.6410141e36,-1.6415362e36,-1.6420583e36,-1.6425806e36,-1.6431027e36,-1.6436248e36,-1.644147e36,-1.644669e36,-1.6451912e36,-1.6457133e36,-1.6462354e36,-1.6467575e36,-1.6472796e36,-1.6478017e36,-1.6483239e36,-1.648846e36,-1.6493681e36,-1.6498902e36,-1.6504123e36,-1.6509344e36,-1.6514565e36,-1.6519787e36,-1.6525008e36,-1.6530229e36,-1.653545e36,-1.6540671e36,-1.6545892e36,-1.6551113e36,-1.6556334e36,-1.6561556e36,-1.6566777e36,-1.6571998e36,-1.6577219e36,-1.658244e36,-1.6587661e36,-1.6592882e36,-1.6598104e36,-1.6603325e36,-1.6608546e36,-1.6613767e36,-1.6618988e36,-1.662421e36,-1.662943e36,-1.6634652e36,-1.6639873e36,-1.6645094e36,-1.6650315e36,-1.6655538e36,-1.6660759e36,-1.666598e36,-1.6671201e36,-1.6676422e36,-1.6681643e36,-1.6686864e36,-1.6692086e36,-1.6697307e36,-1.6702528e36,-1.6707749e36,-1.671297e36,-1.6718191e36,-1.6723412e36,-1.6728634e36,-1.6733855e36,-1.6739076e36,-1.6744297e36,-1.6749518e36,-1.675474e36,-1.675996e36,-1.6765181e36,-1.6770403e36,-1.6775624e36,-1.6780845e36,-1.6786066e36,-1.6791287e36,-1.6796508e36,-1.680173e36,-1.680695e36,-1.6812172e36,-1.6817393e36,-1.6822614e36,-1.6827835e36,-1.6833056e36,-1.6838277e36,-1.6843499e36,-1.684872e36,-1.6853941e36,-1.6859162e36,-1.6864383e36,-1.6869604e36,-1.6874825e36,-1.6880046e36,-1.6885268e36,-1.689049e36,-1.6895711e36,-1.6900933e36,-1.6906154e36,-1.6911375e36,-1.6916596e36,-1.6921817e36,-1.6927038e36,-1.693226e36,-1.693748e36,-1.6942702e36,-1.6947923e36,-1.6953144e36,-1.6958365e36,-1.6963586e36,-1.6968807e36,-1.6974029e36,-1.697925e36,-1.698447e36,-1.6989692e36,-1.6994913e36,-1.7000134e36,-1.7005355e36,-1.7010576e36,-1.7015798e36,-1.7021019e36,-1.702624e36,-1.7031461e36,-1.7036682e36,-1.7041903e36,-1.7047124e36,-1.7052346e36,-1.7057567e36,-1.7062788e36,-1.7068009e36,-1.707323e36,-1.7078451e36,-1.7083672e36,-1.7088894e36,-1.7094115e36,-1.7099336e36,-1.7104557e36,-1.7109778e36,-1.7114999e36,-1.712022e36,-1.7125443e36,-1.7130664e36,-1.7135885e36,-1.7141106e36,-1.7146328e36,-1.7151549e36,-1.715677e36,-1.7161991e36,-1.7167212e36,-1.7172433e36,-1.7177654e36,-1.7182876e36,-1.7188097e36,-1.7193318e36,-1.7198539e36,-1.720376e36,-1.7208981e36,-1.7214202e36,-1.7219423e36,-1.7224645e36,-1.7229866e36,-1.7235087e36,-1.7240308e36,-1.7245529e36,-1.725075e36,-1.7255971e36,-1.7261193e36,-1.7266414e36,-1.7271635e36,-1.7276856e36,-1.7282077e36,-1.7287298e36,-1.729252e36,-1.729774e36,-1.7302962e36,-1.7308183e36,-1.7313404e36,-1.7318625e36,-1.7323846e36,-1.7329067e36,-1.7334288e36,-1.733951e36,-1.734473e36,-1.7349952e36,-1.7355175e36,-1.7360396e36,-1.7365617e36,-1.7370838e36,-1.7376059e36,-1.738128e36,-1.7386501e36,-1.7391723e36,-1.7396944e36,-1.7402165e36,-1.7407386e36,-1.7412607e36,-1.7417828e36,-1.742305e36,-1.742827e36,-1.7433492e36,-1.7438713e36,-1.7443934e36,-1.7449155e36,-1.7454376e36,-1.7459597e36,-1.7464818e36,-1.747004e36,-1.747526e36,-1.7480482e36,-1.7485703e36,-1.7490924e36,-1.7496145e36,-1.7501366e36,-1.7506588e36,-1.7511809e36,-1.751703e36,-1.7522251e36,-1.7527472e36,-1.7532693e36,-1.7537914e36,-1.7543135e36,-1.7548357e36,-1.7553578e36,-1.7558799e36,-1.756402e36,-1.7569241e36,-1.7574462e36,-1.7579683e36,-1.7584905e36,-1.7590127e36,-1.7595348e36,-1.760057e36,-1.760579e36,-1.7611012e36,-1.7616233e36,-1.7621454e36,-1.7626675e36,-1.7631896e36,-1.7637118e36,-1.7642339e36,-1.764756e36,-1.7652781e36,-1.7658002e36,-1.7663223e36,-1.7668444e36,-1.7673665e36,-1.7678887e36,-1.7684108e36,-1.7689329e36,-1.769455e36,-1.7699771e36,-1.7704992e36,-1.7710213e36,-1.7715435e36,-1.7720656e36,-1.7725877e36,-1.7731098e36,-1.7736319e36,-1.774154e36,-1.7746761e36,-1.7751983e36,-1.7757204e36,-1.7762425e36,-1.7767646e36,-1.7772867e36,-1.7778088e36,-1.778331e36,-1.778853e36,-1.7793752e36,-1.7798973e36,-1.7804194e36,-1.7809415e36,-1.7814636e36,-1.7819857e36,-1.782508e36,-1.7830301e36,-1.7835522e36,-1.7840743e36,-1.7845965e36,-1.7851186e36,-1.7856407e36,-1.7861628e36,-1.7866849e36,-1.787207e36,-1.7877291e36,-1.7882513e36,-1.7887734e36,-1.7892955e36,-1.7898176e36,-1.7903397e36,-1.7908618e36,-1.791384e36,-1.791906e36,-1.7924282e36,-1.7929503e36,-1.7934724e36,-1.7939945e36,-1.7945166e36,-1.7950387e36,-1.7955608e36,-1.796083e36,-1.796605e36,-1.7971272e36,-1.7976493e36,-1.7981714e36,-1.7986935e36,-1.7992156e36,-1.7997377e36,-1.8002599e36,-1.800782e36,-1.8013041e36,-1.8018262e36,-1.8023483e36,-1.8028704e36,-1.8033925e36,-1.8039147e36,-1.8044368e36,-1.8049589e36,-1.8054812e36,-1.8060033e36,-1.8065254e36,-1.8070475e36,-1.8075696e36,-1.8080917e36,-1.8086138e36,-1.809136e36,-1.809658e36,-1.8101802e36,-1.8107023e36,-1.8112244e36,-1.8117465e36,-1.8122686e36,-1.8127907e36,-1.8133129e36,-1.813835e36,-1.8143571e36,-1.8148792e36,-1.8154013e36,-1.8159234e36,-1.8164455e36,-1.8169677e36,-1.8174898e36,-1.8180119e36,-1.818534e36,-1.8190561e36,-1.8195782e36,-1.8201003e36,-1.8206225e36,-1.8211446e36,-1.8216667e36,-1.8221888e36,-1.8227109e36,-1.823233e36,-1.8237551e36,-1.8242772e36,-1.8247994e36,-1.8253215e36,-1.8258436e36,-1.8263657e36,-1.8268878e36,-1.82741e36,-1.827932e36,-1.8284542e36,-1.8289764e36,-1.8294985e36,-1.8300207e36,-1.8305428e36,-1.8310649e36,-1.831587e36,-1.8321091e36,-1.8326312e36,-1.8331533e36,-1.8336754e36,-1.8341976e36,-1.8347197e36,-1.8352418e36,-1.8357639e36,-1.836286e36,-1.8368081e36,-1.8373302e36,-1.8378524e36,-1.8383745e36,-1.8388966e36,-1.8394187e36,-1.8399408e36,-1.840463e36,-1.840985e36,-1.8415072e36,-1.8420293e36,-1.8425514e36,-1.8430735e36,-1.8435956e36,-1.8441177e36,-1.8446398e36,-1.845162e36,-1.845684e36,-1.8462062e36,-1.8467283e36,-1.8472504e36,-1.8477725e36,-1.8482946e36,-1.8488167e36,-1.8493389e36,-1.849861e36,-1.8503831e36,-1.8509052e36,-1.8514273e36,-1.8519496e36,-1.8524717e36,-1.8529938e36,-1.853516e36,-1.854038e36,-1.8545602e36,-1.8550823e36,-1.8556044e36,-1.8561265e36,-1.8566486e36,-1.8571707e36,-1.8576928e36,-1.858215e36,-1.858737e36,-1.8592592e36,-1.8597813e36,-1.8603034e36,-1.8608255e36,-1.8613476e36,-1.8618697e36,-1.8623919e36,-1.862914e36,-1.8634361e36,-1.8639582e36,-1.8644803e36,-1.8650024e36,-1.8655245e36,-1.8660467e36,-1.8665688e36,-1.8670909e36,-1.867613e36,-1.8681351e36,-1.8686572e36,-1.8691793e36,-1.8697014e36,-1.8702236e36,-1.8707457e36,-1.8712678e36,-1.8717899e36,-1.872312e36,-1.8728341e36,-1.8733562e36,-1.8738784e36,-1.8744005e36,-1.8749226e36,-1.8754449e36,-1.875967e36,-1.8764891e36,-1.8770112e36,-1.8775333e36,-1.8780554e36,-1.8785775e36,-1.8790996e36,-1.8796218e36,-1.8801439e36,-1.880666e36,-1.8811881e36,-1.8817102e36,-1.8822323e36,-1.8827544e36,-1.8832766e36,-1.8837987e36,-1.8843208e36,-1.8848429e36,-1.885365e36,-1.8858871e36,-1.8864092e36,-1.8869314e36,-1.8874535e36,-1.8879756e36,-1.8884977e36,-1.8890198e36,-1.8895419e36,-1.890064e36,-1.8905861e36,-1.8911083e36,-1.8916304e36,-1.8921525e36,-1.8926746e36,-1.8931967e36,-1.8937188e36,-1.894241e36,-1.894763e36,-1.8952852e36,-1.8958073e36,-1.8963294e36,-1.8968515e36,-1.8973736e36,-1.8978957e36,-1.8984179e36,-1.8989401e36,-1.8994622e36,-1.8999844e36,-1.9005065e36,-1.9010286e36,-1.9015507e36,-1.9020728e36,-1.9025949e36,-1.903117e36,-1.9036391e36,-1.9041613e36,-1.9046834e36,-1.9052055e36,-1.9057276e36,-1.9062497e36,-1.9067718e36,-1.907294e36,-1.907816e36,-1.9083382e36,-1.9088603e36,-1.9093824e36,-1.9099045e36,-1.9104266e36,-1.9109487e36,-1.9114708e36,-1.911993e36,-1.912515e36,-1.9130372e36,-1.9135593e36,-1.9140814e36,-1.9146035e36,-1.9151256e36,-1.9156478e36,-1.9161699e36,-1.916692e36,-1.9172141e36,-1.9177362e36,-1.9182583e36,-1.9187804e36,-1.9193026e36,-1.9198247e36,-1.9203468e36,-1.9208689e36,-1.921391e36,-1.9219133e36,-1.9224354e36,-1.9229575e36,-1.9234796e36,-1.9240017e36,-1.9245238e36,-1.925046e36,-1.925568e36,-1.9260902e36,-1.9266123e36,-1.9271344e36,-1.9276565e36,-1.9281786e36,-1.9287008e36,-1.9292229e36,-1.929745e36,-1.9302671e36,-1.9307892e36,-1.9313113e36,-1.9318334e36,-1.9323556e36,-1.9328777e36,-1.9333998e36,-1.9339219e36,-1.934444e36,-1.9349661e36,-1.9354882e36,-1.9360103e36,-1.9365325e36,-1.9370546e36,-1.9375767e36,-1.9380988e36,-1.9386209e36,-1.939143e36,-1.9396651e36,-1.9401873e36,-1.9407094e36,-1.9412315e36,-1.9417536e36,-1.9422757e36,-1.9427978e36,-1.94332e36,-1.943842e36,-1.9443642e36,-1.9448863e36,-1.9454086e36,-1.9459307e36,-1.9464528e36,-1.9469749e36,-1.947497e36,-1.9480191e36,-1.9485412e36,-1.9490633e36,-1.9495855e36,-1.9501076e36,-1.9506297e36,-1.9511518e36,-1.9516739e36,-1.952196e36,-1.9527181e36,-1.9532403e36,-1.9537624e36,-1.9542845e36,-1.9548066e36,-1.9553287e36,-1.9558508e36,-1.956373e36,-1.956895e36,-1.9574172e36,-1.9579393e36,-1.9584614e36,-1.9589835e36,-1.9595056e36,-1.9600277e36,-1.9605498e36,-1.961072e36,-1.961594e36,-1.9621162e36,-1.9626383e36,-1.9631604e36,-1.9636825e36,-1.9642046e36,-1.9647268e36,-1.9652489e36,-1.965771e36,-1.9662931e36,-1.9668152e36,-1.9673373e36,-1.9678594e36,-1.9683817e36,-1.9689038e36,-1.969426e36,-1.969948e36,-1.9704702e36,-1.9709923e36,-1.9715144e36,-1.9720365e36,-1.9725586e36,-1.9730807e36,-1.9736028e36,-1.974125e36,-1.974647e36,-1.9751692e36,-1.9756913e36,-1.9762134e36,-1.9767355e36,-1.9772576e36,-1.9777798e36,-1.9783019e36,-1.978824e36,-1.9793461e36,-1.9798682e36,-1.9803903e36,-1.9809124e36,-1.9814345e36,-1.9819567e36,-1.9824788e36,-1.9830009e36,-1.983523e36,-1.9840451e36,-1.9845672e36,-1.9850893e36,-1.9856115e36,-1.9861336e36,-1.9866557e36,-1.9871778e36,-1.9876999e36,-1.988222e36,-1.9887441e36,-1.9892663e36,-1.9897884e36,-1.9903105e36,-1.9908326e36,-1.9913547e36,-1.991877e36,-1.9923991e36,-1.9929212e36,-1.9934433e36,-1.9939654e36,-1.9944875e36,-1.9950097e36,-1.9955318e36,-1.9960539e36,-1.996576e36,-1.9970981e36,-1.9976202e36,-1.9981423e36,-1.9986645e36,-1.9991866e36,-1.9997087e36,-2.0002308e36,-2.0007529e36,-2.001275e36,-2.0017971e36,-2.0023192e36,-2.0028414e36,-2.0033635e36,-2.0038856e36,-2.0044077e36,-2.0049298e36,-2.005452e36,-2.005974e36,-2.0064962e36,-2.0070183e36,-2.0075404e36,-2.0080625e36,-2.0085846e36,-2.0091067e36,-2.0096288e36,-2.010151e36,-2.010673e36,-2.0111952e36,-2.0117173e36,-2.0122394e36,-2.0127615e36,-2.0132836e36,-2.0138057e36,-2.0143279e36,-2.01485e36,-2.0153722e36,-2.0158944e36,-2.0164165e36,-2.0169386e36,-2.0174607e36,-2.0179828e36,-2.018505e36,-2.019027e36,-2.0195492e36,-2.0200713e36,-2.0205934e36,-2.0211155e36,-2.0216376e36,-2.0221597e36,-2.0226818e36,-2.023204e36,-2.023726e36,-2.0242482e36,-2.0247703e36,-2.0252924e36,-2.0258145e36,-2.0263366e36,-2.0268587e36,-2.0273809e36,-2.027903e36,-2.0284251e36,-2.0289472e36,-2.0294693e36,-2.0299914e36,-2.0305135e36,-2.0310357e36,-2.0315578e36,-2.0320799e36,-2.032602e36,-2.0331241e36,-2.0336462e36,-2.0341683e36,-2.0346904e36,-2.0352126e36,-2.0357347e36,-2.0362568e36,-2.0367789e36,-2.037301e36,-2.0378231e36,-2.0383454e36,-2.0388675e36,-2.0393896e36,-2.0399117e36,-2.0404339e36,-2.040956e36,-2.0414781e36,-2.0420002e36,-2.0425223e36,-2.0430444e36,-2.0435665e36,-2.0440887e36,-2.0446108e36,-2.0451329e36,-2.045655e36,-2.0461771e36,-2.0466992e36,-2.0472213e36,-2.0477434e36,-2.0482656e36,-2.0487877e36,-2.0493098e36,-2.0498319e36,-2.050354e36,-2.0508761e36,-2.0513982e36,-2.0519204e36,-2.0524425e36,-2.0529646e36,-2.0534867e36,-2.0540088e36,-2.054531e36,-2.055053e36,-2.0555752e36,-2.0560973e36,-2.0566194e36,-2.0571415e36,-2.0576636e36,-2.0581857e36,-2.0587078e36,-2.05923e36,-2.059752e36,-2.0602742e36,-2.0607963e36,-2.0613184e36,-2.0618407e36,-2.0623628e36,-2.0628849e36,-2.063407e36,-2.0639291e36,-2.0644512e36,-2.0649734e36,-2.0654955e36,-2.0660176e36,-2.0665397e36,-2.0670618e36,-2.067584e36,-2.068106e36,-2.0686282e36,-2.0691503e36,-2.0696724e36,-2.0701945e36,-2.0707166e36,-2.0712387e36,-2.0717608e36,-2.072283e36,-2.072805e36,-2.0733272e36,-2.0738493e36,-2.0743714e36,-2.0748935e36,-2.0754156e36,-2.0759377e36,-2.0764599e36,-2.076982e36,-2.0775041e36,-2.0780262e36,-2.0785483e36,-2.0790704e36,-2.0795925e36,-2.0801146e36,-2.0806368e36,-2.0811589e36,-2.081681e36,-2.0822031e36,-2.0827252e36,-2.0832473e36,-2.0837694e36,-2.0842916e36,-2.0848137e36,-2.085336e36,-2.085858e36,-2.0863802e36,-2.0869023e36,-2.0874244e36,-2.0879465e36]}
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/huge_positive.json b/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/huge_positive.json
new file mode 100644
index 000000000000..2065d8a9c47c
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/huge_positive.json
@@ -0,0 +1 @@
+{"expected":[0.00293988,0.99569273,0.98284507,0.9616785,0.9325576,0.8490607,0.8525882,0.74411577,0.7484243,0.62241966,0.4873735,0.49232322,0.49727368,0.5022244,0.23837,0.24260166,0.24685854,0.25114024,0.0599463,0.062318325,0.0006377101,0.00041222572,0.00023573637,0.00010821223,2.9742718e-5,2.3841858e-7,1.9788742e-5,0.2782272,0.27380103,0.26939702,0.26501563,0.26065728,0.25632238,0.2520114,0.24772471,0.77871287,0.774589,0.7704382,0.766261,0.76205754,0.99745077,0.75357413,0.99835175,0.7449913,0.9990573,0.7363124,0.99956715,0.6988641,0.9998811,0.7079092,0.999999,0.71687275,0.99992085,0.7257513,0.1967327,0.73454124,0.2046639,0.7432392,0.21271092,0.7518418,0.22087061,0.7603457,0.22913975,0.0037060082,0.23751509,0.0026001036,0.2459934,0.0016892254,0.2545713,0.0009737611,0.3107234,0.00045397878,0.30159646,0.00013011694,0.29254735,2.2649765e-6,0.2835796,0.8114724,0.2746967,0.80366623,0.98982906,0.79574096,0.2571994,0.0014509261,0.99341786,0.77954566,0.24008295,0.65158474,0.99623275,0.7629119,0.22337416,0.6703319,0.9982693,0.7458659,0.15818778,0.68881196,0.99952435,0.72843415,0.17290494,0.70699584,0.99999595,0.0146482885,0.18813515,0.7248551,0.9996834,0.010271877,0.2038545,0.74236166,0.36788425,0.006663561,0.22003832,0.7594881,0.34889364,0.0038290024,0.23666126,0.85634553,0.33014005,0.0017726719,0.25369722,0.84217834,0.3116529,0.0004977584,0.27111948,0.8274745,0.2934611,6.28829e-6,0.98523086,0.812257,0.27559328,0.0002990365,0.98962665,0.79654974,0.25807744,0.6316316,0.99325454,0.7803774,0.24094102,0.65062785,0.9961088,0.7637653,0.14330253,0.6693878,0.99818486,0.74673945,0.15745583,0.68788207,0.9994796,0.0200665,0.17214638,0.7060817,0.99999094,0.014890462,0.18735117,0.7239581,0.38806015,0.010475278,0.20304629,0.7414832,0.36885265,0.006827891,0.95973015,0.75862956,0.34985083,0.5331584,0.23580849,0.857049,0.9942047,0.0018581152,0.97384477,0.79167914,0.31258315,0.57253194,0.2702275,0.8282324,0.0919117,1.23381615e-5,0.98498774,0.05750096,0.27649078,0.6114506,0.30608743,0.7973573,0.11605185,0.0013021231,0.9930892,0.04046741,0.2418001,0.64967036,0.4673424,0.7646175,0.14259982,0.9299257,0.9980984,0.02631569,0.20872867,0.68695146,0.4279647,0.7302182,0.17138916,0.9083781,0.9999839,0.015134603,0.94226515,0.72306013,0.3890387,0.6943751,0.2022393,0.8842695,0.9987339,0.0069942176,0.95933455,0.75776994,0.35080862,0.53215677,0.23495677,0.857751,0.06981829,0.001945585,0.9735234,0.7908633,0.31351414,0.5715386,0.2693364,0.82898897,0.091332525,2.041459e-5,0.98474264,0.057969213,0.27738917,0.61047184,0.5079286,0.7981638,0.11540958,0.0012307167,0.9929219,0.04086393,0.24266025,0.6487123,0.46834415,0.7654687,0.14189854,0.9304373,0.9980099,0.026638031,0.20954517,0.6860201,0.42895818,0.7311088,0.17063326,0.90895647,0.99997485,0.015380681,0.94179595,0.7221613,0.39001775,0.49156952,0.20143348,0.88491094,0.9988042,0.0071625113,0.9589371,0.7569093,0.351767,0.53115493,0.23410612,0.85845155,0.069307536,0.0020350516,0.9732001,0.07838535,0.3144459,0.57054496,0.26844627,0.8297442,0.090754986,3.0487776e-5,0.9844955,0.058439285,0.27828845,0.6094926,0.5089323,0.798969,0.11476889,0.94965863,0.99275255,0.04126233,0.24352142,0.6477536,0.46934602,0.7663188,0.14119872,0.9309472,0.99791944,0.02696225,0.92134464,0.6850879,0.42995197,0.7319985,0.16987866,0.90953314,0.99996376,0.015628725,0.94132507,0.72126156,0.39099717,0.49056587,0.20062888,0.88555086,0.050122112,0.007332802,0.9585378,0.7560476,0.35272598,0.53015304,0.23325655,0.85915065,0.06879851,0.0021265447,0.9728749,0.07892582,0.8454073,0.62121314,0.26755702,0.8304981,0.090179086,0.9659153,0.0043979287,0.82059443,0.27918863,0.60851294,0.5099359,0.37217835,0.97695315,0.0010939538,0.9925813,0.041662574,0.8981154,0.18467158,0.34030688,0.7671678,0.14050034,0.9314554,0.021043539,0.8771117,0.21118164,0.68415505,0.430946,0.450039,0.66614425,0.012556851,0.99995065,0.015878707,0.9408523,0.1274038,0.7832216,0.6971461,0.1998255,0.8861892,0.04968497,0.98891735,0.15040833,0.7551849,0.3536856,0.52915096,0.58966476,0.29660165,0.9947983,0.0022200346,0.9725478,0.07946795,0.8446808,0.6221868,0.26666874,0.8312507,0.089604855,0.9662787,0.0042660832,0.81982344,0.2800897,0.6075328,0.51093954,0.37120813,0.73934436,0.0010285974,0.99240804,0.042064637,0.89750725,0.18545124,0.33935595,0.7680158,0.13980338,0.9319618,0.020756334,0.99936235,0.21200165,0.68322146,0.43194035,0.4490403,0.66709065,0.012334287,0.9999355,0.016130656,0.94037783,0.12807396,0.7823938,0.69806826,0.1990233,0.88682604,0.04924962,0.98912656,0.15112671,0.7543211,0.35464576,0.5281488,0.5906521,0.29568505,0.9949417,0.0023155212,0.9722189,0.080011815,0.8439529,0.25157732,0.2657814,0.832002,0.08903226,0.9666401,0.0041362345,0.81905115,0.28099167,0.60655224,0.5119431,0.37023848,0.7402252,0.0009652674,0.9922328,0.042468578,0.89689755,0.18623218,0.33840567,0.76886266,0.13910791,0.93246645,0.020471096,0.99941206,0.2128228,0.6822871,0.43293494,0.44804183,0.66803646,0.01211369,0.99991834,0.016384542,0.9399016,0.12874559,0.78156483,0.6989895,0.19822234,0.8874613,0.048816115,0.98933375,0.0002514422,0.75345635,0.3556065,0.5271465,0.5916391,0.2947693,0.9950832,0.0024130344,0.97188795,0.08055735,0.8432237,0.25244898,0.26489502,0.83275187,0.08846134,0.96699977,0.0040083826,0.81827766,0.2818945,0.60557127,0.5129466,0.3692693,0.7411051,0.00090390444,0.99205554,0.042874336,0.89628625,0.18701437,0.33745605,0.7697085,0.13841388,0.93296933,0.020187765,0.99945974,0.2136451,0.68135196,0.43392983,0.44704354,0.66898155,0.22457111,0.99989927,0.016640395,0.93942356,0.12941873,0.7807347,0.69991004,0.19742256,0.88809496,0.0483844,0.989539,0.00028428435,0.75259054,0.35656786,0.52614415,0.59262574,0.29385436,0.99522257,0.0025125146,0.9715551,0.08110458,0.84249306,0.2533216,0.26400954,0.83350044,0.087892085,0.9673574,0.0038825274,0.996758,0.28279823,0.6045899,0.51395005,0.36830068,0.741984,0.0008445978,0.9918763,0.043281972,0.89567333,0.18779781,0.7110356,0.7705532,0.1377213,0.93347055,0.019906372,0.9995054,0.21446857,0.68041617,0.434925,0.4460455,0.6699259,0.22373387,0.99987805,0.016898185,0.93894374,0.13009337,0.77990353,0.7008297,0.19662404,0.88872707,0.04795453,0.9897423,0.00031915307,0.75172377,0.35752976,0.5251416,0.593612,0.29294026,0.8087715,0.0026140213,0.97122043,0.081653506,0.841761,0.25419527,0.26312506,0.8342477,0.08732447,0.96771324,0.003758669,0.9966428,0.2837028,0.6036081,0.51495343,0.36733258,0.7428619,0.00078728795,0.9916951,0.043691427,0.8950589,0.18858254,0.7101252,0.7713968,0.13703018,0.93397,0.019626915,0.99954903,0.21529317,0.6794796,0.4359204,0.44504762,0.6708697,0.22289777,0.9998549,0.017157912,0.93846214,0.13076949,0.77907115,0.32690573,0.19582674,0.8893577,0.04752645,0.98994356,0.00035601854,0.7508559,0.35849226,0.52413905,0.5945979,0.29202697,0.8095604,0.0027175546,0.97088385,0.0822041,0.8410276,0.25506988,0.2622415,0.8349936,0.086758524,0.96806717,0.0036368072,0.9965257,0.28460827,0.60262585,0.5159568,0.366365,0.7437389,0.00073197484,0.99151194,0.04410273,0.89444274,0.18936852,0.7092139,0.4040618,0.47722483,0.6401977,0.058770478,0.8731296,0.21611893,0.6785423,0.43691605,0.44405,0.6718127,0.22206277,0.8683085,0.06219572,0.98248565,0.47004977,0.41112304,0.70266664,0.19503063,0.88998663,0.047100216,0.99014294,0.00039488077,0.9807501,0.06535351,0.86390746,0.90993726,0.034010947,0.99562895,0.0028230548,0.97054535,0.0827564,0.8402928,0.2559455,0.6339834,0.48368186,0.39772803,0.95825624,0.1020076,0.8151707,0.2855146,0.6016432,0.5169601,0.36539796,0.74461484,0.15923688,0.9175972,0.029237837,0.5688528,0.55016315,0.33366418,0.77308077,0.13565233,0.9349636,0.019073814,0.9996302,0.009984404,0.9526273,0.11041564,0.80446017,0.95040333,0.011040151,0.9998025,0.017683238,0.9374937,0.13212621,0.7774031,0.3287906,0.5553117,0.56372106,0.32085788,0.9204221,0.15546638,0.74911726,0.36041895,0.5221335,0.59656847,0.29020292,0.8111346,0.10516286,0.95616066,0.008370638,0.48885736,0.62898815,0.2604773,0.8364813,0.08563164,0.9687694,0.0033991039,0.99628544,0.03215906,0.9128796,0.16548353,0.06793594,0.9793016,0.0006273985,0.9911396,0.044930816,0.89320576,0.1909442,0.70738876,0.4060329,0.47521946,0.64212364,0.0597184,0.87179023,0.21777388,0.6766656,0.43890816,0.44205543,0.6736967,0.22039613,0.8696633,0.061229527,0.9830085,0.47205403,0.4091481,0.7045003,0.19344217,0.8912399,0.046253234,0.9905356,0.0004786849,0.9801945,0.06634936,0.8625278,0.22914287,0.03328693,0.9958898,0.003040105,0.9698627,0.08386603,0.83881915,0.2576997,0.6320481,0.48568857,0.39576367,0.7168761,0.103226036,0.8136096,0.28732985,0.59967667,0.5189664,0.36346555,0.7463639,0.15777045,0.91869795,0.028565198,0.9974512,0.5521602,0.3317722,0.7747603,0.13428038,0.9359503,0.018528461,0.9997034,0.01038757,0.95177066,0.11167717,0.80286515,0.9512714,0.010624558,0.99974203,0.018216312,0.9365182,0.13348886,0.77573055,0.33067822,0.55331594,0.5657118,0.318985,0.919332,0.1569241,0.74737453,0.3623479,0.5201277,0.59853756,0.28838226,0.8127036,0.10393432,0.95697904,0.008008778,0.48685032,0.6309268,0.25871694,0.8379636,0.08451143,0.969464,0.0031694174,0.9960372,0.032871217,0.9117439,0.16697836,0.06692904,0.97986937,0.0005308986,0.9907594,0.045766264,0.8919625,0.19252485,0.7055603,0.4080055,0.47321448,0.6440473,0.24685535,0.87044483,0.2194334,0.67478603,0.44090125,0.4400618,0.6755779,0.218734,0.87101215,0.0602704,0.98352355,8.827448e-5,0.40717462,0.7063307,0.19185862,0.8924868,0.045413554,0.9909204,0.00057053566,0.9796312,0.067352235,0.8611422,0.23083258,0.032570392,0.99614275,0.0032651722,0.9691724,0.084982365,0.83734,0.2594578,0.6301106,0.4876955,0.39380097,0.7186833,0.10445091,0.8120434,0.28914857,0.5977085,0.52097243,0.3615353,0.74810886,0.15630955,0.91979194,0.02790013,0.9976496,0.5541565,0.32988298,0.77643543,0.1329143,0.9369298,0.017990887,0.9997685,0.010798603,0.95090675,0.11294499,0.8012653,0.9521322,0.010216832,0.99967355,0.018757164,0.9355356,0.13485742,0.7740536,0.33256862,0.5513193,0.56770146,0.317115,0.7877028,0.15838733,0.7456278,0.36427903,0.51812154,0.600505,0.286565,0.81426764,0.102712154,0.9577901,0.0076548755,0.99899447,0.6328633,0.2569605,0.8394404,0.083397925,0.97015107,0.002947718,0.99578094,0.033590913,0.91060156,0.16847855,0.7336509,0.9804294,0.00044241548,0.9903712,0.046609014,0.89071286,0.19411048,0.70372856,0.4099796,0.47120994,0.6459687,0.24512607,0.8690935,0.22109744,0.67290366,0.44289526,0.43806913,0.67745626,0.21707642,0.872355,0.059318364,0.9840308,5.4597855e-5,0.40520266,0.7081578,0.19028005,0.8937275,0.044581205,0.99129736,0.00067046285,0.9790601,0.06836206,0.85975087,0.23252663,0.031861424,0.9963876,0.0034982264,0.9684746,0.08610538,0.8358555,0.26121977,0.62817115,0.4897026,0.39184,0.72048694,0.105682135,0.81047225,0.29097062,0.5957388,0.5229781,0.3596073,0.7498499,0.15485418,0.9208791,0.02724266,0.99784005,0.005294472,0.3279965,0.7781061,0.13155416,0.93790233,0.017461061,0.9998256,0.011217535,0.9500356,0.11421904,0.79966056,0.3034443,0.009817004,0.99959695,0.019305795,0.93454605,0.13623184,0.7723721,0.3344617,0.5493219,0.56969005,0.31524795,0.7893424,0.15985605,0.7438772,0.36621237,0.51611507,0.6024708,0.2847512,0.8158266,0.1014964,0.9585937,0.0073088706,0.99886316,0.6347977,0.25520796,0.84091175,0.082291126,0.97083056,0.002734065,0.99551666,0.03431812,0.9094526,0.1699841,0.7318741,0.9809817,0.0003620088,0.98997515,0.047459096,0.889457,0.19570103,0.70189345,0.41195515,0.4692059,0.6478877,0.24340093,0.86773616,0.22276595,0.6710185,0.44489023,0.43607748,0.6793318,0.21542338,0.8736919,0.05837342,0.9845302,2.8938055e-5,0.9870739,0.70998144,0.18870646,0.8949617,0.043756187,0.9916663,0.00077840686,0.97848135,0.06937885,0.8583537,0.234225,0.6581324,0.99662447,0.0037392974,0.9677692,0.08723506,0.8343655,0.2629856,0.6262295,0.4917099,0.38988078,0.72228706,0.17814416,0.80889606,0.2927961,0.5937676,0.52498347,0.35768157,0.7515869,0.15340438,0.9219595,0.02659282,0.99802244,0.0055898726,0.3261128,0.7797723,0.13019994,0.93886787,0.016939044,0.9998746,0.011644363,0.9491571,0.11549932,0.79805106,0.3052919,0.009425074,0.9995124,0.019862145,0.93354946,0.13761216,0.7706864,0.3363574,0.54732364,0.57167757,0.31338388,0.7909774,0.16133028,0.7421226,0.3681479,0.51410836,0.604435,0.28294086,0.8173805,0.10028705,0.95939,0.006970823,0.99872386,0.6367299,0.2534594,0.84237766,0.08119106,0.9715024,0.0025283992,0.9952444,0.035052836,0.90829706,0.17149496,0.73009354,0.38135946,0.00028964877,0.9895712,0.04831645,0.8881948,0.1972965,0.7000552,0.4139321,0.4672023,0.6498043,0.2416799,0.85219455,0.22443894,0.66913056,0.44688606,0.43408683,0.6812044,0.21377495,0.8750227,0.05743563,0.9850218,1.1384487e-5,0.98661643,0.71180177,0.1871379,0.8961897,0.04293853,0.9920274,0.0008944273,0.97789484,0.07040259,0.8569507,0.23592767,0.6562265,0.99685335,0.003988385,0.9670563,0.088371426,0.83287007,0.26475525,0.62428594,0.4937173,0.38792336,0.7240836,0.17661038,0.8073149,0.2946249,0.5917948,0.5269884,0.35575813,0.75331986,0.15196016,0.92303324,0.02595064,0.9981968,0.0058932006,0.3242319,0.78143394,0.12885171,0.93982625,0.016424775,0.9999155,0.01207906,0.9482714,0.116785794,0.79643667,0.3071426,0.5783471,0.9994197,0.020426273,0.9325459,0.1389983,0.7689962,0.33825582,0.5453246,0.57366383,0.31152284,0.79260767,0.11984652,0.7403641,0.37008554,0.5121014,0.6063975,0.28113404,0.8189292,0.09908417,0.96017885,0.0066407323,0.99857646,0.024465263,0.25171477,0.843838,0.080097765,0.9721668,0.00233078,0.9949642,0.035795033,0.90713495,0.17301115,0.7283093,0.38331068,0.00022536516,0.98915935,0.049181104,0.88692635,0.19889686,0.69821364,0.41591048,0.4651993,0.6517185,0.23996305,0.8536167,0.22611639,0.6672399,0.44888276,0.43209726,0.68307406,0.21213111,0.87634754,0.056504935,0.98550564,1.8775463e-6,0.9861511,0.7136187,0.18557438,0.89741117,0.042128265,0.9923805,0.0010184646,0.97730064,0.071433276,0.855542,0.2376346,0.65431815,0.99707425,0.00424546,0.96633583,0.089514405,0.83136934,0.26652867,0.6223403,0.49572483,0.3859677,0.7258765,0.17508182,0.9055438,0.036816567,0.99457026,0.0020748377,0.9730581,0.07862157,0.13104358,0.77873397,0.32728696,0.5569029,0.5621325,0.3223538,0.78309107,0.12750944,0.94077754,0.015918344,0.9999484,0.012521595,0.9473785,0.11807844,0.79481757,0.30899644,0.5763636,0.54260457,0.34084207,0.7666904,0.14089301,0.93116975,0.96820986,0.0035880506,0.9964777,0.031596452,0.91378057,0.16429508,0.7386017,0.37202525,0.5100943,0.6083583,0.27933073,0.82047284,0.097887725,0.96096027,0.006318599,0.9984211,0.025089413,0.9244826,0.15000483,0.7556703,0.35314572,0.52971464,0.5891092,0.67219424,0.2217251,0.86858314,0.06199962,0.9825921,0.00016912818,0.9887396,0.05005303,0.8856517,0.20050207,0.6963689,0.4178902,0.4631968,0.65363026,0.23825037,0.8550333,0.07180616,0.97708476,0.001065135,0.9925057,0.04183823,0.89784956,0.839995,0.2563002,0.63359183,0.48408797,0.39733034,0.71543217,0.18401593,0.89862627,0.04132536,0.99272573,0.0011505783,0.97669876,0.072470844,0.8541275,0.23934573,0.6524073,0.46447802,0.41662332,0.6975496,0.19947442,0.886468,0.049494296,0.01896283,0.9996457,0.010065347,0.95245445,0.11067045,0.8041377,0.2982924,0.58784485,0.53099686,0.35191828,0.7567734,0.14908859,0.92516,0.024689168,0.99852145,0.006523788,0.96046114,0.09865251,0.8194858,0.28048417,0.60710394,0.5113786,0.37078387,0.28983417,0.8114525,0.10491371,0.95632684,0.008296758,0.99921024,0.021577656,0.93051785,0.14178804,0.7656029,0.3420604,0.5413245,0.5776329,0.3078099,0.7958541,0.11725062,0.94795066,0.012237519,0.99992824,0.01624149,0.9401697,0.1283676,0.1912637,0.707019,0.406432,0.47481364,0.64251316,0.24823755,0.84674203,0.07793149,0.9734725,0.0019595623,0.99437976,0.037301898,0.90479106,0.17605925,0.7247297,0.3872188,0.49444032,0.62358546,0.26539353,0.8323302,0.08878231,0.9667977,0.9906142,0.0004966259,0.9800811,0.066551775,0.8622478,0.22948447,0.6634506,0.4528786,0.42812142,0.68680453,0.20885742,0.87897885,0.05466506,0.9864497,7.033348e-6,0.98519695,0.05709961,0.87550056,0.21318239,0.6818781,0.43337014,0.44760507,0.66845,0.74671733,0.15747434,0.91891986,0.028429985,0.99749196,0.0047835708,0.9648724,0.09182021,0.82835186,0.27008682,0.6184432,0.49974006,0.38206196,0.72945136,0.1720404,0.9078793,0.03531927,0.9951444,0.0024563074,0.9717426,0.08079654,0.8429042,0.7753915,0.3310606,0.55291194,0.56611454,0.3186063,0.7863916,0.12484294,0.9426589,0.014928848,0.99999,0.013430297,0.94557106,0.12068218,0.79156506,0.3127133,0.57239306,0.5466038,0.33704084,0.7700782,0.1381107,0.9331888,0.020064414,0.0031239092,0.995986,0.033016264,0.9115132,0.16728154,0.73506546,0.37591085,0.50607955,0.61227465,0.27573484,0.8235445,0.09551436,0.9625008,0.005698204,0.9980861,0.02636066,0.922347,0.15288359,0.75221145,0.35698858,0.5257056,0.5930572,0.29345435,0.21839818,0.87128437,0.06007716,0.98362684,8.08239e-5,0.98787653,0.05181861,0.8830837,0.20372692,0.69267,0.42185354,0.45919365,0.65744627,0.23483774,0.85784906,0.06974676,0.978271,0.00081926584,0.99179727,0.043460876,0.8954047,0.18814096,0.25981408,0.6297183,0.48810166,0.39340398,0.7190486,0.18091434,0.9010372,0.039741755,0.9933922,0.0014388859,0.9754719,0.07456663,0.8512815,0.24278063,0.6485782,0.46848425,0.412667,0.7012318,0.19627509,0.88900316,0.047767043,0.9898306,0.9997807,0.010882765,0.950731,0.11320233,0.80094093,0.3019729,0.58388925,0.53500336,0.34808797,0.76021045,0.14623967,0.9272593,0.023458362,0.99881387,0.007186204,0.9588814,0.10106009,0.8163868,0.2840988,0.60317844,0.51539236,0.3669092,0.28619766,0.81458354,0.10246557,0.95795333,0.007584214,0.9989685,0.022759914,0.928462,0.14460087,0.7621925,0.34587508,0.5373217,0.5815969,0.30410933,0.79908144,0.114679426,0.94972,0.011370361,0.99984413,0.017272145,0.9382509,0.13106576,0.77870667,0.7033574,0.41037932,0.47080433,0.64635724,0.2447766,0.8496237,0.07579243,0.9747477,0.0016205013,0.99376357,0.038838595,0.902421,0.17912826,0.7211357,0.3911342,0.49042553,0.6274721,0.2618553,0.8353194,0.08651146,0.9682214,0.0035841465,0.0006916523,0.9789436,0.068567276,0.8594686,0.23287001,0.6596507,0.45687747,0.4241502,0.690523,0.20560247,0.88158584,0.052853882,0.9873625,4.4435263e-5,0.98421156,0.058977216,0.8728372,0.21648055,0.67813206,0.4373517,0.44361365,0.67222506,0.75020176,0.15456033,0.92109835,0.027110547,0.9978776,0.0053536296,0.963379,0.09415233,0.8253132,0.2736598,0.61453843,0.5037553,0.37816384,0.7330115,0.16902018,0.91018856,0.03385195,0.99568665,0.0028698444,0.97039664,0.082998544,0.83997095,0.25632888,0.33484513,0.54891753,0.5700924,0.31487048,0.7896737,0.12220064,0.94451165,0.013970643,0.9999993,0.014370352,0.9437349,0.12331042,0.78829384,0.31644225,0.5684178,0.55060005,0.3332501,0.77344847,0.13535175,0.93518007,0.01895386,0.9996469,0.9954622,0.034466207,0.90921926,0.17028946,0.7315141,0.37980446,0.5020644,0.6161837,0.27215338,0.82659537,0.09316704,0.96401155,0.005109668,0.9977191,0.027662456,0.92018425,0.15578476,0.7487364,0.36084068,0.52169484,0.5969993,0.2898044,0.21508941,0.8739617,0.058183044,0.98463035,2.4735928e-5,0.986982,0.053613096,0.880491,0.20697087,0.6889586,0.42582196,0.45519313,0.66125214,0.23144221,0.8606418,0.06771511,0.9794264,0.000605613,0.9910571,0.045112938,0.8929344,0.19128951,0.7069891,0.6258364,0.49211615,0.3894845,0.72265095,0.17783332,0.90342224,0.03818783,0.9940269,0.0017593801,0.97421443,0.0766899,0.8484129,0.24623206,0.64473957,0.47249252,0.40871632,0.704901,0.19309536,0.8915132,0.046068937,0.9906205,0.0004980862,0.011731714,0.9489784,0.115759194,0.7977247,0.30566618,0.5799282,0.5390076,0.34426743,0.76363075,0.14341354,0.9293312,0.022258282,0.9990742,0.0078804195,0.957272,0.10349342,0.81326747,0.2877274,0.5992463,0.51940525,0.36304313,0.7467459,0.8176943,0.10004309,0.95955026,0.00690338,0.99869466,0.023972929,0.9263786,0.14743662,0.7587651,0.3496998,0.53331643,0.5855557,0.30042142,0.8022895,0.112133056,0.95146036,0.010534704,0.9997277,0.018333972,0.93630385,0.13378769,0.7753641,0.3310915,0.4143324,0.4667969,0.6501919,0.24133208,0.8524828,0.0736807,0.9759923,0.0013135672,0.9931154,0.040405005,0.90002507,0.18221796,0.7175274,0.3950566,0.48641133,0.6313505,0.25833243,0.83828706,0.08426729,0.9696149,0.0031202435,0.9959818,0.9777752,0.07061064,0.8566661,0.23627278,0.6558405,0.46087915,0.4201839,0.6942292,0.20236653,0.88416815,0.051071554,0.9882438,0.00011405349,0.9831949,0.060883284,0.87014973,0.21979699,0.6743746,0.44133732,0.43962586,0.67598903,0.21837106,0.15166858,0.92324966,0.025821596,0.99823105,0.005955577,0.9618557,0.09651065,0.8222535,0.27724737,0.6106263,0.5077703,0.37427357,0.73655653,0.16602129,0.9124713,0.032414675,0.996197,0.0033154786,0.9690204,0.08522743,0.83701575,0.25984287,0.33864033,0.54491997,0.5740657,0.31114656,0.79293704,0.11958271,0.94633573,0.013043791,0.9999764,0.015341729,0.9418701,0.12596291,0.7850039,0.32018304,0.5644381,0.554593,0.32947013,0.7768012,0.13261628,0.93714315,0.01787433,0.99978167,0.01088956,0.03594616,0.906899,0.17331862,0.7279477,0.38370582,0.49804917,0.6200853,0.26858664,0.8296251,0.09084597,0.96549237,0.0045530796,0.99731994,0.02899471,0.9179944,0.15870813,0.7452452,0.36470175,0.5176827,0.6009351,0.28616798,0.81460905,0.8766149,0.05631745,0.9856026,9.23872e-7,0.98605597,0.055436373,0.8778738,0.21023375,0.685235,0.42979515,0.4511955,0.66504765,0.22806397,0.8634113,0.06571135,0.9805509,0.00042414665,0.9902853,0.046794325,0.89043874,0.19445798,0.7033274,0.62194633,0.49613112,0.38557214,0.7262389,0.1747731,0.90578127,0.03666368,0.9946298,0.0021119714,0.9729264,0.078840435,0.8455218,0.24969989,0.6408916,0.47650254,0.4047715,0.70855695,0.18993542,0.893998,0.044400126,0.9913787,0.00069338083,0.97893417,0.94719696,0.11834079,0.7944893,0.30937198,0.57596207,0.54300934,0.34045696,0.76703393,0.14061043,0.93137527,0.021089017,0.9993024,0.008606344,0.95563316,0.10595229,0.810128,0.29136965,0.59530777,0.5234168,0.35918587,0.7502302,0.1545366,0.097646385,0.9611175,0.006254375,0.99838865,0.025216669,0.92426765,0.15029511,0.755321,0.35353416,0.52930903,0.58950895,0.29674637,0.8054781,0.10961172,0.95317155,0.0097305775,0.9995792,0.019426823,0.9343287,0.13653326,0.77200377,0.33487612,0.41829103,0.4627916,0.65401685,0.23790428,0.85531926,0.0715965,0.97720623,0.0010387897,0.99243546,0.0420011,0.8976033,0.18532816,0.71390504,0.39898577,0.48239803,0.6352205,0.25482517,0.8412329,0.082049936,0.97097814,0.002688378,0.99545777,0.034478188,0.072681665,0.8538406,0.23969257,0.6520203,0.46488333,0.41622272,0.6979228,0.19914979,0.88672566,0.049318194,0.98909366,0.00021594763,0.9821471,0.06281763,0.8674385,0.22313151,0.6706058,0.44532672,0.43564194,0.6797416,0.21506241,0.8739835,0.9253737,0.024563223,0.99855244,0.006589383,0.9603026,0.09889498,0.8191731,0.2808493,0.606707,0.5117848,0.37039143,0.7400863,0.16304392,0.91472745,0.031007588,0.99667525,0.0037931204,0.96761394,0.08748305,0.83403885,0.26337236,0.6258046,0.54091954,0.5780343,0.30743486,0.79618156,0.116989315,0.948131,0.0121483505,0.9999212,0.016344368,0.9399768,0.12863955,0.7816957,0.3239354,0.5604543,0.5585825,0.32570115,0.7801361,0.12990454,0.9390781,0.016825885,0.9998842,0.011738777,0.948964,0.9045524,0.17636886,0.72436666,0.38761467,0.49403402,0.6239791,0.2650348,0.8326337,0.08855131,0.96694314,0.0040284097,0.99688876,0.030357331,0.91577756,0.16165346,0.74173826,0.36857152,0.5136694,0.6048644,0.28254536,0.8177197,0.10002339,0.054480463,0.98654354,9.328127e-6,0.9850987,0.05728832,0.8752321,0.21351528,0.68149954,0.43377286,0.447201,0.6688325,0.22470331,0.8661573,0.063735604,0.9816444,0.00027489662,0.9894818,0.04850495,0.8879179,0.19764614,0.6996527,0.41436476,0.5001464,0.38166717,0.72981226,0.17173383,0.9081142,0.035169423,0.99520075,0.0024966896,0.9716078,0.08101812,0.8426084,0.25318387,0.63703454,0.48051408,0.40083286,0.7121995,0.18679547,0.8964574,0.04276067,0.9921053,0.00092086196,0.97776556,0.9453865,0.12094703,0.79123497,0.3130901,0.57199097,0.54700834,0.33665675,0.77041996,0.13783047,0.9333916,0.019950628,0.99949825,0.009363949,0.95396495,0.108436584,0.8069684,0.29502535,0.5913631,0.52742684,0.35533774,0.75369835,0.15164503,0.9232671,0.96265507,0.0056371987,0.99805045,0.026491016,0.9221294,0.15317616,0.75186056,0.35737795,0.5252998,0.5934564,0.29308438,0.8086469,0.10711557,0.95485353,0.008958101,0.99939835,0.020550668,0.9323255,0.13930228,0.7686259,0.3386714,0.5448873,0.4587887,0.65783185,0.23449337,0.8581327,0.069539905,0.9783893,0.00079616904,0.99172384,0.043626696,0.8951559,0.18845865,0.71026886,0.40292147,0.47838587,0.6390817,0.25133368,0.8441566,0.079859525,0.972311,0.0022886097,0.99490184,0.03595838,0.074780256,0.8509923,0.24312913,0.6481902,0.46888977,0.41226697,0.70160365,0.19595245,0.88925827,0.04759386,0.9899119,0.00035005808,0.98106813,0.064780205,0.86470354,0.22648388,0.666826,0.44931963,0.4316622,0.68348265,0.21177217,0.8766365,0.05630234,0.023335516,0.9988417,0.0072550178,0.95871985,0.10130516,0.8160721,0.28446537,0.6027808,0.5157985,0.3665176,0.7436006,0.16008827,0.9169569,0.02963072,0.9971215,0.00430274,0.9661772,0.08976531,0.8310404,0.2669171,0.6219145,0.49616396,0.58199775,0.30373555,0.799407,0.11442062,0.9498974,0.011284351,0.9998338,0.017378181,0.93805516,0.13134012,0.77836925,0.32769912,0.5564666,0.5625682,0.3219434,0.7834529,0.12721664,0.9409847,0.015808582,0.99995446,0.012619466,0.94718224,0.9021797,0.17943999,0.7207712,0.39153078,0.4900193,0.62786496,0.2614981,0.83562076,0.08628315,0.96836376,0.0035357475,0.9964255,0.03175026,0.9135339,0.16462067,0.7382157,0.37244982,0.50965524,0.608787,0.27893677,0.8208098,0.097626895,0.9611302,0.9874531,5.0008297e-5,0.9841101,0.059168816,0.87256634,0.21681532,0.6777524,0.43775484,0.44320995,0.67260647,0.22136039,0.86887974,0.061787963,0.9827068,0.0001578927,0.98864675,0.05024472,0.88537204,0.2008538,0.69596493,0.4183234,0.46275887,0.37776983,0.7333709,0.16871575,0.9104207,0.033705145,0.99573976,0.002913475,0.9702588,0.083222866,0.8396729,0.25668377,0.63316864,0.4845269,0.3969006,0.71582836,0.1836757,0.8988912,0.04115072,0.9928001,0.0011805296,0.9765661,0.07269871,0.123577714,0.7879617,0.31682023,0.5680153,0.55100423,0.3328671,0.7737886,0.13507387,0.93538,0.018843204,0.99966204,0.010153204,0.9522674,0.11094612,0.803789,0.29869428,0.58741254,0.53143513,0.3514989,0.7571502,0.1487759,0.92539096,0.02455306,0.005051911,0.9976802,0.027795881,0.9199639,0.15607956,0.7483838,0.36123097,0.5212889,0.59739786,0.2894358,0.81179595,0.104644716,0.9565062,0.008217305,0.9991853,0.021705449,0.9302944,0.14209455,0.7652307,0.34247708,0.5408868,0.5780667,0.6616367,0.23109958,0.8609231,0.06751108,0.9795416,0.00058576465,0.99098045,0.045281738,0.892683,0.19160923,0.7066192,0.40686342,0.47437507,0.642934,0.24785826,0.8470583,0.077696204,0.97361344,0.0019209385,0.99431396,0.037468493,0.90453315,0.8481214,0.24658224,0.64435065,0.47289822,0.40831685,0.70527154,0.19277468,0.8917658,0.045898736,0.99069864,0.00051638484,0.9799582,0.06677085,0.86194503,0.2298539,0.6630355,0.4533158,0.42768687,0.6872118,0.2085005,0.8792652,0.054465592,0.022138566,0.9990988,0.007952422,0.95710754,0.10374108,0.81295073,0.28809533,0.59884804,0.5198112,0.36265242,0.7470992,0.15715456,0.9191594,0.028284192,0.9975357,0.0048443675,0.96471053,0.09207398,0.8280206,0.27047688,0.6180165,0.5001792,0.38163528,0.30004895,0.8026131,0.111876786,0.9516348,0.010451883,0.9997142,0.018443137,0.93610525,0.13406447,0.7750249,0.33147398,0.5524752,0.5665498,0.31819713,0.78675145,0.12455279,0.94286287,0.014822543,0.99999255,0.013531566,0.9453716,0.12096843,0.18253177,0.7171614,0.3954539,0.4860052,0.63174254,0.25797683,0.83858615,0.084041685,0.9697543,0.003075093,0.99593025,0.033173382,0.91126364,0.16760945,0.7346778,0.3763363,0.50564045,0.6127025,0.2753424,0.82387924,0.09525636,0.96266747,0.98833126,0.00012290478,0.9830903,0.061077744,0.8698765,0.2201336,0.6739937,0.44174084,0.43922254,0.67636925,0.2180354,0.87157834,0.059868604,0.98373806,7.31051e-5,0.9877802,0.052013457,0.8828013,0.20408076,0.6922647,0.42228732,0.458756,0.657863,0.23446554,0.8581556,0.069523215,0.97839886,0.0007943213,0.9917179,0.043640107,0.89513576,0.18848431,0.7102391,0.40295365,0.5445153,0.57446754,0.31077042,0.7932663,0.11931917,0.94651866,0.0129517615,0.9999722,0.015441775,0.94167984,0.12623265,0.78467,0.3205622,0.5640352,0.5549969,0.3290882,0.77713954,0.13234079,0.93734026,0.017766833,0.9997935,0.010974079,0.9505407,0.11348075,0.80059016,0.3023762,0.5834563,0.5354414,0.34766963,0.7605853,0.14592946,0.92748725,0.023325622,0.9988439,0.007260591,0.9587068,0.101324975,0.81604666,0.284495,0.6027487,0.5158313,0.36648598,0.7436293,0.16006422,0.876882,0.05613026,0.98569924,2.9802322e-7,0.98596054,0.05562246,0.8776075,0.21056497,0.6848576,0.43019745,0.45079115,0.66543114,0.22772312,0.8636902,0.065510154,0.98066294,0.00040757656,0.9902054,0.046966106,0.89018476,0.1947797,0.7029562,0.41081136,0.47036594,0.6467771,0.24439907,0.8499375,0.07556012,0.97488534,0.0015853643,0.9936942,0.03900844,0.9021603,0.17946517,0.72074175,0.39156282,0.48998645,0.62789667,0.26146924,0.8356451,0.08626473,0.9683753,0.0035318434,0.9964216,0.031761765,0.94701505,0.11860341,0.79416084,0.30974767,0.57556045,0.5434142,0.34007192,0.7673774,0.14032805,0.9315806,0.02097243,0.9993236,0.0086815655,0.9554657,0.10620254,0.8098091,0.29173896,0.5949089,0.52382267,0.35879606,0.75058186,0.15424296,0.921335,0.026968092,0.9979178,0.005417913,0.96321386,0.09440899,0.82497954,0.27405146,0.61411095,0.5041944,0.377738,0.73339987,0.16869116,0.9104395,0.033693284,0.99574405,0.0029170215,0.9702476,0.083240986,0.83964884,0.25671244,0.633137,0.48455968,0.46238643,0.6544033,0.23755834,0.855605,0.07138714,0.97732735,0.0010127723,0.9923649,0.042164236,0.8973568,0.18564403,0.7135377,0.39938372,0.48199198,0.63561165,0.25447112,0.8415297,0.081827044,0.9711144,0.002646476,0.995403,0.034626603,0.9089668,0.1706197,0.73112476,0.38023078,0.5016253,0.61661077,0.27176258,0.8269278,0.09291193,0.964175,0.005047232,0.99767697,0.02780667,0.9199461,0.1561034,0.7483553,0.3612625,0.5212561,0.59743005,0.28940603,0.8118216,0.10462463,0.92558706,0.024437606,0.9985832,0.0066553056,0.9601438,0.09913769,0.81886023,0.2812146,0.60631,0.51219094,0.36999905,0.74044263,0.16274384,0.9149543,0.030866861,0.99672186,0.003843218,0.96746993,0.087712795,0.8337364,0.26373035,0.62541133,0.49255523,0.38905627,0.72304404,0.17749763,0.9036815,0.038019687,0.99409443,0.0017963648,0.9740751,0.07692376,0.8480978,0.24661055,0.6443192,0.47293097,0.4082846,0.70530146,0.19274879,0.89178616,0.045884997,0.99070495,0.00051787496,0.979949,0.06678721,0.9043135,0.17667869,0.7240035,0.38801062,0.49362776,0.6243727,0.2646762,0.8329369,0.08832058,0.9670882,0.00397709,0.99684334,0.030496925,0.9155518,0.16195273,0.74138254,0.3689636,0.5132632,0.6052617,0.28217956,0.81803334,0.099779725,0.9597231,0.0068308413,0.9986627,0.024107456,0.92614913,0.14774814,0.75838923,0.35011867,0.5328783,0.58598834,0.30001885,0.80263925,0.1118561,0.9516489,0.010445207,0.99971306,0.018451959,0.93608916,0.13408682,0.7749975,0.33150488,0.5524426,0.5665823,0.38127244,0.73017305,0.17142746,0.9083488,0.035019875,0.9952568,0.0025373995,0.9714726,0.08124,0.84231234,0.2535373,0.63664377,0.4809201,0.40043464,0.7125673,0.18647885,0.8967048,0.0425964,0.99217707,0.0009456873,0.9776455,0.07083577,0.8563582,0.23664597,0.65542316,0.46131694,0.41975042,0.6946337,0.20201379,0.884449,0.050878376,0.9883383,0.00012364984,0.9830818,0.06109345,0.8698544,0.22016081,0.67396295,0.44177344,0.43918997,0.67639995,0.21800831,0.87160033,0.059853047,0.96280897,0.005576521,0.99801445,0.02662167,0.9219115,0.15346894,0.7515095,0.35776746,0.524894,0.59385556,0.2927146,0.8089665,0.10686436,0.9550221,0.008881718,0.99937826,0.020666122,0.93212116,0.13958377,0.7682831,0.33905602,0.5444826,0.57449996,0.31074005,0.7932929,0.11929789,0.94653344,0.012944341,0.9999719,0.015449852,0.94166446,0.12625447,0.78464305,0.32059285,0.56400263,0.5550295,0.3290574,0.77716684,0.13231856,0.9373561,0.01775816,0.9997945,0.010980904,0.9505265,0.11350158,0.8507028,0.24347779,0.6478021,0.4692953,0.411867,0.7019754,0.19562998,0.88951313,0.04742101,0.989993,0.00036543608,0.98095727,0.06498036,0.8644254,0.2268241,0.66644293,0.44972384,0.43125972,0.68386054,0.21144027,0.8769036,0.05611515,0.98570704,2.682209e-7,0.98595285,0.05563751,0.877586,0.21059173,0.6848271,0.43022996,0.4507585,0.6654621,0.22769558,0.8637127,0.06549391,0.980672,0.00040626526,0.9901989,0.046979994,0.89016426,0.19480571,0.70292616,0.41084367,0.4703332,0.58239853,0.30336195,0.7997323,0.11416209,0.95007455,0.0111986995,0.9998232,0.017484546,0.9378592,0.13161471,0.77803165,0.32808062,0.5560629,0.56297123,0.32156378,0.78378755,0.12694597,0.94117606,0.015707403,0.9999598,0.012710333,0.9470003,0.11862463,0.7941343,0.30977803,0.575528,0.54344684,0.34004083,0.76740515,0.14030525,0.9315972,0.020963013,0.9993254,0.008687645,0.95545214,0.10622275,0.80978334,0.2917688,0.59487665,0.52385545,0.3587646,0.75061023,0.15421927,0.9213526,0.026957452,0.9875434,5.5909157e-5,0.9840083,0.059360683,0.87229526,0.21715027,0.6773725,0.438158,0.4428063,0.6729877,0.22102308,0.86915386,0.06159246,0.9828125,0.00014784932,0.9885605,0.05042237,0.885113,0.20117947,0.6955911,0.41872427,0.4623537,0.65443456,0.23753041,0.855628,0.071370244,0.9773371,0.0010106862,0.9923592,0.04217744,0.89733684,0.18566954,0.713508,0.3994159,0.48195916,0.63564324,0.2544425,0.8415537,0.08180907,0.9711254,0.0026431084,0.9953985,0.034638584,0.90894794,0.1706444,0.7876295,0.31719837,0.5676127,0.5514084,0.33248422,0.77412844,0.13479623,0.9355796,0.018732876,0.9996768,0.010234833,0.952094,0.111201465,0.8034662,0.29906628,0.5870124,0.5318407,0.35111097,0.7574985,0.14848685,0.92560434,0.024427474,0.9985857,0.0066606402,0.96013093,0.0991573,0.81883496,0.2812441,0.60627794,0.5122238,0.36996734,0.74047136,0.1627196,0.9149726,0.030855507,0.9967256,0.003847301,0.96745825,0.08773136,0.833712,0.2637593,0.62537956,0.49258804,0.38902426,0.66202116,0.23075712,0.86120415,0.06730732,0.97965646,0.0005662739,0.99090344,0.045450866,0.8924314,0.19192916,0.7062491,0.40726265,0.4739693,0.6433233,0.24750748,0.8473506,0.077478826,0.97374356,0.0018855035,0.9942527,0.03762296,0.9042942,0.17670372,0.72397417,0.38804263,0.4935949,0.6244045,0.26464725,0.8329614,0.08830196,0.96709996,0.0039729774,0.99683964,0.03050822,0.9155335,0.16197693,0.74135375,0.36899528,0.51323044,0.60529375,0.28215003,0.8180586,0.099760026,0.959736,0.006825447,0.999123,0.008024752,0.9569427,0.103989005,0.81263375,0.2884634,0.5984497,0.5202172,0.36226177,0.7474524,0.15685892,0.9193808,0.028149635,0.9975758,0.0049009323,0.96456045,0.09230909,0.8277138,0.2708379,0.61762166,0.5005855,0.38124055,0.7302022,0.17140272,0.90836775,0.035007805,0.99526125,0.0025407076,0.9714617,0.08125794,0.8422884,0.25356585,0.6366122,0.4809529,0.4004025,0.712597,0.18645328,0.8967248,0.042583168,0.99218285,0.00094771385,0.97763586,0.07085264,0.85633516,0.18284577,0.7167954,0.39585125,0.48559904,0.63213444,0.25762135,0.838885,0.08381638,0.9698933,0.0030302703,0.99587834,0.033319056,0.91103244,0.16791311,0.734319,0.37673002,0.5052342,0.6130983,0.27497953,0.82418865,0.09501794,0.96282136,0.0055716336,0.9980115,0.02663222,0.9218939,0.1534926,0.7514811,0.35779893,0.5248612,0.5938878,0.29268473,0.8089923,0.1068441,0.9550357,0.008875549,0.99937665,0.02067548,0.9321047,0.13960654,0.7682555,0.33908713,0.5444499,0.57453245,0.31070966,0.73727214,0.16541696,0.9129301,0.03212747,0.99629635,0.0034095347,0.9687382,0.085681766,0.83641505,0.26055592,0.6289016,0.4889469,0.39257812,0.7198083,0.18026388,0.9015416,0.03941208,0.9935285,0.001503706,0.9752097,0.07501143,0.8506794,0.24350598,0.64777076,0.46932805,0.4118347,0.70200545,0.19560394,0.88953376,0.04740706,0.98999953,0.00036668777,0.98094827,0.06499654,0.864403,0.22685158,0.666412,0.4497565,0.4312272,0.68389106,0.21141344,0.8769252,0.05610004,0.9857148,2.3841858e-7,0.9972353,0.029268026,0.91754794,0.15930244,0.74453676,0.36548424,0.51687056,0.6017309,0.2854337,0.81524026,0.10195336,0.958292,0.0074382126,0.9989135,0.023012757,0.92802566,0.14519608,0.7614722,0.3466796,0.5364785,0.5824309,0.30333173,0.79975855,0.114141196,0.95008886,0.011191785,0.9998223,0.017493129,0.9378433,0.13163692,0.7780044,0.32811144,0.5560303,0.56300384,0.32153314,0.78381455,0.12692413,0.94119155,0.015699238,0.9999602,0.012717694,0.9469856,0.11864588,0.7941078,0.2504037,0.6401117,0.4773143,0.40397388,0.7092953,0.18929833,0.89449775,0.044065952,0.99152833,0.0007368326,0.97870016,0.06899521,0.8588804,0.23358509,0.65884924,0.45771983,0.42331466,0.6913044,0.20491955,0.8821316,0.052476197,0.9875507,5.6415796e-5,0.9840001,0.05937621,0.8722733,0.21717733,0.6773418,0.43819058,0.44277367,0.6730185,0.22099584,0.86917603,0.061576694,0.9828211,0.00014704466,0.9885535,0.050436735,0.88509214,0.20120579,0.6955609,0.41875666,0.46232098,0.6544658,0.23750249,0.806121,0.109104514,0.95351434,0.009571701,0.9995452,0.01965177,0.9339255,0.13709179,0.77132154,0.33564338,0.5480761,0.5709294,0.31408536,0.79036236,0.12164739,0.9448981,0.013772905,0.99999714,0.014572293,0.9433446,0.123866886,0.78760266,0.3172289,0.5675802,0.5514411,0.3324533,0.7741559,0.13477382,0.93559575,0.018723994,0.99967796,0.010241449,0.95208,0.11122212,0.80344015,0.29909635,0.5869801,0.5318734,0.35107964,0.75752664,0.14846352,0.9256215,0.02441734,0.99858814,0.006665975,0.9819312,0.06321257,0.86688685,0.22380856,0.6698417,0.44613454,0.43483618,0.6804997,0.21439505,0.8745223,0.057787865,0.98483765,1.7046928e-5,0.9867896,0.053994626,0.87994194,0.20765632,0.68817556,0.42665815,0.45435116,0.6620522,0.23072943,0.86122686,0.0672909,0.97966576,0.0005647242,0.9908972,0.045464516,0.892411,0.191955,0.7062192,0.4072949,0.47393653,0.6433548,0.24747914,0.84737426,0.07746127,0.97375405,0.0018826723,0.99424773,0.037635475,0.9042749,0.17672879,0.7239448,0.3246962,0.55964756,0.5593894,0.32493973,0.7808088,0.12935862,0.93946624,0.016617477,0.99990106,0.011914462,0.9486057,0.1163007,0.7970451,0.30644542,0.5790936,0.5398505,0.34346426,0.76434875,0.1428214,0.9297639,0.022009522,0.99912494,0.008030623,0.9569294,0.10400903,0.8126081,0.28849316,0.5984175,0.52025,0.36223024,0.74748087,0.15683505,0.91939867,0.028138757,0.99757904,0.004905522,0.96454835,0.09232807,0.827689,0.2708671,0.6175897,0.50061834,0.38120866,0.73023134,0.17137799,0.8667102,0.063339144,0.9818619,0.00024861097,0.98931533,0.04885471,0.8874047,0.19829375,0.6989074,0.41516548,0.46595335,0.65099806,0.24060896,0.85308194,0.073239565,0.9762504,0.0012530386,0.9929749,0.040738612,0.8995173,0.18287113,0.7167658,0.39588338,0.48556623,0.6321661,0.25759265,0.83890915,0.08379817,0.96990454,0.0030266643,0.99587417,0.033330858,0.9110137,0.16793764,0.73428994,0.37676185,0.50520134,0.61313033,0.2749502,0.8242136,0.09499869,0.9628338,0.005566746,0.9980086,0.009521127,0.9536238,0.10894245,0.8063265,0.29576683,0.590564,0.52823824,0.35456005,0.7543982,0.15106255,0.92369914,0.02555409,0.99830145,0.0060863793,0.96153116,0.09701052,0.82160664,0.2780046,0.60980165,0.5086156,0.37345546,0.737301,0.16539258,0.9129486,0.032115906,0.99630034,0.0034133792,0.96872675,0.085700154,0.83639073,0.26058477,0.6288699,0.48897973,0.39254606,0.7198378,0.18023866,0.90156114,0.039399326,0.9935338,0.0015062392,0.97519946,0.07502872,0.85065603,0.24353415,0.6477394,0.40371874,0.47757402,0.6398621,0.250629,0.8447457,0.07941952,0.9725771,0.0022116005,0.9947854,0.03626159,0.90640706,0.17395914,0.7271949,0.38452825,0.49720374,0.6209058,0.26783752,0.8302604,0.09036061,0.9658003,0.00443995,0.99723184,0.029279113,0.9175298,0.15932646,0.74450815,0.36551583,0.5168377,0.601763,0.28540406,0.8152657,0.10193351,0.9583051,0.00743258,0.9989114,0.023022622,0.9280087,0.1452192,0.7614442,0.34671086,0.5364458,0.58246326,0.30330157,0.79978484,0.114120334,0.91740483,0.029355764,0.9972079,0.00440979,0.96588284,0.090230405,0.8304309,0.26763633,0.62112623,0.49697655,0.3847493,0.72699255,0.1741314,0.9062747,0.036346555,0.99475265,0.0021903217,0.97265124,0.07929671,0.8449102,0.25043213,0.6400802,0.47734708,0.4039417,0.7093251,0.18927261,0.89451796,0.04405248,0.99153435,0.00073862076,0.9786907,0.06901187,0.8588575,0.23361287,0.6588181,0.45775253,0.4232822,0.6913347,0.20489305,0.8821528,0.052461565,0.987558,5.6892633e-5,0.98399186,0.032035828,0.91307664,0.1652238,0.7375009,0.3732357,0.50884277,0.60958,0.27820817,0.8214327,0.09714505,0.9614437,0.0061217546,0.9983201,0.025482446,0.9238197,0.15089989,0.7545938,0.3543427,0.52846503,0.5903406,0.2959742,0.806147,0.10908404,0.95352817,0.009565324,0.9995438,0.01966089,0.9339092,0.13711438,0.771294,0.33567438,0.54804343,0.5709619,0.3140549,0.79038906,0.12162593,0.9449131,0.013765246,0.999997,0.01458016,0.94332945,0.12388852,0.7875758,0.31725946,0.5675477,0.48533913,0.39610556,0.7165611,0.18304682,0.8993807,0.040828496,0.9929369,0.001237005,0.97631955,0.07312125,0.85324275,0.24041477,0.6512146,0.46572673,0.41538936,0.6986989,0.19847494,0.88726103,0.0489527,0.98926854,0.00024151802,0.9819225,0.06322855,0.86686456,0.22383592,0.66981083,0.44616717,0.43480363,0.6805303,0.2143681,0.87454414,0.057772547,0.98484564,1.6778708e-5,0.9867821,0.054009438,0.8799206,0.20768297,0.68814516,0.42669064,0.45431846,0.66208327,0.2307018,0.86124957,0.10414776,0.95683706,0.008071214,0.99913836,0.021942914,0.9298799,0.14266247,0.7645415,0.34324855,0.5400769,0.5788692,0.3066549,0.7968623,0.116446406,0.9485054,0.0119638145,0.99990547,0.016559452,0.9395746,0.12920618,0.7809968,0.32472694,0.55961496,0.559422,0.32490897,0.780836,0.1293366,0.9394819,0.016609102,0.99990165,0.011921585,0.94859123,0.11632174,0.79701865,0.3064757,0.57906115,0.53988314,0.34343308,0.7643766,0.14279842,0.92978066,0.021999896,0.9991269,0.008036494,0.95691603,0.06717712,0.8613839,0.23053807,0.6622671,0.45412493,0.42688286,0.6879651,0.20784065,0.87979424,0.054097354,0.98673767,1.5228987e-5,0.9848931,0.05768189,0.87467283,0.2142086,0.6807115,0.43461096,0.44636038,0.669628,0.22399795,0.8667325,0.06332317,0.98187065,0.0002475977,0.9893086,0.048868865,0.88738394,0.19831994,0.6988772,0.41519782,0.46592063,0.65102935,0.24058089,0.8531052,0.07322249,0.9762604,0.0012507141,0.9929694,0.040751606,0.8994975,0.18289652,0.7167362,0.39591548,0.48553342,0.5673551,0.3174404,0.7874168,0.12401661,0.94323957,0.014626771,0.9999963,0.013719976,0.9450017,0.12149891,0.79054725,0.31387448,0.57115424,0.54784995,0.33585793,0.77113074,0.1372481,0.9338126,0.019714892,0.99953544,0.009527504,0.95360994,0.10896289,0.80630064,0.29579678,0.59053177,0.528271,0.35452867,0.7544265,0.15103903,0.92371655,0.02554372,0.9983041,0.0060914755,0.9615185,0.097029954,0.8215815,0.27803403,0.6097696,0.50864846,0.3734237,0.7373299,0.16536817,0.9129671,0.059483618,0.983943,5.9872866e-5,0.98760104,0.05237493,0.8822781,0.20473617,0.69151425,0.42309016,0.45794618,0.6586338,0.23377734,0.8587222,0.06911042,0.9786345,0.0007492006,0.99156994,0.04397273,0.89463735,0.18912038,0.7095015,0.40375096,0.47754124,0.63989365,0.25060058,0.8447695,0.07940176,0.9725878,0.002208531,0.99478066,0.036273867,0.9063879,0.17398402,0.7271657,0.3845602,0.4971709,0.62093765,0.26780844,0.8302851,0.09034181,0.9658122,0.004435569,0.9972284,0.02929017,0.9175118,0.113996774,0.79994035,0.30312294,0.58265495,0.53625196,0.34689584,0.7612785,0.14535618,0.9279082,0.023080945,0.9988985,0.007399231,0.95838284,0.10181594,0.8154166,0.28522855,0.60195327,0.5166435,0.36570305,0.7443386,0.15946874,0.9174229,0.029344678,0.99721134,0.004414141,0.9658709,0.09024921,0.8304063,0.2676654,0.62109435,0.49700937,0.38471735,0.7270218,0.17410651,0.9062938,0.036334276,0.9947574,0.0021933913,0.9726405,0.07931444,0.8448864,0.25046057,0.6400487,0.47737986,0.40390947,0.6475537,0.24370101,0.85051745,0.07513115,0.975139,0.001521349],"x":[1.8110049e18,5.2211715e32,1.0442343e33,1.5663515e33,2.0884686e33,2.6105856e33,3.132703e33,3.65482e33,4.1769372e33,4.6990542e33,5.221171e33,5.7432885e33,6.265406e33,6.787523e33,7.30964e33,7.831757e33,8.3538744e33,8.875992e33,9.3981084e33,9.920226e33,1.0442342e34,1.096446e34,1.1486577e34,1.2008694e34,1.2530812e34,1.3052929e34,1.3575046e34,1.4097162e34,1.461928e34,1.5141397e34,1.5663514e34,1.6185631e34,1.6707749e34,1.7229866e34,1.7751983e34,1.82741e34,1.8796217e34,1.9318334e34,1.9840451e34,2.0362569e34,2.0884685e34,2.1406803e34,2.192892e34,2.2451038e34,2.2973154e34,2.3495273e34,2.4017389e34,2.4539505e34,2.5061623e34,2.558374e34,2.6105858e34,2.6627974e34,2.7150092e34,2.7672208e34,2.8194325e34,2.8716443e34,2.923856e34,2.9760678e34,3.0282794e34,3.0804912e34,3.1327028e34,3.1849147e34,3.2371263e34,3.289338e34,3.3415498e34,3.3937614e34,3.4459732e34,3.4981848e34,3.5503967e34,3.6026083e34,3.65482e34,3.7070317e34,3.7592434e34,3.8114552e34,3.8636668e34,3.9158787e34,3.9680903e34,4.020302e34,4.0725137e34,4.1247253e34,4.176937e34,4.229149e34,4.2813607e34,4.3335725e34,4.385784e34,4.4379957e34,4.4902076e34,4.542419e34,4.594631e34,4.6468427e34,4.6990545e34,4.751266e34,4.8034777e34,4.8556896e34,4.907901e34,4.960113e34,5.0123246e34,5.0645365e34,5.116748e34,5.1689597e34,5.2211716e34,5.273383e34,5.325595e34,5.3778066e34,5.4300185e34,5.48223e34,5.5344417e34,5.5866536e34,5.638865e34,5.691077e34,5.7432886e34,5.7955005e34,5.847712e34,5.8999237e34,5.9521355e34,6.004347e34,6.056559e34,6.1087706e34,6.1609825e34,6.213194e34,6.2654057e34,6.3176175e34,6.3698294e34,6.4220407e34,6.4742526e34,6.5264645e34,6.578676e34,6.6308877e34,6.6830995e34,6.7353114e34,6.7875227e34,6.8397346e34,6.8919464e34,6.944158e34,6.9963697e34,7.0485815e34,7.1007934e34,7.1530047e34,7.2052166e34,7.2574284e34,7.30964e34,7.3618516e34,7.4140635e34,7.4662754e34,7.5184867e34,7.5706986e34,7.6229104e34,7.675122e34,7.7273336e34,7.7795455e34,7.8317573e34,7.8839687e34,7.9361806e34,7.9883924e34,8.040604e34,8.0928156e34,8.1450275e34,8.1972393e34,8.2494507e34,8.3016625e34,8.353874e34,8.406086e34,8.458298e34,8.510509e34,8.562721e34,8.614933e34,8.667145e34,8.719356e34,8.771568e34,8.82378e34,8.875991e34,8.928203e34,8.980415e34,9.032627e34,9.084838e34,9.13705e34,9.189262e34,9.241473e34,9.293685e34,9.345897e34,9.398109e34,9.45032e34,9.502532e34,9.554744e34,9.606955e34,9.659167e34,9.711379e34,9.7635905e34,9.815802e34,9.868014e34,9.920226e34,9.972437e34,1.0024649e35,1.0076861e35,1.0129073e35,1.0181284e35,1.0233496e35,1.0285708e35,1.0337919e35,1.0390131e35,1.0442343e35,1.0494554e35,1.0546766e35,1.0598978e35,1.065119e35,1.0703402e35,1.0755613e35,1.0807825e35,1.0860037e35,1.0912248e35,1.096446e35,1.1016672e35,1.1068883e35,1.1121095e35,1.1173307e35,1.1225518e35,1.127773e35,1.1329942e35,1.1382154e35,1.1434366e35,1.1486577e35,1.1538789e35,1.1591001e35,1.1643212e35,1.1695424e35,1.1747636e35,1.1799847e35,1.1852059e35,1.1904271e35,1.1956482e35,1.2008694e35,1.2060906e35,1.2113118e35,1.216533e35,1.2217541e35,1.2269753e35,1.2321965e35,1.2374176e35,1.2426388e35,1.24786e35,1.2530811e35,1.2583023e35,1.2635235e35,1.2687446e35,1.2739659e35,1.279187e35,1.2844081e35,1.2896294e35,1.2948505e35,1.3000717e35,1.3052929e35,1.310514e35,1.3157352e35,1.3209564e35,1.3261775e35,1.3313987e35,1.3366199e35,1.341841e35,1.3470623e35,1.3522834e35,1.3575045e35,1.3627258e35,1.3679469e35,1.3731681e35,1.3783893e35,1.3836104e35,1.3888316e35,1.3940528e35,1.3992739e35,1.4044951e35,1.4097163e35,1.4149374e35,1.4201587e35,1.4253798e35,1.4306009e35,1.4358222e35,1.4410433e35,1.4462645e35,1.4514857e35,1.4567068e35,1.461928e35,1.4671492e35,1.4723703e35,1.4775915e35,1.4828127e35,1.4880338e35,1.4932551e35,1.4984762e35,1.5036973e35,1.5089186e35,1.5141397e35,1.5193608e35,1.5245821e35,1.5298032e35,1.5350244e35,1.5402456e35,1.5454667e35,1.550688e35,1.5559091e35,1.5611302e35,1.5663515e35,1.5715726e35,1.5767937e35,1.582015e35,1.5872361e35,1.5924572e35,1.5976785e35,1.6028996e35,1.6081208e35,1.613342e35,1.6185631e35,1.6237844e35,1.6290055e35,1.6342266e35,1.6394479e35,1.644669e35,1.6498901e35,1.6551114e35,1.6603325e35,1.6655536e35,1.6707748e35,1.6759961e35,1.6812173e35,1.6864384e35,1.6916595e35,1.6968807e35,1.7021018e35,1.7073231e35,1.7125443e35,1.7177654e35,1.7229865e35,1.7282077e35,1.733429e35,1.7386501e35,1.7438713e35,1.7490924e35,1.7543135e35,1.7595347e35,1.764756e35,1.7699772e35,1.7751983e35,1.7804194e35,1.7856406e35,1.7908619e35,1.796083e35,1.8013042e35,1.8065253e35,1.8117464e35,1.8169676e35,1.822189e35,1.82741e35,1.8326312e35,1.8378523e35,1.8430735e35,1.8482946e35,1.853516e35,1.858737e35,1.8639582e35,1.8691793e35,1.8744005e35,1.8796218e35,1.884843e35,1.890064e35,1.8952852e35,1.9005063e35,1.9057275e35,1.9109488e35,1.91617e35,1.921391e35,1.9266122e35,1.9318334e35,1.9370547e35,1.9422758e35,1.947497e35,1.9527181e35,1.9579392e35,1.9631604e35,1.9683817e35,1.9736028e35,1.978824e35,1.9840451e35,1.9892663e35,1.9944874e35,1.9997087e35,2.0049299e35,2.010151e35,2.0153721e35,2.0205933e35,2.0258146e35,2.0310357e35,2.0362569e35,2.041478e35,2.0466991e35,2.0519203e35,2.0571416e35,2.0623627e35,2.0675839e35,2.072805e35,2.0780262e35,2.0832475e35,2.0884686e35,2.0936898e35,2.0989109e35,2.104132e35,2.1093532e35,2.1145745e35,2.1197956e35,2.1250168e35,2.130238e35,2.135459e35,2.1406804e35,2.1459015e35,2.1511227e35,2.1563438e35,2.161565e35,2.166786e35,2.1720074e35,2.1772285e35,2.1824497e35,2.1876708e35,2.192892e35,2.198113e35,2.2033344e35,2.2085555e35,2.2137767e35,2.2189978e35,2.224219e35,2.2294403e35,2.2346614e35,2.2398826e35,2.2451037e35,2.2503248e35,2.255546e35,2.2607673e35,2.2659884e35,2.2712096e35,2.2764307e35,2.2816518e35,2.2868732e35,2.2920943e35,2.2973154e35,2.3025366e35,2.3077577e35,2.3129789e35,2.3182002e35,2.3234213e35,2.3286425e35,2.3338636e35,2.3390847e35,2.344306e35,2.3495272e35,2.3547483e35,2.3599695e35,2.3651906e35,2.3704117e35,2.375633e35,2.3808542e35,2.3860754e35,2.3912965e35,2.3965176e35,2.4017388e35,2.40696e35,2.4121812e35,2.4174024e35,2.4226235e35,2.4278446e35,2.433066e35,2.4382871e35,2.4435082e35,2.4487294e35,2.4539505e35,2.4591717e35,2.464393e35,2.4696141e35,2.4748353e35,2.4800564e35,2.4852775e35,2.4904989e35,2.49572e35,2.5009411e35,2.5061623e35,2.5113834e35,2.5166045e35,2.5218259e35,2.527047e35,2.5322681e35,2.5374893e35,2.5427104e35,2.5479318e35,2.5531529e35,2.558374e35,2.5635952e35,2.5688163e35,2.5740374e35,2.5792588e35,2.58448e35,2.589701e35,2.5949222e35,2.6001433e35,2.6053644e35,2.6105858e35,2.615807e35,2.621028e35,2.6262492e35,2.6314703e35,2.6366917e35,2.6419128e35,2.647134e35,2.652355e35,2.6575762e35,2.6627973e35,2.6680187e35,2.6732398e35,2.678461e35,2.683682e35,2.6889032e35,2.6941245e35,2.6993457e35,2.7045668e35,2.709788e35,2.715009e35,2.7202302e35,2.7254516e35,2.7306727e35,2.7358938e35,2.741115e35,2.7463361e35,2.7515572e35,2.7567786e35,2.7619997e35,2.7672208e35,2.772442e35,2.7776631e35,2.7828845e35,2.7881056e35,2.7933267e35,2.7985479e35,2.803769e35,2.8089901e35,2.8142115e35,2.8194326e35,2.8246537e35,2.8298749e35,2.835096e35,2.8403173e35,2.8455385e35,2.8507596e35,2.8559808e35,2.8612019e35,2.866423e35,2.8716444e35,2.8768655e35,2.8820866e35,2.8873078e35,2.892529e35,2.8977502e35,2.9029714e35,2.9081925e35,2.9134136e35,2.9186348e35,2.923856e35,2.9290773e35,2.9342984e35,2.9395195e35,2.9447407e35,2.9499618e35,2.955183e35,2.9604043e35,2.9656254e35,2.9708465e35,2.9760677e35,2.9812888e35,2.9865101e35,2.9917313e35,2.9969524e35,3.0021735e35,3.0073947e35,3.0126158e35,3.0178372e35,3.0230583e35,3.0282794e35,3.0335006e35,3.0387217e35,3.043943e35,3.0491642e35,3.0543853e35,3.0596064e35,3.0648276e35,3.0700487e35,3.07527e35,3.0804912e35,3.0857123e35,3.0909335e35,3.0961546e35,3.101376e35,3.106597e35,3.1118182e35,3.1170393e35,3.1222605e35,3.1274816e35,3.132703e35,3.137924e35,3.1431452e35,3.1483663e35,3.1535875e35,3.1588086e35,3.16403e35,3.169251e35,3.1744722e35,3.1796934e35,3.1849145e35,3.1901358e35,3.195357e35,3.2005781e35,3.2057992e35,3.2110204e35,3.2162415e35,3.2214628e35,3.226684e35,3.2319051e35,3.2371262e35,3.2423474e35,3.2475687e35,3.2527899e35,3.258011e35,3.2632321e35,3.2684533e35,3.2736744e35,3.2788957e35,3.2841169e35,3.289338e35,3.2945591e35,3.2997803e35,3.3050016e35,3.3102227e35,3.3154439e35,3.320665e35,3.325886e35,3.3311073e35,3.3363284e35,3.3415496e35,3.3467707e35,3.3519922e35,3.3572134e35,3.3624345e35,3.3676556e35,3.3728768e35,3.378098e35,3.383319e35,3.38854e35,3.3937613e35,3.3989825e35,3.4042036e35,3.409425e35,3.4146463e35,3.4198674e35,3.4250885e35,3.4303097e35,3.4355308e35,3.440752e35,3.445973e35,3.4511942e35,3.4564153e35,3.4616365e35,3.466858e35,3.472079e35,3.4773003e35,3.4825214e35,3.4877426e35,3.4929637e35,3.498185e35,3.503406e35,3.508627e35,3.5138482e35,3.5190694e35,3.524291e35,3.529512e35,3.534733e35,3.5399543e35,3.5451754e35,3.5503966e35,3.5556177e35,3.560839e35,3.56606e35,3.571281e35,3.5765023e35,3.5817238e35,3.586945e35,3.592166e35,3.5973872e35,3.6026083e35,3.6078295e35,3.6130506e35,3.6182717e35,3.623493e35,3.628714e35,3.633935e35,3.6391563e35,3.644378e35,3.649599e35,3.65482e35,3.6600412e35,3.6652624e35,3.6704835e35,3.6757046e35,3.6809258e35,3.686147e35,3.691368e35,3.696589e35,3.7018107e35,3.707032e35,3.712253e35,3.717474e35,3.7226953e35,3.7279164e35,3.7331375e35,3.7383587e35,3.7435798e35,3.748801e35,3.754022e35,3.7592436e35,3.7644647e35,3.769686e35,3.774907e35,3.780128e35,3.7853493e35,3.7905704e35,3.7957916e35,3.8010127e35,3.806234e35,3.811455e35,3.8166765e35,3.8218976e35,3.8271188e35,3.83234e35,3.837561e35,3.842782e35,3.8480033e35,3.8532244e35,3.8584456e35,3.8636667e35,3.868888e35,3.8741094e35,3.8793305e35,3.8845517e35,3.8897728e35,3.894994e35,3.900215e35,3.9054362e35,3.9106573e35,3.9158785e35,3.9210996e35,3.9263207e35,3.9315423e35,3.9367634e35,3.9419845e35,3.9472057e35,3.952427e35,3.957648e35,3.962869e35,3.9680902e35,3.9733114e35,3.9785325e35,3.9837536e35,3.9889748e35,3.9941963e35,3.9994174e35,4.0046386e35,4.0098597e35,4.015081e35,4.020302e35,4.025523e35,4.0307443e35,4.0359654e35,4.0411865e35,4.0464077e35,4.051629e35,4.0568503e35,4.0620715e35,4.0672926e35,4.0725137e35,4.077735e35,4.082956e35,4.088177e35,4.0933983e35,4.0986194e35,4.1038406e35,4.109062e35,4.1142832e35,4.1195044e35,4.1247255e35,4.1299466e35,4.1351678e35,4.140389e35,4.14561e35,4.150831e35,4.1560523e35,4.1612734e35,4.166495e35,4.171716e35,4.1769372e35,4.1821584e35,4.1873795e35,4.1926007e35,4.1978218e35,4.203043e35,4.208264e35,4.2134852e35,4.2187063e35,4.223928e35,4.229149e35,4.23437e35,4.2395913e35,4.2448124e35,4.2500335e35,4.2552547e35,4.260476e35,4.265697e35,4.270918e35,4.2761392e35,4.2813608e35,4.286582e35,4.291803e35,4.297024e35,4.3022453e35,4.3074664e35,4.3126876e35,4.3179087e35,4.32313e35,4.328351e35,4.333572e35,4.3387937e35,4.3440148e35,4.349236e35,4.354457e35,4.359678e35,4.3648993e35,4.3701205e35,4.3753416e35,4.3805627e35,4.385784e35,4.391005e35,4.396226e35,4.4014477e35,4.406669e35,4.41189e35,4.417111e35,4.4223322e35,4.4275534e35,4.4327745e35,4.4379956e35,4.4432168e35,4.448438e35,4.453659e35,4.4588806e35,4.4641017e35,4.469323e35,4.474544e35,4.479765e35,4.4849862e35,4.4902074e35,4.4954285e35,4.5006497e35,4.5058708e35,4.511092e35,4.5163135e35,4.5215346e35,4.5267557e35,4.531977e35,4.537198e35,4.542419e35,4.5476403e35,4.5528614e35,4.5580825e35,4.5633037e35,4.568525e35,4.5737464e35,4.5789675e35,4.5841886e35,4.5894098e35,4.594631e35,4.599852e35,4.605073e35,4.6102943e35,4.6155154e35,4.6207366e35,4.6259577e35,4.6311792e35,4.6364004e35,4.6416215e35,4.6468427e35,4.6520638e35,4.657285e35,4.662506e35,4.667727e35,4.6729483e35,4.6781695e35,4.6833906e35,4.688612e35,4.6938333e35,4.6990544e35,4.7042755e35,4.7094967e35,4.714718e35,4.719939e35,4.72516e35,4.7303812e35,4.7356024e35,4.7408235e35,4.7460446e35,4.751266e35,4.7564873e35,4.7617084e35,4.7669296e35,4.7721507e35,4.777372e35,4.782593e35,4.787814e35,4.7930352e35,4.7982564e35,4.8034775e35,4.808699e35,4.81392e35,4.8191413e35,4.8243625e35,4.8295836e35,4.8348047e35,4.840026e35,4.845247e35,4.850468e35,4.8556893e35,4.8609104e35,4.866132e35,4.871353e35,4.8765742e35,4.8817954e35,4.8870165e35,4.8922376e35,4.8974588e35,4.90268e35,4.907901e35,4.913122e35,4.9183433e35,4.923565e35,4.928786e35,4.934007e35,4.9392282e35,4.9444494e35,4.9496705e35,4.9548917e35,4.9601128e35,4.965334e35,4.970555e35,4.975776e35,4.9809977e35,4.986219e35,4.99144e35,4.996661e35,5.0018823e35,5.0071034e35,5.0123245e35,5.0175457e35,5.022767e35,5.027988e35,5.033209e35,5.0384306e35,5.0436518e35,5.048873e35,5.054094e35,5.059315e35,5.0645363e35,5.0697574e35,5.0749786e35,5.0801997e35,5.085421e35,5.090642e35,5.0958635e35,5.1010846e35,5.1063058e35,5.111527e35,5.116748e35,5.121969e35,5.1271903e35,5.1324115e35,5.1376326e35,5.1428537e35,5.148075e35,5.153296e35,5.1585175e35,5.1637387e35,5.16896e35,5.174181e35,5.179402e35,5.1846232e35,5.1898444e35,5.1950655e35,5.2002866e35,5.2055078e35,5.210729e35,5.2159504e35,5.2211716e35,5.2263927e35,5.231614e35,5.236835e35,5.242056e35,5.2472772e35,5.2524984e35,5.2577195e35,5.2629406e35,5.2681618e35,5.2733833e35,5.2786045e35,5.2838256e35,5.2890467e35,5.294268e35,5.299489e35,5.30471e35,5.3099313e35,5.3151524e35,5.3203735e35,5.3255947e35,5.3308162e35,5.3360373e35,5.3412585e35,5.3464796e35,5.3517008e35,5.356922e35,5.362143e35,5.367364e35,5.3725853e35,5.3778064e35,5.3830276e35,5.388249e35,5.3934702e35,5.3986914e35,5.4039125e35,5.4091336e35,5.4143548e35,5.419576e35,5.424797e35,5.430018e35,5.4352393e35,5.4404605e35,5.445682e35,5.450903e35,5.4561243e35,5.4613454e35,5.4665665e35,5.4717877e35,5.477009e35,5.48223e35,5.487451e35,5.4926722e35,5.4978934e35,5.5031145e35,5.508336e35,5.513557e35,5.5187783e35,5.5239994e35,5.5292206e35,5.5344417e35,5.539663e35,5.544884e35,5.550105e35,5.5553262e35,5.5605474e35,5.565769e35,5.57099e35,5.576211e35,5.5814323e35,5.5866535e35,5.5918746e35,5.5970957e35,5.602317e35,5.607538e35,5.612759e35,5.6179803e35,5.6232018e35,5.628423e35,5.633644e35,5.6388652e35,5.6440863e35,5.6493075e35,5.6545286e35,5.6597498e35,5.664971e35,5.670192e35,5.675413e35,5.6806347e35,5.685856e35,5.691077e35,5.696298e35,5.7015192e35,5.7067404e35,5.7119615e35,5.7171826e35,5.7224038e35,5.727625e35,5.732846e35,5.7380676e35,5.7432887e35,5.74851e35,5.753731e35,5.758952e35,5.7641733e35,5.7693944e35,5.7746155e35,5.7798367e35,5.785058e35,5.790279e35,5.7955005e35,5.8007216e35,5.8059427e35,5.811164e35,5.816385e35,5.821606e35,5.8268273e35,5.8320484e35,5.8372696e35,5.8424907e35,5.847712e35,5.8529334e35,5.8581545e35,5.8633756e35,5.8685968e35,5.873818e35,5.879039e35,5.88426e35,5.8894813e35,5.8947025e35,5.8999236e35,5.9051447e35,5.910366e35,5.9155874e35,5.9208085e35,5.9260297e35,5.9312508e35,5.936472e35,5.941693e35,5.9469142e35,5.9521353e35,5.9573565e35,5.9625776e35,5.9677988e35,5.9730203e35,5.9782414e35,5.9834626e35,5.9886837e35,5.993905e35,5.999126e35,6.004347e35,6.0095682e35,6.0147894e35,6.0200105e35,6.0252316e35,6.030453e35,6.0356743e35,6.0408954e35,6.0461166e35,6.0513377e35,6.056559e35,6.06178e35,6.067001e35,6.0722223e35,6.0774434e35,6.0826645e35,6.087886e35,6.0931072e35,6.0983283e35,6.1035495e35,6.1087706e35,6.1139917e35,6.119213e35,6.124434e35,6.129655e35,6.1348763e35,6.1400974e35,6.145319e35,6.15054e35,6.1557612e35,6.1609824e35,6.1662035e35,6.1714246e35,6.1766458e35,6.181867e35,6.187088e35,6.192309e35,6.1975303e35,6.202752e35,6.207973e35,6.213194e35,6.2184153e35,6.2236364e35,6.2288575e35,6.2340787e35,6.2392998e35,6.244521e35,6.249742e35,6.2549632e35,6.2601843e35,6.265406e35,6.270627e35,6.275848e35,6.2810693e35,6.2862904e35,6.2915116e35,6.2967327e35,6.301954e35,6.307175e35,6.312396e35,6.3176172e35,6.3228388e35,6.32806e35,6.333281e35,6.338502e35,6.3437233e35,6.3489444e35,6.3541656e35,6.3593867e35,6.364608e35,6.369829e35,6.37505e35,6.3802717e35,6.3854928e35,6.390714e35,6.395935e35,6.4011562e35,6.4063773e35,6.4115985e35,6.4168196e35,6.4220407e35,6.427262e35,6.432483e35,6.4377045e35,6.4429257e35,6.448147e35,6.453368e35,6.458589e35,6.4638102e35,6.4690314e35,6.4742525e35,6.4794736e35,6.4846948e35,6.489916e35,6.4951374e35,6.5003586e35,6.5055797e35,6.510801e35,6.516022e35,6.521243e35,6.5264643e35,6.5316854e35,6.5369065e35,6.5421277e35,6.5473488e35,6.5525703e35,6.5577915e35,6.5630126e35,6.5682337e35,6.573455e35,6.578676e35,6.583897e35,6.5891183e35,6.5943394e35,6.5995606e35,6.6047817e35,6.6100032e35,6.6152244e35,6.6204455e35,6.6256666e35,6.6308878e35,6.636109e35,6.64133e35,6.646551e35,6.651772e35,6.6569934e35,6.6622146e35,6.667436e35,6.672657e35,6.677878e35,6.683099e35,6.68832e35,6.6935414e35,6.698763e35,6.7039845e35,6.7092056e35,6.714427e35,6.719648e35,6.724869e35,6.73009e35,6.735311e35,6.7405324e35,6.7457535e35,6.750975e35,6.756196e35,6.761417e35,6.766638e35,6.771859e35,6.77708e35,6.7823015e35,6.787523e35,6.792744e35,6.797965e35,6.803186e35,6.808407e35,6.813629e35,6.81885e35,6.824071e35,6.8292925e35,6.834514e35,6.839735e35,6.844956e35,6.850177e35,6.855398e35,6.860619e35,6.8658405e35,6.8710616e35,6.876283e35,6.881504e35,6.886725e35,6.891946e35,6.897167e35,6.9023884e35,6.9076096e35,6.912831e35,6.918052e35,6.923273e35,6.928494e35,6.933716e35,6.938937e35,6.944158e35,6.9493794e35,6.9546006e35,6.959822e35,6.965043e35,6.970264e35,6.975485e35,6.980706e35,6.985927e35,6.9911485e35,6.99637e35,7.001591e35,7.006812e35,7.012033e35,7.017254e35,7.022475e35,7.0276965e35,7.032918e35,7.038139e35,7.04336e35,7.048582e35,7.053803e35,7.059024e35,7.064245e35,7.069466e35,7.0746875e35,7.079909e35,7.08513e35,7.090351e35,7.095572e35,7.100793e35,7.106014e35,7.1112354e35,7.1164566e35,7.121678e35,7.126899e35,7.13212e35,7.137341e35,7.142562e35,7.147783e35,7.1530045e35,7.158226e35,7.1634476e35,7.168669e35,7.17389e35,7.179111e35,7.184332e35,7.189553e35,7.1947744e35,7.1999955e35,7.205217e35,7.210438e35,7.215659e35,7.22088e35,7.226101e35,7.231322e35,7.2365435e35,7.241765e35,7.246986e35,7.252207e35,7.257428e35,7.262649e35,7.26787e35,7.2730914e35,7.2783126e35,7.2835345e35,7.288756e35,7.293977e35,7.299198e35,7.304419e35,7.30964e35,7.314861e35,7.3200825e35,7.3253036e35,7.330525e35,7.335746e35,7.340967e35,7.346188e35,7.351409e35,7.3566304e35,7.3618515e35,7.367073e35,7.372294e35,7.377515e35,7.382736e35,7.387957e35,7.393178e35,7.3984e35,7.4036214e35,7.4088426e35,7.414064e35,7.419285e35,7.424506e35,7.429727e35,7.434948e35,7.440169e35,7.4453905e35,7.450612e35,7.455833e35,7.461054e35,7.466275e35,7.471496e35,7.476717e35,7.4819385e35,7.4871596e35,7.492381e35,7.497602e35,7.502823e35,7.508044e35,7.513266e35,7.518487e35,7.523708e35,7.5289295e35,7.534151e35,7.539372e35,7.544593e35,7.549814e35,7.555035e35,7.560256e35,7.5654774e35,7.5706986e35,7.57592e35,7.581141e35,7.586362e35,7.591583e35,7.596804e35,7.602025e35,7.6072465e35,7.612468e35,7.617689e35,7.62291e35,7.628131e35,7.633353e35,7.638574e35,7.643795e35,7.6490164e35,7.6542375e35,7.659459e35,7.66468e35,7.669901e35,7.675122e35,7.680343e35,7.685564e35,7.6907855e35,7.696007e35,7.701228e35,7.706449e35,7.71167e35,7.716891e35,7.722112e35,7.7273334e35,7.7325546e35,7.737776e35,7.742997e35,7.748219e35,7.75344e35,7.758661e35,7.763882e35,7.769103e35,7.7743245e35,7.7795456e35,7.784767e35,7.789988e35,7.795209e35,7.80043e35,7.805651e35,7.8108724e35,7.8160935e35,7.821315e35,7.826536e35,7.831757e35,7.836978e35,7.842199e35,7.84742e35,7.8526415e35,7.857863e35,7.8630846e35,7.868306e35,7.873527e35,7.878748e35,7.883969e35,7.88919e35,7.894411e35,7.8996325e35,7.904854e35,7.910075e35,7.915296e35,7.920517e35,7.925738e35,7.930959e35,7.9361805e35,7.9414016e35,7.946623e35,7.951844e35,7.957065e35,7.962286e35,7.967507e35,7.9727284e35,7.9779495e35,7.9831715e35,7.988393e35,7.993614e35,7.998835e35,8.004056e35,8.009277e35,8.014498e35,8.0197194e35,8.0249406e35,8.030162e35,8.035383e35,8.040604e35,8.045825e35,8.051046e35,8.056267e35,8.0614885e35,8.06671e35,8.071931e35,8.077152e35,8.082373e35,8.087594e35,8.092815e35,8.098037e35,8.103258e35,8.1084795e35,8.113701e35,8.118922e35,8.124143e35,8.129364e35,8.134585e35,8.139806e35,8.1450275e35,8.150249e35,8.15547e35,8.160691e35,8.165912e35,8.171133e35,8.176354e35,8.1815754e35,8.1867966e35,8.192018e35,8.197239e35,8.20246e35,8.207681e35,8.212903e35,8.218124e35,8.223345e35,8.2285664e35,8.2337876e35,8.239009e35,8.24423e35,8.249451e35,8.254672e35,8.259893e35,8.2651144e35,8.2703355e35,8.275557e35,8.280778e35,8.285999e35,8.29122e35,8.296441e35,8.301662e35,8.3068835e35,8.312105e35,8.317326e35,8.322547e35,8.327769e35,8.33299e35,8.338211e35,8.343432e35,8.348653e35,8.3538745e35,8.359096e35,8.364317e35,8.369538e35,8.374759e35,8.37998e35,8.385201e35,8.3904225e35,8.3956436e35,8.400865e35,8.406086e35,8.411307e35,8.416528e35,8.421749e35,8.4269704e35,8.4321915e35,8.437413e35,8.442634e35,8.447856e35,8.453077e35,8.458298e35,8.463519e35,8.46874e35,8.4739614e35,8.4791826e35,8.484404e35,8.489625e35,8.494846e35,8.500067e35,8.505288e35,8.510509e35,8.5157305e35,8.520952e35,8.526173e35,8.531394e35,8.536615e35,8.541836e35,8.547057e35,8.5522785e35,8.5574996e35,8.5627215e35,8.567943e35,8.573164e35,8.578385e35,8.583606e35,8.588827e35,8.594048e35,8.5992695e35,8.604491e35,8.609712e35,8.614933e35,8.620154e35,8.625375e35,8.630596e35,8.6358174e35,8.6410386e35,8.64626e35,8.651481e35,8.656702e35,8.661923e35,8.667144e35,8.672365e35,8.677587e35,8.6828084e35,8.6880296e35,8.693251e35,8.698472e35,8.703693e35,8.708914e35,8.714135e35,8.719356e35,8.7245775e35,8.729799e35,8.73502e35,8.740241e35,8.745462e35,8.750683e35,8.755904e35,8.7611255e35,8.766347e35,8.771568e35,8.776789e35,8.78201e35,8.787231e35,8.792452e35,8.797674e35,8.802895e35,8.8081165e35,8.813338e35,8.818559e35,8.82378e35,8.829001e35,8.834222e35,8.839443e35,8.8446644e35,8.8498856e35,8.855107e35,8.860328e35,8.865549e35,8.87077e35,8.875991e35,8.881212e35,8.8864335e35,8.891655e35,8.896876e35,8.902097e35,8.907318e35,8.91254e35,8.917761e35,8.922982e35,8.9282034e35,8.9334245e35,8.938646e35,8.943867e35,8.949088e35,8.954309e35,8.95953e35,8.964751e35,8.9699725e35,8.975194e35,8.980415e35,8.985636e35,8.990857e35,8.996078e35,9.001299e35,9.0065204e35,9.0117416e35,9.016963e35,9.022184e35,9.027406e35,9.032627e35,9.037848e35,9.043069e35,9.04829e35,9.0535115e35,9.0587326e35,9.063954e35,9.069175e35,9.074396e35,9.079617e35,9.084838e35,9.0900594e35,9.0952806e35,9.100502e35,9.105723e35,9.110944e35,9.116165e35,9.121386e35,9.126607e35,9.1318285e35,9.13705e35,9.142271e35,9.147493e35,9.152714e35,9.157935e35,9.163156e35,9.168377e35,9.173598e35,9.1788195e35,9.184041e35,9.189262e35,9.194483e35,9.199704e35,9.204925e35,9.210146e35,9.2153675e35,9.220589e35,9.22581e35,9.231031e35,9.236252e35,9.241473e35,9.246694e35,9.2519154e35,9.2571366e35,9.2623585e35,9.26758e35,9.272801e35,9.278022e35,9.283243e35,9.288464e35,9.293685e35,9.2989064e35,9.3041276e35,9.309349e35,9.31457e35,9.319791e35,9.325012e35,9.330233e35,9.335454e35,9.3406755e35,9.345897e35,9.351118e35,9.356339e35,9.36156e35,9.366781e35,9.372002e35,9.377224e35,9.3824454e35,9.3876665e35,9.392888e35,9.398109e35,9.40333e35,9.408551e35,9.413772e35,9.418993e35,9.4242145e35,9.429436e35,9.434657e35,9.439878e35,9.445099e35,9.45032e35,9.455541e35,9.4607624e35,9.4659836e35,9.471205e35,9.476426e35,9.481647e35,9.486868e35,9.492089e35,9.497311e35,9.502532e35,9.5077535e35,9.5129746e35,9.518196e35,9.523417e35,9.528638e35,9.533859e35,9.53908e35,9.5443014e35,9.5495225e35,9.554744e35,9.559965e35,9.565186e35,9.570407e35,9.575628e35,9.580849e35,9.5860705e35,9.591292e35,9.596513e35,9.601734e35,9.606955e35,9.612177e35,9.617398e35,9.622619e35,9.62784e35,9.6330615e35,9.638283e35,9.643504e35,9.648725e35,9.653946e35,9.659167e35,9.664388e35,9.6696095e35,9.6748306e35,9.680052e35,9.685273e35,9.690494e35,9.695715e35,9.700936e35,9.7061574e35,9.7113786e35,9.7166e35,9.721821e35,9.727043e35,9.732264e35,9.737485e35,9.742706e35,9.747927e35,9.7531484e35,9.7583696e35,9.763591e35,9.768812e35,9.774033e35,9.779254e35,9.784475e35,9.789696e35,9.7949175e35,9.800139e35,9.80536e35,9.810581e35,9.815802e35,9.821023e35,9.826244e35,9.8314655e35,9.836687e35,9.8419085e35,9.84713e35,9.852351e35,9.857572e35,9.862793e35,9.868014e35,9.873235e35,9.8784565e35,9.883678e35,9.888899e35,9.89412e35,9.899341e35,9.904562e35,9.909783e35,9.9150044e35,9.9202256e35,9.925447e35,9.930668e35,9.935889e35,9.94111e35,9.946331e35,9.951552e35,9.9567735e35,9.9619955e35,9.9672166e35,9.972438e35,9.977659e35,9.98288e35,9.988101e35,9.993322e35,9.9985434e35,1.00037645e36,1.0008986e36,1.0014207e36,1.0019428e36,1.0024649e36,1.002987e36,1.0035091e36,1.00403125e36,1.0045534e36,1.0050755e36,1.0055976e36,1.0061197e36,1.0066418e36,1.0071639e36,1.0076861e36,1.0082082e36,1.00873035e36,1.0092525e36,1.0097746e36,1.0102967e36,1.0108188e36,1.0113409e36,1.011863e36,1.01238515e36,1.01290726e36,1.0134294e36,1.0139515e36,1.0144736e36,1.0149957e36,1.0155178e36,1.01603994e36,1.01656205e36,1.0170842e36,1.0176063e36,1.0181284e36,1.0186505e36,1.0191727e36,1.0196948e36,1.0202169e36,1.02073904e36,1.02126116e36,1.0217833e36,1.0223054e36,1.0228275e36,1.0233496e36,1.0238717e36,1.0243938e36,1.02491595e36,1.0254381e36,1.0259602e36,1.0264823e36,1.0270044e36,1.0275265e36,1.0280486e36,1.02857075e36,1.02909286e36,1.029615e36,1.0301371e36,1.0306592e36,1.0311814e36,1.0317035e36,1.0322256e36,1.0327477e36,1.03326985e36,1.033792e36,1.0343141e36,1.0348362e36,1.0353583e36,1.0358804e36,1.0364025e36,1.03692464e36,1.03744676e36,1.0379689e36,1.038491e36,1.0390131e36,1.0395352e36,1.0400573e36,1.0405794e36,1.04110155e36,1.0416237e36,1.0421458e36,1.042668e36,1.0431901e36,1.0437122e36,1.0442343e36,1.0447564e36,1.04527854e36,1.04580065e36,1.0463228e36,1.0468449e36,1.047367e36,1.0478891e36,1.0484112e36,1.0489333e36,1.04945545e36,1.0499776e36,1.0504997e36,1.0510218e36,1.0515439e36,1.052066e36,1.0525881e36,1.05311024e36,1.05363236e36,1.05415455e36,1.0546767e36,1.0551988e36,1.0557209e36,1.056243e36,1.0567651e36,1.0572872e36,1.05780935e36,1.05833146e36,1.0588536e36,1.0593757e36,1.0598978e36,1.0604199e36,1.060942e36,1.06146414e36,1.06198625e36,1.0625084e36,1.0630305e36,1.0635526e36,1.0640747e36,1.0645968e36,1.0651189e36,1.06564105e36,1.06616324e36,1.06668536e36,1.0672075e36,1.0677296e36,1.0682517e36,1.0687738e36,1.0692959e36,1.069818e36,1.07034015e36,1.0708623e36,1.0713844e36,1.0719065e36,1.0724286e36,1.0729507e36,1.0734728e36,1.07399495e36,1.07451706e36,1.0750392e36,1.0755613e36,1.0760834e36,1.0766055e36,1.0771276e36,1.0776498e36,1.0781719e36,1.07869405e36,1.0792162e36,1.0797383e36,1.0802604e36,1.0807825e36,1.0813046e36,1.0818267e36,1.08234884e36,1.08287096e36,1.0833931e36,1.0839152e36,1.0844373e36,1.0849594e36,1.0854815e36,1.0860036e36,1.08652575e36,1.0870479e36,1.08757e36,1.0880921e36,1.0886142e36,1.0891364e36,1.0896585e36,1.0901806e36,1.0907027e36,1.09122485e36,1.091747e36,1.0922691e36,1.0927912e36,1.0933133e36,1.0938354e36,1.0943575e36,1.09487965e36,1.0954018e36,1.0959239e36,1.096446e36,1.0969681e36,1.0974902e36,1.0980123e36,1.09853444e36,1.09905656e36,1.0995787e36,1.1001008e36,1.1006229e36,1.1011451e36,1.1016672e36,1.1021893e36,1.1027114e36,1.10323354e36,1.10375566e36,1.1042778e36,1.1047999e36,1.105322e36,1.1058441e36,1.1063662e36,1.1068883e36,1.10741045e36,1.1079326e36,1.1084547e36,1.1089768e36,1.1094989e36,1.110021e36,1.1105431e36,1.11106525e36,1.1115874e36,1.1121095e36,1.1126317e36,1.1131538e36,1.1136759e36,1.114198e36,1.1147201e36,1.1152422e36,1.11576435e36,1.1162865e36,1.1168086e36,1.1173307e36,1.1178528e36,1.1183749e36,1.118897e36,1.11941914e36,1.11994126e36,1.1204634e36,1.1209855e36,1.1215076e36,1.1220297e36,1.1225518e36,1.12307394e36,1.12359605e36,1.12411825e36,1.12464036e36,1.1251625e36,1.1256846e36,1.1262067e36,1.1267288e36,1.1272509e36,1.12777304e36,1.12829516e36,1.1288173e36,1.1293394e36,1.1298615e36,1.1303836e36,1.1309057e36,1.1314278e36,1.13194995e36,1.1324721e36,1.1329942e36,1.1335163e36,1.1340384e36,1.1345605e36,1.1350826e36,1.1356048e36,1.1361269e36,1.13664905e36,1.1371712e36,1.1376933e36,1.1382154e36,1.1387375e36,1.1392596e36,1.1397817e36,1.14030385e36,1.140826e36,1.1413481e36,1.1418702e36,1.1423923e36,1.1429144e36,1.1434365e36,1.14395864e36,1.14448076e36,1.1450029e36,1.145525e36,1.1460471e36,1.1465692e36,1.1470913e36,1.1476135e36,1.1481356e36,1.14865774e36,1.14917986e36,1.149702e36,1.1502241e36,1.1507462e36,1.1512683e36,1.1517904e36,1.1523125e36,1.15283465e36,1.1533568e36,1.1538789e36,1.154401e36,1.1549231e36,1.1554452e36,1.1559673e36,1.15648945e36,1.1570116e36,1.1575337e36,1.1580558e36,1.1585779e36,1.1591001e36,1.1596222e36,1.1601443e36,1.1606664e36,1.16118855e36,1.1617107e36,1.1622328e36,1.1627549e36,1.163277e36,1.1637991e36,1.1643212e36,1.16484334e36,1.16536546e36,1.1658876e36,1.1664097e36,1.1669318e36,1.1674539e36,1.167976e36,1.1684981e36,1.16902025e36,1.1695424e36,1.1700645e36,1.1705867e36,1.1711088e36,1.1716309e36,1.172153e36,1.1726751e36,1.17319724e36,1.17371935e36,1.1742415e36,1.1747636e36,1.1752857e36,1.1758078e36,1.1763299e36,1.176852e36,1.17737415e36,1.1778963e36,1.1784184e36,1.1789405e36,1.1794626e36,1.1799847e36,1.1805068e36,1.18102894e36,1.18155106e36,1.1820732e36,1.1825954e36,1.1831175e36,1.1836396e36,1.1841617e36,1.1846838e36,1.1852059e36,1.18572805e36,1.18625016e36,1.1867723e36,1.1872944e36,1.1878165e36,1.1883386e36,1.1888607e36,1.18938284e36,1.18990496e36,1.1904271e36,1.1909492e36,1.1914713e36,1.1919934e36,1.1925155e36,1.1930376e36,1.19355975e36,1.19408194e36,1.19460406e36,1.1951262e36,1.1956483e36,1.1961704e36,1.1966925e36,1.1972146e36,1.1977367e36,1.19825885e36,1.198781e36,1.1993031e36,1.1998252e36,1.2003473e36,1.2008694e36,1.2013915e36,1.20191365e36,1.2024358e36,1.2029579e36,1.20348e36,1.2040021e36,1.2045242e36,1.2050463e36,1.2055685e36,1.2060906e36,1.20661275e36,1.2071349e36,1.207657e36,1.2081791e36,1.2087012e36,1.2092233e36,1.2097454e36,1.21026754e36,1.21078966e36,1.2113118e36,1.2118339e36,1.212356e36,1.2128781e36,1.2134002e36,1.2139223e36,1.21444445e36,1.2149666e36,1.2154887e36,1.2160108e36,1.2165329e36,1.217055e36,1.2175772e36,1.2180993e36,1.21862144e36,1.21914355e36,1.2196657e36,1.2201878e36,1.2207099e36,1.221232e36,1.2217541e36,1.2222762e36,1.22279835e36,1.2233205e36,1.2238426e36,1.2243647e36,1.2248868e36,1.2254089e36,1.225931e36,1.22645314e36,1.22697526e36,1.2274974e36,1.2280195e36,1.2285416e36,1.2290638e36,1.2295859e36,1.230108e36,1.2306301e36,1.23115225e36,1.23167436e36,1.2321965e36,1.2327186e36,1.2332407e36,1.2337628e36,1.2342849e36,1.23480704e36,1.23532915e36,1.2358513e36,1.2363734e36,1.2368955e36,1.2374176e36,1.2379397e36,1.2384618e36,1.23898395e36,1.2395061e36,1.2400282e36,1.2405504e36,1.2410725e36,1.2415946e36,1.2421167e36,1.2426388e36,1.2431609e36,1.24368305e36,1.2442052e36,1.2447273e36,1.2452494e36,1.2457715e36,1.2462936e36,1.2468157e36,1.24733785e36,1.24785996e36,1.2483821e36,1.2489042e36,1.2494263e36,1.2499484e36,1.2504705e36,1.25099264e36,1.25151475e36,1.2520369e36,1.2525591e36,1.2530812e36,1.2536033e36,1.2541254e36,1.2546475e36,1.2551696e36,1.25569174e36,1.25621386e36,1.256736e36,1.2572581e36,1.2577802e36,1.2583023e36,1.2588244e36,1.2593465e36,1.25986865e36,1.2603908e36,1.2609129e36,1.261435e36,1.2619571e36,1.2624792e36,1.2630013e36,1.26352345e36,1.2640456e36,1.26456775e36,1.2650899e36,1.265612e36,1.2661341e36,1.2666562e36,1.2671783e36,1.2677004e36,1.26822255e36,1.2687447e36,1.2692668e36,1.2697889e36,1.270311e36,1.2708331e36,1.2713552e36,1.27187734e36,1.27239946e36,1.2729216e36,1.2734437e36,1.2739658e36,1.2744879e36,1.27501e36,1.2755322e36,1.2760543e36,1.27657645e36,1.27709856e36,1.2776207e36,1.2781428e36,1.2786649e36,1.279187e36,1.2797091e36,1.28023124e36,1.28075335e36,1.2812755e36,1.2817976e36,1.2823197e36,1.2828418e36,1.2833639e36,1.283886e36,1.28440815e36,1.2849303e36,1.2854524e36,1.2859745e36,1.2864966e36,1.2870188e36,1.2875409e36,1.288063e36,1.2885851e36,1.28910725e36,1.2896294e36,1.2901515e36,1.2906736e36,1.2911957e36,1.2917178e36,1.2922399e36,1.29276205e36,1.29328416e36,1.2938063e36,1.2943284e36,1.2948505e36,1.2953726e36,1.2958947e36,1.29641684e36,1.29693895e36,1.2974611e36,1.2979832e36,1.2985053e36,1.2990275e36,1.2995496e36,1.3000717e36,1.3005938e36,1.30111594e36,1.30163806e36,1.3021602e36,1.3026823e36,1.3032044e36,1.3037265e36,1.3042486e36,1.3047707e36,1.30529285e36,1.305815e36,1.3063371e36,1.3068592e36,1.3073813e36,1.3079034e36,1.3084255e36,1.30894765e36,1.30946976e36,1.3099919e36,1.3105141e36,1.3110362e36,1.3115583e36,1.3120804e36,1.3126025e36,1.3131246e36,1.31364675e36,1.3141689e36,1.314691e36,1.3152131e36,1.3157352e36,1.3162573e36,1.3167794e36,1.31730154e36,1.31782366e36,1.3183458e36,1.3188679e36,1.31939e36,1.3199121e36,1.3204342e36,1.3209563e36,1.32147845e36,1.32200064e36,1.32252276e36,1.3230449e36,1.323567e36,1.3240891e36,1.3246112e36,1.3251333e36,1.3256554e36,1.32617755e36,1.3266997e36,1.3272218e36,1.3277439e36,1.328266e36,1.3287881e36,1.3293102e36,1.3298323e36,1.3303545e36,1.3308766e36,1.3313987e36,1.3319208e36,1.3324429e36,1.332965e36,1.3334871e36,1.3340093e36,1.3345314e36,1.3350535e36,1.3355756e36,1.3360977e36,1.3366198e36,1.337142e36,1.337664e36,1.3381862e36,1.3387083e36,1.3392304e36,1.3397527e36,1.3402748e36,1.3407969e36,1.341319e36,1.3418411e36,1.3423632e36,1.3428853e36,1.3434075e36,1.3439296e36,1.3444517e36,1.3449738e36,1.3454959e36,1.346018e36,1.3465401e36,1.3470623e36,1.3475844e36,1.3481065e36,1.3486286e36,1.3491507e36,1.3496728e36,1.350195e36,1.350717e36,1.3512392e36,1.3517613e36,1.3522834e36,1.3528055e36,1.3533276e36,1.3538497e36,1.3543718e36,1.354894e36,1.355416e36,1.3559382e36,1.3564603e36,1.3569824e36,1.3575045e36,1.3580266e36,1.3585488e36,1.3590709e36,1.359593e36,1.3601151e36,1.3606372e36,1.3611593e36,1.3616814e36,1.3622035e36,1.3627258e36,1.363248e36,1.36377e36,1.3642922e36,1.3648143e36,1.3653364e36,1.3658585e36,1.3663806e36,1.3669027e36,1.3674248e36,1.367947e36,1.368469e36,1.3689912e36,1.3695133e36,1.3700354e36,1.3705575e36,1.3710796e36,1.3716018e36,1.3721239e36,1.372646e36,1.3731681e36,1.3736902e36,1.3742123e36,1.3747344e36,1.3752565e36,1.3757787e36,1.3763008e36,1.3768229e36,1.377345e36,1.3778671e36,1.3783892e36,1.3789113e36,1.3794335e36,1.3799556e36,1.3804777e36,1.3809998e36,1.3815219e36,1.382044e36,1.3825661e36,1.3830883e36,1.3836104e36,1.3841325e36,1.3846546e36,1.3851767e36,1.3856988e36,1.3862211e36,1.3867432e36,1.3872653e36,1.3877874e36,1.3883095e36,1.3888317e36,1.3893538e36,1.3898759e36,1.390398e36,1.3909201e36,1.3914422e36,1.3919643e36,1.3924865e36,1.3930086e36,1.3935307e36,1.3940528e36,1.3945749e36,1.395097e36,1.3956191e36,1.3961412e36,1.3966634e36,1.3971855e36,1.3977076e36,1.3982297e36,1.3987518e36,1.399274e36,1.399796e36,1.4003182e36,1.4008403e36,1.4013624e36,1.4018845e36,1.4024066e36,1.4029287e36,1.4034508e36,1.403973e36,1.404495e36,1.4050172e36,1.4055393e36,1.4060614e36,1.4065835e36,1.4071056e36,1.4076277e36,1.4081499e36,1.408672e36,1.4091941e36,1.4097164e36,1.4102385e36,1.4107606e36,1.4112827e36,1.4118048e36,1.412327e36,1.412849e36,1.4133712e36,1.4138933e36,1.4144154e36,1.4149375e36,1.4154596e36,1.4159817e36,1.4165038e36,1.417026e36,1.417548e36,1.4180702e36,1.4185923e36,1.4191144e36,1.4196365e36,1.4201586e36,1.4206807e36,1.4212029e36,1.421725e36,1.4222471e36,1.4227692e36,1.4232913e36,1.4238134e36,1.4243355e36,1.4248577e36,1.4253798e36,1.4259019e36,1.426424e36,1.4269461e36,1.4274682e36,1.4279903e36,1.4285125e36,1.4290346e36,1.4295567e36,1.4300788e36,1.4306009e36,1.431123e36,1.4316451e36,1.4321672e36,1.4326895e36,1.4332116e36,1.4337337e36,1.4342559e36,1.434778e36,1.4353001e36,1.4358222e36,1.4363443e36,1.4368664e36,1.4373885e36,1.4379107e36,1.4384328e36,1.4389549e36,1.439477e36,1.4399991e36,1.4405212e36,1.4410433e36,1.4415654e36,1.4420876e36,1.4426097e36,1.4431318e36,1.4436539e36,1.444176e36,1.4446981e36,1.4452202e36,1.4457424e36,1.4462645e36,1.4467866e36,1.4473087e36,1.4478308e36,1.448353e36,1.448875e36,1.4493972e36,1.4499193e36,1.4504414e36,1.4509635e36,1.4514856e36,1.4520077e36,1.4525298e36,1.453052e36,1.453574e36,1.4540962e36,1.4546183e36,1.4551404e36,1.4556625e36,1.4561848e36,1.4567069e36,1.457229e36,1.4577511e36,1.4582732e36,1.4587954e36,1.4593175e36,1.4598396e36,1.4603617e36,1.4608838e36,1.461406e36,1.461928e36,1.4624502e36,1.4629723e36,1.4634944e36,1.4640165e36,1.4645386e36,1.4650607e36,1.4655828e36,1.466105e36,1.466627e36,1.4671492e36,1.4676713e36,1.4681934e36,1.4687155e36,1.4692376e36,1.4697597e36,1.4702819e36,1.470804e36,1.4713261e36,1.4718482e36,1.4723703e36,1.4728924e36,1.4734145e36,1.4739367e36,1.4744588e36,1.4749809e36,1.475503e36,1.4760251e36,1.4765472e36,1.4770693e36,1.4775914e36,1.4781136e36,1.4786357e36,1.4791578e36,1.47968e36,1.4802022e36,1.4807243e36,1.4812464e36,1.4817685e36,1.4822906e36,1.4828127e36,1.4833349e36,1.483857e36,1.4843791e36,1.4849012e36,1.4854233e36,1.4859454e36,1.4864675e36,1.4869896e36,1.4875118e36,1.4880339e36,1.488556e36,1.4890781e36,1.4896002e36,1.4901223e36,1.4906444e36,1.4911666e36,1.4916887e36,1.4922108e36,1.4927329e36,1.493255e36,1.4937771e36,1.4942992e36,1.4948214e36,1.4953435e36,1.4958656e36,1.4963877e36,1.4969098e36,1.4974319e36,1.497954e36,1.4984761e36,1.4989983e36,1.4995204e36,1.5000425e36,1.5005646e36,1.5010867e36,1.5016088e36,1.502131e36,1.5026532e36,1.5031753e36,1.5036974e36,1.5042196e36,1.5047417e36,1.5052638e36,1.5057859e36,1.506308e36,1.5068301e36,1.5073522e36,1.5078744e36,1.5083965e36,1.5089186e36,1.5094407e36,1.5099628e36,1.5104849e36,1.511007e36,1.5115291e36,1.5120513e36,1.5125734e36,1.5130955e36,1.5136176e36,1.5141397e36,1.5146618e36,1.515184e36,1.515706e36,1.5162282e36,1.5167503e36,1.5172724e36,1.5177945e36,1.5183166e36,1.5188387e36,1.5193608e36,1.519883e36,1.520405e36,1.5209272e36,1.5214493e36,1.5219714e36,1.5224935e36,1.5230156e36,1.5235378e36,1.5240599e36,1.524582e36,1.5251041e36,1.5256262e36,1.5261485e36,1.5266706e36,1.5271927e36,1.5277148e36,1.528237e36,1.528759e36,1.5292812e36,1.5298033e36,1.5303254e36,1.5308475e36,1.5313696e36,1.5318917e36,1.5324138e36,1.532936e36,1.533458e36,1.5339802e36,1.5345023e36,1.5350244e36,1.5355465e36,1.5360686e36,1.5365908e36,1.5371129e36,1.537635e36,1.5381571e36,1.5386792e36,1.5392013e36,1.5397234e36,1.5402456e36,1.5407677e36,1.5412898e36,1.5418119e36,1.542334e36,1.5428561e36,1.5433782e36,1.5439003e36,1.5444225e36,1.5449446e36,1.5454667e36,1.5459888e36,1.5465109e36,1.547033e36,1.5475551e36,1.5480773e36,1.5485994e36,1.5491216e36,1.5496438e36,1.5501659e36,1.550688e36,1.5512101e36,1.5517322e36,1.5522543e36,1.5527764e36,1.5532985e36,1.5538207e36,1.5543428e36,1.5548649e36,1.555387e36,1.5559091e36,1.5564312e36,1.5569533e36,1.5574755e36,1.5579976e36,1.5585197e36,1.5590418e36,1.5595639e36,1.560086e36,1.5606081e36,1.5611303e36,1.5616524e36,1.5621745e36,1.5626966e36,1.5632187e36,1.5637408e36,1.564263e36,1.564785e36,1.5653072e36,1.5658293e36,1.5663514e36,1.5668735e36,1.5673956e36,1.5679177e36,1.5684398e36,1.568962e36,1.569484e36,1.5700062e36,1.5705283e36,1.5710504e36,1.5715725e36,1.5720946e36,1.5726169e36,1.573139e36,1.5736611e36,1.5741833e36,1.5747054e36,1.5752275e36,1.5757496e36,1.5762717e36,1.5767938e36,1.577316e36,1.577838e36,1.5783602e36,1.5788823e36,1.5794044e36,1.5799265e36,1.5804486e36,1.5809707e36,1.5814928e36,1.582015e36,1.582537e36,1.5830592e36,1.5835813e36,1.5841034e36,1.5846255e36,1.5851476e36,1.5856698e36,1.5861919e36,1.586714e36,1.5872361e36,1.5877582e36,1.5882803e36,1.5888024e36,1.5893245e36,1.5898467e36,1.5903688e36,1.5908909e36,1.591413e36,1.5919351e36,1.5924572e36,1.5929793e36,1.5935015e36,1.5940236e36,1.5945457e36,1.5950678e36,1.5955899e36,1.5961122e36,1.5966343e36,1.5971564e36,1.5976785e36,1.5982006e36,1.5987227e36,1.5992449e36,1.599767e36,1.6002891e36,1.6008112e36,1.6013333e36,1.6018554e36,1.6023775e36,1.6028997e36,1.6034218e36,1.6039439e36,1.604466e36,1.6049881e36,1.6055102e36,1.6060323e36,1.6065545e36,1.6070766e36,1.6075987e36,1.6081208e36,1.6086429e36,1.609165e36,1.6096871e36,1.6102092e36,1.6107314e36,1.6112535e36,1.6117756e36,1.6122977e36,1.6128198e36,1.613342e36,1.613864e36,1.6143862e36,1.6149083e36,1.6154304e36,1.6159525e36,1.6164746e36,1.6169967e36,1.6175188e36,1.618041e36,1.618563e36,1.6190853e36,1.6196075e36,1.6201296e36,1.6206517e36,1.6211738e36,1.6216959e36,1.622218e36,1.6227401e36,1.6232622e36,1.6237844e36,1.6243065e36,1.6248286e36,1.6253507e36,1.6258728e36,1.626395e36,1.626917e36,1.6274392e36,1.6279613e36,1.6284834e36,1.6290055e36,1.6295276e36,1.6300497e36,1.6305718e36,1.631094e36,1.631616e36,1.6321382e36,1.6326603e36,1.6331824e36,1.6337045e36,1.6342266e36,1.6347487e36,1.6352709e36,1.635793e36,1.6363151e36,1.6368372e36,1.6373593e36,1.6378814e36,1.6384035e36,1.6389257e36,1.6394478e36,1.6399699e36,1.640492e36,1.6410141e36,1.6415362e36,1.6420583e36,1.6425806e36,1.6431027e36,1.6436248e36,1.644147e36,1.644669e36,1.6451912e36,1.6457133e36,1.6462354e36,1.6467575e36,1.6472796e36,1.6478017e36,1.6483239e36,1.648846e36,1.6493681e36,1.6498902e36,1.6504123e36,1.6509344e36,1.6514565e36,1.6519787e36,1.6525008e36,1.6530229e36,1.653545e36,1.6540671e36,1.6545892e36,1.6551113e36,1.6556334e36,1.6561556e36,1.6566777e36,1.6571998e36,1.6577219e36,1.658244e36,1.6587661e36,1.6592882e36,1.6598104e36,1.6603325e36,1.6608546e36,1.6613767e36,1.6618988e36,1.662421e36,1.662943e36,1.6634652e36,1.6639873e36,1.6645094e36,1.6650315e36,1.6655538e36,1.6660759e36,1.666598e36,1.6671201e36,1.6676422e36,1.6681643e36,1.6686864e36,1.6692086e36,1.6697307e36,1.6702528e36,1.6707749e36,1.671297e36,1.6718191e36,1.6723412e36,1.6728634e36,1.6733855e36,1.6739076e36,1.6744297e36,1.6749518e36,1.675474e36,1.675996e36,1.6765181e36,1.6770403e36,1.6775624e36,1.6780845e36,1.6786066e36,1.6791287e36,1.6796508e36,1.680173e36,1.680695e36,1.6812172e36,1.6817393e36,1.6822614e36,1.6827835e36,1.6833056e36,1.6838277e36,1.6843499e36,1.684872e36,1.6853941e36,1.6859162e36,1.6864383e36,1.6869604e36,1.6874825e36,1.6880046e36,1.6885268e36,1.689049e36,1.6895711e36,1.6900933e36,1.6906154e36,1.6911375e36,1.6916596e36,1.6921817e36,1.6927038e36,1.693226e36,1.693748e36,1.6942702e36,1.6947923e36,1.6953144e36,1.6958365e36,1.6963586e36,1.6968807e36,1.6974029e36,1.697925e36,1.698447e36,1.6989692e36,1.6994913e36,1.7000134e36,1.7005355e36,1.7010576e36,1.7015798e36,1.7021019e36,1.702624e36,1.7031461e36,1.7036682e36,1.7041903e36,1.7047124e36,1.7052346e36,1.7057567e36,1.7062788e36,1.7068009e36,1.707323e36,1.7078451e36,1.7083672e36,1.7088894e36,1.7094115e36,1.7099336e36,1.7104557e36,1.7109778e36,1.7114999e36,1.712022e36,1.7125443e36,1.7130664e36,1.7135885e36,1.7141106e36,1.7146328e36,1.7151549e36,1.715677e36,1.7161991e36,1.7167212e36,1.7172433e36,1.7177654e36,1.7182876e36,1.7188097e36,1.7193318e36,1.7198539e36,1.720376e36,1.7208981e36,1.7214202e36,1.7219423e36,1.7224645e36,1.7229866e36,1.7235087e36,1.7240308e36,1.7245529e36,1.725075e36,1.7255971e36,1.7261193e36,1.7266414e36,1.7271635e36,1.7276856e36,1.7282077e36,1.7287298e36,1.729252e36,1.729774e36,1.7302962e36,1.7308183e36,1.7313404e36,1.7318625e36,1.7323846e36,1.7329067e36,1.7334288e36,1.733951e36,1.734473e36,1.7349952e36,1.7355175e36,1.7360396e36,1.7365617e36,1.7370838e36,1.7376059e36,1.738128e36,1.7386501e36,1.7391723e36,1.7396944e36,1.7402165e36,1.7407386e36,1.7412607e36,1.7417828e36,1.742305e36,1.742827e36,1.7433492e36,1.7438713e36,1.7443934e36,1.7449155e36,1.7454376e36,1.7459597e36,1.7464818e36,1.747004e36,1.747526e36,1.7480482e36,1.7485703e36,1.7490924e36,1.7496145e36,1.7501366e36,1.7506588e36,1.7511809e36,1.751703e36,1.7522251e36,1.7527472e36,1.7532693e36,1.7537914e36,1.7543135e36,1.7548357e36,1.7553578e36,1.7558799e36,1.756402e36,1.7569241e36,1.7574462e36,1.7579683e36,1.7584905e36,1.7590127e36,1.7595348e36,1.760057e36,1.760579e36,1.7611012e36,1.7616233e36,1.7621454e36,1.7626675e36,1.7631896e36,1.7637118e36,1.7642339e36,1.764756e36,1.7652781e36,1.7658002e36,1.7663223e36,1.7668444e36,1.7673665e36,1.7678887e36,1.7684108e36,1.7689329e36,1.769455e36,1.7699771e36,1.7704992e36,1.7710213e36,1.7715435e36,1.7720656e36,1.7725877e36,1.7731098e36,1.7736319e36,1.774154e36,1.7746761e36,1.7751983e36,1.7757204e36,1.7762425e36,1.7767646e36,1.7772867e36,1.7778088e36,1.778331e36,1.778853e36,1.7793752e36,1.7798973e36,1.7804194e36,1.7809415e36,1.7814636e36,1.7819857e36,1.782508e36,1.7830301e36,1.7835522e36,1.7840743e36,1.7845965e36,1.7851186e36,1.7856407e36,1.7861628e36,1.7866849e36,1.787207e36,1.7877291e36,1.7882513e36,1.7887734e36,1.7892955e36,1.7898176e36,1.7903397e36,1.7908618e36,1.791384e36,1.791906e36,1.7924282e36,1.7929503e36,1.7934724e36,1.7939945e36,1.7945166e36,1.7950387e36,1.7955608e36,1.796083e36,1.796605e36,1.7971272e36,1.7976493e36,1.7981714e36,1.7986935e36,1.7992156e36,1.7997377e36,1.8002599e36,1.800782e36,1.8013041e36,1.8018262e36,1.8023483e36,1.8028704e36,1.8033925e36,1.8039147e36,1.8044368e36,1.8049589e36,1.8054812e36,1.8060033e36,1.8065254e36,1.8070475e36,1.8075696e36,1.8080917e36,1.8086138e36,1.809136e36,1.809658e36,1.8101802e36,1.8107023e36,1.8112244e36,1.8117465e36,1.8122686e36,1.8127907e36,1.8133129e36,1.813835e36,1.8143571e36,1.8148792e36,1.8154013e36,1.8159234e36,1.8164455e36,1.8169677e36,1.8174898e36,1.8180119e36,1.818534e36,1.8190561e36,1.8195782e36,1.8201003e36,1.8206225e36,1.8211446e36,1.8216667e36,1.8221888e36,1.8227109e36,1.823233e36,1.8237551e36,1.8242772e36,1.8247994e36,1.8253215e36,1.8258436e36,1.8263657e36,1.8268878e36,1.82741e36,1.827932e36,1.8284542e36,1.8289764e36,1.8294985e36,1.8300207e36,1.8305428e36,1.8310649e36,1.831587e36,1.8321091e36,1.8326312e36,1.8331533e36,1.8336754e36,1.8341976e36,1.8347197e36,1.8352418e36,1.8357639e36,1.836286e36,1.8368081e36,1.8373302e36,1.8378524e36,1.8383745e36,1.8388966e36,1.8394187e36,1.8399408e36,1.840463e36,1.840985e36,1.8415072e36,1.8420293e36,1.8425514e36,1.8430735e36,1.8435956e36,1.8441177e36,1.8446398e36,1.845162e36,1.845684e36,1.8462062e36,1.8467283e36,1.8472504e36,1.8477725e36,1.8482946e36,1.8488167e36,1.8493389e36,1.849861e36,1.8503831e36,1.8509052e36,1.8514273e36,1.8519496e36,1.8524717e36,1.8529938e36,1.853516e36,1.854038e36,1.8545602e36,1.8550823e36,1.8556044e36,1.8561265e36,1.8566486e36,1.8571707e36,1.8576928e36,1.858215e36,1.858737e36,1.8592592e36,1.8597813e36,1.8603034e36,1.8608255e36,1.8613476e36,1.8618697e36,1.8623919e36,1.862914e36,1.8634361e36,1.8639582e36,1.8644803e36,1.8650024e36,1.8655245e36,1.8660467e36,1.8665688e36,1.8670909e36,1.867613e36,1.8681351e36,1.8686572e36,1.8691793e36,1.8697014e36,1.8702236e36,1.8707457e36,1.8712678e36,1.8717899e36,1.872312e36,1.8728341e36,1.8733562e36,1.8738784e36,1.8744005e36,1.8749226e36,1.8754449e36,1.875967e36,1.8764891e36,1.8770112e36,1.8775333e36,1.8780554e36,1.8785775e36,1.8790996e36,1.8796218e36,1.8801439e36,1.880666e36,1.8811881e36,1.8817102e36,1.8822323e36,1.8827544e36,1.8832766e36,1.8837987e36,1.8843208e36,1.8848429e36,1.885365e36,1.8858871e36,1.8864092e36,1.8869314e36,1.8874535e36,1.8879756e36,1.8884977e36,1.8890198e36,1.8895419e36,1.890064e36,1.8905861e36,1.8911083e36,1.8916304e36,1.8921525e36,1.8926746e36,1.8931967e36,1.8937188e36,1.894241e36,1.894763e36,1.8952852e36,1.8958073e36,1.8963294e36,1.8968515e36,1.8973736e36,1.8978957e36,1.8984179e36,1.8989401e36,1.8994622e36,1.8999844e36,1.9005065e36,1.9010286e36,1.9015507e36,1.9020728e36,1.9025949e36,1.903117e36,1.9036391e36,1.9041613e36,1.9046834e36,1.9052055e36,1.9057276e36,1.9062497e36,1.9067718e36,1.907294e36,1.907816e36,1.9083382e36,1.9088603e36,1.9093824e36,1.9099045e36,1.9104266e36,1.9109487e36,1.9114708e36,1.911993e36,1.912515e36,1.9130372e36,1.9135593e36,1.9140814e36,1.9146035e36,1.9151256e36,1.9156478e36,1.9161699e36,1.916692e36,1.9172141e36,1.9177362e36,1.9182583e36,1.9187804e36,1.9193026e36,1.9198247e36,1.9203468e36,1.9208689e36,1.921391e36,1.9219133e36,1.9224354e36,1.9229575e36,1.9234796e36,1.9240017e36,1.9245238e36,1.925046e36,1.925568e36,1.9260902e36,1.9266123e36,1.9271344e36,1.9276565e36,1.9281786e36,1.9287008e36,1.9292229e36,1.929745e36,1.9302671e36,1.9307892e36,1.9313113e36,1.9318334e36,1.9323556e36,1.9328777e36,1.9333998e36,1.9339219e36,1.934444e36,1.9349661e36,1.9354882e36,1.9360103e36,1.9365325e36,1.9370546e36,1.9375767e36,1.9380988e36,1.9386209e36,1.939143e36,1.9396651e36,1.9401873e36,1.9407094e36,1.9412315e36,1.9417536e36,1.9422757e36,1.9427978e36,1.94332e36,1.943842e36,1.9443642e36,1.9448863e36,1.9454086e36,1.9459307e36,1.9464528e36,1.9469749e36,1.947497e36,1.9480191e36,1.9485412e36,1.9490633e36,1.9495855e36,1.9501076e36,1.9506297e36,1.9511518e36,1.9516739e36,1.952196e36,1.9527181e36,1.9532403e36,1.9537624e36,1.9542845e36,1.9548066e36,1.9553287e36,1.9558508e36,1.956373e36,1.956895e36,1.9574172e36,1.9579393e36,1.9584614e36,1.9589835e36,1.9595056e36,1.9600277e36,1.9605498e36,1.961072e36,1.961594e36,1.9621162e36,1.9626383e36,1.9631604e36,1.9636825e36,1.9642046e36,1.9647268e36,1.9652489e36,1.965771e36,1.9662931e36,1.9668152e36,1.9673373e36,1.9678594e36,1.9683817e36,1.9689038e36,1.969426e36,1.969948e36,1.9704702e36,1.9709923e36,1.9715144e36,1.9720365e36,1.9725586e36,1.9730807e36,1.9736028e36,1.974125e36,1.974647e36,1.9751692e36,1.9756913e36,1.9762134e36,1.9767355e36,1.9772576e36,1.9777798e36,1.9783019e36,1.978824e36,1.9793461e36,1.9798682e36,1.9803903e36,1.9809124e36,1.9814345e36,1.9819567e36,1.9824788e36,1.9830009e36,1.983523e36,1.9840451e36,1.9845672e36,1.9850893e36,1.9856115e36,1.9861336e36,1.9866557e36,1.9871778e36,1.9876999e36,1.988222e36,1.9887441e36,1.9892663e36,1.9897884e36,1.9903105e36,1.9908326e36,1.9913547e36,1.991877e36,1.9923991e36,1.9929212e36,1.9934433e36,1.9939654e36,1.9944875e36,1.9950097e36,1.9955318e36,1.9960539e36,1.996576e36,1.9970981e36,1.9976202e36,1.9981423e36,1.9986645e36,1.9991866e36,1.9997087e36,2.0002308e36,2.0007529e36,2.001275e36,2.0017971e36,2.0023192e36,2.0028414e36,2.0033635e36,2.0038856e36,2.0044077e36,2.0049298e36,2.005452e36,2.005974e36,2.0064962e36,2.0070183e36,2.0075404e36,2.0080625e36,2.0085846e36,2.0091067e36,2.0096288e36,2.010151e36,2.010673e36,2.0111952e36,2.0117173e36,2.0122394e36,2.0127615e36,2.0132836e36,2.0138057e36,2.0143279e36,2.01485e36,2.0153722e36,2.0158944e36,2.0164165e36,2.0169386e36,2.0174607e36,2.0179828e36,2.018505e36,2.019027e36,2.0195492e36,2.0200713e36,2.0205934e36,2.0211155e36,2.0216376e36,2.0221597e36,2.0226818e36,2.023204e36,2.023726e36,2.0242482e36,2.0247703e36,2.0252924e36,2.0258145e36,2.0263366e36,2.0268587e36,2.0273809e36,2.027903e36,2.0284251e36,2.0289472e36,2.0294693e36,2.0299914e36,2.0305135e36,2.0310357e36,2.0315578e36,2.0320799e36,2.032602e36,2.0331241e36,2.0336462e36,2.0341683e36,2.0346904e36,2.0352126e36,2.0357347e36,2.0362568e36,2.0367789e36,2.037301e36,2.0378231e36,2.0383454e36,2.0388675e36,2.0393896e36,2.0399117e36,2.0404339e36,2.040956e36,2.0414781e36,2.0420002e36,2.0425223e36,2.0430444e36,2.0435665e36,2.0440887e36,2.0446108e36,2.0451329e36,2.045655e36,2.0461771e36,2.0466992e36,2.0472213e36,2.0477434e36,2.0482656e36,2.0487877e36,2.0493098e36,2.0498319e36,2.050354e36,2.0508761e36,2.0513982e36,2.0519204e36,2.0524425e36,2.0529646e36,2.0534867e36,2.0540088e36,2.054531e36,2.055053e36,2.0555752e36,2.0560973e36,2.0566194e36,2.0571415e36,2.0576636e36,2.0581857e36,2.0587078e36,2.05923e36,2.059752e36,2.0602742e36,2.0607963e36,2.0613184e36,2.0618407e36,2.0623628e36,2.0628849e36,2.063407e36,2.0639291e36,2.0644512e36,2.0649734e36,2.0654955e36,2.0660176e36,2.0665397e36,2.0670618e36,2.067584e36,2.068106e36,2.0686282e36,2.0691503e36,2.0696724e36,2.0701945e36,2.0707166e36,2.0712387e36,2.0717608e36,2.072283e36,2.072805e36,2.0733272e36,2.0738493e36,2.0743714e36,2.0748935e36,2.0754156e36,2.0759377e36,2.0764599e36,2.076982e36,2.0775041e36,2.0780262e36,2.0785483e36,2.0790704e36,2.0795925e36,2.0801146e36,2.0806368e36,2.0811589e36,2.081681e36,2.0822031e36,2.0827252e36,2.0832473e36,2.0837694e36,2.0842916e36,2.0848137e36,2.085336e36,2.085858e36,2.0863802e36,2.0869023e36,2.0874244e36,2.0879465e36]}
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/large_negative.json
new file mode 100644
index 000000000000..7c54f29d03e4
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/large_negative.json
@@ -0,0 +1 @@
+{"expected":[0.9994749,0.5545138,0.011887014,0.3390506,0.9530171,0.99392784,0.10361886,0.00097569823,0.820898,0.9803931,0.9758587,0.06107986,0.628472,0.76203245,0.99610096,0.20367095,0.41190207,0.9176274,0.9231101,0.40195164,0.9057661,0.008758575,0.7706036,0.6186587,0.06602022,0.9788698,0.27464402,0.07678297,0.98446465,0.25617796,0.35124364,0.94863844,0.03104499,0.69704604,0.69765055,0.024202883,0.71608883,0.67827344,0.038453937,0.95720994,0.6585845,0.2740569,0.96527255,0.06634736,0.29290524,0.77115667,0.056319565,0.31211585,0.75335383,0.04706782,0.9172653,0.73510784,0.20314124,0.92841935,0.7164506,0.22022429,0.93882406,0.100750655,0.23779672,0.8214023,0.08851382,0.8657393,0.8051057,0.07699674,0.87967527,0.7882754,0.15530857,0.8929471,0.15626302,0.17075512,0.9055315,0.1413807,0.18677756,0.8666353,0.12712568,0.82039315,0.85209906,0.11352292,0.83616376,0.836947,0.10059616,0.85134625,0.20420116,0.73394567,0.8659143,0.18760383,0.7522185,0.8798422,0.17155296,0.7700501,0.29410368,0.15607661,0.78740937,0.27523154,0.14120185,0.80426586,0.2567526,0.67704344,0.8205902,0.23869914,0.6964412,0.8363538,0.22110274,0.71549535,0.35250047,0.20399418,0.7341725,0.33265275,0.18740341,0.7524401,0.31309777,0.61737996,0.7702662,0.29386973,0.6376002,0.7876194,0.27500224,0.65757966,0.4131977,0.25652832,0.6772835,0.39268395,0.5350609,0.69667727,0.3723579,0.55588585,0.715727,0.35225517,0.5766131,0.49615183,0.33241087,0.59720635,0.4752487,0.31285968,0.6176295,0.45438886,0.47262046,0.63784695,0.43360877,0.49352017,0.6578233,0.41294485,0.5144312,0.5585004,0.3924332,0.535317,0.5376857,0.3721097,0.556141,0.5168051,0.41060704,0.5768668,0.4958951,0.43125552,0.5974582,0.47499225,0.4520242,0.6199366,0.45413318,0.47287682,0.63809377,0.33017507,0.4937769,0.65806687,0.34998783,0.51468784,0.21892226,0.370063,0.53557307,0.23645896,0.39036545,0.5563961,0.25445664,0.41085967,0.5771205,0.27288377,0.43150982,0.59771,0.29170823,0.45227978,0.16957319,0.310897,0.4731332,0.18555328,0.33041656,0.4940336,0.20208341,0.35023278,0.51494443,0.21913466,0.37031096,0.5358292,0.23667717,0.39061597,0.12537748,0.2546803,0.4111123,0.13955176,0.27311254,0.43176416,0.15435654,0.29194167,0.45253536,0.16976592,0.3111347,0.0755994,0.18575293,0.33065814,0.08702445,0.20228964,0.35047776,0.09917185,0.21934709,0.37055892,0.11202037,0.23689547,0.39086652,0.12554756,0.25490406,0.045959353,0.13972974,0.27334136,0.055112243,0.15454212,0.29217517,0.0650433,0.16995874,0.31137246,0.07573521,0.1859527,0.33089972,0.08716923,0.20249596,0.023400575,0.09932539,0.21955961,0.030138552,0.11218238,0.23711383,0.037698418,0.12571776,0.25512788,0.04606694,0.13990784,0.0049170554,0.055229485,0.15472776,0.008274943,0.06516999,0.17015165,0.012492925,0.07587114,0.18615252,0.01756367,0.08731413,0.20270234,0.02347827,0.09947902,5.9247017e-5,0.03022641,0.1123445,0.00081828237,0.03779629,0.12588805,0.002450496,0.046174645,0.140086,0.0049530566,0.055346817,0.15491351,0.008321524,0.0652968,0.0029985607,0.012550026,0.07600716,0.0011469722,0.017631173,0.08745915,0.00016796589,0.023556083,0.09963277,6.324053e-5,0.030314386,0.11250669,0.0008330345,0.03789428,0.01368919,0.002475977,0.04628247,0.0092558265,0.004989147,0.055464298,0.005680859,0.008368224,0.06542373,0.0029705465,0.012607247,0.03972909,0.001129657,0.017698824,0.03196439,0.00016137958,0.023634017,0.025018394,6.741285e-5,0.030402511,0.018903226,0.0008479059,0.037992388,0.0136295855,0.0025015473,0.0676634,0.009206712,0.0050254166,0.057539165,0.0056423247,0.008415073,0.048188835,0.0029426813,0.012664616,0.07627955,0.2413859,0.11536202,0.03187412,0.00015491247,0.023712099,0.09994057,0.20653492,0.09001461,0.018833369,0.00086292624,0.038090616,0.31601876,0.17373636,0.06753451,0.009157717,0.0050617754,0.055699587,0.27781552,0.14321959,0.048078924,0.0029149055,0.012722075,0.39575803,0.2411662,0.115198046,0.031783998,0.00014859438,0.0237903,0.35526294,0.20632708,0.08986768,0.018763632,0.0008780658,0.038188964,0.31578004,0.17354184,0.0674057,0.009108871,0.0050982833,0.43672752,0.27758557,0.14303976,0.047969133,0.0028873086,0.012779713,0.39550698,0.24094656,0.11503416,0.031693965,0.0001423955,0.51994824,0.3550172,0.20611933,0.089720875,0.018694013,0.0008933544,0.4781341,0.3155414,0.17334741,0.067277014,0.009060174,0.0051349103,0.43647283,0.27735564,0.14286003,0.04785946,0.002859801,0.5613681,0.3952559,0.240727,0.11487037,0.03160408,0.00013631582,0.5196917,0.3547715,0.20591167,0.08957419,0.018624514,0.64289886,0.4778776,0.3153028,0.17315307,0.06714845,0.009011567,0.60236406,0.4362182,0.27712578,0.14268038,0.047749907,0.7204634,0.5611133,0.39500487,0.24050751,0.114706665,0.031514317,0.68219525,0.51943517,0.35452583,0.20570406,0.08942762,0.018555164,0.6426528,0.4776211,0.31506422,0.17295882,0.06701997,0.7569696,0.6021127,0.43596357,0.276896,0.14250085,0.047640473,0.72023296,0.5608585,0.39475384,0.24028808,0.11454311,0.8246116,0.6819561,0.5191786,0.35428023,0.20549655,0.08928114,0.7917005,0.6424067,0.47736463,0.3148257,0.17276466,0.88324404,0.7567493,0.60186136,0.43570894,0.27666622,0.14232138,0.8550718,0.7200024,0.5606036,0.39450288,0.24006873,0.114379615,0.8244163,0.6817169,0.5189221,0.35403463,0.2052891,0.908588,0.7914919,0.6421606,0.47710815,0.31458724,0.17257059,0.88307905,0.7565289,0.60161,0.4354543,0.27643657,0.95076376,0.85489094,0.71977186,0.56034875,0.3942519,0.23984945,0.9311094,0.8242209,0.6814777,0.5186655,0.3537891,0.98042846,0.90844,0.79128325,0.6419144,0.47685167,0.31434882,0.9671742,0.882914,0.75630856,0.6013586,0.43519974,0.27620694,0.9506526,0.8547101,0.7195412,0.5600939,0.394001,0.9902724,0.93097925,0.8240254,0.6812385,0.51840895,0.35354358,0.9803573,0.9082918,0.7910746,0.6416682,0.4765952,0.9997631,0.9670826,0.88274884,0.756088,0.6011072,0.43494517,0.9967295,0.9505413,0.8545291,0.7193105,0.559839,0.3937501,0.990222,0.9308491,0.82382977,0.68099916,0.51815236,0.9993149,0.98028594,0.9081435,0.7908658,0.641422,0.47633874,0.99975514,0.96699095,0.8825836,0.7558675,0.6008557,0.98804176,0.99670017,0.9504299,0.85434794,0.71907973,0.5595841,0.9954174,0.9901714,0.9307187,0.82363415,0.6807598,0.96322286,0.99932826,0.9802145,0.9079952,0.7906569,0.6411757,0.9773293,0.99974704,0.96689916,0.8824183,0.7556469,0.60060424,0.9880975,0.9966706,0.95031846,0.8541668,0.71884894,0.9459928,0.99545205,0.99012065,0.93058825,0.8234384,0.6805204,0.9633194,0.99934155,0.98014295,0.9078467,0.79044795,0.9022777,0.97740567,0.9997388,0.96680725,0.8822528,0.75542617,0.9256818,0.9881531,0.996641,0.95020676,0.85398555,0.84739727,0.9461088,0.9954865,0.9900698,0.9304577,0.82324255,0.8762293,0.96341586,0.9993546,0.98007125,0.90769815,0.7902389,0.9024301,0.97748196,0.9997304,0.96671516,0.88208723,0.8163345,0.9258164,0.9882086,0.99661124,0.95009506,0.8538041,0.84758186,0.9462247,0.9955209,0.99001884,0.93032706,0.7476597,0.8763983,0.9635122,0.9993676,0.9799994,0.9075495,0.7830864,0.9025824,0.977558,0.9997219,0.966623,0.6721111,0.81653327,0.92595094,0.98826396,0.9965813,0.9499831,0.8536227,0.7181561,0.5585643,0.267525,0.42553797,0.5917855,0.7478827,0.8765673,0.96360844,0.99938047,0.9799274,0.90740067,0.7898207,0.6401902,0.19725937,0.344487,0.5089124,0.67235214,0.8167319,0.92608535,0.9883192,0.9965513,0.9498712,0.8534411,0.7179251,0.13539639,0.26775235,0.42579186,0.59203786,0.74810565,0.87673616,0.9637045,0.99939317,0.9798554,0.9072518,0.7896114,0.08365306,0.19746375,0.34473103,0.50916904,0.6725931,0.8169306,0.92621964,0.98837435,0.9965211,0.94975907,0.85325944,0.043465525,0.13557214,0.26797974,0.42604578,0.5922902,0.7483285,0.87690496,0.96380055,0.99940574,0.9797832,0.90710276,0.78940207,0.08379528,0.1976682,0.3449751,0.50942576,0.67283404,0.81712914,0.9263538,0.9884293,0.99649084,0.94964683,0.85307777,0.04357031,0.13574797,0.2682072,0.4262997,0.5925425,0.74855137,0.8770736,0.9638964,0.9994182,0.9797108,0.9069537,0.016013622,0.083937615,0.19787273,0.34521922,0.5096825,0.67307496,0.8173276,0.9264879,0.98848414,0.9964603,0.9495345,0.0018900931,0.043675184,0.13592389,0.2684347,0.42655367,0.59279484,0.74877405,0.87724215,0.9639921,0.99943054,0.97963834,0.001591742,0.016078144,0.08408007,0.19807735,0.3454634,0.50993913,0.67331576,0.817526,0.9266218,0.98853886,0.9964298,0.015126795,0.0019124746,0.043780178,0.1360999,0.26866227,0.42680764,0.5930471,0.74899673,0.8774106,0.9640877,0.9994427,0.9795658,0.0015713274,0.016142786,0.084222615,0.19828203,0.34570757,0.51019585,0.6735566,0.8177242,0.92675567,0.98859346,0.9963991,0.01506418,0.0019349754,0.04388532,0.13627604,0.26888993,0.42706162,0.5932993,0.74921936,0.877579,0.9641832,0.99945474,0.042016566,0.0015510619,0.016207576,0.08436528,0.1984868,0.3459518,0.51045257,0.67379737,0.8179225,0.9268894,0.98864794,0.08168036,0.015001714,0.0019575953,0.043990552,0.13645226,0.26911765,0.42731562,0.5935516,0.7494419,0.8777472,0.9642786,0.13295472,0.0419136,0.0015309155,0.016272485,0.08450806,0.19869167,0.3461961,0.5107092,0.67403805,0.8181206,0.92702305,0.1944165,0.08153978,0.014939338,0.0019803643,0.044095904,0.13662857,0.2693454,0.42756966,0.59380376,0.7496644,0.8779154,0.26435983,0.1327804,0.04181075,0.0015109181,0.016337514,0.084650934,0.19889659,0.3464404,0.51096594,0.67427874,0.8183186,0.9271565,0.19421333,0.08139929,0.014877111,0.0020032525,0.044201404,0.13680497,0.2695732,0.42782372,0.59405595,0.7498868,0.87808347,0.2641334,0.13260621,0.041708022,0.00149104,0.016402662,0.084793925,0.1991016,0.34668475,0.5112226,0.67451936,0.81851655,0.3406,0.19401023,0.08125895,0.0148150325,0.0020262897,0.044306993,0.13698149,0.2698011,0.42807776,0.5943081,0.7501092,0.42149082,0.26390705,0.1324321,0.041605443,0.001471281,0.016467959,0.084937036,0.1993067,0.34692916,0.51147926,0.6747599,0.50456065,0.34035668,0.19380721,0.0811187,0.014753044,0.002049446,0.044412732,0.1371581,0.27002907,0.42833185,0.5945602,0.5875039,0.42123726,0.26368076,0.13225812,0.041502953,0.0014516711,0.016533375,0.085080236,0.19951186,0.3471736,0.511736,0.6750005,0.50430393,0.3401134,0.19360429,0.08097857,0.014691204,0.0020727217,0.04451856,0.1373348,0.27025706,0.42858595,0.59481233,0.5872511,0.42098373,0.26345453,0.13208419,0.04140061,0.0014321804,0.01659891,0.085223556,0.1997171,0.34741807,0.51199263,0.66777664,0.50404716,0.33987015,0.19340143,0.08083853,0.014629483,0.0020961463,0.044624537,0.13751158,0.27048513,0.4288401,0.7436455,0.5869983,0.42073023,0.26322836,0.13191038,0.04129836,0.0014128387,0.016664565,0.085366994,0.19992244,0.3476626,0.8127519,0.6675347,0.50379044,0.33962697,0.19319865,0.08069861,0.014567912,0.0021196902,0.044730633,0.13768846,0.27071327,0.87317777,0.74342126,0.58674544,0.42047673,0.26300228,0.13173667,0.041196257,0.0013936162,0.016730368,0.08551052,0.20012784,0.923246,0.8125515,0.66729283,0.5035337,0.33938378,0.19299597,0.08055881,0.014506429,0.002143383,0.04483682,0.13786545,0.27094144,0.8730068,0.74319696,0.5864926,0.42022327,0.26277623,0.13156307,0.041094273,0.0013745129,0.01679629,0.08565417,0.20033333,0.9231093,0.8123511,0.66705084,0.50327694,0.33914065,0.19279337,0.08041912,0.014445096,0.002167195,0.044943154,0.13804251,0.9614683,0.8728359,0.7429726,0.5862397,0.41996983,0.26255023,0.13138953,0.04099238,0.0013555586,0.016862363,0.085797936,0.98701906,0.92297244,0.81215054,0.66680884,0.5030202,0.3388976,0.19259083,0.08027953,0.014383912,0.0021911263,0.045049608,0.9990525,0.9613694,0.8726647,0.74274814,0.5859868,0.4197164,0.26232433,0.13121611,0.040890634,0.0013367236,0.016928524,0.9972347,0.9869609,0.92283547,0.81194997,0.6665668,0.50276345,0.33865458,0.19238839,0.080140054,0.014322817,0.0022152066,0.04515615,0.99903667,0.96127033,0.8724935,0.74252367,0.58573383,0.41946298,0.2620985,0.13104278,0.04078901,0.0013180375,0.016994834,0.9972616,0.9869026,0.9226984,0.8117492,0.6663247,0.50250673,0.33841157,0.19218603,0.0800007,0.014261872,0.002239406,0.9816849,0.9990207,0.9611712,0.8723222,0.7422991,0.5854809,0.4192096,0.26187268,0.13086957,0.0406875,0.0012994707,0.95273894,0.99728835,0.9868441,0.92256117,0.8115485,0.6660825,0.50225,0.33816862,0.19198373,0.07986146,0.014201075,0.9112271,0.9817537,0.99900454,0.96107197,0.8721508,0.7420745,0.5852279,0.41895625,0.26164696,0.13069645,0.040586114,0.8583016,0.95284784,0.997315,0.98678553,0.9224239,0.8113476,0.6658403,0.50199324,0.33792573,0.19178152,0.079722315,0.79543126,0.91137314,0.9818224,0.9989883,0.96097255,0.87197924,0.7418498,0.58497494,0.4187029,0.2614213,0.13052341,0.040484846,0.8584806,0.9529566,0.9973415,0.9867269,0.9222865,0.81114674,0.6655981,0.5017365,0.33768284,0.1915794,0.07958329,0.7956384,0.911519,0.9818909,0.99897194,0.96087307,0.87180763,0.7416251,0.5847219,0.41844958,0.2611957,0.13035047,0.72459066,0.8586595,0.9530653,0.99736786,0.986668,0.92214894,0.8109457,0.6653558,0.50147974,0.33744004,0.19137737,0.64730936,0.7958454,0.9116647,0.98195934,0.99895537,0.96077347,0.8716359,0.74140024,0.58446884,0.4181963,0.26097015,0.5659395,0.72482,0.8588384,0.9531739,0.9973941,0.9866091,0.9220113,0.8107446,0.6651135,0.501223,0.33719727,0.48273942,0.6475547,0.79605234,0.9118104,0.9820276,0.99893874,0.9606737,0.87146413,0.7411754,0.58421576,0.417943,0.2607447,0.566194,0.7250493,0.85901713,0.95328224,0.99742025,0.98655,0.92187357,0.8105434,0.66487116,0.50096625,0.33695453,0.48299602,0.64779997,0.79625916,0.91195595,0.9820957,0.99892193,0.9605738,0.87129223,0.74095047,0.5839627,0.41768974,0.40027002,0.56644845,0.72527856,0.85919577,0.9533906,0.9974462,0.9864907,0.9217357,0.81034213,0.66462874,0.50070953,0.32031202,0.4832526,0.64804524,0.796466,0.9121014,0.9821638,0.99890506,0.96047384,0.8711202,0.74072546,0.5837096,0.24534133,0.4005216,0.5667029,0.72550774,0.8593743,0.9534987,0.99747205,0.9864314,0.9215977,0.8101408,0.6643863,0.17743874,0.32055163,0.4835092,0.64829046,0.7966727,0.91224676,0.9822317,0.998888,0.96037376,0.8709481,0.7405004,0.11848891,0.24556231,0.40077323,0.56695735,0.72573686,0.85955274,0.95360684,0.9974978,0.98637193,0.9214597,0.8099394,0.6641438,0.50019604,0.33622658,0.19036838,0.078751415,0.013719112,0.36685503,0.2161785,0.09688902,0.022178382,0.00030863285,0.03369829,0.11865491,0.24578336,0.40102488,0.56721175,0.7259659,0.85973114,0.9537147,0.99752337,0.9863124,0.92132145,0.80973786,0.66390127,0.4999393,0.33598405,0.19016683,0.07861316,0.5319994,0.36660755,0.21596718,0.096737176,0.022102833,0.00031772256,0.033791035,0.118821025,0.24600449,0.40127656,0.5674662,0.7261949,0.8599094,0.9538226,0.9975488,0.9862526,0.9211831,0.8095362,0.6636587,0.49968255,0.33574152,0.18996537,0.07847503,0.53174317,0.36636013,0.21575591,0.09658542,0.022027403,0.00032693148,0.03388387,0.11898723,0.24622566,0.40152827,0.5677206,0.72642386,0.86008763,0.95393026,0.99757415,0.98619276,0.9210447,0.8093346,0.663416,0.4994258,0.33549905,0.18976396,0.6933791,0.5314869,0.36611274,0.21554473,0.09643382,0.021952093,0.0003362894,0.033976823,0.11915353,0.24644691,0.40178,0.5679749,0.72665274,0.8602657,0.9540379,0.99759936,0.98613274,0.9209062,0.8091328,0.6631734,0.49916905,0.3352566,0.8336949,0.6931423,0.5312307,0.36586538,0.21533361,0.09628227,0.021876901,0.00034576654,0.034069926,0.119319946,0.24666822,0.40203175,0.5682293,0.72688156,0.86044365,0.9541453,0.9976244,0.98607266,0.92076755,0.808931,0.66293067,0.4989123,0.33501422,0.8335036,0.6929054,0.53097445,0.36561805,0.21512258,0.09613088,0.02180186,0.0003553927,0.034163147,0.11948645,0.24688962,0.40228355,0.56848365,0.7271103,0.8606216,0.9542527,0.9976493,0.98601246,0.9206288,0.80872905,0.6626879,0.49865556,0.937096,0.8333123,0.69266856,0.5307182,0.36537078,0.21491164,0.09597957,0.021726936,0.00036513805,0.034256488,0.119653046,0.24711108,0.40253535,0.5687379,0.727339,0.8607993,0.9543599,0.99767417,0.985952,0.9204899,0.8085271,0.6624451,0.9924983,0.93697125,0.8331208,0.6924316,0.5304619,0.36512354,0.21470073,0.095828354,0.021652132,0.00037500262,0.03434995,0.11981976,0.2473326,0.40278718,0.56899226,0.7275677,0.86097705,0.95446706,0.9976988,0.9858916,0.92035097,0.808325,0.66220224,0.9924539,0.9368464,0.8329294,0.69219464,0.53020567,0.36487633,0.21448994,0.09567726,0.021577448,0.0003850162,0.034443527,0.119986564,0.24755418,0.40303904,0.56924653,0.72779626,0.8611547,0.954574,0.99772334,0.9858309,0.9202119,0.8081229,0.99364316,0.99240935,0.93672144,0.8327378,0.6919576,0.52994937,0.36462915,0.2142792,0.09552628,0.021502912,0.000395149,0.034537226,0.12015346,0.24777582,0.40329093,0.5695008,0.7280248,0.8613322,0.9546809,0.9977478,0.9857702,0.9200727,0.9404081,0.99368393,0.99236476,0.9365964,0.8325461,0.6917205,0.52969307,0.36438203,0.21406853,0.09537539,0.021428496,0.0004054308,0.034631044,0.12032047,0.24799755,0.40354282,0.569755,0.72825325,0.86150956,0.9547876,0.99777204,0.9857093,0.91993344,0.9405296,0.9937246,0.99231994,0.9364712,0.8323543,0.6914833,0.52943677,0.3641349,0.21385795,0.09522462,0.021354198,0.0004158318,0.03472501,0.12048757,0.24821934,0.40379477,0.57000923,0.72848165,0.8616869,0.95489424,0.9977962,0.9856483,0.83880657,0.94065094,0.99376506,0.9922751,0.9363459,0.83216244,0.69124615,0.52918047,0.36388785,0.21364745,0.09507394,0.02128002,0.00042635202,0.034819067,0.12065479,0.24844119,0.4040467,0.57026345,0.72871,0.8618641,0.95500076,0.9978202,0.69973,0.83899534,0.94077224,0.9938054,0.99223006,0.93622047,0.8319705,0.6910089,0.52892417,0.36364082,0.21343702,0.09492338,0.021205992,0.00043702126,0.03491327,0.1208221,0.2486631,0.40429872,0.57051766,0.7289382,0.86204123,0.95510715,0.538633,0.6999653,0.83918405,0.9408934,0.9938456,0.9921849,0.9360949,0.83177847,0.6907716,0.52866787,0.3633938,0.21322665,0.094772935,0.021132082,0.0004478097,0.035007596,0.1209895,0.2488851,0.40455073,0.5707718,0.7291665,0.86221826,0.9552134,0.538889,0.7002006,0.83937263,0.9410144,0.99388576,0.99213964,0.93596923,0.83158636,0.69053423,0.5284115,0.36314684,0.21301639,0.09462258,0.021058291,0.00045874715,0.03510204,0.12115702,0.24910712,0.40480277,0.57102597,0.7293947,0.8623952,0.37352514,0.53914493,0.7004359,0.8395611,0.94113535,0.9939257,0.9920942,0.93584347,0.83139414,0.6902968,0.5281552,0.36289993,0.21280617,0.09447235,0.02098462,0.0004698038,0.035196602,0.12132463,0.24932924,0.40505484,0.5712801,0.7296227,0.2221052,0.37377355,0.5394009,0.700671,0.8397496,0.94125617,0.9939655,0.9920487,0.93571764,0.83120185,0.6900594,0.52789885,0.36265305,0.21259603,0.094322205,0.020911068,0.00048100948,0.035291284,0.121492326,0.24955145,0.4053069,0.5715342,0.72985077,0.22231868,0.37402198,0.5396568,0.70090616,0.83993787,0.9413768,0.9940052,0.992003,0.93559164,0.83100945,0.6898219,0.5276425,0.3624062,0.21238598,0.09417218,0.020837665,0.00049233437,0.035386086,0.12166014,0.24977368,0.40555903,0.5717883,0.10147831,0.22253221,0.37427047,0.53991276,0.70114124,0.8401261,0.9414974,0.9940448,0.9919572,0.9354655,0.830817,0.6895844,0.5273861,0.36215937,0.212176,0.094022244,0.02076438,0.00050377846,0.035481006,0.12182805,0.249996,0.40581116,0.024575204,0.10163343,0.22274584,0.374519,0.5401687,0.70137626,0.84031427,0.94161785,0.99408424,0.9919113,0.93533933,0.83062446,0.68934673,0.52712977,0.3619126,0.2119661,0.09387243,0.020691216,0.00051537156,0.035576075,0.121996045,0.2502184,0.40606332,0.024654776,0.10178864,0.22295952,0.37476754,0.5404246,0.7016113,0.84050226,0.9417382,0.9941236,0.9918652,0.93521297,0.8304318,0.6891091,0.5268734,0.36166584,0.21175629,0.09372273,0.0206182,0.0005270839,0.035671234,0.12216416,0.25044084,8.3208084e-5,0.024734467,0.10194394,0.22317329,0.3750161,0.5406805,0.7018462,0.84069026,0.9418584,0.99416274,0.991819,0.9350865,0.83023906,0.6888714,0.52661705,0.36141914,0.21154654,0.09357312,0.020545304,0.0005389452,0.035766542,0.122332364,0.030627728,7.8588724e-5,0.024814278,0.10209939,0.22338715,0.3752647,0.5409364,0.702081,0.8408781,0.9419785,0.9942018,0.9917727,0.93495995,0.83004624,0.6886337,0.52636063,0.3611725,0.21133685,0.093423635,0.020472527,0.00055092573,0.03586197,0.12250066,0.030539304,7.408857e-5,0.024894208,0.1022549,0.22360104,0.37551337,0.5411923,0.70231587,0.8410659,0.9420985,0.9942407,0.9917263,0.9348333,0.8298533,0.68839586,0.5261043,0.36092585,0.21112725,0.093274266,0.020399868,0.0005630553,0.035957515,0.11275834,0.03045103,6.9737434e-5,0.024974287,0.102410525,0.22381505,0.37576205,0.5414481,0.70255065,0.84125364,0.94221836,0.9942795,0.99167967,0.93470645,0.8296603,0.68815804,0.52584785,0.36067927,0.21091774,0.093124986,0.02032733,0.00057530403,0.23767099,0.112595975,0.030362844,6.5505505e-5,0.025054485,0.10256627,0.2240291,0.37601075,0.541704,0.7027853,0.8414412,0.9423381,0.9943181,0.99163294,0.93457955,0.82946724,0.6879201,0.52559143,0.36043268,0.21070829,0.092975795,0.02025494,0.39150557,0.23745248,0.11243373,0.030274808,6.142259e-5,0.025134802,0.10272211,0.22424322,0.3762595,0.5419598,0.70302,0.84162873,0.9424578,0.9943567,0.99158615,0.93445253,0.82927406,0.68768215,0.525335,0.36018616,0.21049893,0.092826724,0.02018267,0.39125496,0.237234,0.11227158,0.030186892,5.7458878e-5,0.025215238,0.102878064,0.22445744,0.37650827,0.5422157,0.7032546,0.8418162,0.9425773,0.9943951,0.9915392,0.9343254,0.8290808,0.68744415,0.5250786,0.3599397,0.21028963,0.09267777,0.55704665,0.39100438,0.2370156,0.11210951,0.030099094,5.364418e-5,0.025295794,0.10303411,0.22467172,0.3767571,0.5424715,0.7034891,0.84200346,0.9426967,0.99443334,0.9914921,0.93419814,0.82888746,0.68720615,0.5248222,0.35969323,0.21008042,0.7165489,0.55679154,0.3907538,0.23679727,0.11194754,0.030011415,4.9948692e-5,0.025376499,0.10319027,0.22488606,0.3770059,0.5427273,0.7037236,0.84219074,0.942816,0.9944715,0.9914448,0.93407077,0.82869405,0.686968,0.52456576,0.35944682,0.20987126,0.7163175,0.5565365,0.3905033,0.236579,0.11178571,0.029923856,4.6372414e-5,0.025457323,0.10334653,0.22510049,0.37725478,0.5429831,0.70395803,0.8423779,0.9429351,0.9945095,0.9913975,0.9339433,0.8285005,0.6867299,0.52430934,0.35920045,0.8519943,0.716086,0.5562814,0.39025277,0.23636082,0.11162394,0.029836446,4.2945147e-5,0.025538266,0.1035029,0.22531497,0.3775037,0.5432389,0.70419246,0.84256494,0.9430542,0.99454737,0.99135005,0.9338157,0.8283069,0.68649167,0.52405286,0.94886345,0.8518119,0.7158544,0.5560262,0.3900023,0.2361427,0.111462295,0.029749155,3.966689e-5,0.025619328,0.10365936,0.22552955,0.37775263,0.5434947,0.70442677,0.842752,0.94317317,0.99458516,0.9913024,0.9336879,0.82811326,0.6862534,0.52379644,0.94875026,0.8516294,0.7156228,0.5557711,0.38975185,0.23592466,0.11130074,0.029661953,3.6478043e-5,0.02570051,0.10381594,0.22574419,0.3780016,0.54375046,0.7046611,0.8429388,0.94329196,0.9946227,0.9912547,0.93356013,0.8279195,0.6860151,0.99621373,0.948637,0.85144675,0.7153911,0.55551594,0.38950145,0.23570666,0.1111393,0.0295749,3.3438206e-5,0.02578184,0.103972614,0.22595891,0.3782506,0.5440062,0.7048953,0.8431256,0.94341063,0.99466026,0.99120677,0.9334322,0.82772565,0.9889693,0.99618214,0.9485236,0.8512641,0.7151594,0.5552608,0.38925108,0.23548874,0.11097798,0.029487967,3.054738e-5,0.02586326,0.104129404,0.2261737,0.37849963,0.54426193,0.7051295,0.8433123,0.94352925,0.9946976,0.9911588,0.93330413,0.8275317,0.989023,0.9961504,0.94841003,0.8510814,0.7149276,0.5550056,0.3890007,0.23527092,0.11081672,0.029401183,2.7775764e-5,0.025944829,0.10428628,0.22638854,0.37874871,0.5445177,0.7053636,0.84349895,0.94364774,0.9947348,0.9911107,0.933176,0.9279487,0.9890764,0.99611855,0.9482964,0.8508985,0.71469575,0.55475044,0.3887504,0.23505315,0.110655576,0.029314488,2.5123358e-5,0.026026547,0.10444328,0.22660348,0.3789978,0.5447734,0.70559764,0.84368545,0.9437661,0.99477196,0.9910624,0.81969285,0.9280814,0.98912966,0.9960866,0.9481827,0.8507155,0.71446383,0.5544952,0.3885001,0.23483545,0.110494554,0.029227942,2.2619963e-5,0.026108354,0.10460037,0.22681847,0.37924692,0.5450291,0.70583165,0.8438719,0.9438843,0.9948089,0.6761907,0.8198902,0.928214,0.98918283,0.9960544,0.9480688,0.85053253,0.7142319,0.55424,0.38824984,0.2346178,0.11033362,0.029141515,2.0235777e-5,0.02619028,0.10475758,0.22703356,0.3794961,0.5452848,0.7060656,0.8440582,0.94400245,0.99484575,0.67643094,0.8200875,0.9283465,0.9892359,0.99602216,0.9479548,0.8503494,0.71399987,0.55398476,0.3879996,0.23440024,0.11017281,0.029055208,1.8000603e-5,0.026272357,0.104914874,0.2272487,0.3797453,0.5455405,0.70629954,0.8442445,0.9441204,0.51352006,0.67667115,0.82028466,0.92847884,0.9892888,0.9959898,0.9478407,0.8501662,0.7137678,0.5537295,0.38774937,0.23418275,0.110012084,0.02896902,1.5884638e-5,0.026354551,0.10507229,0.2274639,0.3799945,0.54579616,0.7065334,0.8444306,0.3491186,0.5137767,0.6769113,0.8204818,0.92861116,0.9893416,0.99595726,0.9477264,0.84998286,0.71353567,0.55347425,0.3874992,0.23396534,0.10985145,0.02888295,1.3917685e-5,0.026436865,0.105229795,0.2276792,0.38024378,0.5460518,0.70676714,0.8446167,0.3493634,0.5140333,0.67715144,0.82067883,0.9287433,0.9893943,0.9959246,0.94761205,0.84979945,0.7133035,0.55321896,0.38724905,0.23374799,0.109690934,0.028797,1.2069941e-5,0.026519328,0.10538742,0.22789457,0.38049304,0.54630744,0.70700085,0.20155782,0.3496082,0.51429,0.67739147,0.82087576,0.9288753,0.9894469,0.9958918,0.9474976,0.84961593,0.7130712,0.5529637,0.38699895,0.2335307,0.10953051,0.0287112,1.0341406e-5,0.02660188,0.10554513,0.22810999,0.38074237,0.5465631,0.08665568,0.20176387,0.3498531,0.51454663,0.6776315,0.8210726,0.9290073,0.9894992,0.9958589,0.94738305,0.84943235,0.71283895,0.5527083,0.38674885,0.2333135,0.1093702,0.028625518,8.761883e-6,0.026684582,0.10570297,0.22832549,0.38099173,0.54681873,0.08680022,0.20196998,0.350098,0.5148033,0.67787147,0.8212694,0.9291391,0.98955154,0.9958259,0.94726837,0.84924865,0.7126066,0.55245304,0.3864988,0.23309633,0.109209985,0.028539956,7.301569e-6,0.026767403,0.10586089,0.22854108,0.3812411,0.01739207,0.08694482,0.20217615,0.35034296,0.5150599,0.67811143,0.8214661,0.92927074,0.98960364,0.99579275,0.9471535,0.8490649,0.7123742,0.5521977,0.38624877,0.23287928,0.10904989,0.028454512,5.990267e-6,0.026850343,0.10601893,0.22875673,0.0011917055,0.017459244,0.08708957,0.20238242,0.35058796,0.51531655,0.6783513,0.82166266,0.92940235,0.9896557,0.9957594,0.94703853,0.848881,0.71214175,0.55194235,0.3859988,0.23266226,0.10888988,0.028369188,4.798174e-6,0.026933402,0.10617706,0.22897243,0.0011740625,0.017526567,0.08723441,0.20258877,0.350833,0.51557314,0.67859113,0.82185924,0.92953384,0.9897076,0.995726,0.9469235,0.84869707,0.71190923,0.551687,0.3857488,0.23244536,0.10872996,0.028284013,3.7252903e-6,0.02701658,0.10633528,0.039884716,0.0011565387,0.01759401,0.087379366,0.20279521,0.35107806,0.51582974,0.6788309,0.82205564,0.9296652,0.9897593,0.99569243,0.94680834,0.848513,0.71167666,0.5514316,0.38549888,0.23222849,0.10857016,0.028198928,2.8014183e-6,0.027099907,0.12932333,0.039784282,0.001139164,0.017661572,0.087524414,0.20300171,0.3513232,0.5160864,0.67907065,0.82225204,0.92979646,0.98981094,0.99565876,0.94669306,0.8483288,0.711444,0.5511762,0.38524896,0.2320117,0.10841048,0.028113991,2.026558e-6,0.25962925,0.12915108,0.039683998,0.0011219084,0.017729282,0.08766958,0.2032083,0.35156834,0.516343,0.6793103,0.82244825,0.9299276,0.98986244,0.9956249,0.9465776,0.84814465,0.7112113,0.5509208,0.3849991,0.23179498,0.108250886,0.028029174,1.3411045e-6,0.25940415,0.12897891,0.039583802,0.0011047721,0.017797112,0.08781487,0.20341495,0.35181352,0.5165996,0.67955,0.8226445,0.9300586,0.9899138,0.9955909,0.9464621,0.8479603,0.7109786,0.5506654,0.38474923,0.23157832,0.108091384,0.027944475,0.41618308,0.25917912,0.12880686,0.039483756,0.0010877848,0.017865062,0.08796024,0.20362169,0.35205877,0.5168562,0.67978954,0.8228406,0.9301895,0.9899651,0.99555683,0.9463464,0.8477759,0.7107458,0.55041,0.38449943,0.23136175,0.107932,0.58220285,0.41592997,0.25895417,0.1286349,0.0393838,0.0010709167,0.01793316,0.08810574,0.20382851,0.35230404,0.5171128,0.68002915,0.82303655,0.9303203,0.9900162,0.9955226,0.94623065,0.8475914,0.71051294,0.5501545,0.38424963,0.23114526,0.10777274,0.027775466,1.4901161e-7,0.027518362,0.10728693,0.23048446,0.38348696,0.5493743,0.70980144,0.8470273,0.94587636,0.99541736,0.070910364,0.1788044,0.32221854,0.485293,0.6499939,0.7981074,0.913254,0.9827001,0.9987658,0.9596745,0.86974907,0.7389342,0.5816963,0.41542384,0.2585044,0.12829125,0.039184302,0.0010375977,0.018069685,0.088397056,0.20424238,0.35279468,0.517626,0.6805081,0.8234283,0.93058157,0.990118,0.99545383,0.9459988,0.8472221,0.71004707,0.5496436,0.38375014,0.23071244,0.10745448,0.027606964,0.0,0.027686596,0.10760495,0.23091713,0.38398638,0.5498853,0.7102674,0.8473968,0.0040958524,0.010572851,0.071174175,0.17919812,0.3226986,0.4858063,0.6504836,0.7985195,0.91354287,0.98283374,0.9987295,0.9594722,0.86940324,0.738483,0.5811897,0.4149178,0.2580549,0.12794802,0.038985282,0.0010047853,0.018206745,0.08868879,0.20465657,0.3532855,0.5181391,0.6809869,0.82381976,0.9308424,0.99021935,0.99538445,0.94576645,0.8468524,0.70958096,0.5491326,0.38325077,0.23027992,0.10713664,0.027438939,4.172325e-7,0.027855366,0.10792339,0.23135006,0.3844859,0.55039614,0.71073323,0.052230686,0.0040305257,0.010678142,0.07143846,0.17959213,0.3231788,0.48631957,0.65097326,0.79893124,0.91383123,0.9829669,0.99869263,0.95926946,0.869057,0.73803157,0.58068293,0.41441184,0.25760567,0.12760517,0.03878674,0.0009725094,0.018344313,0.08898097,0.20507106,0.35377645,0.51865226,0.6814654,0.8242108,0.9311027,0.9903202,0.9953146,0.94553363,0.8464824,0.7091147,0.54862154,0.38275155,0.2298477,0.10681921,0.02727142,1.3113022e-6,0.028024614,0.10824227,0.23178327,0.38498557,0.550907,0.14958191,0.05200243,0.0039657056,0.01078397,0.071703196,0.1799865,0.32365918,0.4868329,0.6514627,0.7993427,0.91411924,0.9830996,0.9986553,0.9590662,0.86871034,0.7375799,0.5801761,0.41390598,0.25715667,0.12726271,0.038588673,0.0009407699,0.018482357,0.0892736,0.20548585,0.35426757,0.5191654,0.6819438,0.82460153,0.9313626,0.99042046,0.9952442,0.94530034,0.846112,0.7086481,0.5481105,0.38225245,0.22941577,0.106502205,0.027104408,2.771616e-6,0.028194338,0.108561546,0.23221678,0.44540906,0.28544915,0.14921579,0.05177465,0.003901422,0.010890305,0.07196838,0.18038124,0.32413977,0.4873462,0.65195197,0.7997538,0.9144068,0.98323166,0.9986174,0.95886254,0.8683633,0.7371279,0.57966924,0.41340017,0.25670794,0.12692064,0.038391113,0.0009095371,0.018620938,0.08956665,0.20590097,0.35475886,0.51967853,0.682422,0.82499194,0.931622,0.99052024,0.9951733,0.9450666,0.8457412,0.7081814,0.5475993,0.38175344,0.22898409,0.106185615,0.026937902,4.7385693e-6,0.028364599,0.108881235,0.61090535,0.44489866,0.28498545,0.14885005,0.05154732,0.0038376749,0.010997146,0.072234005,0.18077627,0.32462054,0.48785955,0.6524411,0.80016464,0.91469383,0.9833633,0.998579,0.9586583,0.8680159,0.73667574,0.5791623,0.4128945,0.25625944,0.12657899,0.03819403,0.0008788705,0.018760026,0.08986014,0.20631638,0.35525027,0.5201916,0.6829,0.825382,0.93188095,0.99061954,0.9951018,0.9448323,0.84537005,0.7077144,0.54708815,0.38125458,0.22855273,0.10586941,0.026771873,7.2419643e-6,0.028535336,0.76421154,0.6104046,0.44438833,0.28452197,0.1484847,0.051320493,0.0037744343,0.011104494,0.07250011,0.18117166,0.32510152,0.4883729,0.6529301,0.80057514,0.91498053,0.9834944,0.99854004,0.9584536,0.86766815,0.7362233,0.57865524,0.41238892,0.25581124,0.12623769,0.037997425,0.00084868073,0.01889962,0.09015405,0.20673212,0.35574186,0.5207047,0.6833778,0.8257717,0.9321395,0.99071825,0.9950299,0.9445976,0.8449986,0.7072472,0.5465769,0.38075584,0.22812164,0.10555366,0.026606351,0.9702181,0.8884771,0.76377547,0.60990375,0.44387805,0.28405872,0.14811972,0.051094115,0.0037117302,0.011212379,0.07276663,0.1815674,0.32558268,0.48888624,0.6534189,0.80098534,0.91526675,0.983625,0.9985006,0.9582484,0.86731994,0.7357706,0.57814807,0.4118834,0.2553633,0.12589681,0.037801325,0.0008190572,0.01903972,0.09044838,0.20714816,0.3562336,0.5212177,0.6838554,0.8261611,0.9323976,0.9908165,0.99495745,0.94436246,0.8446268,0.7067798,0.5460656,0.38025725,0.22769085,0.10523832,0.9999523,0.9700433,0.8881536,0.76333916,0.6094027,0.44336784,0.2835957,0.14775509,0.050868243,0.0036495328,0.01132077,0.07303363,0.18196344,0.326064,0.4893996,0.65390754,0.8013952,0.9155525,0.98375505,0.99846053,0.95804274,0.8669714,0.73531765,0.5776409,0.411378,0.2549156,0.12555632,0.037605703,0.00078994036,0.019180328,0.090743154,0.20756453,0.35672545,0.5217307,0.68433285,0.8265501,0.9326552,0.99091417,0.9948844,0.94412684,0.8442545,0.7063122,0.5455543,0.37975875,0.89702445,0.9747344,0.9999449,0.96986794,0.8878297,0.7629025,0.6089016,0.44285768,0.2831329,0.14739084,0.05064282,0.0035878718,0.0114296675,0.07330108,0.18235984,0.3265455,0.489913,0.654396,0.8018048,0.9158379,0.98388463,0.99842,0.9578366,0.8666224,0.7348645,0.57713354,0.4108727,0.25446814,0.12521625,0.037410587,0.0007613301,0.019321442,0.091038376,0.2079812,0.3572175,0.52224374,0.68481004,0.8269388,0.93291235,0.9910114,0.9948109,0.9438907,0.84388196,0.7058443,0.54504293,0.77583706,0.89733636,0.97489536,0.99993706,0.9696922,0.8875054,0.7624656,0.6084004,0.4423476,0.28267035,0.14702699,0.05041787,0.0035267174,0.011539102,0.07356894,0.18275657,0.3270272,0.4904264,0.65488434,0.802214,0.9161228,0.9840137,0.998379,0.95763,0.86627305,0.734411,0.5766262,0.41036746,0.25402093,0.12487653,0.037215948,0.00073328614,0.019463062,0.091334015,0.20839816,0.3577097,0.5227567,0.6852871,0.82732713,0.933169,0.99110806,0.9947368,0.9436541,0.843509,0.70537627,0.62433124,0.77626526,0.89764786,0.97505575,0.99992865,0.96951586,0.8871807,0.76202834,0.60789907,0.44183755,0.28220803,0.14666349,0.0501934,0.0034660995,0.011649042,0.07383728,0.18315363,0.32750908,0.4909398,0.65537244,0.8026229,0.9164072,0.98414224,0.9983374,0.95742285,0.8659233,0.73395735,0.5761187,0.40986234,0.253574,0.12453723,0.037021786,0.0007057488,0.01960519,0.0916301,0.20881543,0.35820204,0.52326965,0.68576396,0.82771516,0.9334253,0.99120414,0.9946623,0.9434171,0.29800707,0.4591596,0.6248286,0.7766931,0.89795893,0.9752157,0.9999197,0.9693391,0.8868556,0.7615909,0.6073976,0.44132757,0.2817459,0.14630035,0.049969375,0.0034059882,0.01175949,0.07410607,0.18355101,0.32799113,0.4914532,0.6558604,0.80303156,0.91669124,0.98427033,0.9982953,0.9572153,0.86557317,0.7335034,0.5756112,0.4093573,0.25312734,0.12419835,0.03682813,0.0006787181,0.019747823,0.091926605,0.20923302,0.3586945,0.52378255,0.68624055,0.82810277,0.9336811,0.9912998,0.9945872,0.15956825,0.29847687,0.45967138,0.62532574,0.77712065,0.8982696,0.97537506,0.99991024,0.96916175,0.88653004,0.76115316,0.60689604,0.44081765,0.28128403,0.14593759,0.049745858,0.0033464432,0.011870474,0.0743753,0.18394876,0.3284734,0.49196663,0.6563483,0.8034398,0.91697484,0.9843978,0.99825263,0.9570072,0.8652227,0.7330492,0.5751035,0.40885237,0.25268096,0.12385982,0.03663495,0.0006522536,0.019890964,0.092223525,0.2096509,0.35918713,0.52429545,0.68671703,0.8284901,0.93393636,0.005970031,0.058547825,0.1599445,0.29894692,0.46018323,0.6258228,0.7775479,0.89857984,0.97553396,0.9999002,0.968984,0.8862041,0.7607151,0.6063944,0.4403078,0.2808224,0.1455752,0.049522817,0.003287375,0.011981934,0.07464501,0.18434682,0.3289558,0.49248007,0.6568359,0.8038478,0.91725796,0.98452485,0.9982095,0.9567987,0.86487174,0.7325948,0.5745958,0.40834752,0.25223482,0.123521715,0.03644225,0.0006262958,0.020034611,0.09252089,0.21006909,0.35967994,0.52480835,0.6871933,0.82887703,0.007934213,0.0060494244,0.058789164,0.16032112,0.2994172,0.46069512,0.62631965,0.77797484,0.89888966,0.9756924,0.99988973,0.9688057,0.88587785,0.7602768,0.6058926,0.439798,0.280361,0.14521319,0.049300253,0.003228873,0.012093931,0.07491514,0.18474522,0.3294384,0.4929935,0.6573234,0.80425537,0.91754067,0.9846513,0.99816585,0.95658964,0.8645205,0.7321401,0.57408804,0.4078428,0.2517889,0.123183995,0.036250055,0.0006008744,0.020178765,0.09281868,0.2104876,0.36017287,0.5253212,0.6876693,0.06398359,0.007843345,0.0061292946,0.05903098,0.16069812,0.29988766,0.46120703,0.6268164,0.77840155,0.89919907,0.97585034,0.99987864,0.9686269,0.8855511,0.7598382,0.60539067,0.4392883,0.2798998,0.14485157,0.049078137,0.003170848,0.012206465,0.075185716,0.18514395,0.3299212,0.49350694,0.65781075,0.8046627,0.91782296,0.98477733,0.9981216,0.9563801,0.8641689,0.7316852,0.5735802,0.40733814,0.2513433,0.12284669,0.036058336,0.0005759597,0.020323426,0.09311691,0.21090642,0.36066592,0.30890208,0.16795748,0.063732475,0.0077530146,0.006209731,0.059273243,0.16107544,0.30035836,0.461719,0.6273131,0.7788279,0.899508,0.9760077,0.9998671,0.9684476,0.8852239,0.7593994,0.6048887,0.43877864,0.27943885,0.1444903,0.048856527,0.003113389,0.012319475,0.07545674,0.185543,0.33040416,0.4940204,0.6582979,0.8050697,0.91810477,0.98490286,0.9980769,0.9561701,0.8638168,0.73123,0.57307225,0.4068336,0.25089794,0.12250975,0.035867125,0.0005515814,0.020468593,0.09341556,0.21132553,0.47046706,0.3084277,0.16757375,0.06348184,0.00766322,0.006290674,0.059515983,0.16145316,0.30082923,0.462231,0.6278095,0.779254,0.89981663,0.97616464,0.99985504,0.96826786,0.8848964,0.7589603,0.60438657,0.43826902,0.27897814,0.14412943,0.048635364,0.0030564368,0.012433022,0.07572821,0.18594238,0.3308873,0.49453384,0.6587849,0.8054764,0.91838616,0.9850278,0.9980316,0.9559596,0.86346436,0.73077464,0.57256424,0.40632915,0.25045285,0.12217325,0.03567639,0.0005277395,0.020614266,0.093714654,0.6352781,0.4699545,0.30795348,0.16719034,0.06323168,0.0075739026,0.006372124,0.0597592,0.1618312,0.30130032,0.46274304,0.6283059,0.7796798,0.9001247,0.976321,0.9998424,0.9680876,0.8845684,0.7585209,0.60388434,0.4377595,0.27851766,0.1437689,0.048414707,0.0029999912,0.012547076,0.076000154,0.18634212,0.3313706,0.4950473,0.6592717,0.80588275,0.9186671,0.98515224,0.99798584,0.9557487,0.86311156,0.730319,0.5720561,0.40582478,0.25000802,0.12183711,0.03548616,0.0005044043,0.90411496,0.78522015,0.63478374,0.46944195,0.3074795,0.16680732,0.06298196,0.0074851215,0.00645411,0.060002863,0.16220963,0.30177164,0.46325514,0.6288022,0.78010535,0.90043247,0.9764769,0.9998292,0.96790683,0.88424003,0.7580812,0.603382,0.43725002,0.2780574,0.14340878,0.048194498,0.0029441118,0.012661636,0.07627252,0.18674219,0.3318541,0.4955608,0.6597584,0.8062888,0.9189476,0.9852762,0.9979396,0.9555372,0.8627584,0.7298631,0.571548,0.40532053,0.24956346,0.121501386,0.03529641,0.97817004,0.90381235,0.78479826,0.63428915,0.4689294,0.3070057,0.16642463,0.0627327,0.007396877,0.006536603,0.060247004,0.16258839,0.30224314,0.46376726,0.6292982,0.7805305,0.9007397,0.97663236,0.9998155,0.96772563,0.88391125,0.7576413,0.6028795,0.43674064,0.2775974,0.143049,0.047974795,0.0028887093,0.012776732,0.07654533,0.18714255,0.33233777,0.49607426,0.6602449,0.8066945,0.91922766,0.98539966,0.99789274,0.9553253,0.86240476,0.72940695,0.57103974,0.4048164,0.24911913,0.966058,0.9996672,0.9780197,0.9035093,0.784376,0.6337944,0.46841693,0.30653208,0.1660423,0.062483907,0.007309139,0.0066196024,0.06049159,0.1629675,0.30271488,0.4642794,0.62979424,0.78095543,0.90104663,0.9767872,0.9998013,0.96754384,0.8835821,0.7572011,0.602377,0.43623132,0.27713764,0.14268962,0.04775554,0.002833873,0.012892336,0.076818615,0.18754327,0.3328216,0.49658772,0.6607312,0.8070999,0.91950727,0.9855226,0.9978454,0.95511293,0.8620508,0.7289506,0.57053137,0.40431234,0.8812413,0.96624374,0.9996857,0.97786885,0.9032059,0.78395355,0.6332996,0.46790448,0.3060587,0.16566029,0.062235564,0.0072219074,0.006703168,0.060736656,0.163347,0.3031868,0.46479163,0.63029003,0.78138006,0.90135306,0.9769416,0.9997866,0.9673616,0.8832525,0.7567606,0.60187435,0.43572205,0.2766781,0.14233062,0.04753679,0.0027795434,0.0130084455,0.07709232,0.18794432,0.33330566,0.49710122,0.66121733,0.8075049,0.91978645,0.985645,0.9977975,0.9549,0.8616965,0.728494,0.570023,0.7545206,0.8815733,0.966429,0.99970365,0.9777175,0.902902,0.7835307,0.63280463,0.4673921,0.3055855,0.16527867,0.061987698,0.0071352124,0.0067872107,0.060982168,0.16372684,0.30365896,0.46530387,0.6307857,0.7818043,0.9016591,0.9770955,0.99977136,0.9671789,0.88292253,0.7563199,0.6013715,0.43521285,0.27621877,0.141972,0.04731849,0.0027257204,0.013125062,0.07736647,0.1883457,0.33378986,0.4976147,0.66170335,0.80790967,0.92006516,0.9857669,0.9977491,0.95468664,0.8613417,0.433647,0.59982437,0.75496244,0.88190496,0.96661377,0.99972105,0.97756565,0.9025977,0.78310764,0.63230956,0.4668797,0.30511254,0.16489741,0.06174028,0.007049024,0.0068717897,0.061228156,0.16410702,0.3041313,0.46581614,0.63128126,0.78222835,0.90196466,0.9772489,0.9997555,0.96699566,0.88259214,0.7558788,0.60086864,0.4347037,0.2757597,0.14161375,0.047100693,0.0026724339,0.013242215,0.07764107,0.1887474,0.33427423,0.49812818,0.6621891,0.8083141,0.92034346,0.9858883,0.99770015,0.9544728,0.27526602,0.434156,0.6003275,0.755404,0.8822362,0.96679795,0.999738,0.97741336,0.90229297,0.7826842,0.63181424,0.46636733,0.30463976,0.16451648,0.061493337,0.006963372,0.006956905,0.06147462,0.16448757,0.30460387,0.46632844,0.6317767,0.7826521,0.90226984,0.97740173,0.99973917,0.96681195,0.88226134,0.75543755,0.6003657,0.43419465,0.27530086,0.14125589,0.046883345,0.0026196837,0.013359845,0.077916116,0.18914944,0.3347588,0.49864167,0.6626748,0.8087182,0.9206213,0.9860092,0.047084183,0.14158654,0.27572483,0.43466505,0.6008305,0.7558453,0.88256705,0.96698177,0.9997543,0.9772605,0.90198785,0.78226054,0.63131887,0.46585503,0.30416718,0.1641359,0.061246842,0.006878227,0.007042527,0.061721504,0.16486844,0.3050766,0.46684077,0.63227195,0.7830755,0.9025746,0.97755414,0.99972236,0.9666277,0.8819301,0.754996,0.5998626,0.43368566,0.27484226,0.14089838,0.046666503,0.00256747,0.013478011,0.07819164,0.1895518,0.33524352,0.49915516,0.66316026,0.80912197,0.9208987,0.0027216673,0.047301948,0.14194477,0.2761839,0.43517417,0.6013334,0.7562864,0.88289744,0.967165,0.99977016,0.97710717,0.90168226,0.78183657,0.6308234,0.46534276,0.3036948,0.16375569,0.061000824,0.006793618,0.007128656,0.061968893,0.1652497,0.30554956,0.46735317,0.6327671,0.78349864,0.9028789,0.977706,0.99970496,0.96644306,0.88159853,0.75455415,0.5993594,0.43317676,0.2743839,0.14054126,0.046450138,0.0025157332,0.013596684,0.07846758,0.18995446,0.3357284,0.49966866,0.66364557,0.8095254,0.013017267,0.0027754307,0.04752019,0.14230338,0.2766432,0.43568337,0.60183614,0.75672716,0.88322747,0.96734774,0.9997854,0.97695327,0.9013763,0.78141224,0.6303277,0.46483052,0.30322266,0.16337582,0.060755283,0.006709516,0.007215321,0.06221673,0.16563132,0.30602276,0.4678656,0.63326204,0.7839215,0.90318286,0.97785735,0.9996871,0.96625787,0.88126653,0.75411206,0.5988561,0.4326679,0.27392578,0.14018452,0.04623422,0.0024645627,0.013715893,0.078743935,0.19035748,0.33621347,0.50018215,0.18757373,0.07683939,0.012901127,0.0028297305,0.04773891,0.14266235,0.2771027,0.43619263,0.6023388,0.7571677,0.8835571,0.96753,0.9998002,0.97679895,0.9010699,0.7809877,0.62983185,0.4643183,0.3027507,0.16299632,0.06051019,0.0066259503,0.007302493,0.062465012,0.16601327,0.30649614,0.468378,0.6337569,0.78434396,0.90348625,0.9780083,0.99966866,0.9660722,0.8809341,0.75366974,0.5983527,0.43215913,0.2734679,0.13982818,0.04601881,0.0024138987,0.013835579,0.07902077,0.19076082,0.3366987,0.3323745,0.18717298,0.07656607,0.012785494,0.002884537,0.047958136,0.1430217,0.27756247,0.43670195,0.6028414,0.7576079,0.8838863,0.9677118,0.9998145,0.9766441,0.90076303,0.78056276,0.6293359,0.46380615,0.30227897,0.16261718,0.06026554,0.0065428913,0.007390201,0.06271377,0.16639557,0.3069697,0.4688905,0.6342516,0.7847662,0.90378934,0.9781586,0.9996497,0.965886,0.8806013,0.75322706,0.59784913,0.4316504,0.27301025,0.13947219,0.045803875,0.0023637712,0.013955802,0.07929805,0.1911645,0.49559978,0.33189082,0.18677256,0.07629323,0.012670368,0.00293988],"x":[-1.6470994e6,-4.5286444e14,-9.057289e14,-1.3585933e15,-1.8114578e15,-2.264322e15,-2.7171866e15,-3.170051e15,-3.6229155e15,-4.0757798e15,-4.528644e15,-4.9815087e15,-5.434373e15,-5.887238e15,-6.340102e15,-6.7929664e15,-7.245831e15,-7.6986956e15,-8.1515596e15,-8.604424e15,-9.057288e15,-9.510153e15,-9.963017e15,-1.0415882e16,-1.0868747e16,-1.1321611e16,-1.1774476e16,-1.2227339e16,-1.2680204e16,-1.3133068e16,-1.3585933e16,-1.4038797e16,-1.4491662e16,-1.4944527e16,-1.5397391e16,-1.5850255e16,-1.6303119e16,-1.6755984e16,-1.7208848e16,-1.7661713e16,-1.8114576e16,-1.8567442e16,-1.9020306e16,-1.9473171e16,-1.9926035e16,-2.03789e16,-2.0831764e16,-2.1284627e16,-2.1737493e16,-2.2190357e16,-2.2643222e16,-2.3096086e16,-2.3548951e16,-2.4001815e16,-2.4454678e16,-2.4907544e16,-2.5360407e16,-2.5813273e16,-2.6266137e16,-2.6719002e16,-2.7171866e16,-2.7624731e16,-2.8077595e16,-2.8530458e16,-2.8983324e16,-2.9436188e16,-2.9889053e16,-3.0341917e16,-3.0794782e16,-3.1247646e16,-3.170051e16,-3.2153375e16,-3.2606239e16,-3.3059104e16,-3.3511968e16,-3.3964833e16,-3.4417697e16,-3.487056e16,-3.5323426e16,-3.577629e16,-3.6229153e16,-3.668202e16,-3.7134884e16,-3.758775e16,-3.804061e16,-3.8493477e16,-3.8946343e16,-3.9399204e16,-3.985207e16,-4.0304935e16,-4.07578e16,-4.1210662e16,-4.1663528e16,-4.2116393e16,-4.2569255e16,-4.302212e16,-4.3474986e16,-4.392785e16,-4.4380713e16,-4.483358e16,-4.5286444e16,-4.5739306e16,-4.619217e16,-4.6645037e16,-4.7097903e16,-4.7550764e16,-4.800363e16,-4.8456495e16,-4.8909357e16,-4.9362222e16,-4.981509e16,-5.0267954e16,-5.0720815e16,-5.117368e16,-5.1626546e16,-5.2079408e16,-5.2532273e16,-5.298514e16,-5.3438005e16,-5.3890866e16,-5.434373e16,-5.4796597e16,-5.5249463e16,-5.5702324e16,-5.615519e16,-5.6608056e16,-5.7060917e16,-5.7513783e16,-5.796665e16,-5.8419514e16,-5.8872375e16,-5.932524e16,-5.9778106e16,-6.0230968e16,-6.0683833e16,-6.11367e16,-6.1589565e16,-6.2042426e16,-6.249529e16,-6.2948157e16,-6.340102e16,-6.3853884e16,-6.430675e16,-6.4759616e16,-6.5212477e16,-6.5665343e16,-6.611821e16,-6.657107e16,-6.7023935e16,-6.74768e16,-6.7929667e16,-6.838253e16,-6.8835394e16,-6.928826e16,-6.974112e16,-7.0193986e16,-7.064685e16,-7.1099718e16,-7.155258e16,-7.2005445e16,-7.245831e16,-7.291118e16,-7.336404e16,-7.38169e16,-7.426977e16,-7.472263e16,-7.51755e16,-7.562836e16,-7.608122e16,-7.653409e16,-7.698695e16,-7.7439815e16,-7.7892685e16,-7.834555e16,-7.879841e16,-7.925128e16,-7.970414e16,-8.0157e16,-8.060987e16,-8.106273e16,-8.15156e16,-8.196846e16,-8.2421324e16,-8.2874194e16,-8.3327056e16,-8.377992e16,-8.423279e16,-8.468565e16,-8.513851e16,-8.559138e16,-8.604424e16,-8.64971e16,-8.694997e16,-8.740283e16,-8.78557e16,-8.8308565e16,-8.876143e16,-8.92143e16,-8.966716e16,-9.012002e16,-9.057289e16,-9.102575e16,-9.147861e16,-9.193148e16,-9.238434e16,-9.283721e16,-9.329007e16,-9.3742935e16,-9.4195805e16,-9.464867e16,-9.510153e16,-9.55544e16,-9.600726e16,-9.646012e16,-9.691299e16,-9.736585e16,-9.781871e16,-9.827158e16,-9.8724445e16,-9.9177315e16,-9.963018e16,-1.0008304e17,-1.0053591e17,-1.0098877e17,-1.0144163e17,-1.018945e17,-1.0234736e17,-1.0280022e17,-1.0325309e17,-1.0370595e17,-1.04158815e17,-1.04611685e17,-1.0506455e17,-1.0551742e17,-1.0597028e17,-1.0642314e17,-1.0687601e17,-1.0732887e17,-1.0778173e17,-1.082346e17,-1.0868746e17,-1.09140324e17,-1.09593194e17,-1.1004606e17,-1.1049893e17,-1.1095179e17,-1.1140465e17,-1.1185752e17,-1.1231038e17,-1.1276324e17,-1.1321611e17,-1.1366897e17,-1.1412183e17,-1.145747e17,-1.15027565e17,-1.1548043e17,-1.159333e17,-1.1638616e17,-1.1683903e17,-1.1729189e17,-1.1774475e17,-1.1819762e17,-1.1865048e17,-1.1910334e17,-1.1955621e17,-1.2000907e17,-1.20461936e17,-1.20914806e17,-1.2136767e17,-1.2182053e17,-1.222734e17,-1.2272626e17,-1.2317913e17,-1.2363199e17,-1.2408485e17,-1.2453772e17,-1.2499058e17,-1.25443445e17,-1.25896315e17,-1.2634918e17,-1.2680204e17,-1.2725491e17,-1.2770777e17,-1.2816063e17,-1.286135e17,-1.2906636e17,-1.2951923e17,-1.2997209e17,-1.3042495e17,-1.3087782e17,-1.31330685e17,-1.3178355e17,-1.3223642e17,-1.3268928e17,-1.3314214e17,-1.3359501e17,-1.3404787e17,-1.3450074e17,-1.349536e17,-1.3540646e17,-1.3585933e17,-1.36312195e17,-1.3676506e17,-1.3721793e17,-1.3767079e17,-1.3812365e17,-1.3857652e17,-1.3902938e17,-1.3948224e17,-1.3993511e17,-1.4038797e17,-1.4084084e17,-1.412937e17,-1.41746565e17,-1.42199435e17,-1.426523e17,-1.4310516e17,-1.4355803e17,-1.4401089e17,-1.4446375e17,-1.4491661e17,-1.4536949e17,-1.4582235e17,-1.4627521e17,-1.4672807e17,-1.4718094e17,-1.476338e17,-1.4808668e17,-1.4853954e17,-1.489924e17,-1.4944526e17,-1.4989812e17,-1.50351e17,-1.5080386e17,-1.5125672e17,-1.5170958e17,-1.5216244e17,-1.526153e17,-1.5306818e17,-1.5352105e17,-1.539739e17,-1.5442677e17,-1.5487963e17,-1.5533251e17,-1.5578537e17,-1.5623823e17,-1.566911e17,-1.5714395e17,-1.5759682e17,-1.580497e17,-1.5850256e17,-1.5895542e17,-1.5940828e17,-1.5986114e17,-1.60314e17,-1.6076688e17,-1.6121974e17,-1.616726e17,-1.6212546e17,-1.6257832e17,-1.630312e17,-1.6348406e17,-1.6393693e17,-1.6438979e17,-1.6484265e17,-1.6529551e17,-1.6574839e17,-1.6620125e17,-1.6665411e17,-1.6710697e17,-1.6755983e17,-1.6801271e17,-1.6846557e17,-1.6891844e17,-1.693713e17,-1.6982416e17,-1.7027702e17,-1.707299e17,-1.7118276e17,-1.7163562e17,-1.7208848e17,-1.7254134e17,-1.729942e17,-1.7344708e17,-1.7389994e17,-1.743528e17,-1.7480567e17,-1.7525853e17,-1.757114e17,-1.7616427e17,-1.7661713e17,-1.7706999e17,-1.7752285e17,-1.7797571e17,-1.784286e17,-1.7888145e17,-1.7933432e17,-1.7978718e17,-1.8024004e17,-1.8069292e17,-1.8114578e17,-1.8159864e17,-1.820515e17,-1.8250436e17,-1.8295722e17,-1.834101e17,-1.8386296e17,-1.8431582e17,-1.8476869e17,-1.8522155e17,-1.8567443e17,-1.8612729e17,-1.8658015e17,-1.8703301e17,-1.8748587e17,-1.8793873e17,-1.8839161e17,-1.8884447e17,-1.8929733e17,-1.897502e17,-1.9020306e17,-1.9065592e17,-1.911088e17,-1.9156166e17,-1.9201452e17,-1.9246738e17,-1.9292024e17,-1.9337312e17,-1.9382598e17,-1.9427884e17,-1.947317e17,-1.9518457e17,-1.9563743e17,-1.960903e17,-1.9654317e17,-1.9699603e17,-1.9744889e17,-1.9790175e17,-1.9835463e17,-1.9880749e17,-1.9926035e17,-1.9971321e17,-2.0016607e17,-2.0061894e17,-2.0107181e17,-2.0152468e17,-2.0197754e17,-2.024304e17,-2.0288326e17,-2.0333614e17,-2.03789e17,-2.0424186e17,-2.0469472e17,-2.0514758e17,-2.0560045e17,-2.0605332e17,-2.0650619e17,-2.0695905e17,-2.074119e17,-2.0786477e17,-2.0831763e17,-2.0877051e17,-2.0922337e17,-2.0967623e17,-2.101291e17,-2.1058195e17,-2.1103483e17,-2.114877e17,-2.1194056e17,-2.1239342e17,-2.1284628e17,-2.1329914e17,-2.1375202e17,-2.1420488e17,-2.1465774e17,-2.151106e17,-2.1556346e17,-2.1601634e17,-2.164692e17,-2.1692206e17,-2.1737493e17,-2.1782779e17,-2.1828065e17,-2.1873353e17,-2.1918639e17,-2.1963925e17,-2.2009211e17,-2.2054497e17,-2.2099785e17,-2.2145071e17,-2.2190357e17,-2.2235644e17,-2.228093e17,-2.2326216e17,-2.2371504e17,-2.241679e17,-2.2462076e17,-2.2507362e17,-2.2552648e17,-2.2597934e17,-2.2643222e17,-2.2688508e17,-2.2733794e17,-2.277908e17,-2.2824367e17,-2.2869655e17,-2.291494e17,-2.2960227e17,-2.3005513e17,-2.3050799e17,-2.3096085e17,-2.3141373e17,-2.318666e17,-2.3231945e17,-2.3277232e17,-2.3322518e17,-2.3367806e17,-2.3413092e17,-2.3458378e17,-2.3503664e17,-2.354895e17,-2.3594236e17,-2.3639524e17,-2.368481e17,-2.3730096e17,-2.3775382e17,-2.3820669e17,-2.3865955e17,-2.3911243e17,-2.3956529e17,-2.4001815e17,-2.4047101e17,-2.4092387e17,-2.4137675e17,-2.4182961e17,-2.4228247e17,-2.4273533e17,-2.431882e17,-2.4364106e17,-2.4409394e17,-2.445468e17,-2.4499966e17,-2.4545252e17,-2.4590538e17,-2.4635826e17,-2.4681112e17,-2.4726398e17,-2.4771684e17,-2.481697e17,-2.4862257e17,-2.4907544e17,-2.495283e17,-2.4998117e17,-2.5043403e17,-2.5088689e17,-2.5133977e17,-2.5179263e17,-2.5224549e17,-2.5269835e17,-2.5315121e17,-2.5360407e17,-2.5405695e17,-2.5450981e17,-2.5496268e17,-2.5541554e17,-2.558684e17,-2.5632126e17,-2.5677414e17,-2.57227e17,-2.5767986e17,-2.5813272e17,-2.5858558e17,-2.5903846e17,-2.5949132e17,-2.5994419e17,-2.6039705e17,-2.608499e17,-2.6130277e17,-2.6175565e17,-2.6220851e17,-2.6266137e17,-2.6311423e17,-2.635671e17,-2.6401997e17,-2.6447283e17,-2.649257e17,-2.6537856e17,-2.6583142e17,-2.6628428e17,-2.6673716e17,-2.6719002e17,-2.6764288e17,-2.6809574e17,-2.685486e17,-2.6900148e17,-2.6945434e17,-2.699072e17,-2.7036007e17,-2.7081293e17,-2.7126579e17,-2.7171867e17,-2.7217153e17,-2.7262439e17,-2.7307725e17,-2.7353011e17,-2.7398297e17,-2.7443585e17,-2.7488871e17,-2.7534157e17,-2.7579444e17,-2.762473e17,-2.7670018e17,-2.7715304e17,-2.776059e17,-2.7805876e17,-2.7851162e17,-2.7896448e17,-2.7941736e17,-2.7987022e17,-2.8032308e17,-2.8077595e17,-2.812288e17,-2.8168168e17,-2.8213455e17,-2.825874e17,-2.8304027e17,-2.8349313e17,-2.83946e17,-2.8439887e17,-2.8485173e17,-2.853046e17,-2.8575745e17,-2.8621032e17,-2.866632e17,-2.8711606e17,-2.8756892e17,-2.8802178e17,-2.8847464e17,-2.889275e17,-2.8938036e17,-2.8983322e17,-2.902861e17,-2.9073898e17,-2.9119184e17,-2.916447e17,-2.9209756e17,-2.9255043e17,-2.930033e17,-2.9345615e17,-2.93909e17,-2.9436187e17,-2.9481473e17,-2.952676e17,-2.957205e17,-2.9617335e17,-2.966262e17,-2.9707907e17,-2.9753194e17,-2.979848e17,-2.9843766e17,-2.9889052e17,-2.9934338e17,-2.9979624e17,-3.002491e17,-3.00702e17,-3.0115486e17,-3.0160772e17,-3.020606e17,-3.0251344e17,-3.029663e17,-3.0341917e17,-3.0387203e17,-3.043249e17,-3.0477775e17,-3.052306e17,-3.056835e17,-3.0613637e17,-3.0658923e17,-3.070421e17,-3.0749495e17,-3.079478e17,-3.0840068e17,-3.0885354e17,-3.093064e17,-3.0975926e17,-3.1021212e17,-3.1066502e17,-3.1111788e17,-3.1157074e17,-3.120236e17,-3.1247646e17,-3.1292932e17,-3.133822e17,-3.1383505e17,-3.142879e17,-3.1474077e17,-3.1519363e17,-3.156465e17,-3.160994e17,-3.1655225e17,-3.170051e17,-3.1745797e17,-3.1791083e17,-3.183637e17,-3.1881656e17,-3.1926942e17,-3.1972228e17,-3.2017514e17,-3.20628e17,-3.210809e17,-3.2153376e17,-3.2198662e17,-3.2243948e17,-3.2289234e17,-3.233452e17,-3.2379807e17,-3.2425093e17,-3.247038e17,-3.2515665e17,-3.256095e17,-3.260624e17,-3.2651527e17,-3.2696813e17,-3.27421e17,-3.2787385e17,-3.283267e17,-3.2877957e17,-3.2923244e17,-3.296853e17,-3.3013816e17,-3.3059102e17,-3.310439e17,-3.3149678e17,-3.3194964e17,-3.324025e17,-3.3285536e17,-3.3330822e17,-3.337611e17,-3.3421395e17,-3.346668e17,-3.3511967e17,-3.3557253e17,-3.3602543e17,-3.364783e17,-3.3693115e17,-3.37384e17,-3.3783687e17,-3.3828973e17,-3.387426e17,-3.3919545e17,-3.396483e17,-3.4010118e17,-3.4055404e17,-3.4100693e17,-3.414598e17,-3.4191266e17,-3.4236552e17,-3.4281838e17,-3.4327124e17,-3.437241e17,-3.4417696e17,-3.4462983e17,-3.450827e17,-3.4553555e17,-3.459884e17,-3.464413e17,-3.4689417e17,-3.4734703e17,-3.477999e17,-3.4825275e17,-3.487056e17,-3.4915847e17,-3.4961133e17,-3.500642e17,-3.5051706e17,-3.5096992e17,-3.514228e17,-3.5187568e17,-3.5232854e17,-3.527814e17,-3.5323426e17,-3.5368712e17,-3.5413998e17,-3.5459284e17,-3.550457e17,-3.5549857e17,-3.5595143e17,-3.5640432e17,-3.568572e17,-3.5731005e17,-3.577629e17,-3.5821577e17,-3.5866863e17,-3.591215e17,-3.5957435e17,-3.600272e17,-3.6048008e17,-3.6093294e17,-3.6138583e17,-3.618387e17,-3.6229156e17,-3.627444e17,-3.6319728e17,-3.6365014e17,-3.64103e17,-3.6455586e17,-3.6500872e17,-3.654616e17,-3.6591445e17,-3.6636734e17,-3.668202e17,-3.6727306e17,-3.6772593e17,-3.681788e17,-3.6863165e17,-3.690845e17,-3.6953737e17,-3.6999023e17,-3.704431e17,-3.7089596e17,-3.7134885e17,-3.718017e17,-3.7225457e17,-3.7270744e17,-3.731603e17,-3.7361316e17,-3.7406602e17,-3.7451888e17,-3.7497174e17,-3.754246e17,-3.7587746e17,-3.7633036e17,-3.7678322e17,-3.772361e17,-3.7768894e17,-3.781418e17,-3.7859467e17,-3.7904753e17,-3.795004e17,-3.7995325e17,-3.804061e17,-3.8085897e17,-3.8131184e17,-3.8176473e17,-3.822176e17,-3.8267045e17,-3.831233e17,-3.8357618e17,-3.8402904e17,-3.844819e17,-3.8493476e17,-3.8538762e17,-3.858405e17,-3.8629334e17,-3.8674624e17,-3.871991e17,-3.8765196e17,-3.8810482e17,-3.885577e17,-3.8901055e17,-3.894634e17,-3.8991627e17,-3.9036913e17,-3.90822e17,-3.9127485e17,-3.9172775e17,-3.921806e17,-3.9263347e17,-3.9308633e17,-3.935392e17,-3.9399206e17,-3.9444492e17,-3.9489778e17,-3.9535064e17,-3.958035e17,-3.9625636e17,-3.9670926e17,-3.9716212e17,-3.9761498e17,-3.9806784e17,-3.985207e17,-3.9897357e17,-3.9942643e17,-3.998793e17,-4.0033215e17,-4.00785e17,-4.0123787e17,-4.0169077e17,-4.0214363e17,-4.025965e17,-4.0304935e17,-4.035022e17,-4.0395507e17,-4.0440794e17,-4.048608e17,-4.0531366e17,-4.0576652e17,-4.0621938e17,-4.0667228e17,-4.0712514e17,-4.07578e17,-4.0803086e17,-4.0848372e17,-4.089366e17,-4.0938945e17,-4.098423e17,-4.1029517e17,-4.1074803e17,-4.112009e17,-4.1165375e17,-4.1210665e17,-4.125595e17,-4.1301237e17,-4.1346523e17,-4.139181e17,-4.1437095e17,-4.148238e17,-4.1527668e17,-4.1572954e17,-4.161824e17,-4.1663526e17,-4.1708816e17,-4.1754102e17,-4.1799388e17,-4.1844674e17,-4.188996e17,-4.1935246e17,-4.1980532e17,-4.202582e17,-4.2071105e17,-4.211639e17,-4.2161677e17,-4.2206967e17,-4.2252253e17,-4.229754e17,-4.2342825e17,-4.238811e17,-4.2433397e17,-4.2478683e17,-4.252397e17,-4.2569256e17,-4.2614542e17,-4.2659828e17,-4.2705118e17,-4.2750404e17,-4.279569e17,-4.2840976e17,-4.2886262e17,-4.2931548e17,-4.2976834e17,-4.302212e17,-4.3067407e17,-4.3112693e17,-4.315798e17,-4.320327e17,-4.3248555e17,-4.329384e17,-4.3339127e17,-4.3384413e17,-4.34297e17,-4.3474985e17,-4.352027e17,-4.3565558e17,-4.3610844e17,-4.365613e17,-4.370142e17,-4.3746706e17,-4.379199e17,-4.3837278e17,-4.3882564e17,-4.392785e17,-4.3973136e17,-4.4018422e17,-4.406371e17,-4.4108995e17,-4.415428e17,-4.419957e17,-4.4244856e17,-4.4290143e17,-4.433543e17,-4.4380715e17,-4.4426e17,-4.4471287e17,-4.4516573e17,-4.456186e17,-4.4607146e17,-4.465243e17,-4.4697718e17,-4.4743007e17,-4.4788293e17,-4.483358e17,-4.4878866e17,-4.4924152e17,-4.4969438e17,-4.5014724e17,-4.506001e17,-4.5105296e17,-4.5150583e17,-4.519587e17,-4.5241158e17,-4.5286444e17,-4.533173e17,-4.5377017e17,-4.5422303e17,-4.546759e17,-4.5512875e17,-4.555816e17,-4.5603447e17,-4.5648733e17,-4.569402e17,-4.573931e17,-4.5784595e17,-4.582988e17,-4.5875168e17,-4.5920454e17,-4.596574e17,-4.6011026e17,-4.6056312e17,-4.6101598e17,-4.6146884e17,-4.619217e17,-4.623746e17,-4.6282746e17,-4.6328032e17,-4.637332e17,-4.6418605e17,-4.646389e17,-4.6509177e17,-4.6554463e17,-4.659975e17,-4.6645035e17,-4.669032e17,-4.673561e17,-4.6780897e17,-4.6826183e17,-4.687147e17,-4.6916756e17,-4.696204e17,-4.7007328e17,-4.7052614e17,-4.70979e17,-4.7143186e17,-4.7188472e17,-4.7233762e17,-4.7279048e17,-4.7324334e17,-4.736962e17,-4.7414907e17,-4.7460193e17,-4.750548e17,-4.7550765e17,-4.759605e17,-4.7641337e17,-4.7686623e17,-4.773191e17,-4.77772e17,-4.7822485e17,-4.786777e17,-4.7913057e17,-4.7958344e17,-4.800363e17,-4.8048916e17,-4.8094202e17,-4.8139488e17,-4.8184774e17,-4.823006e17,-4.827535e17,-4.8320636e17,-4.8365922e17,-4.841121e17,-4.8456494e17,-4.850178e17,-4.8547067e17,-4.8592353e17,-4.863764e17,-4.8682925e17,-4.872821e17,-4.87735e17,-4.8818787e17,-4.8864073e17,-4.890936e17,-4.8954645e17,-4.899993e17,-4.9045218e17,-4.9090504e17,-4.913579e17,-4.9181076e17,-4.9226362e17,-4.9271652e17,-4.9316938e17,-4.9362224e17,-4.940751e17,-4.9452796e17,-4.9498082e17,-4.954337e17,-4.9588655e17,-4.963394e17,-4.9679227e17,-4.9724513e17,-4.9769803e17,-4.981509e17,-4.9860375e17,-4.990566e17,-4.9950947e17,-4.9996233e17,-5.004152e17,-5.0086806e17,-5.0132092e17,-5.0177378e17,-5.0222664e17,-5.0267954e17,-5.031324e17,-5.0358526e17,-5.0403812e17,-5.0449098e17,-5.0494384e17,-5.053967e17,-5.0584957e17,-5.0630243e17,-5.067553e17,-5.0720815e17,-5.0766105e17,-5.081139e17,-5.0856677e17,-5.0901963e17,-5.094725e17,-5.0992535e17,-5.103782e17,-5.1083108e17,-5.1128394e17,-5.117368e17,-5.1218966e17,-5.1264252e17,-5.130954e17,-5.1354828e17,-5.1400114e17,-5.14454e17,-5.1490686e17,-5.1535972e17,-5.158126e17,-5.1626545e17,-5.167183e17,-5.1717117e17,-5.1762403e17,-5.1807693e17,-5.185298e17,-5.1898265e17,-5.194355e17,-5.1988837e17,-5.2034123e17,-5.207941e17,-5.2124695e17,-5.216998e17,-5.2215268e17,-5.2260554e17,-5.2305843e17,-5.235113e17,-5.2396416e17,-5.2441702e17,-5.2486988e17,-5.2532274e17,-5.257756e17,-5.2622846e17,-5.2668133e17,-5.271342e17,-5.2758705e17,-5.2803994e17,-5.284928e17,-5.2894567e17,-5.2939853e17,-5.298514e17,-5.3030425e17,-5.307571e17,-5.3120997e17,-5.3166283e17,-5.321157e17,-5.3256856e17,-5.3302145e17,-5.334743e17,-5.3392718e17,-5.3438004e17,-5.348329e17,-5.3528576e17,-5.3573862e17,-5.3619148e17,-5.3664434e17,-5.370972e17,-5.3755007e17,-5.3800296e17,-5.3845582e17,-5.389087e17,-5.3936155e17,-5.398144e17,-5.4026727e17,-5.4072013e17,-5.41173e17,-5.4162585e17,-5.420787e17,-5.4253158e17,-5.4298444e17,-5.4343733e17,-5.438902e17,-5.4434306e17,-5.447959e17,-5.4524878e17,-5.4570164e17,-5.461545e17,-5.4660736e17,-5.4706022e17,-5.475131e17,-5.4796595e17,-5.4841884e17,-5.488717e17,-5.4932456e17,-5.4977743e17,-5.502303e17,-5.5068315e17,-5.51136e17,-5.5158887e17,-5.5204173e17,-5.524946e17,-5.5294746e17,-5.5340035e17,-5.538532e17,-5.5430607e17,-5.5475894e17,-5.552118e17,-5.5566466e17,-5.5611752e17,-5.5657038e17,-5.5702324e17,-5.574761e17,-5.5792896e17,-5.5838186e17,-5.5883472e17,-5.592876e17,-5.5974044e17,-5.601933e17,-5.6064617e17,-5.6109903e17,-5.615519e17,-5.6200475e17,-5.624576e17,-5.6291047e17,-5.6336337e17,-5.6381623e17,-5.642691e17,-5.6472195e17,-5.651748e17,-5.6562768e17,-5.6608054e17,-5.665334e17,-5.6698626e17,-5.6743912e17,-5.67892e17,-5.6834488e17,-5.6879774e17,-5.692506e17,-5.6970346e17,-5.7015632e17,-5.706092e17,-5.7106205e17,-5.715149e17,-5.7196777e17,-5.7242063e17,-5.728735e17,-5.733264e17,-5.7377925e17,-5.742321e17,-5.7468497e17,-5.7513783e17,-5.755907e17,-5.7604356e17,-5.764964e17,-5.769493e17,-5.7740214e17,-5.77855e17,-5.7830786e17,-5.787607e17,-5.792136e17,-5.7966645e17,-5.801193e17,-5.805722e17,-5.810251e17,-5.8147796e17,-5.819308e17,-5.823837e17,-5.8283655e17,-5.832894e17,-5.837423e17,-5.841951e17,-5.84648e17,-5.8510085e17,-5.855537e17,-5.860066e17,-5.8645944e17,-5.869123e17,-5.8736516e17,-5.87818e17,-5.882709e17,-5.8872374e17,-5.891766e17,-5.8962947e17,-5.900823e17,-5.905352e17,-5.909881e17,-5.91441e17,-5.9189384e17,-5.923467e17,-5.9279956e17,-5.932524e17,-5.937053e17,-5.9415815e17,-5.94611e17,-5.950639e17,-5.955167e17,-5.959696e17,-5.9642245e17,-5.968753e17,-5.973282e17,-5.9778104e17,-5.982339e17,-5.9868676e17,-5.991396e17,-5.995925e17,-6.0004535e17,-6.004982e17,-6.009511e17,-6.01404e17,-6.0185686e17,-6.023097e17,-6.027626e17,-6.0321544e17,-6.036683e17,-6.041212e17,-6.04574e17,-6.050269e17,-6.0547975e17,-6.059326e17,-6.063855e17,-6.0683833e17,-6.072912e17,-6.0774406e17,-6.081969e17,-6.086498e17,-6.0910264e17,-6.095555e17,-6.1000836e17,-6.104612e17,-6.109141e17,-6.11367e17,-6.118199e17,-6.1227274e17,-6.127256e17,-6.1317846e17,-6.136313e17,-6.140842e17,-6.1453705e17,-6.149899e17,-6.154428e17,-6.158956e17,-6.163485e17,-6.1680135e17,-6.172542e17,-6.177071e17,-6.1815994e17,-6.186128e17,-6.1906566e17,-6.195185e17,-6.199714e17,-6.2042424e17,-6.208771e17,-6.2133004e17,-6.217829e17,-6.2223576e17,-6.226886e17,-6.231415e17,-6.2359434e17,-6.240472e17,-6.2450006e17,-6.249529e17,-6.254058e17,-6.2585865e17,-6.263115e17,-6.267644e17,-6.272172e17,-6.276701e17,-6.2812296e17,-6.285758e17,-6.290287e17,-6.2948154e17,-6.299344e17,-6.3038726e17,-6.308401e17,-6.31293e17,-6.317459e17,-6.321988e17,-6.3265164e17,-6.331045e17,-6.3355736e17,-6.340102e17,-6.344631e17,-6.3491594e17,-6.353688e17,-6.358217e17,-6.362745e17,-6.367274e17,-6.3718025e17,-6.376331e17,-6.38086e17,-6.3853884e17,-6.389917e17,-6.3944456e17,-6.398974e17,-6.403503e17,-6.4080314e17,-6.41256e17,-6.417089e17,-6.421618e17,-6.4261466e17,-6.430675e17,-6.435204e17,-6.4397324e17,-6.444261e17,-6.4487896e17,-6.453318e17,-6.457847e17,-6.4623755e17,-6.466904e17,-6.471433e17,-6.475961e17,-6.48049e17,-6.4850185e17,-6.489547e17,-6.494076e17,-6.4986044e17,-6.503133e17,-6.5076616e17,-6.51219e17,-6.5167195e17,-6.521248e17,-6.525777e17,-6.5303054e17,-6.534834e17,-6.5393626e17,-6.543891e17,-6.54842e17,-6.5529484e17,-6.557477e17,-6.5620057e17,-6.566534e17,-6.571063e17,-6.5755915e17,-6.58012e17,-6.584649e17,-6.589177e17,-6.593706e17,-6.5982346e17,-6.602763e17,-6.607292e17,-6.6118204e17,-6.616349e17,-6.620878e17,-6.625407e17,-6.6299355e17,-6.634464e17,-6.638993e17,-6.6435214e17,-6.64805e17,-6.6525786e17,-6.657107e17,-6.661636e17,-6.6661645e17,-6.670693e17,-6.675222e17,-6.67975e17,-6.684279e17,-6.6888075e17,-6.693336e17,-6.697865e17,-6.7023934e17,-6.706922e17,-6.7114506e17,-6.715979e17,-6.7205085e17,-6.725037e17,-6.729566e17,-6.734094e17,-6.738623e17,-6.7431516e17,-6.74768e17,-6.752209e17,-6.7567374e17,-6.761266e17,-6.7657946e17,-6.770323e17,-6.774852e17,-6.7793805e17,-6.783909e17,-6.788438e17,-6.792966e17,-6.797495e17,-6.8020235e17,-6.806552e17,-6.811081e17,-6.8156094e17,-6.820139e17,-6.824667e17,-6.829196e17,-6.8337245e17,-6.838253e17,-6.842782e17,-6.8473104e17,-6.851839e17,-6.8563676e17,-6.860896e17,-6.865425e17,-6.8699534e17,-6.874482e17,-6.879011e17,-6.883539e17,-6.888068e17,-6.8925965e17,-6.897125e17,-6.901654e17,-6.906182e17,-6.910711e17,-6.9152396e17,-6.919768e17,-6.9242975e17,-6.928826e17,-6.933355e17,-6.937883e17,-6.942412e17,-6.9469406e17,-6.951469e17,-6.955998e17,-6.9605264e17,-6.965055e17,-6.9695836e17,-6.974112e17,-6.978641e17,-6.9831695e17,-6.987698e17,-6.992227e17,-6.996755e17,-7.001284e17,-7.0058125e17,-7.010341e17,-7.01487e17,-7.0193984e17,-7.023928e17,-7.028456e17,-7.032985e17,-7.0375135e17,-7.042042e17,-7.046571e17,-7.0510993e17,-7.055628e17,-7.0601566e17,-7.064685e17,-7.069214e17,-7.0737424e17,-7.078271e17,-7.0827996e17,-7.087328e17,-7.091857e17,-7.0963855e17,-7.100914e17,-7.105443e17,-7.109971e17,-7.1145e17,-7.1190286e17,-7.123558e17,-7.1280865e17,-7.132615e17,-7.137144e17,-7.141672e17,-7.146201e17,-7.1507295e17,-7.155258e17,-7.159787e17,-7.1643154e17,-7.168844e17,-7.1733726e17,-7.177901e17,-7.18243e17,-7.1869584e17,-7.191487e17,-7.196016e17,-7.200544e17,-7.205073e17,-7.2096015e17,-7.21413e17,-7.218659e17,-7.223188e17,-7.2277167e17,-7.232245e17,-7.236774e17,-7.2413025e17,-7.245831e17,-7.25036e17,-7.254888e17,-7.259417e17,-7.2639456e17,-7.268474e17,-7.273003e17,-7.2775314e17,-7.28206e17,-7.2865886e17,-7.291117e17,-7.295646e17,-7.3001745e17,-7.304703e17,-7.309232e17,-7.31376e17,-7.318289e17,-7.3228175e17,-7.327347e17,-7.3318754e17,-7.336404e17,-7.340933e17,-7.345461e17,-7.34999e17,-7.3545185e17,-7.359047e17,-7.363576e17,-7.3681044e17,-7.372633e17,-7.3771616e17,-7.38169e17,-7.386219e17,-7.3907474e17,-7.395276e17,-7.3998047e17,-7.404333e17,-7.408862e17,-7.4133905e17,-7.417919e17,-7.422448e17,-7.426977e17,-7.4315056e17,-7.436034e17,-7.440563e17,-7.4450915e17,-7.44962e17,-7.454149e17,-7.458677e17,-7.463206e17,-7.4677345e17,-7.472263e17,-7.476792e17,-7.4813204e17,-7.485849e17,-7.4903776e17,-7.494906e17,-7.499435e17,-7.5039634e17,-7.508492e17,-7.513021e17,-7.517549e17,-7.522078e17,-7.526607e17,-7.531136e17,-7.5356644e17,-7.540193e17,-7.544722e17,-7.54925e17,-7.553779e17,-7.5583075e17,-7.562836e17,-7.567365e17,-7.571893e17,-7.576422e17,-7.5809506e17,-7.585479e17,-7.590008e17,-7.5945364e17,-7.599065e17,-7.6035936e17,-7.608122e17,-7.612651e17,-7.6171795e17,-7.621708e17,-7.626237e17,-7.630766e17,-7.6352946e17,-7.639823e17,-7.644352e17,-7.6488805e17,-7.653409e17,-7.657938e17,-7.662466e17,-7.666995e17,-7.6715235e17,-7.676052e17,-7.680581e17,-7.6851094e17,-7.689638e17,-7.6941666e17,-7.698695e17,-7.703224e17,-7.7077524e17,-7.712281e17,-7.71681e17,-7.721338e17,-7.725867e17,-7.730396e17,-7.734925e17,-7.7394534e17,-7.743982e17,-7.7485106e17,-7.753039e17,-7.757568e17,-7.7620965e17,-7.766625e17,-7.771154e17,-7.775682e17,-7.780211e17,-7.7847395e17,-7.789268e17,-7.793797e17,-7.7983254e17,-7.802854e17,-7.8073826e17,-7.811911e17,-7.81644e17,-7.8209685e17,-7.825497e17,-7.8300264e17,-7.834555e17,-7.8390836e17,-7.843612e17,-7.848141e17,-7.8526694e17,-7.857198e17,-7.861727e17,-7.866255e17,-7.870784e17,-7.8753125e17,-7.879841e17,-7.88437e17,-7.8888983e17,-7.893427e17,-7.8979556e17,-7.902484e17,-7.907013e17,-7.9115414e17,-7.91607e17,-7.9205986e17,-7.925127e17,-7.929656e17,-7.934185e17,-7.938714e17,-7.9432424e17,-7.947771e17,-7.9522996e17,-7.956828e17,-7.961357e17,-7.9658855e17,-7.970414e17,-7.974943e17,-7.979471e17,-7.984e17,-7.9885285e17,-7.993057e17,-7.997586e17,-8.0021144e17,-8.006643e17,-8.0111716e17,-8.0157e17,-8.020229e17,-8.0247574e17,-8.029286e17,-8.0338154e17,-8.038344e17,-8.0428726e17,-8.047401e17,-8.05193e17,-8.0564584e17,-8.060987e17,-8.0655156e17,-8.070044e17,-8.074573e17,-8.0791015e17,-8.08363e17,-8.088159e17,-8.092687e17,-8.097216e17,-8.1017446e17,-8.106273e17,-8.110802e17,-8.1153304e17,-8.119859e17,-8.1243876e17,-8.128916e17,-8.1334455e17,-8.137974e17,-8.142503e17,-8.1470314e17,-8.15156e17,-8.1560886e17,-8.160617e17,-8.165146e17,-8.1696744e17,-8.174203e17,-8.178732e17,-8.18326e17,-8.187789e17,-8.1923175e17,-8.196846e17,-8.201375e17,-8.2059034e17,-8.210432e17,-8.2149606e17,-8.219489e17,-8.224018e17,-8.2285464e17,-8.233075e17,-8.237604e17,-8.242133e17,-8.2466616e17,-8.25119e17,-8.255719e17,-8.2602474e17,-8.264776e17,-8.2693046e17,-8.273833e17,-8.278362e17,-8.2828905e17,-8.287419e17,-8.291948e17,-8.296476e17,-8.301005e17,-8.3055335e17,-8.310062e17,-8.314591e17,-8.3191194e17,-8.323648e17,-8.3281766e17,-8.332705e17,-8.3372345e17,-8.341763e17,-8.346292e17,-8.3508204e17,-8.355349e17,-8.3598776e17,-8.364406e17,-8.368935e17,-8.3734634e17,-8.377992e17,-8.382521e17,-8.387049e17,-8.391578e17,-8.3961065e17,-8.400635e17,-8.405164e17,-8.409692e17,-8.414221e17,-8.4187496e17,-8.423278e17,-8.427807e17,-8.4323354e17,-8.436865e17,-8.441393e17,-8.445922e17,-8.4504505e17,-8.454979e17,-8.459508e17,-8.4640364e17,-8.468565e17,-8.4730936e17,-8.477622e17,-8.482151e17,-8.4866795e17,-8.491208e17,-8.495737e17,-8.500265e17,-8.504794e17,-8.5093225e17,-8.513851e17,-8.51838e17,-8.5229084e17,-8.527437e17,-8.5319656e17,-8.536495e17,-8.5410235e17,-8.545552e17,-8.550081e17,-8.5546093e17,-8.559138e17,-8.5636666e17,-8.568195e17,-8.572724e17,-8.5772524e17,-8.581781e17,-8.5863096e17,-8.590838e17,-8.595367e17,-8.5998955e17,-8.604424e17,-8.608953e17,-8.613481e17,-8.61801e17,-8.6225385e17,-8.627067e17,-8.631596e17,-8.6361244e17,-8.640654e17,-8.645182e17,-8.649711e17,-8.6542395e17,-8.658768e17,-8.663297e17,-8.6678254e17,-8.672354e17,-8.6768826e17,-8.681411e17,-8.68594e17,-8.6904684e17,-8.694997e17,-8.699526e17,-8.704054e17,-8.708583e17,-8.7131115e17,-8.71764e17,-8.722169e17,-8.7266973e17,-8.731226e17,-8.7357546e17,-8.740284e17,-8.7448125e17,-8.749341e17,-8.75387e17,-8.758398e17,-8.762927e17,-8.7674556e17,-8.771984e17,-8.776513e17,-8.7810414e17,-8.78557e17,-8.7900986e17,-8.794627e17,-8.799156e17,-8.8036845e17,-8.808213e17,-8.812742e17,-8.81727e17,-8.821799e17,-8.8263275e17,-8.830856e17,-8.835385e17,-8.839914e17,-8.844443e17,-8.848971e17,-8.8535e17,-8.8580285e17,-8.862557e17,-8.867086e17,-8.8716144e17,-8.876143e17,-8.8806716e17,-8.8852e17,-8.889729e17,-8.8942574e17,-8.898786e17,-8.9033146e17,-8.907843e17,-8.912372e17,-8.9169005e17,-8.921429e17,-8.925958e17,-8.930486e17,-8.935015e17,-8.9395436e17,-8.944073e17,-8.9486015e17,-8.95313e17,-8.957659e17,-8.962187e17,-8.966716e17,-8.9712445e17,-8.975773e17,-8.980302e17,-8.9848304e17,-8.989359e17,-8.9938876e17,-8.998416e17,-9.002945e17,-9.0074734e17,-9.012002e17,-9.016531e17,-9.021059e17,-9.025588e17,-9.0301165e17,-9.034645e17,-9.039174e17,-9.043703e17,-9.0482317e17,-9.05276e17,-9.057289e17,-9.0618175e17,-9.066346e17,-9.070875e17,-9.075403e17,-9.079932e17,-9.0844606e17,-9.088989e17,-9.093518e17,-9.0980464e17,-9.102575e17,-9.1071036e17,-9.111632e17,-9.116161e17,-9.1206895e17,-9.125218e17,-9.129747e17,-9.134275e17,-9.138804e17,-9.143333e17,-9.147862e17,-9.1523905e17,-9.156919e17,-9.161448e17,-9.165976e17,-9.170505e17,-9.1750335e17,-9.179562e17,-9.184091e17,-9.1886194e17,-9.193148e17,-9.1976766e17,-9.202205e17,-9.206734e17,-9.2112624e17,-9.215791e17,-9.2203197e17,-9.224848e17,-9.229377e17,-9.2339055e17,-9.238434e17,-9.242963e17,-9.247492e17,-9.2520206e17,-9.256549e17,-9.261078e17,-9.2656065e17,-9.270135e17,-9.274664e17,-9.279192e17,-9.283721e17,-9.2882495e17,-9.292778e17,-9.297307e17,-9.3018354e17,-9.306364e17,-9.3108926e17,-9.315421e17,-9.31995e17,-9.3244785e17,-9.329007e17,-9.333536e17,-9.338064e17,-9.342593e17,-9.347122e17,-9.351651e17,-9.3561794e17,-9.360708e17,-9.365237e17,-9.369765e17,-9.374294e17,-9.3788225e17,-9.383351e17,-9.38788e17,-9.392408e17,-9.396937e17,-9.4014656e17,-9.405994e17,-9.410523e17,-9.4150514e17,-9.41958e17,-9.4241086e17,-9.428637e17,-9.433166e17,-9.4376945e17,-9.442223e17,-9.4467524e17,-9.451281e17,-9.4558096e17,-9.460338e17,-9.464867e17,-9.4693955e17,-9.473924e17,-9.478453e17,-9.482981e17,-9.48751e17,-9.4920385e17,-9.496567e17,-9.501096e17,-9.5056244e17,-9.510153e17,-9.5146816e17,-9.51921e17,-9.523739e17,-9.5282674e17,-9.532796e17,-9.537325e17,-9.541853e17,-9.546382e17,-9.550911e17,-9.55544e17,-9.5599684e17,-9.564497e17,-9.5690256e17,-9.573554e17,-9.578083e17,-9.5826115e17,-9.58714e17,-9.591669e17,-9.596197e17,-9.600726e17,-9.6052546e17,-9.609783e17,-9.614312e17,-9.6188404e17,-9.623369e17,-9.6278976e17,-9.632426e17,-9.636955e17,-9.6414835e17,-9.646012e17,-9.6505414e17,-9.65507e17,-9.6595986e17,-9.664127e17,-9.668656e17,-9.6731844e17,-9.677713e17,-9.682242e17,-9.68677e17,-9.691299e17,-9.6958275e17,-9.700356e17,-9.704885e17,-9.7094134e17,-9.713942e17,-9.7184706e17,-9.722999e17,-9.727528e17,-9.7320564e17,-9.736585e17,-9.7411136e17,-9.745642e17,-9.7501716e17,-9.7547e17,-9.759229e17,-9.7637574e17,-9.768286e17,-9.7728146e17,-9.777343e17,-9.781872e17,-9.7864005e17,-9.790929e17,-9.795458e17,-9.799986e17,-9.804515e17,-9.8090435e17,-9.813572e17,-9.818101e17,-9.8226294e17,-9.827158e17,-9.8316866e17,-9.836215e17,-9.840744e17,-9.8452724e17,-9.849802e17,-9.8543304e17,-9.858859e17,-9.8633876e17,-9.867916e17,-9.872445e17,-9.8769734e17,-9.881502e17,-9.8860307e17,-9.890559e17,-9.895088e17,-9.8996165e17,-9.904145e17,-9.908674e17,-9.913202e17,-9.917731e17,-9.9222596e17,-9.926788e17,-9.931317e17,-9.9358454e17,-9.940374e17,-9.9449026e17,-9.949431e17,-9.9539605e17,-9.958489e17,-9.963018e17,-9.9675464e17,-9.972075e17,-9.9766036e17,-9.981132e17,-9.985661e17,-9.9901895e17,-9.994718e17,-9.999247e17,-1.0003775e18,-1.0008304e18,-1.00128325e18,-1.0017361e18,-1.002189e18,-1.00264184e18,-1.0030947e18,-1.00354756e18,-1.0040004e18,-1.0044533e18,-1.00490614e18,-1.0053591e18,-1.0058119e18,-1.0062648e18,-1.00671766e18,-1.0071705e18,-1.0076234e18,-1.00807624e18,-1.0085291e18,-1.00898196e18,-1.0094348e18,-1.0098877e18,-1.01034055e18,-1.0107934e18,-1.0112463e18,-1.0116991e18,-1.012152e18,-1.01260485e18,-1.0130577e18,-1.0135106e18,-1.01396344e18,-1.0144163e18,-1.01486916e18,-1.0153221e18,-1.01577495e18,-1.0162278e18,-1.0166807e18,-1.01713354e18,-1.0175864e18,-1.01803926e18,-1.0184921e18,-1.018945e18,-1.01939784e18,-1.0198507e18,-1.0203036e18,-1.0207564e18,-1.0212093e18,-1.02166215e18,-1.022115e18,-1.0225679e18,-1.0230207e18,-1.0234736e18,-1.02392646e18,-1.0243793e18,-1.0248322e18,-1.02528504e18,-1.025738e18,-1.0261908e18,-1.0266437e18,-1.02709656e18,-1.0275494e18,-1.0280023e18,-1.02845514e18,-1.028908e18,-1.02936086e18,-1.0298137e18,-1.0302666e18,-1.03071945e18,-1.0311723e18,-1.0316252e18,-1.032078e18,-1.0325309e18,-1.03298375e18,-1.0334366e18,-1.0338895e18,-1.03434234e18,-1.0347952e18,-1.03524806e18,-1.035701e18,-1.03615385e18,-1.0366067e18,-1.0370596e18,-1.03751243e18,-1.0379653e18,-1.03841816e18,-1.038871e18,-1.0393239e18,-1.03977674e18,-1.0402296e18,-1.04068246e18,-1.0411353e18,-1.0415882e18,-1.04204105e18,-1.0424939e18,-1.0429468e18,-1.0433996e18,-1.0438525e18,-1.04430536e18,-1.0447582e18,-1.0452111e18,-1.045664e18,-1.0461169e18,-1.0465697e18,-1.0470226e18,-1.04747545e18,-1.0479283e18,-1.0483812e18,-1.04883404e18,-1.0492869e18,-1.04973976e18,-1.0501926e18,-1.0506455e18,-1.05109834e18,-1.0515512e18,-1.0520041e18,-1.0524569e18,-1.0529098e18,-1.05336265e18,-1.0538155e18,-1.0542684e18,-1.05472123e18,-1.0551741e18,-1.05562696e18,-1.0560799e18,-1.05653275e18,-1.0569856e18,-1.0574385e18,-1.0578913e18,-1.0583442e18,-1.05879706e18,-1.0592499e18,-1.0597028e18,-1.06015564e18,-1.0606085e18,-1.06106136e18,-1.0615142e18,-1.0619671e18,-1.06241995e18,-1.0628728e18,-1.0633257e18,-1.0637785e18,-1.0642314e18,-1.06468425e18,-1.0651371e18,-1.06559e18,-1.0660429e18,-1.0664958e18,-1.0669486e18,-1.0674015e18,-1.06785435e18,-1.0683072e18,-1.0687601e18,-1.06921294e18,-1.0696658e18,-1.07011866e18,-1.0705715e18,-1.0710244e18,-1.07147724e18,-1.0719301e18,-1.07238297e18,-1.0728358e18,-1.0732887e18,-1.07374155e18,-1.0741944e18,-1.0746473e18,-1.0751001e18,-1.075553e18,-1.0760059e18,-1.0764588e18,-1.07691165e18,-1.0773645e18,-1.0778174e18,-1.0782702e18,-1.0787231e18,-1.07917595e18,-1.0796288e18,-1.0800817e18,-1.08053454e18,-1.0809874e18,-1.08144026e18,-1.0818931e18,-1.082346e18,-1.08279884e18,-1.0832517e18,-1.0837046e18,-1.0841574e18,-1.0846103e18,-1.08506315e18,-1.085516e18,-1.0859689e18,-1.0864218e18,-1.0868747e18,-1.0873275e18,-1.0877804e18,-1.08823325e18,-1.0886861e18,-1.089139e18,-1.0895918e18,-1.0900447e18,-1.09049756e18,-1.0909504e18,-1.0914033e18,-1.09185614e18,-1.092309e18,-1.09276186e18,-1.0932147e18,-1.0936676e18,-1.09412045e18,-1.0945733e18,-1.0950262e18,-1.095479e18,-1.0959319e18,-1.0963848e18,-1.0968377e18,-1.09729055e18,-1.0977434e18,-1.0981963e18,-1.0986491e18,-1.099102e18,-1.09955485e18,-1.1000077e18,-1.1004606e18,-1.10091344e18,-1.1013663e18,-1.10181916e18,-1.102272e18,-1.1027249e18,-1.10317774e18,-1.1036306e18,-1.1040835e18,-1.1045363e18,-1.1049892e18,-1.10544205e18,-1.1058949e18,-1.10634784e18,-1.1068007e18,-1.10725356e18,-1.1077064e18,-1.1081593e18,-1.10861215e18,-1.109065e18,-1.1095179e18,-1.1099707e18,-1.1104236e18,-1.11087645e18,-1.1113293e18,-1.1117822e18,-1.11223504e18,-1.1126879e18,-1.11314076e18,-1.1135936e18,-1.1140465e18,-1.11449935e18,-1.1149522e18,-1.1154051e18,-1.1158579e18,-1.11631086e18,-1.1167637e18,-1.1172166e18,-1.11766944e18,-1.1181223e18,-1.1185752e18,-1.119028e18,-1.1194809e18,-1.11993375e18,-1.1203866e18,-1.1208395e18,-1.12129233e18,-1.1217452e18,-1.12219806e18,-1.1226509e18,-1.1231038e18,-1.12355664e18,-1.1240095e18,-1.12446236e18,-1.1249152e18,-1.1253681e18,-1.12582095e18,-1.1262738e18,-1.12672674e18,-1.1271796e18,-1.12763246e18,-1.1280853e18,-1.1285382e18,-1.12899105e18,-1.1294439e18,-1.1298968e18,-1.1303496e18,-1.1308025e18,-1.13125535e18,-1.1317082e18,-1.1321611e18,-1.13261394e18,-1.1330668e18,-1.13351966e18,-1.1339725e18,-1.1344254e18,-1.13487824e18,-1.1353311e18,-1.135784e18,-1.1362368e18,-1.13668976e18,-1.1371426e18,-1.1375955e18,-1.13804834e18,-1.1385012e18,-1.13895406e18,-1.1394069e18,-1.1398598e18,-1.14031265e18,-1.1407655e18,-1.1412184e18,-1.1416712e18,-1.1421241e18,-1.14257696e18,-1.1430298e18,-1.1434827e18,-1.14393554e18,-1.1443884e18,-1.14484126e18,-1.1452941e18,-1.145747e18,-1.14619985e18,-1.1466528e18,-1.14710564e18,-1.1475585e18,-1.14801136e18,-1.1484642e18,-1.1489171e18,-1.14936994e18,-1.1498228e18,-1.1502757e18,-1.1507285e18,-1.1511814e18,-1.15163425e18,-1.1520871e18,-1.15254e18,-1.1529928e18,-1.1534457e18,-1.1538986e18,-1.1543514e18,-1.1548043e18,-1.1552571e18,-1.15571e18,-1.1561629e18,-1.1566157e18,-1.1570686e18,-1.1575214e18,-1.1579743e18,-1.1584272e18,-1.15888e18,-1.1593329e18,-1.1597858e18,-1.1602386e18,-1.1606915e18,-1.1611443e18,-1.1615972e18,-1.1620502e18,-1.162503e18,-1.1629559e18,-1.1634088e18,-1.1638616e18,-1.1643145e18,-1.1647674e18,-1.1652202e18,-1.1656731e18,-1.166126e18,-1.1665788e18,-1.1670317e18,-1.1674845e18,-1.1679374e18,-1.1683903e18,-1.1688431e18,-1.169296e18,-1.1697488e18,-1.1702017e18,-1.1706546e18,-1.1711074e18,-1.1715603e18,-1.1720131e18,-1.172466e18,-1.1729189e18,-1.1733717e18,-1.1738246e18,-1.1742775e18,-1.1747303e18,-1.1751832e18,-1.175636e18,-1.1760889e18,-1.1765418e18,-1.1769946e18,-1.1774475e18,-1.1779003e18,-1.1783532e18,-1.1788061e18,-1.1792589e18,-1.1797118e18,-1.1801647e18,-1.1806175e18,-1.1810704e18,-1.1815232e18,-1.1819762e18,-1.1824291e18,-1.182882e18,-1.1833348e18,-1.1837877e18,-1.1842405e18,-1.1846934e18,-1.1851463e18,-1.1855991e18,-1.186052e18,-1.1865049e18,-1.1869577e18,-1.1874106e18,-1.1878634e18,-1.1883163e18,-1.1887692e18,-1.189222e18,-1.1896749e18,-1.1901277e18,-1.1905806e18,-1.1910335e18,-1.1914863e18,-1.1919392e18,-1.192392e18,-1.1928449e18,-1.1932978e18,-1.1937506e18,-1.1942035e18,-1.1946564e18,-1.1951092e18,-1.1955621e18,-1.196015e18,-1.1964678e18,-1.1969207e18,-1.1973735e18,-1.1978264e18,-1.1982792e18,-1.1987321e18,-1.199185e18,-1.1996378e18,-1.2000907e18,-1.2005436e18,-1.2009964e18,-1.2014493e18,-1.2019021e18,-1.2023551e18,-1.202808e18,-1.2032609e18,-1.2037137e18,-1.2041666e18,-1.2046194e18,-1.2050723e18,-1.2055252e18,-1.205978e18,-1.2064309e18,-1.2068837e18,-1.2073366e18,-1.2077895e18,-1.2082423e18,-1.2086952e18,-1.209148e18,-1.2096009e18,-1.2100538e18,-1.2105066e18,-1.2109595e18,-1.2114124e18,-1.2118652e18,-1.2123181e18,-1.212771e18,-1.2132238e18,-1.2136767e18,-1.2141295e18,-1.2145824e18,-1.2150353e18,-1.2154881e18,-1.215941e18,-1.2163938e18,-1.2168467e18,-1.2172996e18,-1.2177524e18,-1.2182053e18,-1.2186581e18,-1.219111e18,-1.2195639e18,-1.2200167e18,-1.2204696e18,-1.2209225e18,-1.2213753e18,-1.2218282e18,-1.222281e18,-1.222734e18,-1.2231869e18,-1.2236398e18,-1.2240926e18,-1.2245455e18,-1.2249983e18,-1.2254512e18,-1.225904e18,-1.2263569e18,-1.2268098e18,-1.2272626e18,-1.2277155e18,-1.2281684e18,-1.2286212e18,-1.2290741e18,-1.229527e18,-1.2299798e18,-1.2304327e18,-1.2308855e18,-1.2313384e18,-1.2317913e18,-1.2322441e18,-1.232697e18,-1.2331498e18,-1.2336027e18,-1.2340556e18,-1.2345084e18,-1.2349613e18,-1.2354142e18,-1.235867e18,-1.2363199e18,-1.2367727e18,-1.2372256e18,-1.2376785e18,-1.2381313e18,-1.2385842e18,-1.239037e18,-1.2394899e18,-1.2399428e18,-1.2403956e18,-1.2408485e18,-1.2413013e18,-1.2417542e18,-1.2422071e18,-1.2426601e18,-1.243113e18,-1.2435658e18,-1.2440187e18,-1.2444715e18,-1.2449244e18,-1.2453772e18,-1.2458301e18,-1.246283e18,-1.2467358e18,-1.2471887e18,-1.2476415e18,-1.2480944e18,-1.2485473e18,-1.2490001e18,-1.249453e18,-1.2499059e18,-1.2503587e18,-1.2508116e18,-1.2512644e18,-1.2517173e18,-1.2521702e18,-1.252623e18,-1.2530759e18,-1.2535287e18,-1.2539816e18,-1.2544345e18,-1.2548873e18,-1.2553402e18,-1.255793e18,-1.2562459e18,-1.2566988e18,-1.2571516e18,-1.2576045e18,-1.2580574e18,-1.2585102e18,-1.2589631e18,-1.259416e18,-1.2598688e18,-1.2603217e18,-1.2607745e18,-1.2612274e18,-1.2616802e18,-1.2621331e18,-1.262586e18,-1.263039e18,-1.2634918e18,-1.2639447e18,-1.2643976e18,-1.2648504e18,-1.2653033e18,-1.2657561e18,-1.266209e18,-1.2666619e18,-1.2671147e18,-1.2675676e18,-1.2680204e18,-1.2684733e18,-1.2689262e18,-1.269379e18,-1.2698319e18,-1.2702848e18,-1.2707376e18,-1.2711905e18,-1.2716433e18,-1.2720962e18,-1.272549e18,-1.2730019e18,-1.2734548e18,-1.2739076e18,-1.2743605e18,-1.2748134e18,-1.2752662e18,-1.2757191e18,-1.276172e18,-1.2766248e18,-1.2770777e18,-1.2775305e18,-1.2779834e18,-1.2784363e18,-1.2788891e18,-1.279342e18,-1.2797948e18,-1.2802477e18,-1.2807006e18,-1.2811534e18,-1.2816063e18,-1.2820591e18,-1.282512e18,-1.2829649e18,-1.2834179e18,-1.2838707e18,-1.2843236e18,-1.2847765e18,-1.2852293e18,-1.2856822e18,-1.286135e18,-1.2865879e18,-1.2870408e18,-1.2874936e18,-1.2879465e18,-1.2883993e18,-1.2888522e18,-1.289305e18,-1.2897579e18,-1.2902108e18,-1.2906636e18,-1.2911165e18,-1.2915694e18,-1.2920222e18,-1.2924751e18,-1.292928e18,-1.2933808e18,-1.2938337e18,-1.2942865e18,-1.2947394e18,-1.2951923e18,-1.2956451e18,-1.296098e18,-1.2965508e18,-1.2970037e18,-1.2974566e18,-1.2979094e18,-1.2983623e18,-1.2988152e18,-1.299268e18,-1.2997209e18,-1.3001737e18,-1.3006266e18,-1.3010795e18,-1.3015323e18,-1.3019852e18,-1.302438e18,-1.3028909e18,-1.3033439e18,-1.3037968e18,-1.3042496e18,-1.3047025e18,-1.3051553e18,-1.3056082e18,-1.3060611e18,-1.306514e18,-1.3069668e18,-1.3074197e18,-1.3078725e18,-1.3083254e18,-1.3087782e18,-1.3092311e18,-1.309684e18,-1.3101368e18,-1.3105897e18,-1.3110425e18,-1.3114954e18,-1.3119483e18,-1.3124011e18,-1.312854e18,-1.3133069e18,-1.3137597e18,-1.3142126e18,-1.3146654e18,-1.3151183e18,-1.3155712e18,-1.316024e18,-1.3164769e18,-1.3169297e18,-1.3173826e18,-1.3178355e18,-1.3182883e18,-1.3187412e18,-1.319194e18,-1.3196469e18,-1.3200998e18,-1.3205526e18,-1.3210055e18,-1.3214584e18,-1.3219112e18,-1.3223641e18,-1.322817e18,-1.3232698e18,-1.3237228e18,-1.3241757e18,-1.3246285e18,-1.3250814e18,-1.3255342e18,-1.3259871e18,-1.32644e18,-1.3268928e18,-1.3273457e18,-1.3277986e18,-1.3282514e18,-1.3287043e18,-1.3291571e18,-1.32961e18,-1.3300629e18,-1.3305157e18,-1.3309686e18,-1.3314214e18,-1.3318743e18,-1.3323272e18,-1.33278e18,-1.3332329e18,-1.3336858e18,-1.3341386e18,-1.3345915e18,-1.3350443e18,-1.3354972e18,-1.33595e18,-1.3364029e18,-1.3368558e18,-1.3373086e18,-1.3377615e18,-1.3382144e18,-1.3386672e18,-1.3391201e18,-1.339573e18,-1.3400258e18,-1.3404787e18,-1.3409315e18,-1.3413844e18,-1.3418373e18,-1.3422901e18,-1.342743e18,-1.3431958e18,-1.3436488e18,-1.3441017e18,-1.3445546e18,-1.3450074e18,-1.3454603e18,-1.3459131e18,-1.346366e18,-1.3468189e18,-1.3472717e18,-1.3477246e18,-1.3481775e18,-1.3486303e18,-1.3490832e18,-1.349536e18,-1.3499889e18,-1.3504418e18,-1.3508946e18,-1.3513475e18,-1.3518003e18,-1.3522532e18,-1.352706e18,-1.3531589e18,-1.3536118e18,-1.3540646e18,-1.3545175e18,-1.3549704e18,-1.3554232e18,-1.3558761e18,-1.356329e18,-1.3567818e18,-1.3572347e18,-1.3576875e18,-1.3581404e18,-1.3585933e18,-1.3590461e18,-1.359499e18,-1.3599518e18,-1.3604047e18,-1.3608576e18,-1.3613104e18,-1.3617633e18,-1.3622162e18,-1.362669e18,-1.3631219e18,-1.3635747e18,-1.3640277e18,-1.3644806e18,-1.3649335e18,-1.3653863e18,-1.3658392e18,-1.366292e18,-1.3667449e18,-1.3671978e18,-1.3676506e18,-1.3681035e18,-1.3685564e18,-1.3690092e18,-1.3694621e18,-1.369915e18,-1.3703678e18,-1.3708207e18,-1.3712735e18,-1.3717264e18,-1.3721792e18,-1.3726321e18,-1.373085e18,-1.3735378e18,-1.3739907e18,-1.3744435e18,-1.3748964e18,-1.3753493e18,-1.3758021e18,-1.376255e18,-1.3767079e18,-1.3771607e18,-1.3776136e18,-1.3780664e18,-1.3785193e18,-1.3789722e18,-1.379425e18,-1.3798779e18,-1.3803307e18,-1.3807836e18,-1.3812365e18,-1.3816893e18,-1.3821422e18,-1.382595e18,-1.3830479e18,-1.3835008e18,-1.3839536e18,-1.3844066e18,-1.3848595e18,-1.3853124e18,-1.3857652e18,-1.3862181e18,-1.386671e18,-1.3871238e18,-1.3875767e18,-1.3880295e18,-1.3884824e18,-1.3889352e18,-1.3893881e18,-1.389841e18,-1.3902938e18,-1.3907467e18,-1.3911996e18,-1.3916524e18,-1.3921053e18,-1.3925581e18,-1.393011e18,-1.3934639e18,-1.3939167e18,-1.3943696e18,-1.3948224e18,-1.3952753e18,-1.3957282e18,-1.396181e18,-1.3966339e18,-1.3970868e18,-1.3975396e18,-1.3979925e18,-1.3984453e18,-1.3988982e18,-1.399351e18,-1.3998039e18,-1.4002568e18,-1.4007096e18,-1.4011625e18,-1.4016154e18,-1.4020682e18,-1.4025211e18,-1.402974e18,-1.4034268e18,-1.4038797e18,-1.4043327e18,-1.4047855e18,-1.4052384e18,-1.4056913e18,-1.4061441e18,-1.406597e18,-1.4070498e18,-1.4075027e18,-1.4079556e18,-1.4084084e18,-1.4088613e18,-1.4093141e18,-1.409767e18,-1.4102199e18,-1.4106727e18,-1.4111256e18,-1.4115785e18,-1.4120313e18,-1.4124842e18,-1.412937e18,-1.4133899e18,-1.4138428e18,-1.4142956e18,-1.4147485e18,-1.4152013e18,-1.4156542e18,-1.416107e18,-1.4165599e18,-1.4170128e18,-1.4174657e18,-1.4179185e18,-1.4183714e18,-1.4188242e18,-1.4192771e18,-1.41973e18,-1.4201828e18,-1.4206357e18,-1.4210885e18,-1.4215414e18,-1.4219943e18,-1.4224471e18,-1.4229e18,-1.4233528e18,-1.4238057e18,-1.4242586e18,-1.4247116e18,-1.4251644e18,-1.4256173e18,-1.4260702e18,-1.426523e18,-1.4269759e18,-1.4274287e18,-1.4278816e18,-1.4283345e18,-1.4287873e18,-1.4292402e18,-1.429693e18,-1.4301459e18,-1.4305988e18,-1.4310516e18,-1.4315045e18,-1.4319574e18,-1.4324102e18,-1.4328631e18,-1.433316e18,-1.4337688e18,-1.4342217e18,-1.4346745e18,-1.4351274e18,-1.4355802e18,-1.4360331e18,-1.436486e18,-1.4369388e18,-1.4373917e18,-1.4378445e18,-1.4382974e18,-1.4387503e18,-1.4392031e18,-1.439656e18,-1.4401089e18,-1.4405617e18,-1.4410146e18,-1.4414674e18,-1.4419203e18,-1.4423732e18,-1.442826e18,-1.4432789e18,-1.4437317e18,-1.4441846e18,-1.4446376e18,-1.4450905e18,-1.4455433e18,-1.4459962e18,-1.446449e18,-1.4469019e18,-1.4473548e18,-1.4478076e18,-1.4482605e18,-1.4487134e18,-1.4491662e18,-1.4496191e18,-1.450072e18,-1.4505248e18,-1.4509777e18,-1.4514305e18,-1.4518834e18,-1.4523363e18,-1.4527891e18,-1.453242e18,-1.4536948e18,-1.4541477e18,-1.4546006e18,-1.4550534e18,-1.4555063e18,-1.4559591e18,-1.456412e18,-1.4568649e18,-1.4573177e18,-1.4577706e18,-1.4582234e18,-1.4586763e18,-1.4591292e18,-1.459582e18,-1.4600349e18,-1.4604878e18,-1.4609406e18,-1.4613935e18,-1.4618463e18,-1.4622992e18,-1.462752e18,-1.4632049e18,-1.4636578e18,-1.4641106e18,-1.4645635e18,-1.4650165e18,-1.4654694e18,-1.4659222e18,-1.4663751e18,-1.466828e18,-1.4672808e18,-1.4677337e18,-1.4681865e18,-1.4686394e18,-1.4690923e18,-1.4695451e18,-1.469998e18,-1.4704508e18,-1.4709037e18,-1.4713566e18,-1.4718094e18,-1.4722623e18,-1.4727151e18,-1.473168e18,-1.4736209e18,-1.4740737e18,-1.4745266e18,-1.4749795e18,-1.4754323e18,-1.4758852e18,-1.476338e18,-1.4767909e18,-1.4772438e18,-1.4776966e18,-1.4781495e18,-1.4786023e18,-1.4790552e18,-1.4795081e18,-1.4799609e18,-1.4804138e18,-1.4808667e18,-1.4813195e18,-1.4817724e18,-1.4822252e18,-1.4826781e18,-1.483131e18,-1.4835838e18,-1.4840367e18,-1.4844895e18,-1.4849424e18,-1.4853954e18,-1.4858483e18,-1.4863011e18,-1.486754e18,-1.4872068e18,-1.4876597e18,-1.4881126e18,-1.4885654e18,-1.4890183e18,-1.4894712e18,-1.489924e18,-1.4903769e18,-1.4908297e18,-1.4912826e18,-1.4917355e18,-1.4921883e18,-1.4926412e18,-1.493094e18,-1.4935469e18,-1.4939998e18,-1.4944526e18,-1.4949055e18,-1.4953584e18,-1.4958112e18,-1.4962641e18,-1.496717e18,-1.4971698e18,-1.4976227e18,-1.4980755e18,-1.4985284e18,-1.4989812e18,-1.4994341e18,-1.499887e18,-1.5003398e18,-1.5007927e18,-1.5012456e18,-1.5016984e18,-1.5021513e18,-1.5026041e18,-1.503057e18,-1.5035099e18,-1.5039627e18,-1.5044156e18,-1.5048684e18,-1.5053214e18,-1.5057743e18,-1.5062272e18,-1.50668e18,-1.5071329e18,-1.5075857e18,-1.5080386e18,-1.5084915e18,-1.5089443e18,-1.5093972e18,-1.50985e18,-1.5103029e18,-1.5107558e18,-1.5112086e18,-1.5116615e18,-1.5121144e18,-1.5125672e18,-1.5130201e18,-1.513473e18,-1.5139258e18,-1.5143787e18,-1.5148315e18,-1.5152844e18,-1.5157373e18,-1.5161901e18,-1.516643e18,-1.5170958e18,-1.5175487e18,-1.5180016e18,-1.5184544e18,-1.5189073e18,-1.5193601e18,-1.519813e18,-1.5202659e18,-1.5207187e18,-1.5211716e18,-1.5216244e18,-1.5220773e18,-1.5225302e18,-1.522983e18,-1.5234359e18,-1.5238888e18,-1.5243416e18,-1.5247945e18,-1.5252473e18,-1.5257003e18,-1.5261532e18,-1.526606e18,-1.5270589e18,-1.5275118e18,-1.5279646e18,-1.5284175e18,-1.5288704e18,-1.5293232e18,-1.5297761e18,-1.530229e18,-1.5306818e18,-1.5311347e18,-1.5315875e18,-1.5320404e18,-1.5324933e18,-1.5329461e18,-1.533399e18,-1.5338518e18,-1.5343047e18,-1.5347576e18,-1.5352104e18,-1.5356633e18,-1.5361162e18,-1.536569e18,-1.5370219e18,-1.5374747e18,-1.5379276e18,-1.5383805e18,-1.5388333e18,-1.5392862e18,-1.539739e18,-1.5401919e18,-1.5406448e18,-1.5410976e18,-1.5415505e18,-1.5420033e18,-1.5424562e18,-1.5429091e18,-1.543362e18,-1.5438148e18,-1.5442677e18,-1.5447205e18,-1.5451734e18,-1.5456262e18,-1.5460792e18,-1.5465321e18,-1.546985e18,-1.5474378e18,-1.5478907e18,-1.5483435e18,-1.5487964e18,-1.5492493e18,-1.5497021e18,-1.550155e18,-1.5506079e18,-1.5510607e18,-1.5515136e18,-1.5519664e18,-1.5524193e18,-1.5528722e18,-1.553325e18,-1.5537779e18,-1.5542307e18,-1.5546836e18,-1.5551365e18,-1.5555893e18,-1.5560422e18,-1.556495e18,-1.5569479e18,-1.5574008e18,-1.5578536e18,-1.5583065e18,-1.5587594e18,-1.5592122e18,-1.5596651e18,-1.560118e18,-1.5605708e18,-1.5610237e18,-1.5614765e18,-1.5619294e18,-1.5623822e18,-1.5628351e18,-1.563288e18,-1.5637408e18,-1.5641937e18,-1.5646466e18,-1.5650994e18,-1.5655523e18,-1.5660053e18,-1.5664581e18,-1.566911e18,-1.5673639e18,-1.5678167e18,-1.5682696e18,-1.5687224e18,-1.5691753e18,-1.5696282e18,-1.570081e18,-1.5705339e18,-1.5709867e18,-1.5714396e18,-1.5718925e18,-1.5723453e18,-1.5727982e18,-1.573251e18,-1.5737039e18,-1.5741568e18,-1.5746096e18,-1.5750625e18,-1.5755154e18,-1.5759682e18,-1.5764211e18,-1.576874e18,-1.5773268e18,-1.5777797e18,-1.5782325e18,-1.5786854e18,-1.5791383e18,-1.5795911e18,-1.580044e18,-1.5804968e18,-1.5809497e18,-1.5814026e18,-1.5818554e18,-1.5823083e18,-1.5827611e18,-1.583214e18,-1.5836669e18,-1.5841197e18,-1.5845726e18,-1.5850255e18,-1.5854783e18,-1.5859312e18,-1.5863842e18,-1.586837e18,-1.5872899e18,-1.5877428e18,-1.5881956e18,-1.5886485e18,-1.5891013e18,-1.5895542e18,-1.590007e18,-1.5904599e18,-1.5909128e18,-1.5913656e18,-1.5918185e18,-1.5922714e18,-1.5927242e18,-1.5931771e18,-1.59363e18,-1.5940828e18,-1.5945357e18,-1.5949885e18,-1.5954414e18,-1.5958943e18,-1.5963471e18,-1.5968e18,-1.5972528e18,-1.5977057e18,-1.5981586e18,-1.5986114e18,-1.5990643e18,-1.5995172e18,-1.59997e18,-1.6004229e18,-1.6008757e18,-1.6013286e18,-1.6017815e18,-1.6022343e18,-1.6026872e18,-1.60314e18,-1.6035929e18,-1.6040458e18,-1.6044986e18,-1.6049515e18,-1.6054043e18,-1.6058572e18,-1.6063102e18,-1.6067631e18,-1.607216e18,-1.6076688e18,-1.6081217e18,-1.6085745e18,-1.6090274e18,-1.6094802e18,-1.6099331e18,-1.610386e18,-1.6108388e18,-1.6112917e18,-1.6117445e18,-1.6121974e18,-1.6126503e18,-1.6131031e18,-1.613556e18,-1.6140089e18,-1.6144617e18,-1.6149146e18,-1.6153674e18,-1.6158203e18,-1.6162732e18,-1.616726e18,-1.6171789e18,-1.6176317e18,-1.6180846e18,-1.6185375e18,-1.6189903e18,-1.6194432e18,-1.619896e18,-1.6203489e18,-1.6208018e18,-1.6212546e18,-1.6217075e18,-1.6221604e18,-1.6226132e18,-1.6230661e18,-1.623519e18,-1.6239718e18,-1.6244247e18,-1.6248775e18,-1.6253304e18,-1.6257832e18,-1.6262361e18,-1.6266891e18,-1.627142e18,-1.6275948e18,-1.6280477e18,-1.6285006e18,-1.6289534e18,-1.6294063e18,-1.6298591e18,-1.630312e18,-1.6307649e18,-1.6312177e18,-1.6316706e18,-1.6321234e18,-1.6325763e18,-1.6330292e18,-1.633482e18,-1.6339349e18,-1.6343878e18,-1.6348406e18,-1.6352935e18,-1.6357463e18,-1.6361992e18,-1.636652e18,-1.6371049e18,-1.6375578e18,-1.6380106e18,-1.6384635e18,-1.6389164e18,-1.6393692e18,-1.6398221e18,-1.640275e18,-1.6407278e18,-1.6411807e18,-1.6416335e18,-1.6420864e18,-1.6425393e18,-1.6429921e18,-1.643445e18,-1.6438978e18,-1.6443507e18,-1.6448036e18,-1.6452564e18,-1.6457093e18,-1.6461621e18,-1.646615e18,-1.647068e18,-1.6475209e18,-1.6479737e18,-1.6484266e18,-1.6488795e18,-1.6493323e18,-1.6497852e18,-1.650238e18,-1.6506909e18,-1.6511438e18,-1.6515966e18,-1.6520495e18,-1.6525023e18,-1.6529552e18,-1.653408e18,-1.6538609e18,-1.6543138e18,-1.6547666e18,-1.6552195e18,-1.6556724e18,-1.6561252e18,-1.6565781e18,-1.657031e18,-1.6574838e18,-1.6579367e18,-1.6583895e18,-1.6588424e18,-1.6592953e18,-1.6597481e18,-1.660201e18,-1.6606538e18,-1.6611067e18,-1.6615596e18,-1.6620124e18,-1.6624653e18,-1.6629182e18,-1.663371e18,-1.6638239e18,-1.6642767e18,-1.6647296e18,-1.6651825e18,-1.6656353e18,-1.6660882e18,-1.666541e18,-1.666994e18,-1.6674469e18,-1.6678998e18,-1.6683526e18,-1.6688055e18,-1.6692583e18,-1.6697112e18,-1.6701641e18,-1.670617e18,-1.6710698e18,-1.6715227e18,-1.6719755e18,-1.6724284e18,-1.6728812e18,-1.6733341e18,-1.673787e18,-1.6742398e18,-1.6746927e18,-1.6751455e18,-1.6755984e18,-1.6760513e18,-1.6765041e18,-1.676957e18,-1.6774099e18,-1.6778627e18,-1.6783156e18,-1.6787684e18,-1.6792213e18,-1.6796742e18,-1.680127e18,-1.6805799e18,-1.6810327e18,-1.6814856e18,-1.6819385e18,-1.6823913e18,-1.6828442e18,-1.683297e18,-1.6837499e18,-1.6842028e18,-1.6846556e18,-1.6851085e18,-1.6855614e18,-1.6860142e18,-1.6864671e18,-1.68692e18,-1.687373e18,-1.6878258e18,-1.6882787e18,-1.6887315e18,-1.6891844e18,-1.6896372e18,-1.6900901e18,-1.690543e18,-1.6909958e18,-1.6914487e18,-1.6919016e18,-1.6923544e18,-1.6928073e18,-1.6932601e18,-1.693713e18,-1.6941659e18,-1.6946187e18,-1.6950716e18,-1.6955244e18,-1.6959773e18,-1.6964302e18,-1.696883e18,-1.6973359e18,-1.6977888e18,-1.6982416e18,-1.6986945e18,-1.6991473e18,-1.6996002e18,-1.700053e18,-1.7005059e18,-1.7009588e18,-1.7014116e18,-1.7018645e18,-1.7023174e18,-1.7027702e18,-1.7032231e18,-1.703676e18,-1.7041288e18,-1.7045817e18,-1.7050345e18,-1.7054874e18,-1.7059403e18,-1.7063931e18,-1.706846e18,-1.707299e18,-1.7077518e18,-1.7082047e18,-1.7086576e18,-1.7091104e18,-1.7095633e18,-1.7100161e18,-1.710469e18,-1.7109219e18,-1.7113747e18,-1.7118276e18,-1.7122805e18,-1.7127333e18,-1.7131862e18,-1.713639e18,-1.7140919e18,-1.7145448e18,-1.7149976e18,-1.7154505e18,-1.7159033e18,-1.7163562e18,-1.716809e18,-1.7172619e18,-1.7177148e18,-1.7181677e18,-1.7186205e18,-1.7190734e18,-1.7195262e18,-1.7199791e18,-1.720432e18,-1.7208848e18,-1.7213377e18,-1.7217905e18,-1.7222434e18,-1.7226963e18,-1.7231491e18,-1.723602e18,-1.7240548e18,-1.7245077e18,-1.7249606e18,-1.7254134e18,-1.7258663e18,-1.7263192e18,-1.726772e18,-1.7272249e18,-1.7276779e18,-1.7281307e18,-1.7285836e18,-1.7290365e18,-1.7294893e18,-1.7299422e18,-1.730395e18,-1.7308479e18,-1.7313008e18,-1.7317536e18,-1.7322065e18,-1.7326594e18,-1.7331122e18,-1.7335651e18,-1.734018e18,-1.7344708e18,-1.7349237e18,-1.7353765e18,-1.7358294e18,-1.7362822e18,-1.7367351e18,-1.737188e18,-1.7376408e18,-1.7380937e18,-1.7385465e18,-1.7389994e18,-1.7394523e18,-1.7399051e18,-1.740358e18,-1.7408109e18,-1.7412637e18,-1.7417166e18,-1.7421694e18,-1.7426223e18,-1.7430752e18,-1.743528e18,-1.7439809e18,-1.7444337e18,-1.7448866e18,-1.7453395e18,-1.7457923e18,-1.7462452e18,-1.746698e18,-1.7471509e18,-1.7476038e18,-1.7480568e18,-1.7485096e18,-1.7489625e18,-1.7494154e18,-1.7498682e18,-1.7503211e18,-1.750774e18,-1.7512268e18,-1.7516797e18,-1.7521325e18,-1.7525854e18,-1.7530382e18,-1.7534911e18,-1.753944e18,-1.7543968e18,-1.7548497e18,-1.7553026e18,-1.7557554e18,-1.7562083e18,-1.7566611e18,-1.757114e18,-1.7575669e18,-1.7580197e18,-1.7584726e18,-1.7589254e18,-1.7593783e18,-1.7598312e18,-1.760284e18,-1.7607369e18,-1.7611898e18,-1.7616426e18,-1.7620955e18,-1.7625483e18,-1.7630012e18,-1.763454e18,-1.7639069e18,-1.7643598e18,-1.7648126e18,-1.7652655e18,-1.7657184e18,-1.7661712e18,-1.7666241e18,-1.767077e18,-1.7675298e18,-1.7679828e18,-1.7684357e18,-1.7688885e18,-1.7693414e18,-1.7697943e18,-1.7702471e18,-1.7707e18,-1.7711528e18,-1.7716057e18,-1.7720586e18,-1.7725114e18,-1.7729643e18,-1.7734171e18,-1.77387e18,-1.7743229e18,-1.7747757e18,-1.7752286e18,-1.7756815e18,-1.7761343e18,-1.7765872e18,-1.77704e18,-1.7774929e18,-1.7779458e18,-1.7783986e18,-1.7788515e18,-1.7793043e18,-1.7797572e18,-1.78021e18,-1.7806629e18,-1.7811158e18,-1.7815687e18,-1.7820215e18,-1.7824744e18,-1.7829272e18,-1.7833801e18,-1.783833e18,-1.7842858e18,-1.7847387e18,-1.7851915e18,-1.7856444e18,-1.7860973e18,-1.7865501e18,-1.787003e18,-1.7874558e18,-1.7879087e18,-1.7883617e18,-1.7888146e18,-1.7892674e18,-1.7897203e18,-1.7901732e18,-1.790626e18,-1.7910789e18,-1.7915317e18,-1.7919846e18,-1.7924375e18,-1.7928903e18,-1.7933432e18,-1.793796e18,-1.7942489e18,-1.7947018e18,-1.7951546e18,-1.7956075e18,-1.7960604e18,-1.7965132e18,-1.7969661e18,-1.797419e18,-1.7978718e18,-1.7983247e18,-1.7987775e18,-1.7992304e18,-1.7996832e18,-1.8001361e18,-1.800589e18,-1.8010418e18,-1.8014947e18,-1.8019476e18,-1.8024004e18,-1.8028533e18,-1.8033061e18,-1.803759e18,-1.8042119e18,-1.8046647e18,-1.8051176e18,-1.8055704e18,-1.8060233e18,-1.8064762e18,-1.806929e18,-1.8073819e18,-1.8078347e18,-1.8082876e18,-1.8087406e18,-1.8091935e18,-1.8096463e18,-1.8100992e18,-1.810552e18,-1.8110049e18]}
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/large_positive.json
new file mode 100644
index 000000000000..bb229700fc65
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/large_positive.json
@@ -0,0 +1 @@
+{"expected":[0.9994749,0.5545138,0.011887014,0.3390506,0.9530171,0.99392784,0.10361886,0.00097569823,0.820898,0.9803931,0.9758587,0.06107986,0.628472,0.76203245,0.99610096,0.20367095,0.41190207,0.9176274,0.9231101,0.40195164,0.9057661,0.008758575,0.7706036,0.6186587,0.06602022,0.9788698,0.27464402,0.07678297,0.98446465,0.25617796,0.35124364,0.94863844,0.03104499,0.69704604,0.69765055,0.024202883,0.71608883,0.67827344,0.038453937,0.95720994,0.6585845,0.2740569,0.96527255,0.06634736,0.29290524,0.77115667,0.056319565,0.31211585,0.75335383,0.04706782,0.9172653,0.73510784,0.20314124,0.92841935,0.7164506,0.22022429,0.93882406,0.100750655,0.23779672,0.8214023,0.08851382,0.8657393,0.8051057,0.07699674,0.87967527,0.7882754,0.15530857,0.8929471,0.15626302,0.17075512,0.9055315,0.1413807,0.18677756,0.8666353,0.12712568,0.82039315,0.85209906,0.11352292,0.83616376,0.836947,0.10059616,0.85134625,0.20420116,0.73394567,0.8659143,0.18760383,0.7522185,0.8798422,0.17155296,0.7700501,0.29410368,0.15607661,0.78740937,0.27523154,0.14120185,0.80426586,0.2567526,0.67704344,0.8205902,0.23869914,0.6964412,0.8363538,0.22110274,0.71549535,0.35250047,0.20399418,0.7341725,0.33265275,0.18740341,0.7524401,0.31309777,0.61737996,0.7702662,0.29386973,0.6376002,0.7876194,0.27500224,0.65757966,0.4131977,0.25652832,0.6772835,0.39268395,0.5350609,0.69667727,0.3723579,0.55588585,0.715727,0.35225517,0.5766131,0.49615183,0.33241087,0.59720635,0.4752487,0.31285968,0.6176295,0.45438886,0.47262046,0.63784695,0.43360877,0.49352017,0.6578233,0.41294485,0.5144312,0.5585004,0.3924332,0.535317,0.5376857,0.3721097,0.556141,0.5168051,0.41060704,0.5768668,0.4958951,0.43125552,0.5974582,0.47499225,0.4520242,0.6199366,0.45413318,0.47287682,0.63809377,0.33017507,0.4937769,0.65806687,0.34998783,0.51468784,0.21892226,0.370063,0.53557307,0.23645896,0.39036545,0.5563961,0.25445664,0.41085967,0.5771205,0.27288377,0.43150982,0.59771,0.29170823,0.45227978,0.16957319,0.310897,0.4731332,0.18555328,0.33041656,0.4940336,0.20208341,0.35023278,0.51494443,0.21913466,0.37031096,0.5358292,0.23667717,0.39061597,0.12537748,0.2546803,0.4111123,0.13955176,0.27311254,0.43176416,0.15435654,0.29194167,0.45253536,0.16976592,0.3111347,0.0755994,0.18575293,0.33065814,0.08702445,0.20228964,0.35047776,0.09917185,0.21934709,0.37055892,0.11202037,0.23689547,0.39086652,0.12554756,0.25490406,0.045959353,0.13972974,0.27334136,0.055112243,0.15454212,0.29217517,0.0650433,0.16995874,0.31137246,0.07573521,0.1859527,0.33089972,0.08716923,0.20249596,0.023400575,0.09932539,0.21955961,0.030138552,0.11218238,0.23711383,0.037698418,0.12571776,0.25512788,0.04606694,0.13990784,0.0049170554,0.055229485,0.15472776,0.008274943,0.06516999,0.17015165,0.012492925,0.07587114,0.18615252,0.01756367,0.08731413,0.20270234,0.02347827,0.09947902,5.9247017e-5,0.03022641,0.1123445,0.00081828237,0.03779629,0.12588805,0.002450496,0.046174645,0.140086,0.0049530566,0.055346817,0.15491351,0.008321524,0.0652968,0.0029985607,0.012550026,0.07600716,0.0011469722,0.017631173,0.08745915,0.00016796589,0.023556083,0.09963277,6.324053e-5,0.030314386,0.11250669,0.0008330345,0.03789428,0.01368919,0.002475977,0.04628247,0.0092558265,0.004989147,0.055464298,0.005680859,0.008368224,0.06542373,0.0029705465,0.012607247,0.03972909,0.001129657,0.017698824,0.03196439,0.00016137958,0.023634017,0.025018394,6.741285e-5,0.030402511,0.018903226,0.0008479059,0.037992388,0.0136295855,0.0025015473,0.0676634,0.009206712,0.0050254166,0.057539165,0.0056423247,0.008415073,0.048188835,0.0029426813,0.012664616,0.07627955,0.2413859,0.11536202,0.03187412,0.00015491247,0.023712099,0.09994057,0.20653492,0.09001461,0.018833369,0.00086292624,0.038090616,0.31601876,0.17373636,0.06753451,0.009157717,0.0050617754,0.055699587,0.27781552,0.14321959,0.048078924,0.0029149055,0.012722075,0.39575803,0.2411662,0.115198046,0.031783998,0.00014859438,0.0237903,0.35526294,0.20632708,0.08986768,0.018763632,0.0008780658,0.038188964,0.31578004,0.17354184,0.0674057,0.009108871,0.0050982833,0.43672752,0.27758557,0.14303976,0.047969133,0.0028873086,0.012779713,0.39550698,0.24094656,0.11503416,0.031693965,0.0001423955,0.51994824,0.3550172,0.20611933,0.089720875,0.018694013,0.0008933544,0.4781341,0.3155414,0.17334741,0.067277014,0.009060174,0.0051349103,0.43647283,0.27735564,0.14286003,0.04785946,0.002859801,0.5613681,0.3952559,0.240727,0.11487037,0.03160408,0.00013631582,0.5196917,0.3547715,0.20591167,0.08957419,0.018624514,0.64289886,0.4778776,0.3153028,0.17315307,0.06714845,0.009011567,0.60236406,0.4362182,0.27712578,0.14268038,0.047749907,0.7204634,0.5611133,0.39500487,0.24050751,0.114706665,0.031514317,0.68219525,0.51943517,0.35452583,0.20570406,0.08942762,0.018555164,0.6426528,0.4776211,0.31506422,0.17295882,0.06701997,0.7569696,0.6021127,0.43596357,0.276896,0.14250085,0.047640473,0.72023296,0.5608585,0.39475384,0.24028808,0.11454311,0.8246116,0.6819561,0.5191786,0.35428023,0.20549655,0.08928114,0.7917005,0.6424067,0.47736463,0.3148257,0.17276466,0.88324404,0.7567493,0.60186136,0.43570894,0.27666622,0.14232138,0.8550718,0.7200024,0.5606036,0.39450288,0.24006873,0.114379615,0.8244163,0.6817169,0.5189221,0.35403463,0.2052891,0.908588,0.7914919,0.6421606,0.47710815,0.31458724,0.17257059,0.88307905,0.7565289,0.60161,0.4354543,0.27643657,0.95076376,0.85489094,0.71977186,0.56034875,0.3942519,0.23984945,0.9311094,0.8242209,0.6814777,0.5186655,0.3537891,0.98042846,0.90844,0.79128325,0.6419144,0.47685167,0.31434882,0.9671742,0.882914,0.75630856,0.6013586,0.43519974,0.27620694,0.9506526,0.8547101,0.7195412,0.5600939,0.394001,0.9902724,0.93097925,0.8240254,0.6812385,0.51840895,0.35354358,0.9803573,0.9082918,0.7910746,0.6416682,0.4765952,0.9997631,0.9670826,0.88274884,0.756088,0.6011072,0.43494517,0.9967295,0.9505413,0.8545291,0.7193105,0.559839,0.3937501,0.990222,0.9308491,0.82382977,0.68099916,0.51815236,0.9993149,0.98028594,0.9081435,0.7908658,0.641422,0.47633874,0.99975514,0.96699095,0.8825836,0.7558675,0.6008557,0.98804176,0.99670017,0.9504299,0.85434794,0.71907973,0.5595841,0.9954174,0.9901714,0.9307187,0.82363415,0.6807598,0.96322286,0.99932826,0.9802145,0.9079952,0.7906569,0.6411757,0.9773293,0.99974704,0.96689916,0.8824183,0.7556469,0.60060424,0.9880975,0.9966706,0.95031846,0.8541668,0.71884894,0.9459928,0.99545205,0.99012065,0.93058825,0.8234384,0.6805204,0.9633194,0.99934155,0.98014295,0.9078467,0.79044795,0.9022777,0.97740567,0.9997388,0.96680725,0.8822528,0.75542617,0.9256818,0.9881531,0.996641,0.95020676,0.85398555,0.84739727,0.9461088,0.9954865,0.9900698,0.9304577,0.82324255,0.8762293,0.96341586,0.9993546,0.98007125,0.90769815,0.7902389,0.9024301,0.97748196,0.9997304,0.96671516,0.88208723,0.8163345,0.9258164,0.9882086,0.99661124,0.95009506,0.8538041,0.84758186,0.9462247,0.9955209,0.99001884,0.93032706,0.7476597,0.8763983,0.9635122,0.9993676,0.9799994,0.9075495,0.7830864,0.9025824,0.977558,0.9997219,0.966623,0.6721111,0.81653327,0.92595094,0.98826396,0.9965813,0.9499831,0.8536227,0.7181561,0.5585643,0.267525,0.42553797,0.5917855,0.7478827,0.8765673,0.96360844,0.99938047,0.9799274,0.90740067,0.7898207,0.6401902,0.19725937,0.344487,0.5089124,0.67235214,0.8167319,0.92608535,0.9883192,0.9965513,0.9498712,0.8534411,0.7179251,0.13539639,0.26775235,0.42579186,0.59203786,0.74810565,0.87673616,0.9637045,0.99939317,0.9798554,0.9072518,0.7896114,0.08365306,0.19746375,0.34473103,0.50916904,0.6725931,0.8169306,0.92621964,0.98837435,0.9965211,0.94975907,0.85325944,0.043465525,0.13557214,0.26797974,0.42604578,0.5922902,0.7483285,0.87690496,0.96380055,0.99940574,0.9797832,0.90710276,0.78940207,0.08379528,0.1976682,0.3449751,0.50942576,0.67283404,0.81712914,0.9263538,0.9884293,0.99649084,0.94964683,0.85307777,0.04357031,0.13574797,0.2682072,0.4262997,0.5925425,0.74855137,0.8770736,0.9638964,0.9994182,0.9797108,0.9069537,0.016013622,0.083937615,0.19787273,0.34521922,0.5096825,0.67307496,0.8173276,0.9264879,0.98848414,0.9964603,0.9495345,0.0018900931,0.043675184,0.13592389,0.2684347,0.42655367,0.59279484,0.74877405,0.87724215,0.9639921,0.99943054,0.97963834,0.001591742,0.016078144,0.08408007,0.19807735,0.3454634,0.50993913,0.67331576,0.817526,0.9266218,0.98853886,0.9964298,0.015126795,0.0019124746,0.043780178,0.1360999,0.26866227,0.42680764,0.5930471,0.74899673,0.8774106,0.9640877,0.9994427,0.9795658,0.0015713274,0.016142786,0.084222615,0.19828203,0.34570757,0.51019585,0.6735566,0.8177242,0.92675567,0.98859346,0.9963991,0.01506418,0.0019349754,0.04388532,0.13627604,0.26888993,0.42706162,0.5932993,0.74921936,0.877579,0.9641832,0.99945474,0.042016566,0.0015510619,0.016207576,0.08436528,0.1984868,0.3459518,0.51045257,0.67379737,0.8179225,0.9268894,0.98864794,0.08168036,0.015001714,0.0019575953,0.043990552,0.13645226,0.26911765,0.42731562,0.5935516,0.7494419,0.8777472,0.9642786,0.13295472,0.0419136,0.0015309155,0.016272485,0.08450806,0.19869167,0.3461961,0.5107092,0.67403805,0.8181206,0.92702305,0.1944165,0.08153978,0.014939338,0.0019803643,0.044095904,0.13662857,0.2693454,0.42756966,0.59380376,0.7496644,0.8779154,0.26435983,0.1327804,0.04181075,0.0015109181,0.016337514,0.084650934,0.19889659,0.3464404,0.51096594,0.67427874,0.8183186,0.9271565,0.19421333,0.08139929,0.014877111,0.0020032525,0.044201404,0.13680497,0.2695732,0.42782372,0.59405595,0.7498868,0.87808347,0.2641334,0.13260621,0.041708022,0.00149104,0.016402662,0.084793925,0.1991016,0.34668475,0.5112226,0.67451936,0.81851655,0.3406,0.19401023,0.08125895,0.0148150325,0.0020262897,0.044306993,0.13698149,0.2698011,0.42807776,0.5943081,0.7501092,0.42149082,0.26390705,0.1324321,0.041605443,0.001471281,0.016467959,0.084937036,0.1993067,0.34692916,0.51147926,0.6747599,0.50456065,0.34035668,0.19380721,0.0811187,0.014753044,0.002049446,0.044412732,0.1371581,0.27002907,0.42833185,0.5945602,0.5875039,0.42123726,0.26368076,0.13225812,0.041502953,0.0014516711,0.016533375,0.085080236,0.19951186,0.3471736,0.511736,0.6750005,0.50430393,0.3401134,0.19360429,0.08097857,0.014691204,0.0020727217,0.04451856,0.1373348,0.27025706,0.42858595,0.59481233,0.5872511,0.42098373,0.26345453,0.13208419,0.04140061,0.0014321804,0.01659891,0.085223556,0.1997171,0.34741807,0.51199263,0.66777664,0.50404716,0.33987015,0.19340143,0.08083853,0.014629483,0.0020961463,0.044624537,0.13751158,0.27048513,0.4288401,0.7436455,0.5869983,0.42073023,0.26322836,0.13191038,0.04129836,0.0014128387,0.016664565,0.085366994,0.19992244,0.3476626,0.8127519,0.6675347,0.50379044,0.33962697,0.19319865,0.08069861,0.014567912,0.0021196902,0.044730633,0.13768846,0.27071327,0.87317777,0.74342126,0.58674544,0.42047673,0.26300228,0.13173667,0.041196257,0.0013936162,0.016730368,0.08551052,0.20012784,0.923246,0.8125515,0.66729283,0.5035337,0.33938378,0.19299597,0.08055881,0.014506429,0.002143383,0.04483682,0.13786545,0.27094144,0.8730068,0.74319696,0.5864926,0.42022327,0.26277623,0.13156307,0.041094273,0.0013745129,0.01679629,0.08565417,0.20033333,0.9231093,0.8123511,0.66705084,0.50327694,0.33914065,0.19279337,0.08041912,0.014445096,0.002167195,0.044943154,0.13804251,0.9614683,0.8728359,0.7429726,0.5862397,0.41996983,0.26255023,0.13138953,0.04099238,0.0013555586,0.016862363,0.085797936,0.98701906,0.92297244,0.81215054,0.66680884,0.5030202,0.3388976,0.19259083,0.08027953,0.014383912,0.0021911263,0.045049608,0.9990525,0.9613694,0.8726647,0.74274814,0.5859868,0.4197164,0.26232433,0.13121611,0.040890634,0.0013367236,0.016928524,0.9972347,0.9869609,0.92283547,0.81194997,0.6665668,0.50276345,0.33865458,0.19238839,0.080140054,0.014322817,0.0022152066,0.04515615,0.99903667,0.96127033,0.8724935,0.74252367,0.58573383,0.41946298,0.2620985,0.13104278,0.04078901,0.0013180375,0.016994834,0.9972616,0.9869026,0.9226984,0.8117492,0.6663247,0.50250673,0.33841157,0.19218603,0.0800007,0.014261872,0.002239406,0.9816849,0.9990207,0.9611712,0.8723222,0.7422991,0.5854809,0.4192096,0.26187268,0.13086957,0.0406875,0.0012994707,0.95273894,0.99728835,0.9868441,0.92256117,0.8115485,0.6660825,0.50225,0.33816862,0.19198373,0.07986146,0.014201075,0.9112271,0.9817537,0.99900454,0.96107197,0.8721508,0.7420745,0.5852279,0.41895625,0.26164696,0.13069645,0.040586114,0.8583016,0.95284784,0.997315,0.98678553,0.9224239,0.8113476,0.6658403,0.50199324,0.33792573,0.19178152,0.079722315,0.79543126,0.91137314,0.9818224,0.9989883,0.96097255,0.87197924,0.7418498,0.58497494,0.4187029,0.2614213,0.13052341,0.040484846,0.8584806,0.9529566,0.9973415,0.9867269,0.9222865,0.81114674,0.6655981,0.5017365,0.33768284,0.1915794,0.07958329,0.7956384,0.911519,0.9818909,0.99897194,0.96087307,0.87180763,0.7416251,0.5847219,0.41844958,0.2611957,0.13035047,0.72459066,0.8586595,0.9530653,0.99736786,0.986668,0.92214894,0.8109457,0.6653558,0.50147974,0.33744004,0.19137737,0.64730936,0.7958454,0.9116647,0.98195934,0.99895537,0.96077347,0.8716359,0.74140024,0.58446884,0.4181963,0.26097015,0.5659395,0.72482,0.8588384,0.9531739,0.9973941,0.9866091,0.9220113,0.8107446,0.6651135,0.501223,0.33719727,0.48273942,0.6475547,0.79605234,0.9118104,0.9820276,0.99893874,0.9606737,0.87146413,0.7411754,0.58421576,0.417943,0.2607447,0.566194,0.7250493,0.85901713,0.95328224,0.99742025,0.98655,0.92187357,0.8105434,0.66487116,0.50096625,0.33695453,0.48299602,0.64779997,0.79625916,0.91195595,0.9820957,0.99892193,0.9605738,0.87129223,0.74095047,0.5839627,0.41768974,0.40027002,0.56644845,0.72527856,0.85919577,0.9533906,0.9974462,0.9864907,0.9217357,0.81034213,0.66462874,0.50070953,0.32031202,0.4832526,0.64804524,0.796466,0.9121014,0.9821638,0.99890506,0.96047384,0.8711202,0.74072546,0.5837096,0.24534133,0.4005216,0.5667029,0.72550774,0.8593743,0.9534987,0.99747205,0.9864314,0.9215977,0.8101408,0.6643863,0.17743874,0.32055163,0.4835092,0.64829046,0.7966727,0.91224676,0.9822317,0.998888,0.96037376,0.8709481,0.7405004,0.11848891,0.24556231,0.40077323,0.56695735,0.72573686,0.85955274,0.95360684,0.9974978,0.98637193,0.9214597,0.8099394,0.6641438,0.50019604,0.33622658,0.19036838,0.078751415,0.013719112,0.36685503,0.2161785,0.09688902,0.022178382,0.00030863285,0.03369829,0.11865491,0.24578336,0.40102488,0.56721175,0.7259659,0.85973114,0.9537147,0.99752337,0.9863124,0.92132145,0.80973786,0.66390127,0.4999393,0.33598405,0.19016683,0.07861316,0.5319994,0.36660755,0.21596718,0.096737176,0.022102833,0.00031772256,0.033791035,0.118821025,0.24600449,0.40127656,0.5674662,0.7261949,0.8599094,0.9538226,0.9975488,0.9862526,0.9211831,0.8095362,0.6636587,0.49968255,0.33574152,0.18996537,0.07847503,0.53174317,0.36636013,0.21575591,0.09658542,0.022027403,0.00032693148,0.03388387,0.11898723,0.24622566,0.40152827,0.5677206,0.72642386,0.86008763,0.95393026,0.99757415,0.98619276,0.9210447,0.8093346,0.663416,0.4994258,0.33549905,0.18976396,0.6933791,0.5314869,0.36611274,0.21554473,0.09643382,0.021952093,0.0003362894,0.033976823,0.11915353,0.24644691,0.40178,0.5679749,0.72665274,0.8602657,0.9540379,0.99759936,0.98613274,0.9209062,0.8091328,0.6631734,0.49916905,0.3352566,0.8336949,0.6931423,0.5312307,0.36586538,0.21533361,0.09628227,0.021876901,0.00034576654,0.034069926,0.119319946,0.24666822,0.40203175,0.5682293,0.72688156,0.86044365,0.9541453,0.9976244,0.98607266,0.92076755,0.808931,0.66293067,0.4989123,0.33501422,0.8335036,0.6929054,0.53097445,0.36561805,0.21512258,0.09613088,0.02180186,0.0003553927,0.034163147,0.11948645,0.24688962,0.40228355,0.56848365,0.7271103,0.8606216,0.9542527,0.9976493,0.98601246,0.9206288,0.80872905,0.6626879,0.49865556,0.937096,0.8333123,0.69266856,0.5307182,0.36537078,0.21491164,0.09597957,0.021726936,0.00036513805,0.034256488,0.119653046,0.24711108,0.40253535,0.5687379,0.727339,0.8607993,0.9543599,0.99767417,0.985952,0.9204899,0.8085271,0.6624451,0.9924983,0.93697125,0.8331208,0.6924316,0.5304619,0.36512354,0.21470073,0.095828354,0.021652132,0.00037500262,0.03434995,0.11981976,0.2473326,0.40278718,0.56899226,0.7275677,0.86097705,0.95446706,0.9976988,0.9858916,0.92035097,0.808325,0.66220224,0.9924539,0.9368464,0.8329294,0.69219464,0.53020567,0.36487633,0.21448994,0.09567726,0.021577448,0.0003850162,0.034443527,0.119986564,0.24755418,0.40303904,0.56924653,0.72779626,0.8611547,0.954574,0.99772334,0.9858309,0.9202119,0.8081229,0.99364316,0.99240935,0.93672144,0.8327378,0.6919576,0.52994937,0.36462915,0.2142792,0.09552628,0.021502912,0.000395149,0.034537226,0.12015346,0.24777582,0.40329093,0.5695008,0.7280248,0.8613322,0.9546809,0.9977478,0.9857702,0.9200727,0.9404081,0.99368393,0.99236476,0.9365964,0.8325461,0.6917205,0.52969307,0.36438203,0.21406853,0.09537539,0.021428496,0.0004054308,0.034631044,0.12032047,0.24799755,0.40354282,0.569755,0.72825325,0.86150956,0.9547876,0.99777204,0.9857093,0.91993344,0.9405296,0.9937246,0.99231994,0.9364712,0.8323543,0.6914833,0.52943677,0.3641349,0.21385795,0.09522462,0.021354198,0.0004158318,0.03472501,0.12048757,0.24821934,0.40379477,0.57000923,0.72848165,0.8616869,0.95489424,0.9977962,0.9856483,0.83880657,0.94065094,0.99376506,0.9922751,0.9363459,0.83216244,0.69124615,0.52918047,0.36388785,0.21364745,0.09507394,0.02128002,0.00042635202,0.034819067,0.12065479,0.24844119,0.4040467,0.57026345,0.72871,0.8618641,0.95500076,0.9978202,0.69973,0.83899534,0.94077224,0.9938054,0.99223006,0.93622047,0.8319705,0.6910089,0.52892417,0.36364082,0.21343702,0.09492338,0.021205992,0.00043702126,0.03491327,0.1208221,0.2486631,0.40429872,0.57051766,0.7289382,0.86204123,0.95510715,0.538633,0.6999653,0.83918405,0.9408934,0.9938456,0.9921849,0.9360949,0.83177847,0.6907716,0.52866787,0.3633938,0.21322665,0.094772935,0.021132082,0.0004478097,0.035007596,0.1209895,0.2488851,0.40455073,0.5707718,0.7291665,0.86221826,0.9552134,0.538889,0.7002006,0.83937263,0.9410144,0.99388576,0.99213964,0.93596923,0.83158636,0.69053423,0.5284115,0.36314684,0.21301639,0.09462258,0.021058291,0.00045874715,0.03510204,0.12115702,0.24910712,0.40480277,0.57102597,0.7293947,0.8623952,0.37352514,0.53914493,0.7004359,0.8395611,0.94113535,0.9939257,0.9920942,0.93584347,0.83139414,0.6902968,0.5281552,0.36289993,0.21280617,0.09447235,0.02098462,0.0004698038,0.035196602,0.12132463,0.24932924,0.40505484,0.5712801,0.7296227,0.2221052,0.37377355,0.5394009,0.700671,0.8397496,0.94125617,0.9939655,0.9920487,0.93571764,0.83120185,0.6900594,0.52789885,0.36265305,0.21259603,0.094322205,0.020911068,0.00048100948,0.035291284,0.121492326,0.24955145,0.4053069,0.5715342,0.72985077,0.22231868,0.37402198,0.5396568,0.70090616,0.83993787,0.9413768,0.9940052,0.992003,0.93559164,0.83100945,0.6898219,0.5276425,0.3624062,0.21238598,0.09417218,0.020837665,0.00049233437,0.035386086,0.12166014,0.24977368,0.40555903,0.5717883,0.10147831,0.22253221,0.37427047,0.53991276,0.70114124,0.8401261,0.9414974,0.9940448,0.9919572,0.9354655,0.830817,0.6895844,0.5273861,0.36215937,0.212176,0.094022244,0.02076438,0.00050377846,0.035481006,0.12182805,0.249996,0.40581116,0.024575204,0.10163343,0.22274584,0.374519,0.5401687,0.70137626,0.84031427,0.94161785,0.99408424,0.9919113,0.93533933,0.83062446,0.68934673,0.52712977,0.3619126,0.2119661,0.09387243,0.020691216,0.00051537156,0.035576075,0.121996045,0.2502184,0.40606332,0.024654776,0.10178864,0.22295952,0.37476754,0.5404246,0.7016113,0.84050226,0.9417382,0.9941236,0.9918652,0.93521297,0.8304318,0.6891091,0.5268734,0.36166584,0.21175629,0.09372273,0.0206182,0.0005270839,0.035671234,0.12216416,0.25044084,8.3208084e-5,0.024734467,0.10194394,0.22317329,0.3750161,0.5406805,0.7018462,0.84069026,0.9418584,0.99416274,0.991819,0.9350865,0.83023906,0.6888714,0.52661705,0.36141914,0.21154654,0.09357312,0.020545304,0.0005389452,0.035766542,0.122332364,0.030627728,7.8588724e-5,0.024814278,0.10209939,0.22338715,0.3752647,0.5409364,0.702081,0.8408781,0.9419785,0.9942018,0.9917727,0.93495995,0.83004624,0.6886337,0.52636063,0.3611725,0.21133685,0.093423635,0.020472527,0.00055092573,0.03586197,0.12250066,0.030539304,7.408857e-5,0.024894208,0.1022549,0.22360104,0.37551337,0.5411923,0.70231587,0.8410659,0.9420985,0.9942407,0.9917263,0.9348333,0.8298533,0.68839586,0.5261043,0.36092585,0.21112725,0.093274266,0.020399868,0.0005630553,0.035957515,0.11275834,0.03045103,6.9737434e-5,0.024974287,0.102410525,0.22381505,0.37576205,0.5414481,0.70255065,0.84125364,0.94221836,0.9942795,0.99167967,0.93470645,0.8296603,0.68815804,0.52584785,0.36067927,0.21091774,0.093124986,0.02032733,0.00057530403,0.23767099,0.112595975,0.030362844,6.5505505e-5,0.025054485,0.10256627,0.2240291,0.37601075,0.541704,0.7027853,0.8414412,0.9423381,0.9943181,0.99163294,0.93457955,0.82946724,0.6879201,0.52559143,0.36043268,0.21070829,0.092975795,0.02025494,0.39150557,0.23745248,0.11243373,0.030274808,6.142259e-5,0.025134802,0.10272211,0.22424322,0.3762595,0.5419598,0.70302,0.84162873,0.9424578,0.9943567,0.99158615,0.93445253,0.82927406,0.68768215,0.525335,0.36018616,0.21049893,0.092826724,0.02018267,0.39125496,0.237234,0.11227158,0.030186892,5.7458878e-5,0.025215238,0.102878064,0.22445744,0.37650827,0.5422157,0.7032546,0.8418162,0.9425773,0.9943951,0.9915392,0.9343254,0.8290808,0.68744415,0.5250786,0.3599397,0.21028963,0.09267777,0.55704665,0.39100438,0.2370156,0.11210951,0.030099094,5.364418e-5,0.025295794,0.10303411,0.22467172,0.3767571,0.5424715,0.7034891,0.84200346,0.9426967,0.99443334,0.9914921,0.93419814,0.82888746,0.68720615,0.5248222,0.35969323,0.21008042,0.7165489,0.55679154,0.3907538,0.23679727,0.11194754,0.030011415,4.9948692e-5,0.025376499,0.10319027,0.22488606,0.3770059,0.5427273,0.7037236,0.84219074,0.942816,0.9944715,0.9914448,0.93407077,0.82869405,0.686968,0.52456576,0.35944682,0.20987126,0.7163175,0.5565365,0.3905033,0.236579,0.11178571,0.029923856,4.6372414e-5,0.025457323,0.10334653,0.22510049,0.37725478,0.5429831,0.70395803,0.8423779,0.9429351,0.9945095,0.9913975,0.9339433,0.8285005,0.6867299,0.52430934,0.35920045,0.8519943,0.716086,0.5562814,0.39025277,0.23636082,0.11162394,0.029836446,4.2945147e-5,0.025538266,0.1035029,0.22531497,0.3775037,0.5432389,0.70419246,0.84256494,0.9430542,0.99454737,0.99135005,0.9338157,0.8283069,0.68649167,0.52405286,0.94886345,0.8518119,0.7158544,0.5560262,0.3900023,0.2361427,0.111462295,0.029749155,3.966689e-5,0.025619328,0.10365936,0.22552955,0.37775263,0.5434947,0.70442677,0.842752,0.94317317,0.99458516,0.9913024,0.9336879,0.82811326,0.6862534,0.52379644,0.94875026,0.8516294,0.7156228,0.5557711,0.38975185,0.23592466,0.11130074,0.029661953,3.6478043e-5,0.02570051,0.10381594,0.22574419,0.3780016,0.54375046,0.7046611,0.8429388,0.94329196,0.9946227,0.9912547,0.93356013,0.8279195,0.6860151,0.99621373,0.948637,0.85144675,0.7153911,0.55551594,0.38950145,0.23570666,0.1111393,0.0295749,3.3438206e-5,0.02578184,0.103972614,0.22595891,0.3782506,0.5440062,0.7048953,0.8431256,0.94341063,0.99466026,0.99120677,0.9334322,0.82772565,0.9889693,0.99618214,0.9485236,0.8512641,0.7151594,0.5552608,0.38925108,0.23548874,0.11097798,0.029487967,3.054738e-5,0.02586326,0.104129404,0.2261737,0.37849963,0.54426193,0.7051295,0.8433123,0.94352925,0.9946976,0.9911588,0.93330413,0.8275317,0.989023,0.9961504,0.94841003,0.8510814,0.7149276,0.5550056,0.3890007,0.23527092,0.11081672,0.029401183,2.7775764e-5,0.025944829,0.10428628,0.22638854,0.37874871,0.5445177,0.7053636,0.84349895,0.94364774,0.9947348,0.9911107,0.933176,0.9279487,0.9890764,0.99611855,0.9482964,0.8508985,0.71469575,0.55475044,0.3887504,0.23505315,0.110655576,0.029314488,2.5123358e-5,0.026026547,0.10444328,0.22660348,0.3789978,0.5447734,0.70559764,0.84368545,0.9437661,0.99477196,0.9910624,0.81969285,0.9280814,0.98912966,0.9960866,0.9481827,0.8507155,0.71446383,0.5544952,0.3885001,0.23483545,0.110494554,0.029227942,2.2619963e-5,0.026108354,0.10460037,0.22681847,0.37924692,0.5450291,0.70583165,0.8438719,0.9438843,0.9948089,0.6761907,0.8198902,0.928214,0.98918283,0.9960544,0.9480688,0.85053253,0.7142319,0.55424,0.38824984,0.2346178,0.11033362,0.029141515,2.0235777e-5,0.02619028,0.10475758,0.22703356,0.3794961,0.5452848,0.7060656,0.8440582,0.94400245,0.99484575,0.67643094,0.8200875,0.9283465,0.9892359,0.99602216,0.9479548,0.8503494,0.71399987,0.55398476,0.3879996,0.23440024,0.11017281,0.029055208,1.8000603e-5,0.026272357,0.104914874,0.2272487,0.3797453,0.5455405,0.70629954,0.8442445,0.9441204,0.51352006,0.67667115,0.82028466,0.92847884,0.9892888,0.9959898,0.9478407,0.8501662,0.7137678,0.5537295,0.38774937,0.23418275,0.110012084,0.02896902,1.5884638e-5,0.026354551,0.10507229,0.2274639,0.3799945,0.54579616,0.7065334,0.8444306,0.3491186,0.5137767,0.6769113,0.8204818,0.92861116,0.9893416,0.99595726,0.9477264,0.84998286,0.71353567,0.55347425,0.3874992,0.23396534,0.10985145,0.02888295,1.3917685e-5,0.026436865,0.105229795,0.2276792,0.38024378,0.5460518,0.70676714,0.8446167,0.3493634,0.5140333,0.67715144,0.82067883,0.9287433,0.9893943,0.9959246,0.94761205,0.84979945,0.7133035,0.55321896,0.38724905,0.23374799,0.109690934,0.028797,1.2069941e-5,0.026519328,0.10538742,0.22789457,0.38049304,0.54630744,0.70700085,0.20155782,0.3496082,0.51429,0.67739147,0.82087576,0.9288753,0.9894469,0.9958918,0.9474976,0.84961593,0.7130712,0.5529637,0.38699895,0.2335307,0.10953051,0.0287112,1.0341406e-5,0.02660188,0.10554513,0.22810999,0.38074237,0.5465631,0.08665568,0.20176387,0.3498531,0.51454663,0.6776315,0.8210726,0.9290073,0.9894992,0.9958589,0.94738305,0.84943235,0.71283895,0.5527083,0.38674885,0.2333135,0.1093702,0.028625518,8.761883e-6,0.026684582,0.10570297,0.22832549,0.38099173,0.54681873,0.08680022,0.20196998,0.350098,0.5148033,0.67787147,0.8212694,0.9291391,0.98955154,0.9958259,0.94726837,0.84924865,0.7126066,0.55245304,0.3864988,0.23309633,0.109209985,0.028539956,7.301569e-6,0.026767403,0.10586089,0.22854108,0.3812411,0.01739207,0.08694482,0.20217615,0.35034296,0.5150599,0.67811143,0.8214661,0.92927074,0.98960364,0.99579275,0.9471535,0.8490649,0.7123742,0.5521977,0.38624877,0.23287928,0.10904989,0.028454512,5.990267e-6,0.026850343,0.10601893,0.22875673,0.0011917055,0.017459244,0.08708957,0.20238242,0.35058796,0.51531655,0.6783513,0.82166266,0.92940235,0.9896557,0.9957594,0.94703853,0.848881,0.71214175,0.55194235,0.3859988,0.23266226,0.10888988,0.028369188,4.798174e-6,0.026933402,0.10617706,0.22897243,0.0011740625,0.017526567,0.08723441,0.20258877,0.350833,0.51557314,0.67859113,0.82185924,0.92953384,0.9897076,0.995726,0.9469235,0.84869707,0.71190923,0.551687,0.3857488,0.23244536,0.10872996,0.028284013,3.7252903e-6,0.02701658,0.10633528,0.039884716,0.0011565387,0.01759401,0.087379366,0.20279521,0.35107806,0.51582974,0.6788309,0.82205564,0.9296652,0.9897593,0.99569243,0.94680834,0.848513,0.71167666,0.5514316,0.38549888,0.23222849,0.10857016,0.028198928,2.8014183e-6,0.027099907,0.12932333,0.039784282,0.001139164,0.017661572,0.087524414,0.20300171,0.3513232,0.5160864,0.67907065,0.82225204,0.92979646,0.98981094,0.99565876,0.94669306,0.8483288,0.711444,0.5511762,0.38524896,0.2320117,0.10841048,0.028113991,2.026558e-6,0.25962925,0.12915108,0.039683998,0.0011219084,0.017729282,0.08766958,0.2032083,0.35156834,0.516343,0.6793103,0.82244825,0.9299276,0.98986244,0.9956249,0.9465776,0.84814465,0.7112113,0.5509208,0.3849991,0.23179498,0.108250886,0.028029174,1.3411045e-6,0.25940415,0.12897891,0.039583802,0.0011047721,0.017797112,0.08781487,0.20341495,0.35181352,0.5165996,0.67955,0.8226445,0.9300586,0.9899138,0.9955909,0.9464621,0.8479603,0.7109786,0.5506654,0.38474923,0.23157832,0.108091384,0.027944475,0.41618308,0.25917912,0.12880686,0.039483756,0.0010877848,0.017865062,0.08796024,0.20362169,0.35205877,0.5168562,0.67978954,0.8228406,0.9301895,0.9899651,0.99555683,0.9463464,0.8477759,0.7107458,0.55041,0.38449943,0.23136175,0.107932,0.58220285,0.41592997,0.25895417,0.1286349,0.0393838,0.0010709167,0.01793316,0.08810574,0.20382851,0.35230404,0.5171128,0.68002915,0.82303655,0.9303203,0.9900162,0.9955226,0.94623065,0.8475914,0.71051294,0.5501545,0.38424963,0.23114526,0.10777274,0.027775466,1.4901161e-7,0.027518362,0.10728693,0.23048446,0.38348696,0.5493743,0.70980144,0.8470273,0.94587636,0.99541736,0.070910364,0.1788044,0.32221854,0.485293,0.6499939,0.7981074,0.913254,0.9827001,0.9987658,0.9596745,0.86974907,0.7389342,0.5816963,0.41542384,0.2585044,0.12829125,0.039184302,0.0010375977,0.018069685,0.088397056,0.20424238,0.35279468,0.517626,0.6805081,0.8234283,0.93058157,0.990118,0.99545383,0.9459988,0.8472221,0.71004707,0.5496436,0.38375014,0.23071244,0.10745448,0.027606964,0.0,0.027686596,0.10760495,0.23091713,0.38398638,0.5498853,0.7102674,0.8473968,0.0040958524,0.010572851,0.071174175,0.17919812,0.3226986,0.4858063,0.6504836,0.7985195,0.91354287,0.98283374,0.9987295,0.9594722,0.86940324,0.738483,0.5811897,0.4149178,0.2580549,0.12794802,0.038985282,0.0010047853,0.018206745,0.08868879,0.20465657,0.3532855,0.5181391,0.6809869,0.82381976,0.9308424,0.99021935,0.99538445,0.94576645,0.8468524,0.70958096,0.5491326,0.38325077,0.23027992,0.10713664,0.027438939,4.172325e-7,0.027855366,0.10792339,0.23135006,0.3844859,0.55039614,0.71073323,0.052230686,0.0040305257,0.010678142,0.07143846,0.17959213,0.3231788,0.48631957,0.65097326,0.79893124,0.91383123,0.9829669,0.99869263,0.95926946,0.869057,0.73803157,0.58068293,0.41441184,0.25760567,0.12760517,0.03878674,0.0009725094,0.018344313,0.08898097,0.20507106,0.35377645,0.51865226,0.6814654,0.8242108,0.9311027,0.9903202,0.9953146,0.94553363,0.8464824,0.7091147,0.54862154,0.38275155,0.2298477,0.10681921,0.02727142,1.3113022e-6,0.028024614,0.10824227,0.23178327,0.38498557,0.550907,0.14958191,0.05200243,0.0039657056,0.01078397,0.071703196,0.1799865,0.32365918,0.4868329,0.6514627,0.7993427,0.91411924,0.9830996,0.9986553,0.9590662,0.86871034,0.7375799,0.5801761,0.41390598,0.25715667,0.12726271,0.038588673,0.0009407699,0.018482357,0.0892736,0.20548585,0.35426757,0.5191654,0.6819438,0.82460153,0.9313626,0.99042046,0.9952442,0.94530034,0.846112,0.7086481,0.5481105,0.38225245,0.22941577,0.106502205,0.027104408,2.771616e-6,0.028194338,0.108561546,0.23221678,0.44540906,0.28544915,0.14921579,0.05177465,0.003901422,0.010890305,0.07196838,0.18038124,0.32413977,0.4873462,0.65195197,0.7997538,0.9144068,0.98323166,0.9986174,0.95886254,0.8683633,0.7371279,0.57966924,0.41340017,0.25670794,0.12692064,0.038391113,0.0009095371,0.018620938,0.08956665,0.20590097,0.35475886,0.51967853,0.682422,0.82499194,0.931622,0.99052024,0.9951733,0.9450666,0.8457412,0.7081814,0.5475993,0.38175344,0.22898409,0.106185615,0.026937902,4.7385693e-6,0.028364599,0.108881235,0.61090535,0.44489866,0.28498545,0.14885005,0.05154732,0.0038376749,0.010997146,0.072234005,0.18077627,0.32462054,0.48785955,0.6524411,0.80016464,0.91469383,0.9833633,0.998579,0.9586583,0.8680159,0.73667574,0.5791623,0.4128945,0.25625944,0.12657899,0.03819403,0.0008788705,0.018760026,0.08986014,0.20631638,0.35525027,0.5201916,0.6829,0.825382,0.93188095,0.99061954,0.9951018,0.9448323,0.84537005,0.7077144,0.54708815,0.38125458,0.22855273,0.10586941,0.026771873,7.2419643e-6,0.028535336,0.76421154,0.6104046,0.44438833,0.28452197,0.1484847,0.051320493,0.0037744343,0.011104494,0.07250011,0.18117166,0.32510152,0.4883729,0.6529301,0.80057514,0.91498053,0.9834944,0.99854004,0.9584536,0.86766815,0.7362233,0.57865524,0.41238892,0.25581124,0.12623769,0.037997425,0.00084868073,0.01889962,0.09015405,0.20673212,0.35574186,0.5207047,0.6833778,0.8257717,0.9321395,0.99071825,0.9950299,0.9445976,0.8449986,0.7072472,0.5465769,0.38075584,0.22812164,0.10555366,0.026606351,0.9702181,0.8884771,0.76377547,0.60990375,0.44387805,0.28405872,0.14811972,0.051094115,0.0037117302,0.011212379,0.07276663,0.1815674,0.32558268,0.48888624,0.6534189,0.80098534,0.91526675,0.983625,0.9985006,0.9582484,0.86731994,0.7357706,0.57814807,0.4118834,0.2553633,0.12589681,0.037801325,0.0008190572,0.01903972,0.09044838,0.20714816,0.3562336,0.5212177,0.6838554,0.8261611,0.9323976,0.9908165,0.99495745,0.94436246,0.8446268,0.7067798,0.5460656,0.38025725,0.22769085,0.10523832,0.9999523,0.9700433,0.8881536,0.76333916,0.6094027,0.44336784,0.2835957,0.14775509,0.050868243,0.0036495328,0.01132077,0.07303363,0.18196344,0.326064,0.4893996,0.65390754,0.8013952,0.9155525,0.98375505,0.99846053,0.95804274,0.8669714,0.73531765,0.5776409,0.411378,0.2549156,0.12555632,0.037605703,0.00078994036,0.019180328,0.090743154,0.20756453,0.35672545,0.5217307,0.68433285,0.8265501,0.9326552,0.99091417,0.9948844,0.94412684,0.8442545,0.7063122,0.5455543,0.37975875,0.89702445,0.9747344,0.9999449,0.96986794,0.8878297,0.7629025,0.6089016,0.44285768,0.2831329,0.14739084,0.05064282,0.0035878718,0.0114296675,0.07330108,0.18235984,0.3265455,0.489913,0.654396,0.8018048,0.9158379,0.98388463,0.99842,0.9578366,0.8666224,0.7348645,0.57713354,0.4108727,0.25446814,0.12521625,0.037410587,0.0007613301,0.019321442,0.091038376,0.2079812,0.3572175,0.52224374,0.68481004,0.8269388,0.93291235,0.9910114,0.9948109,0.9438907,0.84388196,0.7058443,0.54504293,0.77583706,0.89733636,0.97489536,0.99993706,0.9696922,0.8875054,0.7624656,0.6084004,0.4423476,0.28267035,0.14702699,0.05041787,0.0035267174,0.011539102,0.07356894,0.18275657,0.3270272,0.4904264,0.65488434,0.802214,0.9161228,0.9840137,0.998379,0.95763,0.86627305,0.734411,0.5766262,0.41036746,0.25402093,0.12487653,0.037215948,0.00073328614,0.019463062,0.091334015,0.20839816,0.3577097,0.5227567,0.6852871,0.82732713,0.933169,0.99110806,0.9947368,0.9436541,0.843509,0.70537627,0.62433124,0.77626526,0.89764786,0.97505575,0.99992865,0.96951586,0.8871807,0.76202834,0.60789907,0.44183755,0.28220803,0.14666349,0.0501934,0.0034660995,0.011649042,0.07383728,0.18315363,0.32750908,0.4909398,0.65537244,0.8026229,0.9164072,0.98414224,0.9983374,0.95742285,0.8659233,0.73395735,0.5761187,0.40986234,0.253574,0.12453723,0.037021786,0.0007057488,0.01960519,0.0916301,0.20881543,0.35820204,0.52326965,0.68576396,0.82771516,0.9334253,0.99120414,0.9946623,0.9434171,0.29800707,0.4591596,0.6248286,0.7766931,0.89795893,0.9752157,0.9999197,0.9693391,0.8868556,0.7615909,0.6073976,0.44132757,0.2817459,0.14630035,0.049969375,0.0034059882,0.01175949,0.07410607,0.18355101,0.32799113,0.4914532,0.6558604,0.80303156,0.91669124,0.98427033,0.9982953,0.9572153,0.86557317,0.7335034,0.5756112,0.4093573,0.25312734,0.12419835,0.03682813,0.0006787181,0.019747823,0.091926605,0.20923302,0.3586945,0.52378255,0.68624055,0.82810277,0.9336811,0.9912998,0.9945872,0.15956825,0.29847687,0.45967138,0.62532574,0.77712065,0.8982696,0.97537506,0.99991024,0.96916175,0.88653004,0.76115316,0.60689604,0.44081765,0.28128403,0.14593759,0.049745858,0.0033464432,0.011870474,0.0743753,0.18394876,0.3284734,0.49196663,0.6563483,0.8034398,0.91697484,0.9843978,0.99825263,0.9570072,0.8652227,0.7330492,0.5751035,0.40885237,0.25268096,0.12385982,0.03663495,0.0006522536,0.019890964,0.092223525,0.2096509,0.35918713,0.52429545,0.68671703,0.8284901,0.93393636,0.005970031,0.058547825,0.1599445,0.29894692,0.46018323,0.6258228,0.7775479,0.89857984,0.97553396,0.9999002,0.968984,0.8862041,0.7607151,0.6063944,0.4403078,0.2808224,0.1455752,0.049522817,0.003287375,0.011981934,0.07464501,0.18434682,0.3289558,0.49248007,0.6568359,0.8038478,0.91725796,0.98452485,0.9982095,0.9567987,0.86487174,0.7325948,0.5745958,0.40834752,0.25223482,0.123521715,0.03644225,0.0006262958,0.020034611,0.09252089,0.21006909,0.35967994,0.52480835,0.6871933,0.82887703,0.007934213,0.0060494244,0.058789164,0.16032112,0.2994172,0.46069512,0.62631965,0.77797484,0.89888966,0.9756924,0.99988973,0.9688057,0.88587785,0.7602768,0.6058926,0.439798,0.280361,0.14521319,0.049300253,0.003228873,0.012093931,0.07491514,0.18474522,0.3294384,0.4929935,0.6573234,0.80425537,0.91754067,0.9846513,0.99816585,0.95658964,0.8645205,0.7321401,0.57408804,0.4078428,0.2517889,0.123183995,0.036250055,0.0006008744,0.020178765,0.09281868,0.2104876,0.36017287,0.5253212,0.6876693,0.06398359,0.007843345,0.0061292946,0.05903098,0.16069812,0.29988766,0.46120703,0.6268164,0.77840155,0.89919907,0.97585034,0.99987864,0.9686269,0.8855511,0.7598382,0.60539067,0.4392883,0.2798998,0.14485157,0.049078137,0.003170848,0.012206465,0.075185716,0.18514395,0.3299212,0.49350694,0.65781075,0.8046627,0.91782296,0.98477733,0.9981216,0.9563801,0.8641689,0.7316852,0.5735802,0.40733814,0.2513433,0.12284669,0.036058336,0.0005759597,0.020323426,0.09311691,0.21090642,0.36066592,0.30890208,0.16795748,0.063732475,0.0077530146,0.006209731,0.059273243,0.16107544,0.30035836,0.461719,0.6273131,0.7788279,0.899508,0.9760077,0.9998671,0.9684476,0.8852239,0.7593994,0.6048887,0.43877864,0.27943885,0.1444903,0.048856527,0.003113389,0.012319475,0.07545674,0.185543,0.33040416,0.4940204,0.6582979,0.8050697,0.91810477,0.98490286,0.9980769,0.9561701,0.8638168,0.73123,0.57307225,0.4068336,0.25089794,0.12250975,0.035867125,0.0005515814,0.020468593,0.09341556,0.21132553,0.47046706,0.3084277,0.16757375,0.06348184,0.00766322,0.006290674,0.059515983,0.16145316,0.30082923,0.462231,0.6278095,0.779254,0.89981663,0.97616464,0.99985504,0.96826786,0.8848964,0.7589603,0.60438657,0.43826902,0.27897814,0.14412943,0.048635364,0.0030564368,0.012433022,0.07572821,0.18594238,0.3308873,0.49453384,0.6587849,0.8054764,0.91838616,0.9850278,0.9980316,0.9559596,0.86346436,0.73077464,0.57256424,0.40632915,0.25045285,0.12217325,0.03567639,0.0005277395,0.020614266,0.093714654,0.6352781,0.4699545,0.30795348,0.16719034,0.06323168,0.0075739026,0.006372124,0.0597592,0.1618312,0.30130032,0.46274304,0.6283059,0.7796798,0.9001247,0.976321,0.9998424,0.9680876,0.8845684,0.7585209,0.60388434,0.4377595,0.27851766,0.1437689,0.048414707,0.0029999912,0.012547076,0.076000154,0.18634212,0.3313706,0.4950473,0.6592717,0.80588275,0.9186671,0.98515224,0.99798584,0.9557487,0.86311156,0.730319,0.5720561,0.40582478,0.25000802,0.12183711,0.03548616,0.0005044043,0.90411496,0.78522015,0.63478374,0.46944195,0.3074795,0.16680732,0.06298196,0.0074851215,0.00645411,0.060002863,0.16220963,0.30177164,0.46325514,0.6288022,0.78010535,0.90043247,0.9764769,0.9998292,0.96790683,0.88424003,0.7580812,0.603382,0.43725002,0.2780574,0.14340878,0.048194498,0.0029441118,0.012661636,0.07627252,0.18674219,0.3318541,0.4955608,0.6597584,0.8062888,0.9189476,0.9852762,0.9979396,0.9555372,0.8627584,0.7298631,0.571548,0.40532053,0.24956346,0.121501386,0.03529641,0.97817004,0.90381235,0.78479826,0.63428915,0.4689294,0.3070057,0.16642463,0.0627327,0.007396877,0.006536603,0.060247004,0.16258839,0.30224314,0.46376726,0.6292982,0.7805305,0.9007397,0.97663236,0.9998155,0.96772563,0.88391125,0.7576413,0.6028795,0.43674064,0.2775974,0.143049,0.047974795,0.0028887093,0.012776732,0.07654533,0.18714255,0.33233777,0.49607426,0.6602449,0.8066945,0.91922766,0.98539966,0.99789274,0.9553253,0.86240476,0.72940695,0.57103974,0.4048164,0.24911913,0.966058,0.9996672,0.9780197,0.9035093,0.784376,0.6337944,0.46841693,0.30653208,0.1660423,0.062483907,0.007309139,0.0066196024,0.06049159,0.1629675,0.30271488,0.4642794,0.62979424,0.78095543,0.90104663,0.9767872,0.9998013,0.96754384,0.8835821,0.7572011,0.602377,0.43623132,0.27713764,0.14268962,0.04775554,0.002833873,0.012892336,0.076818615,0.18754327,0.3328216,0.49658772,0.6607312,0.8070999,0.91950727,0.9855226,0.9978454,0.95511293,0.8620508,0.7289506,0.57053137,0.40431234,0.8812413,0.96624374,0.9996857,0.97786885,0.9032059,0.78395355,0.6332996,0.46790448,0.3060587,0.16566029,0.062235564,0.0072219074,0.006703168,0.060736656,0.163347,0.3031868,0.46479163,0.63029003,0.78138006,0.90135306,0.9769416,0.9997866,0.9673616,0.8832525,0.7567606,0.60187435,0.43572205,0.2766781,0.14233062,0.04753679,0.0027795434,0.0130084455,0.07709232,0.18794432,0.33330566,0.49710122,0.66121733,0.8075049,0.91978645,0.985645,0.9977975,0.9549,0.8616965,0.728494,0.570023,0.7545206,0.8815733,0.966429,0.99970365,0.9777175,0.902902,0.7835307,0.63280463,0.4673921,0.3055855,0.16527867,0.061987698,0.0071352124,0.0067872107,0.060982168,0.16372684,0.30365896,0.46530387,0.6307857,0.7818043,0.9016591,0.9770955,0.99977136,0.9671789,0.88292253,0.7563199,0.6013715,0.43521285,0.27621877,0.141972,0.04731849,0.0027257204,0.013125062,0.07736647,0.1883457,0.33378986,0.4976147,0.66170335,0.80790967,0.92006516,0.9857669,0.9977491,0.95468664,0.8613417,0.433647,0.59982437,0.75496244,0.88190496,0.96661377,0.99972105,0.97756565,0.9025977,0.78310764,0.63230956,0.4668797,0.30511254,0.16489741,0.06174028,0.007049024,0.0068717897,0.061228156,0.16410702,0.3041313,0.46581614,0.63128126,0.78222835,0.90196466,0.9772489,0.9997555,0.96699566,0.88259214,0.7558788,0.60086864,0.4347037,0.2757597,0.14161375,0.047100693,0.0026724339,0.013242215,0.07764107,0.1887474,0.33427423,0.49812818,0.6621891,0.8083141,0.92034346,0.9858883,0.99770015,0.9544728,0.27526602,0.434156,0.6003275,0.755404,0.8822362,0.96679795,0.999738,0.97741336,0.90229297,0.7826842,0.63181424,0.46636733,0.30463976,0.16451648,0.061493337,0.006963372,0.006956905,0.06147462,0.16448757,0.30460387,0.46632844,0.6317767,0.7826521,0.90226984,0.97740173,0.99973917,0.96681195,0.88226134,0.75543755,0.6003657,0.43419465,0.27530086,0.14125589,0.046883345,0.0026196837,0.013359845,0.077916116,0.18914944,0.3347588,0.49864167,0.6626748,0.8087182,0.9206213,0.9860092,0.047084183,0.14158654,0.27572483,0.43466505,0.6008305,0.7558453,0.88256705,0.96698177,0.9997543,0.9772605,0.90198785,0.78226054,0.63131887,0.46585503,0.30416718,0.1641359,0.061246842,0.006878227,0.007042527,0.061721504,0.16486844,0.3050766,0.46684077,0.63227195,0.7830755,0.9025746,0.97755414,0.99972236,0.9666277,0.8819301,0.754996,0.5998626,0.43368566,0.27484226,0.14089838,0.046666503,0.00256747,0.013478011,0.07819164,0.1895518,0.33524352,0.49915516,0.66316026,0.80912197,0.9208987,0.0027216673,0.047301948,0.14194477,0.2761839,0.43517417,0.6013334,0.7562864,0.88289744,0.967165,0.99977016,0.97710717,0.90168226,0.78183657,0.6308234,0.46534276,0.3036948,0.16375569,0.061000824,0.006793618,0.007128656,0.061968893,0.1652497,0.30554956,0.46735317,0.6327671,0.78349864,0.9028789,0.977706,0.99970496,0.96644306,0.88159853,0.75455415,0.5993594,0.43317676,0.2743839,0.14054126,0.046450138,0.0025157332,0.013596684,0.07846758,0.18995446,0.3357284,0.49966866,0.66364557,0.8095254,0.013017267,0.0027754307,0.04752019,0.14230338,0.2766432,0.43568337,0.60183614,0.75672716,0.88322747,0.96734774,0.9997854,0.97695327,0.9013763,0.78141224,0.6303277,0.46483052,0.30322266,0.16337582,0.060755283,0.006709516,0.007215321,0.06221673,0.16563132,0.30602276,0.4678656,0.63326204,0.7839215,0.90318286,0.97785735,0.9996871,0.96625787,0.88126653,0.75411206,0.5988561,0.4326679,0.27392578,0.14018452,0.04623422,0.0024645627,0.013715893,0.078743935,0.19035748,0.33621347,0.50018215,0.18757373,0.07683939,0.012901127,0.0028297305,0.04773891,0.14266235,0.2771027,0.43619263,0.6023388,0.7571677,0.8835571,0.96753,0.9998002,0.97679895,0.9010699,0.7809877,0.62983185,0.4643183,0.3027507,0.16299632,0.06051019,0.0066259503,0.007302493,0.062465012,0.16601327,0.30649614,0.468378,0.6337569,0.78434396,0.90348625,0.9780083,0.99966866,0.9660722,0.8809341,0.75366974,0.5983527,0.43215913,0.2734679,0.13982818,0.04601881,0.0024138987,0.013835579,0.07902077,0.19076082,0.3366987,0.3323745,0.18717298,0.07656607,0.012785494,0.002884537,0.047958136,0.1430217,0.27756247,0.43670195,0.6028414,0.7576079,0.8838863,0.9677118,0.9998145,0.9766441,0.90076303,0.78056276,0.6293359,0.46380615,0.30227897,0.16261718,0.06026554,0.0065428913,0.007390201,0.06271377,0.16639557,0.3069697,0.4688905,0.6342516,0.7847662,0.90378934,0.9781586,0.9996497,0.965886,0.8806013,0.75322706,0.59784913,0.4316504,0.27301025,0.13947219,0.045803875,0.0023637712,0.013955802,0.07929805,0.1911645,0.49559978,0.33189082,0.18677256,0.07629323,0.012670368,0.00293988],"x":[1.6470994e6,4.5286444e14,9.057289e14,1.3585933e15,1.8114578e15,2.264322e15,2.7171866e15,3.170051e15,3.6229155e15,4.0757798e15,4.528644e15,4.9815087e15,5.434373e15,5.887238e15,6.340102e15,6.7929664e15,7.245831e15,7.6986956e15,8.1515596e15,8.604424e15,9.057288e15,9.510153e15,9.963017e15,1.0415882e16,1.0868747e16,1.1321611e16,1.1774476e16,1.2227339e16,1.2680204e16,1.3133068e16,1.3585933e16,1.4038797e16,1.4491662e16,1.4944527e16,1.5397391e16,1.5850255e16,1.6303119e16,1.6755984e16,1.7208848e16,1.7661713e16,1.8114576e16,1.8567442e16,1.9020306e16,1.9473171e16,1.9926035e16,2.03789e16,2.0831764e16,2.1284627e16,2.1737493e16,2.2190357e16,2.2643222e16,2.3096086e16,2.3548951e16,2.4001815e16,2.4454678e16,2.4907544e16,2.5360407e16,2.5813273e16,2.6266137e16,2.6719002e16,2.7171866e16,2.7624731e16,2.8077595e16,2.8530458e16,2.8983324e16,2.9436188e16,2.9889053e16,3.0341917e16,3.0794782e16,3.1247646e16,3.170051e16,3.2153375e16,3.2606239e16,3.3059104e16,3.3511968e16,3.3964833e16,3.4417697e16,3.487056e16,3.5323426e16,3.577629e16,3.6229153e16,3.668202e16,3.7134884e16,3.758775e16,3.804061e16,3.8493477e16,3.8946343e16,3.9399204e16,3.985207e16,4.0304935e16,4.07578e16,4.1210662e16,4.1663528e16,4.2116393e16,4.2569255e16,4.302212e16,4.3474986e16,4.392785e16,4.4380713e16,4.483358e16,4.5286444e16,4.5739306e16,4.619217e16,4.6645037e16,4.7097903e16,4.7550764e16,4.800363e16,4.8456495e16,4.8909357e16,4.9362222e16,4.981509e16,5.0267954e16,5.0720815e16,5.117368e16,5.1626546e16,5.2079408e16,5.2532273e16,5.298514e16,5.3438005e16,5.3890866e16,5.434373e16,5.4796597e16,5.5249463e16,5.5702324e16,5.615519e16,5.6608056e16,5.7060917e16,5.7513783e16,5.796665e16,5.8419514e16,5.8872375e16,5.932524e16,5.9778106e16,6.0230968e16,6.0683833e16,6.11367e16,6.1589565e16,6.2042426e16,6.249529e16,6.2948157e16,6.340102e16,6.3853884e16,6.430675e16,6.4759616e16,6.5212477e16,6.5665343e16,6.611821e16,6.657107e16,6.7023935e16,6.74768e16,6.7929667e16,6.838253e16,6.8835394e16,6.928826e16,6.974112e16,7.0193986e16,7.064685e16,7.1099718e16,7.155258e16,7.2005445e16,7.245831e16,7.291118e16,7.336404e16,7.38169e16,7.426977e16,7.472263e16,7.51755e16,7.562836e16,7.608122e16,7.653409e16,7.698695e16,7.7439815e16,7.7892685e16,7.834555e16,7.879841e16,7.925128e16,7.970414e16,8.0157e16,8.060987e16,8.106273e16,8.15156e16,8.196846e16,8.2421324e16,8.2874194e16,8.3327056e16,8.377992e16,8.423279e16,8.468565e16,8.513851e16,8.559138e16,8.604424e16,8.64971e16,8.694997e16,8.740283e16,8.78557e16,8.8308565e16,8.876143e16,8.92143e16,8.966716e16,9.012002e16,9.057289e16,9.102575e16,9.147861e16,9.193148e16,9.238434e16,9.283721e16,9.329007e16,9.3742935e16,9.4195805e16,9.464867e16,9.510153e16,9.55544e16,9.600726e16,9.646012e16,9.691299e16,9.736585e16,9.781871e16,9.827158e16,9.8724445e16,9.9177315e16,9.963018e16,1.0008304e17,1.0053591e17,1.0098877e17,1.0144163e17,1.018945e17,1.0234736e17,1.0280022e17,1.0325309e17,1.0370595e17,1.04158815e17,1.04611685e17,1.0506455e17,1.0551742e17,1.0597028e17,1.0642314e17,1.0687601e17,1.0732887e17,1.0778173e17,1.082346e17,1.0868746e17,1.09140324e17,1.09593194e17,1.1004606e17,1.1049893e17,1.1095179e17,1.1140465e17,1.1185752e17,1.1231038e17,1.1276324e17,1.1321611e17,1.1366897e17,1.1412183e17,1.145747e17,1.15027565e17,1.1548043e17,1.159333e17,1.1638616e17,1.1683903e17,1.1729189e17,1.1774475e17,1.1819762e17,1.1865048e17,1.1910334e17,1.1955621e17,1.2000907e17,1.20461936e17,1.20914806e17,1.2136767e17,1.2182053e17,1.222734e17,1.2272626e17,1.2317913e17,1.2363199e17,1.2408485e17,1.2453772e17,1.2499058e17,1.25443445e17,1.25896315e17,1.2634918e17,1.2680204e17,1.2725491e17,1.2770777e17,1.2816063e17,1.286135e17,1.2906636e17,1.2951923e17,1.2997209e17,1.3042495e17,1.3087782e17,1.31330685e17,1.3178355e17,1.3223642e17,1.3268928e17,1.3314214e17,1.3359501e17,1.3404787e17,1.3450074e17,1.349536e17,1.3540646e17,1.3585933e17,1.36312195e17,1.3676506e17,1.3721793e17,1.3767079e17,1.3812365e17,1.3857652e17,1.3902938e17,1.3948224e17,1.3993511e17,1.4038797e17,1.4084084e17,1.412937e17,1.41746565e17,1.42199435e17,1.426523e17,1.4310516e17,1.4355803e17,1.4401089e17,1.4446375e17,1.4491661e17,1.4536949e17,1.4582235e17,1.4627521e17,1.4672807e17,1.4718094e17,1.476338e17,1.4808668e17,1.4853954e17,1.489924e17,1.4944526e17,1.4989812e17,1.50351e17,1.5080386e17,1.5125672e17,1.5170958e17,1.5216244e17,1.526153e17,1.5306818e17,1.5352105e17,1.539739e17,1.5442677e17,1.5487963e17,1.5533251e17,1.5578537e17,1.5623823e17,1.566911e17,1.5714395e17,1.5759682e17,1.580497e17,1.5850256e17,1.5895542e17,1.5940828e17,1.5986114e17,1.60314e17,1.6076688e17,1.6121974e17,1.616726e17,1.6212546e17,1.6257832e17,1.630312e17,1.6348406e17,1.6393693e17,1.6438979e17,1.6484265e17,1.6529551e17,1.6574839e17,1.6620125e17,1.6665411e17,1.6710697e17,1.6755983e17,1.6801271e17,1.6846557e17,1.6891844e17,1.693713e17,1.6982416e17,1.7027702e17,1.707299e17,1.7118276e17,1.7163562e17,1.7208848e17,1.7254134e17,1.729942e17,1.7344708e17,1.7389994e17,1.743528e17,1.7480567e17,1.7525853e17,1.757114e17,1.7616427e17,1.7661713e17,1.7706999e17,1.7752285e17,1.7797571e17,1.784286e17,1.7888145e17,1.7933432e17,1.7978718e17,1.8024004e17,1.8069292e17,1.8114578e17,1.8159864e17,1.820515e17,1.8250436e17,1.8295722e17,1.834101e17,1.8386296e17,1.8431582e17,1.8476869e17,1.8522155e17,1.8567443e17,1.8612729e17,1.8658015e17,1.8703301e17,1.8748587e17,1.8793873e17,1.8839161e17,1.8884447e17,1.8929733e17,1.897502e17,1.9020306e17,1.9065592e17,1.911088e17,1.9156166e17,1.9201452e17,1.9246738e17,1.9292024e17,1.9337312e17,1.9382598e17,1.9427884e17,1.947317e17,1.9518457e17,1.9563743e17,1.960903e17,1.9654317e17,1.9699603e17,1.9744889e17,1.9790175e17,1.9835463e17,1.9880749e17,1.9926035e17,1.9971321e17,2.0016607e17,2.0061894e17,2.0107181e17,2.0152468e17,2.0197754e17,2.024304e17,2.0288326e17,2.0333614e17,2.03789e17,2.0424186e17,2.0469472e17,2.0514758e17,2.0560045e17,2.0605332e17,2.0650619e17,2.0695905e17,2.074119e17,2.0786477e17,2.0831763e17,2.0877051e17,2.0922337e17,2.0967623e17,2.101291e17,2.1058195e17,2.1103483e17,2.114877e17,2.1194056e17,2.1239342e17,2.1284628e17,2.1329914e17,2.1375202e17,2.1420488e17,2.1465774e17,2.151106e17,2.1556346e17,2.1601634e17,2.164692e17,2.1692206e17,2.1737493e17,2.1782779e17,2.1828065e17,2.1873353e17,2.1918639e17,2.1963925e17,2.2009211e17,2.2054497e17,2.2099785e17,2.2145071e17,2.2190357e17,2.2235644e17,2.228093e17,2.2326216e17,2.2371504e17,2.241679e17,2.2462076e17,2.2507362e17,2.2552648e17,2.2597934e17,2.2643222e17,2.2688508e17,2.2733794e17,2.277908e17,2.2824367e17,2.2869655e17,2.291494e17,2.2960227e17,2.3005513e17,2.3050799e17,2.3096085e17,2.3141373e17,2.318666e17,2.3231945e17,2.3277232e17,2.3322518e17,2.3367806e17,2.3413092e17,2.3458378e17,2.3503664e17,2.354895e17,2.3594236e17,2.3639524e17,2.368481e17,2.3730096e17,2.3775382e17,2.3820669e17,2.3865955e17,2.3911243e17,2.3956529e17,2.4001815e17,2.4047101e17,2.4092387e17,2.4137675e17,2.4182961e17,2.4228247e17,2.4273533e17,2.431882e17,2.4364106e17,2.4409394e17,2.445468e17,2.4499966e17,2.4545252e17,2.4590538e17,2.4635826e17,2.4681112e17,2.4726398e17,2.4771684e17,2.481697e17,2.4862257e17,2.4907544e17,2.495283e17,2.4998117e17,2.5043403e17,2.5088689e17,2.5133977e17,2.5179263e17,2.5224549e17,2.5269835e17,2.5315121e17,2.5360407e17,2.5405695e17,2.5450981e17,2.5496268e17,2.5541554e17,2.558684e17,2.5632126e17,2.5677414e17,2.57227e17,2.5767986e17,2.5813272e17,2.5858558e17,2.5903846e17,2.5949132e17,2.5994419e17,2.6039705e17,2.608499e17,2.6130277e17,2.6175565e17,2.6220851e17,2.6266137e17,2.6311423e17,2.635671e17,2.6401997e17,2.6447283e17,2.649257e17,2.6537856e17,2.6583142e17,2.6628428e17,2.6673716e17,2.6719002e17,2.6764288e17,2.6809574e17,2.685486e17,2.6900148e17,2.6945434e17,2.699072e17,2.7036007e17,2.7081293e17,2.7126579e17,2.7171867e17,2.7217153e17,2.7262439e17,2.7307725e17,2.7353011e17,2.7398297e17,2.7443585e17,2.7488871e17,2.7534157e17,2.7579444e17,2.762473e17,2.7670018e17,2.7715304e17,2.776059e17,2.7805876e17,2.7851162e17,2.7896448e17,2.7941736e17,2.7987022e17,2.8032308e17,2.8077595e17,2.812288e17,2.8168168e17,2.8213455e17,2.825874e17,2.8304027e17,2.8349313e17,2.83946e17,2.8439887e17,2.8485173e17,2.853046e17,2.8575745e17,2.8621032e17,2.866632e17,2.8711606e17,2.8756892e17,2.8802178e17,2.8847464e17,2.889275e17,2.8938036e17,2.8983322e17,2.902861e17,2.9073898e17,2.9119184e17,2.916447e17,2.9209756e17,2.9255043e17,2.930033e17,2.9345615e17,2.93909e17,2.9436187e17,2.9481473e17,2.952676e17,2.957205e17,2.9617335e17,2.966262e17,2.9707907e17,2.9753194e17,2.979848e17,2.9843766e17,2.9889052e17,2.9934338e17,2.9979624e17,3.002491e17,3.00702e17,3.0115486e17,3.0160772e17,3.020606e17,3.0251344e17,3.029663e17,3.0341917e17,3.0387203e17,3.043249e17,3.0477775e17,3.052306e17,3.056835e17,3.0613637e17,3.0658923e17,3.070421e17,3.0749495e17,3.079478e17,3.0840068e17,3.0885354e17,3.093064e17,3.0975926e17,3.1021212e17,3.1066502e17,3.1111788e17,3.1157074e17,3.120236e17,3.1247646e17,3.1292932e17,3.133822e17,3.1383505e17,3.142879e17,3.1474077e17,3.1519363e17,3.156465e17,3.160994e17,3.1655225e17,3.170051e17,3.1745797e17,3.1791083e17,3.183637e17,3.1881656e17,3.1926942e17,3.1972228e17,3.2017514e17,3.20628e17,3.210809e17,3.2153376e17,3.2198662e17,3.2243948e17,3.2289234e17,3.233452e17,3.2379807e17,3.2425093e17,3.247038e17,3.2515665e17,3.256095e17,3.260624e17,3.2651527e17,3.2696813e17,3.27421e17,3.2787385e17,3.283267e17,3.2877957e17,3.2923244e17,3.296853e17,3.3013816e17,3.3059102e17,3.310439e17,3.3149678e17,3.3194964e17,3.324025e17,3.3285536e17,3.3330822e17,3.337611e17,3.3421395e17,3.346668e17,3.3511967e17,3.3557253e17,3.3602543e17,3.364783e17,3.3693115e17,3.37384e17,3.3783687e17,3.3828973e17,3.387426e17,3.3919545e17,3.396483e17,3.4010118e17,3.4055404e17,3.4100693e17,3.414598e17,3.4191266e17,3.4236552e17,3.4281838e17,3.4327124e17,3.437241e17,3.4417696e17,3.4462983e17,3.450827e17,3.4553555e17,3.459884e17,3.464413e17,3.4689417e17,3.4734703e17,3.477999e17,3.4825275e17,3.487056e17,3.4915847e17,3.4961133e17,3.500642e17,3.5051706e17,3.5096992e17,3.514228e17,3.5187568e17,3.5232854e17,3.527814e17,3.5323426e17,3.5368712e17,3.5413998e17,3.5459284e17,3.550457e17,3.5549857e17,3.5595143e17,3.5640432e17,3.568572e17,3.5731005e17,3.577629e17,3.5821577e17,3.5866863e17,3.591215e17,3.5957435e17,3.600272e17,3.6048008e17,3.6093294e17,3.6138583e17,3.618387e17,3.6229156e17,3.627444e17,3.6319728e17,3.6365014e17,3.64103e17,3.6455586e17,3.6500872e17,3.654616e17,3.6591445e17,3.6636734e17,3.668202e17,3.6727306e17,3.6772593e17,3.681788e17,3.6863165e17,3.690845e17,3.6953737e17,3.6999023e17,3.704431e17,3.7089596e17,3.7134885e17,3.718017e17,3.7225457e17,3.7270744e17,3.731603e17,3.7361316e17,3.7406602e17,3.7451888e17,3.7497174e17,3.754246e17,3.7587746e17,3.7633036e17,3.7678322e17,3.772361e17,3.7768894e17,3.781418e17,3.7859467e17,3.7904753e17,3.795004e17,3.7995325e17,3.804061e17,3.8085897e17,3.8131184e17,3.8176473e17,3.822176e17,3.8267045e17,3.831233e17,3.8357618e17,3.8402904e17,3.844819e17,3.8493476e17,3.8538762e17,3.858405e17,3.8629334e17,3.8674624e17,3.871991e17,3.8765196e17,3.8810482e17,3.885577e17,3.8901055e17,3.894634e17,3.8991627e17,3.9036913e17,3.90822e17,3.9127485e17,3.9172775e17,3.921806e17,3.9263347e17,3.9308633e17,3.935392e17,3.9399206e17,3.9444492e17,3.9489778e17,3.9535064e17,3.958035e17,3.9625636e17,3.9670926e17,3.9716212e17,3.9761498e17,3.9806784e17,3.985207e17,3.9897357e17,3.9942643e17,3.998793e17,4.0033215e17,4.00785e17,4.0123787e17,4.0169077e17,4.0214363e17,4.025965e17,4.0304935e17,4.035022e17,4.0395507e17,4.0440794e17,4.048608e17,4.0531366e17,4.0576652e17,4.0621938e17,4.0667228e17,4.0712514e17,4.07578e17,4.0803086e17,4.0848372e17,4.089366e17,4.0938945e17,4.098423e17,4.1029517e17,4.1074803e17,4.112009e17,4.1165375e17,4.1210665e17,4.125595e17,4.1301237e17,4.1346523e17,4.139181e17,4.1437095e17,4.148238e17,4.1527668e17,4.1572954e17,4.161824e17,4.1663526e17,4.1708816e17,4.1754102e17,4.1799388e17,4.1844674e17,4.188996e17,4.1935246e17,4.1980532e17,4.202582e17,4.2071105e17,4.211639e17,4.2161677e17,4.2206967e17,4.2252253e17,4.229754e17,4.2342825e17,4.238811e17,4.2433397e17,4.2478683e17,4.252397e17,4.2569256e17,4.2614542e17,4.2659828e17,4.2705118e17,4.2750404e17,4.279569e17,4.2840976e17,4.2886262e17,4.2931548e17,4.2976834e17,4.302212e17,4.3067407e17,4.3112693e17,4.315798e17,4.320327e17,4.3248555e17,4.329384e17,4.3339127e17,4.3384413e17,4.34297e17,4.3474985e17,4.352027e17,4.3565558e17,4.3610844e17,4.365613e17,4.370142e17,4.3746706e17,4.379199e17,4.3837278e17,4.3882564e17,4.392785e17,4.3973136e17,4.4018422e17,4.406371e17,4.4108995e17,4.415428e17,4.419957e17,4.4244856e17,4.4290143e17,4.433543e17,4.4380715e17,4.4426e17,4.4471287e17,4.4516573e17,4.456186e17,4.4607146e17,4.465243e17,4.4697718e17,4.4743007e17,4.4788293e17,4.483358e17,4.4878866e17,4.4924152e17,4.4969438e17,4.5014724e17,4.506001e17,4.5105296e17,4.5150583e17,4.519587e17,4.5241158e17,4.5286444e17,4.533173e17,4.5377017e17,4.5422303e17,4.546759e17,4.5512875e17,4.555816e17,4.5603447e17,4.5648733e17,4.569402e17,4.573931e17,4.5784595e17,4.582988e17,4.5875168e17,4.5920454e17,4.596574e17,4.6011026e17,4.6056312e17,4.6101598e17,4.6146884e17,4.619217e17,4.623746e17,4.6282746e17,4.6328032e17,4.637332e17,4.6418605e17,4.646389e17,4.6509177e17,4.6554463e17,4.659975e17,4.6645035e17,4.669032e17,4.673561e17,4.6780897e17,4.6826183e17,4.687147e17,4.6916756e17,4.696204e17,4.7007328e17,4.7052614e17,4.70979e17,4.7143186e17,4.7188472e17,4.7233762e17,4.7279048e17,4.7324334e17,4.736962e17,4.7414907e17,4.7460193e17,4.750548e17,4.7550765e17,4.759605e17,4.7641337e17,4.7686623e17,4.773191e17,4.77772e17,4.7822485e17,4.786777e17,4.7913057e17,4.7958344e17,4.800363e17,4.8048916e17,4.8094202e17,4.8139488e17,4.8184774e17,4.823006e17,4.827535e17,4.8320636e17,4.8365922e17,4.841121e17,4.8456494e17,4.850178e17,4.8547067e17,4.8592353e17,4.863764e17,4.8682925e17,4.872821e17,4.87735e17,4.8818787e17,4.8864073e17,4.890936e17,4.8954645e17,4.899993e17,4.9045218e17,4.9090504e17,4.913579e17,4.9181076e17,4.9226362e17,4.9271652e17,4.9316938e17,4.9362224e17,4.940751e17,4.9452796e17,4.9498082e17,4.954337e17,4.9588655e17,4.963394e17,4.9679227e17,4.9724513e17,4.9769803e17,4.981509e17,4.9860375e17,4.990566e17,4.9950947e17,4.9996233e17,5.004152e17,5.0086806e17,5.0132092e17,5.0177378e17,5.0222664e17,5.0267954e17,5.031324e17,5.0358526e17,5.0403812e17,5.0449098e17,5.0494384e17,5.053967e17,5.0584957e17,5.0630243e17,5.067553e17,5.0720815e17,5.0766105e17,5.081139e17,5.0856677e17,5.0901963e17,5.094725e17,5.0992535e17,5.103782e17,5.1083108e17,5.1128394e17,5.117368e17,5.1218966e17,5.1264252e17,5.130954e17,5.1354828e17,5.1400114e17,5.14454e17,5.1490686e17,5.1535972e17,5.158126e17,5.1626545e17,5.167183e17,5.1717117e17,5.1762403e17,5.1807693e17,5.185298e17,5.1898265e17,5.194355e17,5.1988837e17,5.2034123e17,5.207941e17,5.2124695e17,5.216998e17,5.2215268e17,5.2260554e17,5.2305843e17,5.235113e17,5.2396416e17,5.2441702e17,5.2486988e17,5.2532274e17,5.257756e17,5.2622846e17,5.2668133e17,5.271342e17,5.2758705e17,5.2803994e17,5.284928e17,5.2894567e17,5.2939853e17,5.298514e17,5.3030425e17,5.307571e17,5.3120997e17,5.3166283e17,5.321157e17,5.3256856e17,5.3302145e17,5.334743e17,5.3392718e17,5.3438004e17,5.348329e17,5.3528576e17,5.3573862e17,5.3619148e17,5.3664434e17,5.370972e17,5.3755007e17,5.3800296e17,5.3845582e17,5.389087e17,5.3936155e17,5.398144e17,5.4026727e17,5.4072013e17,5.41173e17,5.4162585e17,5.420787e17,5.4253158e17,5.4298444e17,5.4343733e17,5.438902e17,5.4434306e17,5.447959e17,5.4524878e17,5.4570164e17,5.461545e17,5.4660736e17,5.4706022e17,5.475131e17,5.4796595e17,5.4841884e17,5.488717e17,5.4932456e17,5.4977743e17,5.502303e17,5.5068315e17,5.51136e17,5.5158887e17,5.5204173e17,5.524946e17,5.5294746e17,5.5340035e17,5.538532e17,5.5430607e17,5.5475894e17,5.552118e17,5.5566466e17,5.5611752e17,5.5657038e17,5.5702324e17,5.574761e17,5.5792896e17,5.5838186e17,5.5883472e17,5.592876e17,5.5974044e17,5.601933e17,5.6064617e17,5.6109903e17,5.615519e17,5.6200475e17,5.624576e17,5.6291047e17,5.6336337e17,5.6381623e17,5.642691e17,5.6472195e17,5.651748e17,5.6562768e17,5.6608054e17,5.665334e17,5.6698626e17,5.6743912e17,5.67892e17,5.6834488e17,5.6879774e17,5.692506e17,5.6970346e17,5.7015632e17,5.706092e17,5.7106205e17,5.715149e17,5.7196777e17,5.7242063e17,5.728735e17,5.733264e17,5.7377925e17,5.742321e17,5.7468497e17,5.7513783e17,5.755907e17,5.7604356e17,5.764964e17,5.769493e17,5.7740214e17,5.77855e17,5.7830786e17,5.787607e17,5.792136e17,5.7966645e17,5.801193e17,5.805722e17,5.810251e17,5.8147796e17,5.819308e17,5.823837e17,5.8283655e17,5.832894e17,5.837423e17,5.841951e17,5.84648e17,5.8510085e17,5.855537e17,5.860066e17,5.8645944e17,5.869123e17,5.8736516e17,5.87818e17,5.882709e17,5.8872374e17,5.891766e17,5.8962947e17,5.900823e17,5.905352e17,5.909881e17,5.91441e17,5.9189384e17,5.923467e17,5.9279956e17,5.932524e17,5.937053e17,5.9415815e17,5.94611e17,5.950639e17,5.955167e17,5.959696e17,5.9642245e17,5.968753e17,5.973282e17,5.9778104e17,5.982339e17,5.9868676e17,5.991396e17,5.995925e17,6.0004535e17,6.004982e17,6.009511e17,6.01404e17,6.0185686e17,6.023097e17,6.027626e17,6.0321544e17,6.036683e17,6.041212e17,6.04574e17,6.050269e17,6.0547975e17,6.059326e17,6.063855e17,6.0683833e17,6.072912e17,6.0774406e17,6.081969e17,6.086498e17,6.0910264e17,6.095555e17,6.1000836e17,6.104612e17,6.109141e17,6.11367e17,6.118199e17,6.1227274e17,6.127256e17,6.1317846e17,6.136313e17,6.140842e17,6.1453705e17,6.149899e17,6.154428e17,6.158956e17,6.163485e17,6.1680135e17,6.172542e17,6.177071e17,6.1815994e17,6.186128e17,6.1906566e17,6.195185e17,6.199714e17,6.2042424e17,6.208771e17,6.2133004e17,6.217829e17,6.2223576e17,6.226886e17,6.231415e17,6.2359434e17,6.240472e17,6.2450006e17,6.249529e17,6.254058e17,6.2585865e17,6.263115e17,6.267644e17,6.272172e17,6.276701e17,6.2812296e17,6.285758e17,6.290287e17,6.2948154e17,6.299344e17,6.3038726e17,6.308401e17,6.31293e17,6.317459e17,6.321988e17,6.3265164e17,6.331045e17,6.3355736e17,6.340102e17,6.344631e17,6.3491594e17,6.353688e17,6.358217e17,6.362745e17,6.367274e17,6.3718025e17,6.376331e17,6.38086e17,6.3853884e17,6.389917e17,6.3944456e17,6.398974e17,6.403503e17,6.4080314e17,6.41256e17,6.417089e17,6.421618e17,6.4261466e17,6.430675e17,6.435204e17,6.4397324e17,6.444261e17,6.4487896e17,6.453318e17,6.457847e17,6.4623755e17,6.466904e17,6.471433e17,6.475961e17,6.48049e17,6.4850185e17,6.489547e17,6.494076e17,6.4986044e17,6.503133e17,6.5076616e17,6.51219e17,6.5167195e17,6.521248e17,6.525777e17,6.5303054e17,6.534834e17,6.5393626e17,6.543891e17,6.54842e17,6.5529484e17,6.557477e17,6.5620057e17,6.566534e17,6.571063e17,6.5755915e17,6.58012e17,6.584649e17,6.589177e17,6.593706e17,6.5982346e17,6.602763e17,6.607292e17,6.6118204e17,6.616349e17,6.620878e17,6.625407e17,6.6299355e17,6.634464e17,6.638993e17,6.6435214e17,6.64805e17,6.6525786e17,6.657107e17,6.661636e17,6.6661645e17,6.670693e17,6.675222e17,6.67975e17,6.684279e17,6.6888075e17,6.693336e17,6.697865e17,6.7023934e17,6.706922e17,6.7114506e17,6.715979e17,6.7205085e17,6.725037e17,6.729566e17,6.734094e17,6.738623e17,6.7431516e17,6.74768e17,6.752209e17,6.7567374e17,6.761266e17,6.7657946e17,6.770323e17,6.774852e17,6.7793805e17,6.783909e17,6.788438e17,6.792966e17,6.797495e17,6.8020235e17,6.806552e17,6.811081e17,6.8156094e17,6.820139e17,6.824667e17,6.829196e17,6.8337245e17,6.838253e17,6.842782e17,6.8473104e17,6.851839e17,6.8563676e17,6.860896e17,6.865425e17,6.8699534e17,6.874482e17,6.879011e17,6.883539e17,6.888068e17,6.8925965e17,6.897125e17,6.901654e17,6.906182e17,6.910711e17,6.9152396e17,6.919768e17,6.9242975e17,6.928826e17,6.933355e17,6.937883e17,6.942412e17,6.9469406e17,6.951469e17,6.955998e17,6.9605264e17,6.965055e17,6.9695836e17,6.974112e17,6.978641e17,6.9831695e17,6.987698e17,6.992227e17,6.996755e17,7.001284e17,7.0058125e17,7.010341e17,7.01487e17,7.0193984e17,7.023928e17,7.028456e17,7.032985e17,7.0375135e17,7.042042e17,7.046571e17,7.0510993e17,7.055628e17,7.0601566e17,7.064685e17,7.069214e17,7.0737424e17,7.078271e17,7.0827996e17,7.087328e17,7.091857e17,7.0963855e17,7.100914e17,7.105443e17,7.109971e17,7.1145e17,7.1190286e17,7.123558e17,7.1280865e17,7.132615e17,7.137144e17,7.141672e17,7.146201e17,7.1507295e17,7.155258e17,7.159787e17,7.1643154e17,7.168844e17,7.1733726e17,7.177901e17,7.18243e17,7.1869584e17,7.191487e17,7.196016e17,7.200544e17,7.205073e17,7.2096015e17,7.21413e17,7.218659e17,7.223188e17,7.2277167e17,7.232245e17,7.236774e17,7.2413025e17,7.245831e17,7.25036e17,7.254888e17,7.259417e17,7.2639456e17,7.268474e17,7.273003e17,7.2775314e17,7.28206e17,7.2865886e17,7.291117e17,7.295646e17,7.3001745e17,7.304703e17,7.309232e17,7.31376e17,7.318289e17,7.3228175e17,7.327347e17,7.3318754e17,7.336404e17,7.340933e17,7.345461e17,7.34999e17,7.3545185e17,7.359047e17,7.363576e17,7.3681044e17,7.372633e17,7.3771616e17,7.38169e17,7.386219e17,7.3907474e17,7.395276e17,7.3998047e17,7.404333e17,7.408862e17,7.4133905e17,7.417919e17,7.422448e17,7.426977e17,7.4315056e17,7.436034e17,7.440563e17,7.4450915e17,7.44962e17,7.454149e17,7.458677e17,7.463206e17,7.4677345e17,7.472263e17,7.476792e17,7.4813204e17,7.485849e17,7.4903776e17,7.494906e17,7.499435e17,7.5039634e17,7.508492e17,7.513021e17,7.517549e17,7.522078e17,7.526607e17,7.531136e17,7.5356644e17,7.540193e17,7.544722e17,7.54925e17,7.553779e17,7.5583075e17,7.562836e17,7.567365e17,7.571893e17,7.576422e17,7.5809506e17,7.585479e17,7.590008e17,7.5945364e17,7.599065e17,7.6035936e17,7.608122e17,7.612651e17,7.6171795e17,7.621708e17,7.626237e17,7.630766e17,7.6352946e17,7.639823e17,7.644352e17,7.6488805e17,7.653409e17,7.657938e17,7.662466e17,7.666995e17,7.6715235e17,7.676052e17,7.680581e17,7.6851094e17,7.689638e17,7.6941666e17,7.698695e17,7.703224e17,7.7077524e17,7.712281e17,7.71681e17,7.721338e17,7.725867e17,7.730396e17,7.734925e17,7.7394534e17,7.743982e17,7.7485106e17,7.753039e17,7.757568e17,7.7620965e17,7.766625e17,7.771154e17,7.775682e17,7.780211e17,7.7847395e17,7.789268e17,7.793797e17,7.7983254e17,7.802854e17,7.8073826e17,7.811911e17,7.81644e17,7.8209685e17,7.825497e17,7.8300264e17,7.834555e17,7.8390836e17,7.843612e17,7.848141e17,7.8526694e17,7.857198e17,7.861727e17,7.866255e17,7.870784e17,7.8753125e17,7.879841e17,7.88437e17,7.8888983e17,7.893427e17,7.8979556e17,7.902484e17,7.907013e17,7.9115414e17,7.91607e17,7.9205986e17,7.925127e17,7.929656e17,7.934185e17,7.938714e17,7.9432424e17,7.947771e17,7.9522996e17,7.956828e17,7.961357e17,7.9658855e17,7.970414e17,7.974943e17,7.979471e17,7.984e17,7.9885285e17,7.993057e17,7.997586e17,8.0021144e17,8.006643e17,8.0111716e17,8.0157e17,8.020229e17,8.0247574e17,8.029286e17,8.0338154e17,8.038344e17,8.0428726e17,8.047401e17,8.05193e17,8.0564584e17,8.060987e17,8.0655156e17,8.070044e17,8.074573e17,8.0791015e17,8.08363e17,8.088159e17,8.092687e17,8.097216e17,8.1017446e17,8.106273e17,8.110802e17,8.1153304e17,8.119859e17,8.1243876e17,8.128916e17,8.1334455e17,8.137974e17,8.142503e17,8.1470314e17,8.15156e17,8.1560886e17,8.160617e17,8.165146e17,8.1696744e17,8.174203e17,8.178732e17,8.18326e17,8.187789e17,8.1923175e17,8.196846e17,8.201375e17,8.2059034e17,8.210432e17,8.2149606e17,8.219489e17,8.224018e17,8.2285464e17,8.233075e17,8.237604e17,8.242133e17,8.2466616e17,8.25119e17,8.255719e17,8.2602474e17,8.264776e17,8.2693046e17,8.273833e17,8.278362e17,8.2828905e17,8.287419e17,8.291948e17,8.296476e17,8.301005e17,8.3055335e17,8.310062e17,8.314591e17,8.3191194e17,8.323648e17,8.3281766e17,8.332705e17,8.3372345e17,8.341763e17,8.346292e17,8.3508204e17,8.355349e17,8.3598776e17,8.364406e17,8.368935e17,8.3734634e17,8.377992e17,8.382521e17,8.387049e17,8.391578e17,8.3961065e17,8.400635e17,8.405164e17,8.409692e17,8.414221e17,8.4187496e17,8.423278e17,8.427807e17,8.4323354e17,8.436865e17,8.441393e17,8.445922e17,8.4504505e17,8.454979e17,8.459508e17,8.4640364e17,8.468565e17,8.4730936e17,8.477622e17,8.482151e17,8.4866795e17,8.491208e17,8.495737e17,8.500265e17,8.504794e17,8.5093225e17,8.513851e17,8.51838e17,8.5229084e17,8.527437e17,8.5319656e17,8.536495e17,8.5410235e17,8.545552e17,8.550081e17,8.5546093e17,8.559138e17,8.5636666e17,8.568195e17,8.572724e17,8.5772524e17,8.581781e17,8.5863096e17,8.590838e17,8.595367e17,8.5998955e17,8.604424e17,8.608953e17,8.613481e17,8.61801e17,8.6225385e17,8.627067e17,8.631596e17,8.6361244e17,8.640654e17,8.645182e17,8.649711e17,8.6542395e17,8.658768e17,8.663297e17,8.6678254e17,8.672354e17,8.6768826e17,8.681411e17,8.68594e17,8.6904684e17,8.694997e17,8.699526e17,8.704054e17,8.708583e17,8.7131115e17,8.71764e17,8.722169e17,8.7266973e17,8.731226e17,8.7357546e17,8.740284e17,8.7448125e17,8.749341e17,8.75387e17,8.758398e17,8.762927e17,8.7674556e17,8.771984e17,8.776513e17,8.7810414e17,8.78557e17,8.7900986e17,8.794627e17,8.799156e17,8.8036845e17,8.808213e17,8.812742e17,8.81727e17,8.821799e17,8.8263275e17,8.830856e17,8.835385e17,8.839914e17,8.844443e17,8.848971e17,8.8535e17,8.8580285e17,8.862557e17,8.867086e17,8.8716144e17,8.876143e17,8.8806716e17,8.8852e17,8.889729e17,8.8942574e17,8.898786e17,8.9033146e17,8.907843e17,8.912372e17,8.9169005e17,8.921429e17,8.925958e17,8.930486e17,8.935015e17,8.9395436e17,8.944073e17,8.9486015e17,8.95313e17,8.957659e17,8.962187e17,8.966716e17,8.9712445e17,8.975773e17,8.980302e17,8.9848304e17,8.989359e17,8.9938876e17,8.998416e17,9.002945e17,9.0074734e17,9.012002e17,9.016531e17,9.021059e17,9.025588e17,9.0301165e17,9.034645e17,9.039174e17,9.043703e17,9.0482317e17,9.05276e17,9.057289e17,9.0618175e17,9.066346e17,9.070875e17,9.075403e17,9.079932e17,9.0844606e17,9.088989e17,9.093518e17,9.0980464e17,9.102575e17,9.1071036e17,9.111632e17,9.116161e17,9.1206895e17,9.125218e17,9.129747e17,9.134275e17,9.138804e17,9.143333e17,9.147862e17,9.1523905e17,9.156919e17,9.161448e17,9.165976e17,9.170505e17,9.1750335e17,9.179562e17,9.184091e17,9.1886194e17,9.193148e17,9.1976766e17,9.202205e17,9.206734e17,9.2112624e17,9.215791e17,9.2203197e17,9.224848e17,9.229377e17,9.2339055e17,9.238434e17,9.242963e17,9.247492e17,9.2520206e17,9.256549e17,9.261078e17,9.2656065e17,9.270135e17,9.274664e17,9.279192e17,9.283721e17,9.2882495e17,9.292778e17,9.297307e17,9.3018354e17,9.306364e17,9.3108926e17,9.315421e17,9.31995e17,9.3244785e17,9.329007e17,9.333536e17,9.338064e17,9.342593e17,9.347122e17,9.351651e17,9.3561794e17,9.360708e17,9.365237e17,9.369765e17,9.374294e17,9.3788225e17,9.383351e17,9.38788e17,9.392408e17,9.396937e17,9.4014656e17,9.405994e17,9.410523e17,9.4150514e17,9.41958e17,9.4241086e17,9.428637e17,9.433166e17,9.4376945e17,9.442223e17,9.4467524e17,9.451281e17,9.4558096e17,9.460338e17,9.464867e17,9.4693955e17,9.473924e17,9.478453e17,9.482981e17,9.48751e17,9.4920385e17,9.496567e17,9.501096e17,9.5056244e17,9.510153e17,9.5146816e17,9.51921e17,9.523739e17,9.5282674e17,9.532796e17,9.537325e17,9.541853e17,9.546382e17,9.550911e17,9.55544e17,9.5599684e17,9.564497e17,9.5690256e17,9.573554e17,9.578083e17,9.5826115e17,9.58714e17,9.591669e17,9.596197e17,9.600726e17,9.6052546e17,9.609783e17,9.614312e17,9.6188404e17,9.623369e17,9.6278976e17,9.632426e17,9.636955e17,9.6414835e17,9.646012e17,9.6505414e17,9.65507e17,9.6595986e17,9.664127e17,9.668656e17,9.6731844e17,9.677713e17,9.682242e17,9.68677e17,9.691299e17,9.6958275e17,9.700356e17,9.704885e17,9.7094134e17,9.713942e17,9.7184706e17,9.722999e17,9.727528e17,9.7320564e17,9.736585e17,9.7411136e17,9.745642e17,9.7501716e17,9.7547e17,9.759229e17,9.7637574e17,9.768286e17,9.7728146e17,9.777343e17,9.781872e17,9.7864005e17,9.790929e17,9.795458e17,9.799986e17,9.804515e17,9.8090435e17,9.813572e17,9.818101e17,9.8226294e17,9.827158e17,9.8316866e17,9.836215e17,9.840744e17,9.8452724e17,9.849802e17,9.8543304e17,9.858859e17,9.8633876e17,9.867916e17,9.872445e17,9.8769734e17,9.881502e17,9.8860307e17,9.890559e17,9.895088e17,9.8996165e17,9.904145e17,9.908674e17,9.913202e17,9.917731e17,9.9222596e17,9.926788e17,9.931317e17,9.9358454e17,9.940374e17,9.9449026e17,9.949431e17,9.9539605e17,9.958489e17,9.963018e17,9.9675464e17,9.972075e17,9.9766036e17,9.981132e17,9.985661e17,9.9901895e17,9.994718e17,9.999247e17,1.0003775e18,1.0008304e18,1.00128325e18,1.0017361e18,1.002189e18,1.00264184e18,1.0030947e18,1.00354756e18,1.0040004e18,1.0044533e18,1.00490614e18,1.0053591e18,1.0058119e18,1.0062648e18,1.00671766e18,1.0071705e18,1.0076234e18,1.00807624e18,1.0085291e18,1.00898196e18,1.0094348e18,1.0098877e18,1.01034055e18,1.0107934e18,1.0112463e18,1.0116991e18,1.012152e18,1.01260485e18,1.0130577e18,1.0135106e18,1.01396344e18,1.0144163e18,1.01486916e18,1.0153221e18,1.01577495e18,1.0162278e18,1.0166807e18,1.01713354e18,1.0175864e18,1.01803926e18,1.0184921e18,1.018945e18,1.01939784e18,1.0198507e18,1.0203036e18,1.0207564e18,1.0212093e18,1.02166215e18,1.022115e18,1.0225679e18,1.0230207e18,1.0234736e18,1.02392646e18,1.0243793e18,1.0248322e18,1.02528504e18,1.025738e18,1.0261908e18,1.0266437e18,1.02709656e18,1.0275494e18,1.0280023e18,1.02845514e18,1.028908e18,1.02936086e18,1.0298137e18,1.0302666e18,1.03071945e18,1.0311723e18,1.0316252e18,1.032078e18,1.0325309e18,1.03298375e18,1.0334366e18,1.0338895e18,1.03434234e18,1.0347952e18,1.03524806e18,1.035701e18,1.03615385e18,1.0366067e18,1.0370596e18,1.03751243e18,1.0379653e18,1.03841816e18,1.038871e18,1.0393239e18,1.03977674e18,1.0402296e18,1.04068246e18,1.0411353e18,1.0415882e18,1.04204105e18,1.0424939e18,1.0429468e18,1.0433996e18,1.0438525e18,1.04430536e18,1.0447582e18,1.0452111e18,1.045664e18,1.0461169e18,1.0465697e18,1.0470226e18,1.04747545e18,1.0479283e18,1.0483812e18,1.04883404e18,1.0492869e18,1.04973976e18,1.0501926e18,1.0506455e18,1.05109834e18,1.0515512e18,1.0520041e18,1.0524569e18,1.0529098e18,1.05336265e18,1.0538155e18,1.0542684e18,1.05472123e18,1.0551741e18,1.05562696e18,1.0560799e18,1.05653275e18,1.0569856e18,1.0574385e18,1.0578913e18,1.0583442e18,1.05879706e18,1.0592499e18,1.0597028e18,1.06015564e18,1.0606085e18,1.06106136e18,1.0615142e18,1.0619671e18,1.06241995e18,1.0628728e18,1.0633257e18,1.0637785e18,1.0642314e18,1.06468425e18,1.0651371e18,1.06559e18,1.0660429e18,1.0664958e18,1.0669486e18,1.0674015e18,1.06785435e18,1.0683072e18,1.0687601e18,1.06921294e18,1.0696658e18,1.07011866e18,1.0705715e18,1.0710244e18,1.07147724e18,1.0719301e18,1.07238297e18,1.0728358e18,1.0732887e18,1.07374155e18,1.0741944e18,1.0746473e18,1.0751001e18,1.075553e18,1.0760059e18,1.0764588e18,1.07691165e18,1.0773645e18,1.0778174e18,1.0782702e18,1.0787231e18,1.07917595e18,1.0796288e18,1.0800817e18,1.08053454e18,1.0809874e18,1.08144026e18,1.0818931e18,1.082346e18,1.08279884e18,1.0832517e18,1.0837046e18,1.0841574e18,1.0846103e18,1.08506315e18,1.085516e18,1.0859689e18,1.0864218e18,1.0868747e18,1.0873275e18,1.0877804e18,1.08823325e18,1.0886861e18,1.089139e18,1.0895918e18,1.0900447e18,1.09049756e18,1.0909504e18,1.0914033e18,1.09185614e18,1.092309e18,1.09276186e18,1.0932147e18,1.0936676e18,1.09412045e18,1.0945733e18,1.0950262e18,1.095479e18,1.0959319e18,1.0963848e18,1.0968377e18,1.09729055e18,1.0977434e18,1.0981963e18,1.0986491e18,1.099102e18,1.09955485e18,1.1000077e18,1.1004606e18,1.10091344e18,1.1013663e18,1.10181916e18,1.102272e18,1.1027249e18,1.10317774e18,1.1036306e18,1.1040835e18,1.1045363e18,1.1049892e18,1.10544205e18,1.1058949e18,1.10634784e18,1.1068007e18,1.10725356e18,1.1077064e18,1.1081593e18,1.10861215e18,1.109065e18,1.1095179e18,1.1099707e18,1.1104236e18,1.11087645e18,1.1113293e18,1.1117822e18,1.11223504e18,1.1126879e18,1.11314076e18,1.1135936e18,1.1140465e18,1.11449935e18,1.1149522e18,1.1154051e18,1.1158579e18,1.11631086e18,1.1167637e18,1.1172166e18,1.11766944e18,1.1181223e18,1.1185752e18,1.119028e18,1.1194809e18,1.11993375e18,1.1203866e18,1.1208395e18,1.12129233e18,1.1217452e18,1.12219806e18,1.1226509e18,1.1231038e18,1.12355664e18,1.1240095e18,1.12446236e18,1.1249152e18,1.1253681e18,1.12582095e18,1.1262738e18,1.12672674e18,1.1271796e18,1.12763246e18,1.1280853e18,1.1285382e18,1.12899105e18,1.1294439e18,1.1298968e18,1.1303496e18,1.1308025e18,1.13125535e18,1.1317082e18,1.1321611e18,1.13261394e18,1.1330668e18,1.13351966e18,1.1339725e18,1.1344254e18,1.13487824e18,1.1353311e18,1.135784e18,1.1362368e18,1.13668976e18,1.1371426e18,1.1375955e18,1.13804834e18,1.1385012e18,1.13895406e18,1.1394069e18,1.1398598e18,1.14031265e18,1.1407655e18,1.1412184e18,1.1416712e18,1.1421241e18,1.14257696e18,1.1430298e18,1.1434827e18,1.14393554e18,1.1443884e18,1.14484126e18,1.1452941e18,1.145747e18,1.14619985e18,1.1466528e18,1.14710564e18,1.1475585e18,1.14801136e18,1.1484642e18,1.1489171e18,1.14936994e18,1.1498228e18,1.1502757e18,1.1507285e18,1.1511814e18,1.15163425e18,1.1520871e18,1.15254e18,1.1529928e18,1.1534457e18,1.1538986e18,1.1543514e18,1.1548043e18,1.1552571e18,1.15571e18,1.1561629e18,1.1566157e18,1.1570686e18,1.1575214e18,1.1579743e18,1.1584272e18,1.15888e18,1.1593329e18,1.1597858e18,1.1602386e18,1.1606915e18,1.1611443e18,1.1615972e18,1.1620502e18,1.162503e18,1.1629559e18,1.1634088e18,1.1638616e18,1.1643145e18,1.1647674e18,1.1652202e18,1.1656731e18,1.166126e18,1.1665788e18,1.1670317e18,1.1674845e18,1.1679374e18,1.1683903e18,1.1688431e18,1.169296e18,1.1697488e18,1.1702017e18,1.1706546e18,1.1711074e18,1.1715603e18,1.1720131e18,1.172466e18,1.1729189e18,1.1733717e18,1.1738246e18,1.1742775e18,1.1747303e18,1.1751832e18,1.175636e18,1.1760889e18,1.1765418e18,1.1769946e18,1.1774475e18,1.1779003e18,1.1783532e18,1.1788061e18,1.1792589e18,1.1797118e18,1.1801647e18,1.1806175e18,1.1810704e18,1.1815232e18,1.1819762e18,1.1824291e18,1.182882e18,1.1833348e18,1.1837877e18,1.1842405e18,1.1846934e18,1.1851463e18,1.1855991e18,1.186052e18,1.1865049e18,1.1869577e18,1.1874106e18,1.1878634e18,1.1883163e18,1.1887692e18,1.189222e18,1.1896749e18,1.1901277e18,1.1905806e18,1.1910335e18,1.1914863e18,1.1919392e18,1.192392e18,1.1928449e18,1.1932978e18,1.1937506e18,1.1942035e18,1.1946564e18,1.1951092e18,1.1955621e18,1.196015e18,1.1964678e18,1.1969207e18,1.1973735e18,1.1978264e18,1.1982792e18,1.1987321e18,1.199185e18,1.1996378e18,1.2000907e18,1.2005436e18,1.2009964e18,1.2014493e18,1.2019021e18,1.2023551e18,1.202808e18,1.2032609e18,1.2037137e18,1.2041666e18,1.2046194e18,1.2050723e18,1.2055252e18,1.205978e18,1.2064309e18,1.2068837e18,1.2073366e18,1.2077895e18,1.2082423e18,1.2086952e18,1.209148e18,1.2096009e18,1.2100538e18,1.2105066e18,1.2109595e18,1.2114124e18,1.2118652e18,1.2123181e18,1.212771e18,1.2132238e18,1.2136767e18,1.2141295e18,1.2145824e18,1.2150353e18,1.2154881e18,1.215941e18,1.2163938e18,1.2168467e18,1.2172996e18,1.2177524e18,1.2182053e18,1.2186581e18,1.219111e18,1.2195639e18,1.2200167e18,1.2204696e18,1.2209225e18,1.2213753e18,1.2218282e18,1.222281e18,1.222734e18,1.2231869e18,1.2236398e18,1.2240926e18,1.2245455e18,1.2249983e18,1.2254512e18,1.225904e18,1.2263569e18,1.2268098e18,1.2272626e18,1.2277155e18,1.2281684e18,1.2286212e18,1.2290741e18,1.229527e18,1.2299798e18,1.2304327e18,1.2308855e18,1.2313384e18,1.2317913e18,1.2322441e18,1.232697e18,1.2331498e18,1.2336027e18,1.2340556e18,1.2345084e18,1.2349613e18,1.2354142e18,1.235867e18,1.2363199e18,1.2367727e18,1.2372256e18,1.2376785e18,1.2381313e18,1.2385842e18,1.239037e18,1.2394899e18,1.2399428e18,1.2403956e18,1.2408485e18,1.2413013e18,1.2417542e18,1.2422071e18,1.2426601e18,1.243113e18,1.2435658e18,1.2440187e18,1.2444715e18,1.2449244e18,1.2453772e18,1.2458301e18,1.246283e18,1.2467358e18,1.2471887e18,1.2476415e18,1.2480944e18,1.2485473e18,1.2490001e18,1.249453e18,1.2499059e18,1.2503587e18,1.2508116e18,1.2512644e18,1.2517173e18,1.2521702e18,1.252623e18,1.2530759e18,1.2535287e18,1.2539816e18,1.2544345e18,1.2548873e18,1.2553402e18,1.255793e18,1.2562459e18,1.2566988e18,1.2571516e18,1.2576045e18,1.2580574e18,1.2585102e18,1.2589631e18,1.259416e18,1.2598688e18,1.2603217e18,1.2607745e18,1.2612274e18,1.2616802e18,1.2621331e18,1.262586e18,1.263039e18,1.2634918e18,1.2639447e18,1.2643976e18,1.2648504e18,1.2653033e18,1.2657561e18,1.266209e18,1.2666619e18,1.2671147e18,1.2675676e18,1.2680204e18,1.2684733e18,1.2689262e18,1.269379e18,1.2698319e18,1.2702848e18,1.2707376e18,1.2711905e18,1.2716433e18,1.2720962e18,1.272549e18,1.2730019e18,1.2734548e18,1.2739076e18,1.2743605e18,1.2748134e18,1.2752662e18,1.2757191e18,1.276172e18,1.2766248e18,1.2770777e18,1.2775305e18,1.2779834e18,1.2784363e18,1.2788891e18,1.279342e18,1.2797948e18,1.2802477e18,1.2807006e18,1.2811534e18,1.2816063e18,1.2820591e18,1.282512e18,1.2829649e18,1.2834179e18,1.2838707e18,1.2843236e18,1.2847765e18,1.2852293e18,1.2856822e18,1.286135e18,1.2865879e18,1.2870408e18,1.2874936e18,1.2879465e18,1.2883993e18,1.2888522e18,1.289305e18,1.2897579e18,1.2902108e18,1.2906636e18,1.2911165e18,1.2915694e18,1.2920222e18,1.2924751e18,1.292928e18,1.2933808e18,1.2938337e18,1.2942865e18,1.2947394e18,1.2951923e18,1.2956451e18,1.296098e18,1.2965508e18,1.2970037e18,1.2974566e18,1.2979094e18,1.2983623e18,1.2988152e18,1.299268e18,1.2997209e18,1.3001737e18,1.3006266e18,1.3010795e18,1.3015323e18,1.3019852e18,1.302438e18,1.3028909e18,1.3033439e18,1.3037968e18,1.3042496e18,1.3047025e18,1.3051553e18,1.3056082e18,1.3060611e18,1.306514e18,1.3069668e18,1.3074197e18,1.3078725e18,1.3083254e18,1.3087782e18,1.3092311e18,1.309684e18,1.3101368e18,1.3105897e18,1.3110425e18,1.3114954e18,1.3119483e18,1.3124011e18,1.312854e18,1.3133069e18,1.3137597e18,1.3142126e18,1.3146654e18,1.3151183e18,1.3155712e18,1.316024e18,1.3164769e18,1.3169297e18,1.3173826e18,1.3178355e18,1.3182883e18,1.3187412e18,1.319194e18,1.3196469e18,1.3200998e18,1.3205526e18,1.3210055e18,1.3214584e18,1.3219112e18,1.3223641e18,1.322817e18,1.3232698e18,1.3237228e18,1.3241757e18,1.3246285e18,1.3250814e18,1.3255342e18,1.3259871e18,1.32644e18,1.3268928e18,1.3273457e18,1.3277986e18,1.3282514e18,1.3287043e18,1.3291571e18,1.32961e18,1.3300629e18,1.3305157e18,1.3309686e18,1.3314214e18,1.3318743e18,1.3323272e18,1.33278e18,1.3332329e18,1.3336858e18,1.3341386e18,1.3345915e18,1.3350443e18,1.3354972e18,1.33595e18,1.3364029e18,1.3368558e18,1.3373086e18,1.3377615e18,1.3382144e18,1.3386672e18,1.3391201e18,1.339573e18,1.3400258e18,1.3404787e18,1.3409315e18,1.3413844e18,1.3418373e18,1.3422901e18,1.342743e18,1.3431958e18,1.3436488e18,1.3441017e18,1.3445546e18,1.3450074e18,1.3454603e18,1.3459131e18,1.346366e18,1.3468189e18,1.3472717e18,1.3477246e18,1.3481775e18,1.3486303e18,1.3490832e18,1.349536e18,1.3499889e18,1.3504418e18,1.3508946e18,1.3513475e18,1.3518003e18,1.3522532e18,1.352706e18,1.3531589e18,1.3536118e18,1.3540646e18,1.3545175e18,1.3549704e18,1.3554232e18,1.3558761e18,1.356329e18,1.3567818e18,1.3572347e18,1.3576875e18,1.3581404e18,1.3585933e18,1.3590461e18,1.359499e18,1.3599518e18,1.3604047e18,1.3608576e18,1.3613104e18,1.3617633e18,1.3622162e18,1.362669e18,1.3631219e18,1.3635747e18,1.3640277e18,1.3644806e18,1.3649335e18,1.3653863e18,1.3658392e18,1.366292e18,1.3667449e18,1.3671978e18,1.3676506e18,1.3681035e18,1.3685564e18,1.3690092e18,1.3694621e18,1.369915e18,1.3703678e18,1.3708207e18,1.3712735e18,1.3717264e18,1.3721792e18,1.3726321e18,1.373085e18,1.3735378e18,1.3739907e18,1.3744435e18,1.3748964e18,1.3753493e18,1.3758021e18,1.376255e18,1.3767079e18,1.3771607e18,1.3776136e18,1.3780664e18,1.3785193e18,1.3789722e18,1.379425e18,1.3798779e18,1.3803307e18,1.3807836e18,1.3812365e18,1.3816893e18,1.3821422e18,1.382595e18,1.3830479e18,1.3835008e18,1.3839536e18,1.3844066e18,1.3848595e18,1.3853124e18,1.3857652e18,1.3862181e18,1.386671e18,1.3871238e18,1.3875767e18,1.3880295e18,1.3884824e18,1.3889352e18,1.3893881e18,1.389841e18,1.3902938e18,1.3907467e18,1.3911996e18,1.3916524e18,1.3921053e18,1.3925581e18,1.393011e18,1.3934639e18,1.3939167e18,1.3943696e18,1.3948224e18,1.3952753e18,1.3957282e18,1.396181e18,1.3966339e18,1.3970868e18,1.3975396e18,1.3979925e18,1.3984453e18,1.3988982e18,1.399351e18,1.3998039e18,1.4002568e18,1.4007096e18,1.4011625e18,1.4016154e18,1.4020682e18,1.4025211e18,1.402974e18,1.4034268e18,1.4038797e18,1.4043327e18,1.4047855e18,1.4052384e18,1.4056913e18,1.4061441e18,1.406597e18,1.4070498e18,1.4075027e18,1.4079556e18,1.4084084e18,1.4088613e18,1.4093141e18,1.409767e18,1.4102199e18,1.4106727e18,1.4111256e18,1.4115785e18,1.4120313e18,1.4124842e18,1.412937e18,1.4133899e18,1.4138428e18,1.4142956e18,1.4147485e18,1.4152013e18,1.4156542e18,1.416107e18,1.4165599e18,1.4170128e18,1.4174657e18,1.4179185e18,1.4183714e18,1.4188242e18,1.4192771e18,1.41973e18,1.4201828e18,1.4206357e18,1.4210885e18,1.4215414e18,1.4219943e18,1.4224471e18,1.4229e18,1.4233528e18,1.4238057e18,1.4242586e18,1.4247116e18,1.4251644e18,1.4256173e18,1.4260702e18,1.426523e18,1.4269759e18,1.4274287e18,1.4278816e18,1.4283345e18,1.4287873e18,1.4292402e18,1.429693e18,1.4301459e18,1.4305988e18,1.4310516e18,1.4315045e18,1.4319574e18,1.4324102e18,1.4328631e18,1.433316e18,1.4337688e18,1.4342217e18,1.4346745e18,1.4351274e18,1.4355802e18,1.4360331e18,1.436486e18,1.4369388e18,1.4373917e18,1.4378445e18,1.4382974e18,1.4387503e18,1.4392031e18,1.439656e18,1.4401089e18,1.4405617e18,1.4410146e18,1.4414674e18,1.4419203e18,1.4423732e18,1.442826e18,1.4432789e18,1.4437317e18,1.4441846e18,1.4446376e18,1.4450905e18,1.4455433e18,1.4459962e18,1.446449e18,1.4469019e18,1.4473548e18,1.4478076e18,1.4482605e18,1.4487134e18,1.4491662e18,1.4496191e18,1.450072e18,1.4505248e18,1.4509777e18,1.4514305e18,1.4518834e18,1.4523363e18,1.4527891e18,1.453242e18,1.4536948e18,1.4541477e18,1.4546006e18,1.4550534e18,1.4555063e18,1.4559591e18,1.456412e18,1.4568649e18,1.4573177e18,1.4577706e18,1.4582234e18,1.4586763e18,1.4591292e18,1.459582e18,1.4600349e18,1.4604878e18,1.4609406e18,1.4613935e18,1.4618463e18,1.4622992e18,1.462752e18,1.4632049e18,1.4636578e18,1.4641106e18,1.4645635e18,1.4650165e18,1.4654694e18,1.4659222e18,1.4663751e18,1.466828e18,1.4672808e18,1.4677337e18,1.4681865e18,1.4686394e18,1.4690923e18,1.4695451e18,1.469998e18,1.4704508e18,1.4709037e18,1.4713566e18,1.4718094e18,1.4722623e18,1.4727151e18,1.473168e18,1.4736209e18,1.4740737e18,1.4745266e18,1.4749795e18,1.4754323e18,1.4758852e18,1.476338e18,1.4767909e18,1.4772438e18,1.4776966e18,1.4781495e18,1.4786023e18,1.4790552e18,1.4795081e18,1.4799609e18,1.4804138e18,1.4808667e18,1.4813195e18,1.4817724e18,1.4822252e18,1.4826781e18,1.483131e18,1.4835838e18,1.4840367e18,1.4844895e18,1.4849424e18,1.4853954e18,1.4858483e18,1.4863011e18,1.486754e18,1.4872068e18,1.4876597e18,1.4881126e18,1.4885654e18,1.4890183e18,1.4894712e18,1.489924e18,1.4903769e18,1.4908297e18,1.4912826e18,1.4917355e18,1.4921883e18,1.4926412e18,1.493094e18,1.4935469e18,1.4939998e18,1.4944526e18,1.4949055e18,1.4953584e18,1.4958112e18,1.4962641e18,1.496717e18,1.4971698e18,1.4976227e18,1.4980755e18,1.4985284e18,1.4989812e18,1.4994341e18,1.499887e18,1.5003398e18,1.5007927e18,1.5012456e18,1.5016984e18,1.5021513e18,1.5026041e18,1.503057e18,1.5035099e18,1.5039627e18,1.5044156e18,1.5048684e18,1.5053214e18,1.5057743e18,1.5062272e18,1.50668e18,1.5071329e18,1.5075857e18,1.5080386e18,1.5084915e18,1.5089443e18,1.5093972e18,1.50985e18,1.5103029e18,1.5107558e18,1.5112086e18,1.5116615e18,1.5121144e18,1.5125672e18,1.5130201e18,1.513473e18,1.5139258e18,1.5143787e18,1.5148315e18,1.5152844e18,1.5157373e18,1.5161901e18,1.516643e18,1.5170958e18,1.5175487e18,1.5180016e18,1.5184544e18,1.5189073e18,1.5193601e18,1.519813e18,1.5202659e18,1.5207187e18,1.5211716e18,1.5216244e18,1.5220773e18,1.5225302e18,1.522983e18,1.5234359e18,1.5238888e18,1.5243416e18,1.5247945e18,1.5252473e18,1.5257003e18,1.5261532e18,1.526606e18,1.5270589e18,1.5275118e18,1.5279646e18,1.5284175e18,1.5288704e18,1.5293232e18,1.5297761e18,1.530229e18,1.5306818e18,1.5311347e18,1.5315875e18,1.5320404e18,1.5324933e18,1.5329461e18,1.533399e18,1.5338518e18,1.5343047e18,1.5347576e18,1.5352104e18,1.5356633e18,1.5361162e18,1.536569e18,1.5370219e18,1.5374747e18,1.5379276e18,1.5383805e18,1.5388333e18,1.5392862e18,1.539739e18,1.5401919e18,1.5406448e18,1.5410976e18,1.5415505e18,1.5420033e18,1.5424562e18,1.5429091e18,1.543362e18,1.5438148e18,1.5442677e18,1.5447205e18,1.5451734e18,1.5456262e18,1.5460792e18,1.5465321e18,1.546985e18,1.5474378e18,1.5478907e18,1.5483435e18,1.5487964e18,1.5492493e18,1.5497021e18,1.550155e18,1.5506079e18,1.5510607e18,1.5515136e18,1.5519664e18,1.5524193e18,1.5528722e18,1.553325e18,1.5537779e18,1.5542307e18,1.5546836e18,1.5551365e18,1.5555893e18,1.5560422e18,1.556495e18,1.5569479e18,1.5574008e18,1.5578536e18,1.5583065e18,1.5587594e18,1.5592122e18,1.5596651e18,1.560118e18,1.5605708e18,1.5610237e18,1.5614765e18,1.5619294e18,1.5623822e18,1.5628351e18,1.563288e18,1.5637408e18,1.5641937e18,1.5646466e18,1.5650994e18,1.5655523e18,1.5660053e18,1.5664581e18,1.566911e18,1.5673639e18,1.5678167e18,1.5682696e18,1.5687224e18,1.5691753e18,1.5696282e18,1.570081e18,1.5705339e18,1.5709867e18,1.5714396e18,1.5718925e18,1.5723453e18,1.5727982e18,1.573251e18,1.5737039e18,1.5741568e18,1.5746096e18,1.5750625e18,1.5755154e18,1.5759682e18,1.5764211e18,1.576874e18,1.5773268e18,1.5777797e18,1.5782325e18,1.5786854e18,1.5791383e18,1.5795911e18,1.580044e18,1.5804968e18,1.5809497e18,1.5814026e18,1.5818554e18,1.5823083e18,1.5827611e18,1.583214e18,1.5836669e18,1.5841197e18,1.5845726e18,1.5850255e18,1.5854783e18,1.5859312e18,1.5863842e18,1.586837e18,1.5872899e18,1.5877428e18,1.5881956e18,1.5886485e18,1.5891013e18,1.5895542e18,1.590007e18,1.5904599e18,1.5909128e18,1.5913656e18,1.5918185e18,1.5922714e18,1.5927242e18,1.5931771e18,1.59363e18,1.5940828e18,1.5945357e18,1.5949885e18,1.5954414e18,1.5958943e18,1.5963471e18,1.5968e18,1.5972528e18,1.5977057e18,1.5981586e18,1.5986114e18,1.5990643e18,1.5995172e18,1.59997e18,1.6004229e18,1.6008757e18,1.6013286e18,1.6017815e18,1.6022343e18,1.6026872e18,1.60314e18,1.6035929e18,1.6040458e18,1.6044986e18,1.6049515e18,1.6054043e18,1.6058572e18,1.6063102e18,1.6067631e18,1.607216e18,1.6076688e18,1.6081217e18,1.6085745e18,1.6090274e18,1.6094802e18,1.6099331e18,1.610386e18,1.6108388e18,1.6112917e18,1.6117445e18,1.6121974e18,1.6126503e18,1.6131031e18,1.613556e18,1.6140089e18,1.6144617e18,1.6149146e18,1.6153674e18,1.6158203e18,1.6162732e18,1.616726e18,1.6171789e18,1.6176317e18,1.6180846e18,1.6185375e18,1.6189903e18,1.6194432e18,1.619896e18,1.6203489e18,1.6208018e18,1.6212546e18,1.6217075e18,1.6221604e18,1.6226132e18,1.6230661e18,1.623519e18,1.6239718e18,1.6244247e18,1.6248775e18,1.6253304e18,1.6257832e18,1.6262361e18,1.6266891e18,1.627142e18,1.6275948e18,1.6280477e18,1.6285006e18,1.6289534e18,1.6294063e18,1.6298591e18,1.630312e18,1.6307649e18,1.6312177e18,1.6316706e18,1.6321234e18,1.6325763e18,1.6330292e18,1.633482e18,1.6339349e18,1.6343878e18,1.6348406e18,1.6352935e18,1.6357463e18,1.6361992e18,1.636652e18,1.6371049e18,1.6375578e18,1.6380106e18,1.6384635e18,1.6389164e18,1.6393692e18,1.6398221e18,1.640275e18,1.6407278e18,1.6411807e18,1.6416335e18,1.6420864e18,1.6425393e18,1.6429921e18,1.643445e18,1.6438978e18,1.6443507e18,1.6448036e18,1.6452564e18,1.6457093e18,1.6461621e18,1.646615e18,1.647068e18,1.6475209e18,1.6479737e18,1.6484266e18,1.6488795e18,1.6493323e18,1.6497852e18,1.650238e18,1.6506909e18,1.6511438e18,1.6515966e18,1.6520495e18,1.6525023e18,1.6529552e18,1.653408e18,1.6538609e18,1.6543138e18,1.6547666e18,1.6552195e18,1.6556724e18,1.6561252e18,1.6565781e18,1.657031e18,1.6574838e18,1.6579367e18,1.6583895e18,1.6588424e18,1.6592953e18,1.6597481e18,1.660201e18,1.6606538e18,1.6611067e18,1.6615596e18,1.6620124e18,1.6624653e18,1.6629182e18,1.663371e18,1.6638239e18,1.6642767e18,1.6647296e18,1.6651825e18,1.6656353e18,1.6660882e18,1.666541e18,1.666994e18,1.6674469e18,1.6678998e18,1.6683526e18,1.6688055e18,1.6692583e18,1.6697112e18,1.6701641e18,1.670617e18,1.6710698e18,1.6715227e18,1.6719755e18,1.6724284e18,1.6728812e18,1.6733341e18,1.673787e18,1.6742398e18,1.6746927e18,1.6751455e18,1.6755984e18,1.6760513e18,1.6765041e18,1.676957e18,1.6774099e18,1.6778627e18,1.6783156e18,1.6787684e18,1.6792213e18,1.6796742e18,1.680127e18,1.6805799e18,1.6810327e18,1.6814856e18,1.6819385e18,1.6823913e18,1.6828442e18,1.683297e18,1.6837499e18,1.6842028e18,1.6846556e18,1.6851085e18,1.6855614e18,1.6860142e18,1.6864671e18,1.68692e18,1.687373e18,1.6878258e18,1.6882787e18,1.6887315e18,1.6891844e18,1.6896372e18,1.6900901e18,1.690543e18,1.6909958e18,1.6914487e18,1.6919016e18,1.6923544e18,1.6928073e18,1.6932601e18,1.693713e18,1.6941659e18,1.6946187e18,1.6950716e18,1.6955244e18,1.6959773e18,1.6964302e18,1.696883e18,1.6973359e18,1.6977888e18,1.6982416e18,1.6986945e18,1.6991473e18,1.6996002e18,1.700053e18,1.7005059e18,1.7009588e18,1.7014116e18,1.7018645e18,1.7023174e18,1.7027702e18,1.7032231e18,1.703676e18,1.7041288e18,1.7045817e18,1.7050345e18,1.7054874e18,1.7059403e18,1.7063931e18,1.706846e18,1.707299e18,1.7077518e18,1.7082047e18,1.7086576e18,1.7091104e18,1.7095633e18,1.7100161e18,1.710469e18,1.7109219e18,1.7113747e18,1.7118276e18,1.7122805e18,1.7127333e18,1.7131862e18,1.713639e18,1.7140919e18,1.7145448e18,1.7149976e18,1.7154505e18,1.7159033e18,1.7163562e18,1.716809e18,1.7172619e18,1.7177148e18,1.7181677e18,1.7186205e18,1.7190734e18,1.7195262e18,1.7199791e18,1.720432e18,1.7208848e18,1.7213377e18,1.7217905e18,1.7222434e18,1.7226963e18,1.7231491e18,1.723602e18,1.7240548e18,1.7245077e18,1.7249606e18,1.7254134e18,1.7258663e18,1.7263192e18,1.726772e18,1.7272249e18,1.7276779e18,1.7281307e18,1.7285836e18,1.7290365e18,1.7294893e18,1.7299422e18,1.730395e18,1.7308479e18,1.7313008e18,1.7317536e18,1.7322065e18,1.7326594e18,1.7331122e18,1.7335651e18,1.734018e18,1.7344708e18,1.7349237e18,1.7353765e18,1.7358294e18,1.7362822e18,1.7367351e18,1.737188e18,1.7376408e18,1.7380937e18,1.7385465e18,1.7389994e18,1.7394523e18,1.7399051e18,1.740358e18,1.7408109e18,1.7412637e18,1.7417166e18,1.7421694e18,1.7426223e18,1.7430752e18,1.743528e18,1.7439809e18,1.7444337e18,1.7448866e18,1.7453395e18,1.7457923e18,1.7462452e18,1.746698e18,1.7471509e18,1.7476038e18,1.7480568e18,1.7485096e18,1.7489625e18,1.7494154e18,1.7498682e18,1.7503211e18,1.750774e18,1.7512268e18,1.7516797e18,1.7521325e18,1.7525854e18,1.7530382e18,1.7534911e18,1.753944e18,1.7543968e18,1.7548497e18,1.7553026e18,1.7557554e18,1.7562083e18,1.7566611e18,1.757114e18,1.7575669e18,1.7580197e18,1.7584726e18,1.7589254e18,1.7593783e18,1.7598312e18,1.760284e18,1.7607369e18,1.7611898e18,1.7616426e18,1.7620955e18,1.7625483e18,1.7630012e18,1.763454e18,1.7639069e18,1.7643598e18,1.7648126e18,1.7652655e18,1.7657184e18,1.7661712e18,1.7666241e18,1.767077e18,1.7675298e18,1.7679828e18,1.7684357e18,1.7688885e18,1.7693414e18,1.7697943e18,1.7702471e18,1.7707e18,1.7711528e18,1.7716057e18,1.7720586e18,1.7725114e18,1.7729643e18,1.7734171e18,1.77387e18,1.7743229e18,1.7747757e18,1.7752286e18,1.7756815e18,1.7761343e18,1.7765872e18,1.77704e18,1.7774929e18,1.7779458e18,1.7783986e18,1.7788515e18,1.7793043e18,1.7797572e18,1.78021e18,1.7806629e18,1.7811158e18,1.7815687e18,1.7820215e18,1.7824744e18,1.7829272e18,1.7833801e18,1.783833e18,1.7842858e18,1.7847387e18,1.7851915e18,1.7856444e18,1.7860973e18,1.7865501e18,1.787003e18,1.7874558e18,1.7879087e18,1.7883617e18,1.7888146e18,1.7892674e18,1.7897203e18,1.7901732e18,1.790626e18,1.7910789e18,1.7915317e18,1.7919846e18,1.7924375e18,1.7928903e18,1.7933432e18,1.793796e18,1.7942489e18,1.7947018e18,1.7951546e18,1.7956075e18,1.7960604e18,1.7965132e18,1.7969661e18,1.797419e18,1.7978718e18,1.7983247e18,1.7987775e18,1.7992304e18,1.7996832e18,1.8001361e18,1.800589e18,1.8010418e18,1.8014947e18,1.8019476e18,1.8024004e18,1.8028533e18,1.8033061e18,1.803759e18,1.8042119e18,1.8046647e18,1.8051176e18,1.8055704e18,1.8060233e18,1.8064762e18,1.806929e18,1.8073819e18,1.8078347e18,1.8082876e18,1.8087406e18,1.8091935e18,1.8096463e18,1.8100992e18,1.810552e18,1.8110049e18]}
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/medium_negative.json b/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/medium_negative.json
new file mode 100644
index 000000000000..ccc92fb3ba47
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/medium_negative.json
@@ -0,0 +1 @@
+{"expected":[1.0,0.9899249,0.9601011,0.911731,0.8467642,0.76781964,0.67805076,0.5811306,0.4809401,0.3815179,0.2868716,0.20081645,0.12682119,0.06786856,0.026334882,0.0038943887,0.0014516413,0.019105107,0.056143135,0.11107281,0.18167993,0.26511833,0.35802466,0.45665398,0.5570305,0.6551082,0.7469336,0.8288052,0.8974228,0.9500206,0.9844783,0.99940693,0.99420476,0.9690815,0.9250498,0.86388457,0.7880514,0.70060706,0.6050763,0.50531,0.40532967,0.30916542,0.22069365,0.14348051,0.0806385,0.03470069,0.0075188577,0.0001886487,0.013005555,0.045452923,0.09622282,0.16329134,0.24391437,0.33486006,0.43246245,0.53278726,0.6317904,0.72548115,0.8100829,0.8821854,0.93888223,0.9778879,0.99763024,0.9973134,0.97695005,0.9373612,0.88014257,0.8076005,0.72265935,0.6287429,0.52963686,0.4293362,0.33188394,0.24120834,0.16096452,0.094386995,0.04415953,0.01230672,0.00011253357,0.008068562,0.03585404,0.082349,0.1456792,0.2232919,0.31205857,0.408401,0.5084358,0.60813046,0.70346653,0.7906009,0.8660214,0.9266877,0.9701545,0.9946697,0.9992449,0.983696,0.948636,0.89549947,0.8264206,0.7441839,0.6521043,0.55389345,0.45351017,0.35500088,0.26233643,0.17925206,0.109096855,0.054698735,0.018250465,0.0012212396,0.004297495,0.027355224,0.06946504,0.12892944,0.2033515,0.28973126,0.38458687,0.48409474,0.5842437,0.68099684,0.77045417,0.8490095,0.9134966,0.9613159,0.99053967,0.99999017,0.9892863,0.9588596,0.90993655,0.84448916,0.7651556,0.6751338,0.57805246,0.47782484,0.3784911,0.2840553,0.19832414,0.124753326,0.06630853,0.025345564,0.0035120547,0.0017012656,0.019976616,0.057601452,0.11305913,0.18411416,0.26790237,0.3610463,0.4597914,0.56015724,0.6580982,0.74966633,0.83117056,0.89932543,0.95138377,0.9852471,0.99955034,0.993717,0.96798223,0.92338336,0.8617182,0.7854723,0.69771916,0.6019961,0.5021617,0.4022401,0.30625916,0.21808779,0.14128014,0.078932315,0.033557475,0.006984651,0.0002850294,0.013728619,0.046773523,0.09808773,0.1656028,0.24659723,0.3378062,0.43555307,0.5358978,0.6347955,0.7282597,0.81252277,0.8841883,0.9403819,0.97880435,0.99792653,0.99697757,0.97599566,0.9358267,0.8780898,0.80511236,0.71983594,0.6256981,0.5264934,0.42622077,0.32892215,0.23851961,0.15865716,0.09255406,0.042874873,0.011622161,5.567074e-5,0.00864163,0.037034005,0.084088236,0.14790767,0.22591972,0.3149798,0.41149795,0.51158357,0.61120224,0.7063384,0.7931572,0.86815906,0.9283205,0.9712167,0.9951184,0.9990621,0.98288894,0.9472508,0.89358425,0.82405245,0.74145836,0.64913124,0.5507927,0.4504067,0.3520198,0.2595979,0.1768432,0.107141495,0.053275734,0.017417133,0.0010111928,0.0047192276,0.028391719,0.071074486,0.13104701,0.20589179,0.29259193,0.38765258,0.48724186,0.5873454,0.68392813,0.7730968,0.85125715,0.91525847,0.96252096,0.99113953,0.9999605,0.9886284,0.9575999,0.9081258,0.8422004,0.76248115,0.67218137,0.5749411,0.47467998,0.3754395,0.28121996,0.19581935,0.12268007,0.06475034,0.024365276,0.0031527877,0.0019679368,0.020858467,0.059062928,0.115041316,0.18653715,0.2706685,0.36404407,0.46289995,0.5632816,0.66108197,0.7523892,0.8335228,0.9012122,0.95272905,0.9859966,0.99967396,0.9932097,0.9668644,0.9217001,0.85953736,0.7828818,0.69482344,0.5989119,0.49901325,0.3991544,0.30336055,0.21549314,0.13909402,0.07724282,0.032432735,0.0064700246,0.00040122867,0.014470965,0.048112094,0.09996858,0.16795012,0.2493164,0.34078756,0.4386765,0.53903735,0.63782465,0.73105633,0.8149742,0.88619566,0.9418498,0.9796933,0.99820054,0.9966256,0.975032,0.9342901,0.87604225,0.80263627,0.7170313,0.6226483,0.52334887,0.42310828,0.3259672,0.23584121,0.15636337,0.09073728,0.041608363,0.010956973,1.859665e-5,0.00923419,0.038232297,0.08584398,0.15015006,0.22855839,0.3179084,0.4145984,0.5147309,0.6142696,0.7092022,0.79570186,0.87028205,0.92993635,0.9722601,0.9955474,0.99885947,0.98206276,0.9458344,0.8916347,0.82164836,0.73869663,0.6461232,0.5476595,0.4472748,0.34901536,0.25684208,0.1744703,0.10522047,0.051883966,0.016610771,0.0008226931,0.005156219,0.029436588,0.07268509,0.13317919,0.20844376,0.2954608,0.3907227,0.4903895,0.5904437,0.68685216,0.7757287,0.8534908,0.91700387,0.9637078,0.99171984,0.999911,0.98795104,0.95632195,0.9062989,0.8398981,0.75979626,0.6692221,0.57182676,0.4715361,0.3723928,0.27839327,0.19332659,0.12062174,0.063209414,0.023403883,0.0028096437,0.0022568703,0.021767855,0.060556084,0.11705807,0.18899623,0.27347076,0.36707658,0.46604043,0.56637317,0.6640305,0.7550758,0.83583915,0.903065,0.95404357,0.98671985,0.99977684,0.99268794,0.9657281,0.9200002,0.85734224,0.7802801,0.69192004,0.59582376,0.49586487,0.3960727,0.30046976,0.21290976,0.13692221,0.07557011,0.031326562,0.0059749484,0.00053724647,0.015232563,0.049468607,0.10186529,0.17031059,0.25204545,0.34377524,0.44180235,0.5421754,0.64084834,0.7338438,0.8174131,0.88818777,0.9433147,0.98057187,0.99845755,0.9962506,0.9740401,0.93272126,0.8739598,0.8001241,0.71419066,0.61962324,0.5202339,0.42002898,0.32304764,0.23319912,0.15410522,0.08895412,0.040372044,0.010317326,1.3411045e-6,0.0098462105,0.039448887,0.087616146,0.15240633,0.23120785,0.3208442,0.41770223,0.51787764,0.6173324,0.7120576,0.7982348,0.8723904,0.9315351,0.9732849,0.99595684,0.9986371,0.9812175,0.9444003,0.8896696,0.8192315,0.73592544,0.6431093,0.54452455,0.444145,0.34601694,0.25409585,0.17208701,0.10329619,0.05049625,0.015815556,0.0006520748,0.0056169927,0.030510247,0.07432836,0.13530505,0.21098238,0.29830986,0.39376733,0.493507,0.59350836,0.68974054,0.7783243,0.855689,0.91873276,0.9648762,0.9922807,0.9998417,0.9872543,0.95502603,0.9044559,0.83758235,0.75710106,0.6662562,0.5687096,0.46839336,0.3693512,0.2755754,0.19084603,0.11857849,0.06168583,0.022461355,0.0024861991,0.002565533,0.022696197,0.062066674,0.11909002,0.19146761,0.276282,0.37011433,0.46918225,0.5694924,0.66700137,0.75777864,0.838165,0.9049201,0.9553531,0.98743105,0.99986094,0.9921417,0.9645846,0.9183003,0.8551545,0.7776927,0.6890372,0.5927618,0.49274716,0.39302492,0.29761475,0.21033776,0.13476476,0.07391423,0.030238956,0.005499482,0.000693053,0.016013384,0.05084297,0.103777796,0.17268413,0.25478438,0.34676912,0.44493052,0.54531175,0.6438665,0.73662204,0.8198395,0.8901644,0.944762,0.9814315,0.9986948,0.9958559,0.9730294,0.93113536,0.8718625,0.79760003,0.7113415,0.6165639,0.5170877,0.4169227,0.3201065,0.23054168,0.1518386,0.08716971,0.039141744,0.009690732,3.8146973e-6,0.010471463,0.040671706,0.08938724,0.15465432,0.2338421,0.32375854,0.4207792,0.5210237,0.6203906,0.7149046,0.8007559,0.87448394,0.9331168,0.97429085,0.9963466,0.99839485,0.9803531,0.9429486,0.88768905,0.816802,0.7331449,0.64008975,0.54138774,0.4410174,0.3430246,0.2513594,0.16971675,0.10138765,0.049126387,0.015039563,0.00050121546,0.006097406,0.03160253,0.07598847,0.13746607,0.21355724,0.30119473,0.39684597,0.49665526,0.5965994,0.69264966,0.78093433,0.85789466,0.9204285,0.9660151,0.9928169,0.9997535,0.9865453,0.95372486,0.90261495,0.83527577,0.75442195,0.6632836,0.56558967,0.4652519,0.36631477,0.2727664,0.18837771,0.11655033,0.06017959,0.02153778,0.0021824837,0.0028939545,0.023643464,0.06359464,0.12113708,0.19395128,0.2791021,0.3731572,0.47232527,0.5726089,0.6699657,0.7604712,0.84047735,0.906759,0.95664454,0.9881229,0.99992526,0.99157596,0.96341157,0.9165672,0.8529314,0.775069,0.6861188,0.5896662,0.48959923,0.38995153,0.29473978,0.207802,0.13264254,0.07229105,0.029180229,0.0050479174,0.00086686015,0.01680556,0.052221566,0.10568723,0.17507064,0.257533,0.34976906,0.44806087,0.5484463,0.6468789,0.73939085,0.8222531,0.8921256,0.94619167,0.98227197,0.9989122,0.99544156,0.97199994,0.9295323,0.86975044,0.79506415,0.708484,0.61349994,0.5139408,0.4138197,0.31717247,0.22789493,0.14958581,0.085401654,0.037929744,0.009083599,2.604723e-5,0.011122137,0.041924626,0.09119186,0.15693793,0.23651266,0.32670838,0.4238894,0.5241384,0.6234144,0.7177156,0.80324084,0.8765426,0.93466616,0.9752686,0.99671316,0.99813557,0.97946966,0.9414793,0.8856932,0.81435996,0.7303551,0.6370647,0.5382493,0.43789214,0.34003848,0.24863279,0.16735959,0.099494904,0.047774374,0.014282793,0.00037020445,0.0065973997,0.032713354,0.07766542,0.13964152,0.21614346,0.30408752,0.3999287,0.49980366,0.59968656,0.69555116,0.7835332,0.8600862,0.92212427,0.96714675,0.9933389,0.99964476,0.9858103,0.952393,0.90074,0.8329335,0.75170654,0.6603335,0.56249744,0.4621422,0.36331296,0.2699935,0.18594548,0.11455682,0.05870515,0.020641834,0.0018984973,0.0032420456,0.024609625,0.06513989,0.123199165,0.19644704,0.28193098,0.37620515,0.4754694,0.57572246,0.6729232,0.76315355,0.8427763,0.9085819,0.9579178,0.98879534,0.99996984,0.99099076,0.96222013,0.9148177,0.8506942,0.77243435,0.6831929,0.58656704,0.48645172,0.38688248,0.29187298,0.20525295,0.130514,0.07066882,0.028129756,0.004611492,0.0010620654,0.017624557,0.053631306,0.10763094,0.17744672,0.26026446,0.35274583,0.4511629,0.5515486,0.6498563,0.7421235,0.8246308,0.8940524,0.9476036,0.9830934,0.99910986,0.9950076,0.9709518,0.92791224,0.86762375,0.7925166,0.7056182,0.6104315,0.5107933,0.4107201,0.31424573,0.22525898,0.14734688,0.08365005,0.03673604,0.008495927,6.8068504e-5,0.011792183,0.043195695,0.09301272,0.15923515,0.23919365,0.32966506,0.42700264,0.52728266,0.62646294,0.72054553,0.8057381,0.87860656,0.9362136,0.97623706,0.99706376,0.997854,0.97857606,0.94000703,0.88370156,0.8119292,0.7275833,0.6340636,0.5351398,0.4347996,0.33708757,0.24591619,0.16501561,0.09761804,0.046440303,0.013545275,0.00025895238,0.0071169436,0.033842742,0.079359084,0.14183122,0.21874094,0.30698806,0.40301538,0.5029521,0.6027698,0.6984449,0.78612083,0.8622634,0.9238033,0.96825993,0.9938413,0.9995162,0.98505586,0.95104325,0.89884925,0.83057797,0.7489812,0.65734816,0.5593725,0.4590036,0.3602872,0.26720256,0.18350187,0.11255902,0.05723369,0.019756049,0.0016367435,0.0036062002,0.025584996,0.06668717,0.12525597,0.19893047,0.28474092,0.37922835,0.47858402,0.5788331,0.67587394,0.7658254,0.8450616,0.9103886,0.959173,0.9894484,0.9999945,0.990386,0.9610104,0.9130517,0.84844315,0.769789,0.6802598,0.5834645,0.48330474,0.38381797,0.28901443,0.2027156,0.12840015,0.06906366,0.02709797,0.0041947067,0.0012770593,0.018462658,0.055058748,0.10959017,0.1798588,0.26303214,0.35575753,0.4542972,0.55467916,0.65285707,0.74487334,0.827019,0.89598256,0.9489844,0.9838879,0.9992862,0.99455845,0.96989536,0.9262911,0.8655033,0.7899822,0.70274425,0.60735863,0.5076454,0.40762407,0.31132632,0.22263393,0.14512196,0.08191496,0.035560697,0.007927746,0.00012993813,0.0124816,0.044484884,0.094849706,0.1615459,0.24188498,0.33262855,0.43011874,0.53042585,0.62950647,0.72336674,0.80822325,0.8806555,0.93774366,0.9771867,0.99739456,0.99755275,0.9776549,0.938503,0.8816753,0.8094625,0.72477543,0.6310278,0.5319985,0.43167937,0.3341142,0.2432358,0.16270742,0.0957751,0.04513687,0.012833923,0.00016835332,0.007650703,0.034979373,0.08105278,0.14403513,0.22134957,0.30989623,0.4061059,0.50610036,0.6058489,0.7013308,0.7886971,0.86442626,0.9254655,0.9693545,0.99432415,0.99936783,0.98428226,0.94967556,0.89694273,0.8282093,0.746246,0.6543566,0.5562452,0.4558666,0.35726696,0.26442087,0.18107077,0.11057657,0.055779815,0.018889278,0.0013920963,0.0039934814,0.026588619,0.06826669,0.12734771,0.20145011,0.2875869,0.38228592,0.48172995,0.58191043,0.67878914,0.768461,0.84731126,0.9121617,0.9603981,0.99007607,0.9999994,0.989768,0.95978236,0.9112693,0.84617823,0.7671329,0.6773196,0.5803586,0.48015842,0.38075805,0.28616422,0.20019004,0.12630099,0.06747556,0.02608493,0.003797561,0.0015118122,0.019319862,0.056503862,0.111564904,0.18228358,0.26580918,0.35877493,0.45743334,0.5578076,0.6558517,0.7476135,0.8293941,0.897897,0.95036095,0.9846711,0.9994444,0.99408543,0.9688101,0.9246373,0.86334765,0.7874117,0.69989026,0.60431135,0.50452775,0.40456167,0.3084426,0.22004515,0.14293247,0.08021301,0.034414917,0.007379085,0.00021162629,0.013190359,0.045792133,0.096702725,0.16387004,0.24458656,0.33559865,0.43323764,0.5335678,0.6325449,0.7261791,0.81069624,0.88268936,0.9392564,0.9781174,0.9977057,0.9972318,0.97671473,0.93698156,0.8796339,0.8069835,0.72195864,0.6279868,0.5288559,0.42856187,0.33114743,0.24053934,0.16038996,0.093930095,0.04383865,0.01213482,9.6559525e-5,0.008209139,0.03614551,0.08277959,0.14623159,0.2239438,0.3127837,0.40917015,0.5092179,0.6088941,0.70418084,0.7912371,0.8665539,0.9271109,0.9704305,0.9947874,0.9991996,0.98348945,0.9482901,0.89502037,0.8258276,0.74350095,0.6513589,0.55311567,0.45273134,0.3542524,0.26164848,0.17865235,0.10860956,0.05434352,0.01804161,0.001167208,0.004400432,0.027611017,0.06986332,0.1294542,0.20398158,0.29044127,0.38534817,0.48487663,0.5850147,0.68172586,0.7711117,0.8495693,0.9139359,0.961617,0.9906905,0.9999846,0.98912466,0.9585483,0.9094882,0.8439218,0.7644921,0.67440087,0.5772797,0.47704336,0.37773243,0.2833225,0.19767636,0.124216676,0.06590462,0.025090694,0.0034200847,0.0017663538,0.02019614,0.05796653,0.113555044,0.18472093,0.26859555,0.36179793,0.46057117,0.56093377,0.6588402,0.7503438,0.83175623,0.8997957,0.9517197,0.9854351,0.9995829,0.99359274,0.9677062,0.9229667,0.8611776,0.7848297,0.6970004,0.60123014,0.50137943,0.40147305,0.30553824,0.21744207,0.14073566,0.07851097,0.03327629,0.006854981,0.00031206012,0.013911277,0.047104448,0.09855357,0.16618481,0.24727193,0.33854637,0.43632892,0.5367085,0.63557804,0.7289825,0.81315684,0.884708,0.9407518,0.9790292,0.9979971,0.9968911,0.97575563,0.9354428,0.8775774,0.80449224,0.719133,0.62494075,0.5257122,0.42544717,0.32818732,0.23785314,0.15808597,0.09210116,0.04255852,0.011455059,4.4614077e-5,0.008787036,0.03733,0.08452293,0.14846352,0.22657433,0.3157068,0.41226798,0.5123656,0.61196476,0.70705074,0.7937906,0.86868787,0.9287236,0.9714777,0.9952268,0.9990136,0.98268545,0.9469005,0.8931013,0.82345635,0.7407731,0.64835525,0.54998404,0.44959798,0.35124362,0.25888556,0.17624664,0.10665807,0.0529249,0.017213047,0.0009620786,0.0048270524,0.028652161,0.071477026,0.1315754,0.20652479,0.29330397,0.38841498,0.48802388,0.5881156,0.68465537,0.7737518,0.85181344,0.9156937,0.96281755,0.99128556,0.99995005,0.98846185,0.9572841,0.90767336,0.8416296,0.761815,0.67144674,0.57416755,0.47389874,0.374682,0.2805168,0.19519886,0.12216726,0.064365864,0.024124652,0.0030657053,0.0020378828,0.02108264,0.059432298,0.1155605,0.1871708,0.27139106,0.36482644,0.46371058,0.5640575,0.6618223,0.75306416,0.83410513,0.90167856,0.9530605,0.9861798,0.99970156,0.9930806,0.96658385,0.9212793,0.8589933,0.78223646,0.69410276,0.59814495,0.498231,0.39838833,0.30264154,0.21485019,0.13855305,0.07682565,0.03215617,0.0063451827,0.00043317676,0.0146583915,0.04844749,0.100438386,0.16853538,0.24999353,0.3415293,0.43945295,0.5398172,0.63857645,0.7317498,0.8155814,0.88669205,0.94221544,0.97991335,0.9982662,0.9965342,0.9747777,0.93388677,0.87550604,0.8019889,0.71629876,0.62188977,0.52256745,0.42233542,0.32523403,0.23517737,0.15579554,0.0902884,0.041296512,0.010794699,1.2457371e-5,0.009384453,0.038532883,0.08628276,0.15070939,0.22921568,0.31863716,0.41536927,0.5155128,0.615031,0.7099124,0.79633236,0.8708073,0.93033516,0.97251654,0.995651,0.99880606,0.98185456,0.94547975,0.89114785,0.8210491,0.738009,0.64537483,0.5468808,0.44649696,0.34826982,0.25615883,0.17387694,0.10474089,0.051537514,0.016411394,0.00077676773,0.0052732825,0.029711962,0.07310769,0.13371122,0.20907962,0.29617488,0.39148617,0.49117163,0.5912129,0.6875775,0.77638096,0.8540436,0.917435,0.9639998,0.99186105,0.99989563,0.98777974,0.95600164,0.9058425,0.839324,0.7591275,0.6684858,0.5710525,0.47075513,0.3716366,0.27769232,0.19270912,0.12011266,0.062829226,0.023167938,0.002727449,0.0023317337,0.021996737,0.060929805,0.11756152,0.18960914,0.27416843,0.36783084,0.46682093,0.56714845,0.6647693,0.7557483,0.8364183,0.9035455,0.9543834,0.98690534,0.99980044,0.9925488,0.9654429,0.9195752,0.8567947,0.779632,0.69119745,0.5950559,0.49508262,0.3953076,0.2997527,0.21226963,0.13638481,0.075157106,0.031054586,0.005854994,0.00057411194,0.015424788,0.049808413,0.10233903,0.17089912,0.25272506,0.34451854,0.4425794,0.5429548,0.64159876,0.734535,0.8180172,0.88868034,0.94367594,0.9807873,0.9985195,0.99615246,0.9737859,0.9323212,0.8734299,0.79948586,0.71346974,0.61884874,0.519437,0.41924182,0.32230192,0.23252496,0.15352973,0.08850056,0.040058672,0.010156751,1.4901161e-7,0.009998262,0.039748073,0.088050365,0.1529581,0.23185492,0.32157475,0.41847393,0.5186594,0.6180927,0.71276575,0.79886234,0.87291193,0.9319297,0.9735366,0.9960555,0.99857867,0.9810045,0.94404125,0.88917893,0.818629,0.73523545,0.6423596,0.5437453,0.4433677,0.34527287,0.25341502,0.17149687,0.10281125,0.050147563,0.015617162,0.0006119907,0.0057368577,0.030785173,0.074747294,0.13585109,0.21163353,0.29903987,0.39454678,0.49430448,0.59429175,0.69047815,0.7789865,0.8562491,0.9191514,0.96515805,0.99241436,0.9998218,0.98708165,0.95470756,0.90400445,0.8370049,0.7564298,0.66551816,0.56793463,0.46761268,0.36859626,0.27487662,0.19023159,0.118073136,0.061309963,0.022230119,0.002408892,0.0026453137,0.022929788,0.062444717,0.11959723,0.1920836,0.2769819,0.37086987,0.46996307,0.570267,0.66773856,0.7584617,0.83875203,0.9053874,0.9556819,0.98760813,0.9998791,0.9920003,0.9642892,0.9178629,0.8545927,0.77702916,0.68829864,0.59197795,0.49194974,0.39224598,0.29688573,0.2097129,0.13424137,0.07351336,0.029976815,0.0053866208,0.0007340014,0.016210377,0.051187217,0.10425544,0.17327589,0.2554664,0.34751394,0.4457081,0.5460907,0.6446155,0.7373109,0.8204404,0.89065313,0.94511884,0.9816421,0.9987506,0.9957548,0.97277534,0.9307386,0.8713391,0.7969711,0.71063226,0.61580306,0.5162906,0.41613635,0.31936258,0.22987023,0.15126663,0.08672029,0.038832992,0.009535104,7.56979e-6,0.010634452,0.040987372,0.089842826,0.1552315,0.23451757,0.32450512,0.42156675,0.52178997,0.6211349,0.7155969,0.80136836,0.8749918,0.93349946,0.9745331,0.9964404,0.9983316,0.9801354,0.9425852,0.8871946,0.81619644,0.7324526,0.6393387,0.5406081,0.44024065,0.34228206,0.250681,0.16912985,0.10091588,0.048788786,0.014849722,0.00046682358,0.0062198043,0.031876802,0.07640356,0.13800526,0.21419877,0.30192676,0.39762646,0.4974528,0.5973818,0.69338536,0.7815937,0.8584511,0.92085963,0.9663035,0.992951,0.99972785,0.98636097,0.95338917,0.90214145,0.8346837,0.75373507,0.66255844,0.56482923,0.46448678,0.36557582,0.27208346,0.18777823,0.11604875,0.059808046,0.021311224,0.0021100938,0.002978593,0.023881763,0.06397697,0.12164804,0.19457024,0.27980417,0.37391406,0.47310638,0.5733828,0.67070115,0.7611387,0.84104985,0.90721345,0.9569626,0.98829174,0.9999382,0.9914324,0.96311724,0.9161341,0.852366,0.7744026,0.6853783,0.5888815,0.4888019,0.3891737,0.29401284,0.2071552,0.13210195,0.07187849,0.028912365,0.004935533,0.00091442466,0.017011195,0.05257699,0.106178135,0.175654,0.2582041,0.35050082,0.4488238,0.54920965,0.64761186,0.7400774,0.8228508,0.89261043,0.9465441,0.98247784,0.9989632,0.9953356,0.97174126,0.9291314,0.86922336,0.7944323,0.70777273,0.61273795,0.5131588,0.41304925,0.3164446,0.22723898,0.14902821,0.0849649,0.037631422,0.008935779,3.46303e-5,0.011290044,0.04224488,0.09165159,0.15751857,0.23719078,0.3274567,0.42467773,0.52493495,0.6241871,0.71843326,0.8038746,0.87706685,0.9350598,0.9755157,0.9968038,0.99806607,0.9792516,0.9411187,0.8852046,0.81376314,0.72967404,0.6363269,0.5374845,0.437116,0.33929753,0.24795687,0.16677594,0.0990271,0.047441214,0.01409775,0.00034070015,0.0067246556,0.032992244,0.07808468,0.14018425,0.21678779,0.30480748,0.40069526,0.5005859,0.600453,0.6962709,0.7841772,0.8606285,0.92254305,0.9674251,0.99346805,0.99961406,0.985621,0.9520528,0.9002626,0.83233804,0.7510171,0.65957785,0.5617061,0.461347,0.362546,0.26928568,0.18532532,0.114049315,0.058330774,0.020415664,0.0018323064,0.0033298433,0.024847835,0.065518975,0.12370378,0.19705689,0.28263518,0.3769632,0.47625077,0.57649565,0.67365706,0.7638184,0.8433454,0.90903234,0.95823145,0.98895943,0.9999778,0.99084234,0.9619213,0.91438043,0.85013616,0.7717781,0.68246484,0.5857965,0.48566973,0.38612065,0.29116195,0.2046214,0.12998742,0.070260614,0.027866632,0.004504055,0.0011146665,0.01783505,0.05399123,0.108125776,0.17805654,0.26096466,0.35350817,0.4519567,0.5523418,0.650617,0.742821,0.825237,0.8945428,0.9479449,0.98329055,0.99915504,0.99489886,0.9706936,0.927515,0.8670931,0.7918818,0.70490485,0.6096684,0.51001126,0.40995052,0.31351966,0.22460574,0.14679277,0.08321738,0.03644228,0.008352935,8.159876e-5,0.0119616985,0.04351431,0.09346762,0.15980804,0.2398614,0.33040076,0.4277766,0.5280637,0.6272196,0.721261,0.8063688,0.879127,0.93660283,0.9764794,0.9971494,0.9977796,0.97834456,0.93962765,0.8831897,0.8113056,0.72687286,0.63329506,0.5343442,0.43400896,0.33633375,0.24525589,0.16444656,0.09716323,0.04611802,0.013368517,0.0002348721,0.0072490573,0.034126222,0.079782486,0.1423775,0.21938807,0.30770993,0.4037829,0.50373435,0.60353523,0.6991627,0.786762,0.86280215,0.9242179,0.96853364,0.9939631,0.9994812,0.9848654,0.95070505,0.89837706,0.8299906,0.7483025,0.6566054,0.5585957,0.4582088,0.35952163,0.26649705,0.18288484,0.11205539,0.056863755,0.019534677,0.001572907,0.003702432,0.025837451,0.06708565,0.12578443,0.19956762,0.28546104,0.38000244,0.47938085,0.5795904,0.67659175,0.7664747,0.8456163,0.91082627,0.95947605,0.9896077,0.99999756,0.99023277,0.96070695,0.9126104,0.8478817,0.76913,0.6795299,0.5826931,0.4825229,0.38305724,0.28830546,0.20208699,0.1278772,0.06866747,0.026844501,0.0040941834,0.0013335347,0.018673867,0.055416167,0.11007938,0.1804601,0.2637347,0.3565213,0.45509148,0.55547184,0.6536162,0.7455684,0.8276218,0.896469,0.94933474,0.98408806,0.99932814,0.99444044,0.96962225,0.92587376,0.86495864,0.78933215,0.7020429,0.6066094,0.5068785,0.40687037,0.31061625,0.22199607,0.14458206,0.081486404,0.035271525,0.007789612,0.00014838576,0.012655914,0.044808,0.0953086,0.1621221,0.24255529,0.3333659,0.43089342,0.5312066,0.6302619,0.7240664,0.80883884,0.8811623,0.9381212,0.97741973,0.9974737,0.99747485,0.9774231,0.93812656,0.8811596,0.8088356,0.72406274,0.63025796,0.53120255,0.4308894,0.33336204,0.2425518,0.16211912,0.09530622,0.0448063,0.01265499,0.00014829636,0.007790327,0.035273045,0.08148864,0.1445742,0.22198677,0.31060588,0.4068594,0.50686735,0.60659844,0.70204663,0.7893355,0.8649614,0.9258759,0.9696236,0.9944411,0.9993279,0.9840871,0.94933295,0.89646655,0.8276187,0.7455648,0.6536124,0.55546784,0.45508742,0.35651743,0.26373112,0.18046871,0.11008638,0.055421293,0.018676907,0.0013343692,0.004092753,0.026845843,0.06866953,0.12787992,0.20209023,0.28830916,0.3830612,0.482527,0.5826971,0.6795337,0.76913345,0.8478846,0.9126127,0.96070856,0.99023354,0.9999975,0.98960686,0.95948046,0.91083264,0.8456244,0.7664842,0.6766022,0.57960147,0.4793768,0.37999848,0.28545737,0.19956437,0.12578171,0.06708363,0.02583614,0.0037019253,0.0015732348,0.01953581,0.056865633,0.112057954,0.182888,0.26650065,0.3595255,0.45821285,0.5585846,0.6565948,0.7482928,0.8299822,0.89837027,0.9507002,0.98486644,0.9994814,0.99396247,0.9685322,0.92421573,0.8627993,0.78675866,0.69915897,0.60353124,0.5037303,0.4037789,0.30770618,0.2193847,0.14237466,0.07978028,0.034124732,0.007248372,0.00023451447,0.013365954,0.046113312,0.097156614,0.16443828,0.24524623,0.33633763,0.434013,0.53434825,0.633299,0.7268765,0.81130874,0.8831923,0.9396296,0.97834575,0.99777997,0.997149,0.9764782,0.9366008,0.87912434,0.8063656,0.7212574,0.62723047,0.5280749,0.4277877,0.33041131,0.23987094,0.15981624,0.09346527,0.043512672,0.011960804,8.1539154e-5,0.00835368,0.03644383,0.08321965,0.14679566,0.2246091,0.31352344,0.40995455,0.5100153,0.60967237,0.7049086,0.7918851,0.8670958,0.9275092,0.97068983,0.99489725,0.9991557,0.9832934,0.9479499,0.8945403,0.8252339,0.7428174,0.6506132,0.55233777,0.45195264,0.3535043,0.2609611,0.17805341,0.10812324,0.05398938,0.017833978,0.0011143982,0.004504591,0.027867943,0.0702627,0.12997988,0.20461237,0.2911518,0.38610974,0.48565856,0.58578545,0.68246865,0.77178156,0.8501391,0.9143827,0.9619228,0.99084306,0.9999777,0.9889586,0.9582298,0.90902996,0.8433424,0.7638149,0.67365324,0.5764916,0.4762467,0.37695926,0.28263152,0.19706577,0.12371114,0.06552452,0.024851322,0.0033311248,0.0018313527,0.020416796,0.05833268,0.11405191,0.18532848,0.26928928,0.3625499,0.46135107,0.5617101,0.6595817,0.75102067,0.8323411,0.900265,0.9520545,0.9856219,0.99961424,0.99346733,0.96742904,0.922549,0.86063623,0.78418636,0.6962812,0.600464,0.50058186,0.40069127,0.30480373,0.21678445,0.14018142,0.07808247,0.032990783,0.006724,0.00034084916,0.014098704,0.047442943,0.09902951,0.16677898,0.24796039,0.33930138,0.43712002,0.5374733,0.6363161,0.7296641,0.81375444,0.8851975,0.9411135,0.9792527,0.9980664,0.9968034,0.9755144,0.93505776,0.87706417,0.8038714,0.7184296,0.6241832,0.5249309,0.42467374,0.3274529,0.23718733,0.15751562,0.091649234,0.042243242,0.011289179,3.4749508e-5,0.008933663,0.03762716,0.08495867,0.14902022,0.2272296,0.3164484,0.41305324,0.51316285,0.61274195,0.7077764,0.7944355,0.8692261,0.9291334,0.97174263,0.9953361,0.9989629,0.9824768,0.94654226,0.8926079,0.8228477,0.7400738,0.6476226,0.5492208,0.44883493,0.3505115,0.25821388,0.17566252,0.10617563,0.05257517,0.017010152,0.00091418624,0.004936099,0.028913736,0.07188061,0.13210472,0.20715848,0.29401654,0.38917765,0.48880595,0.5888855,0.6853821,0.7744061,0.85236883,0.9161279,0.963113,0.99143034,0.99993837,0.9882942,0.9569671,0.9072111,0.84104687,0.7611352,0.67069733,0.57337874,0.47310233,0.37391013,0.2798005,0.19456702,0.12164536,0.06397498,0.023880512,0.002978146,0.0021104515,0.021312416,0.059809983,0.116051376,0.1877695,0.27207348,0.36556506,0.4644756,0.56481814,0.6625479,0.7537385,0.83468676,0.9021439,0.95339084,0.9863619,0.99972796,0.9929503,0.96630204,0.9208574,0.8584483,0.78159034,0.6933816,0.5973778,0.4974487,0.39762247,0.30192304,0.21420795,0.13801298,0.07640952,0.031880736,0.0062215626,0.00046634674,0.014850706,0.048790514,0.10091835,0.16913292,0.25068453,0.34228593,0.4402447,0.54061216,0.63934255,0.73245615,0.81619954,0.88719714,0.942587,0.9801365,0.9983319,0.9964399,0.97453666,0.93350506,0.87499917,0.80137724,0.715607,0.6211457,0.5217859,0.42156273,0.3245013,0.23451415,0.15522856,0.0898405,0.040985763,0.010633618,7.5399876e-6,0.009535909,0.03883457,0.08672258,0.15126956,0.22987366,0.3193664,0.41614038,0.51629466,0.61579216,0.71062213,0.796962,0.8713316,0.93073297,0.97277176,0.9957553,0.9987503,0.981641,0.945117,0.8906506,0.82043725,0.7373073,0.6446116,0.54608667,0.44570407,0.34751007,0.25546288,0.17327282,0.104252934,0.05118543,0.016209334,0.00073459744,0.0053849816,0.029973,0.07350755,0.13423374,0.20970377,0.29688942,0.39224994,0.4919538,0.591982,0.6883024,0.7770325,0.85459554,0.9178651,0.9642907,0.992001,0.999879,0.98760724,0.95568025,0.905385,0.83874905,0.7584582,0.66774905,0.5702781,0.46997422,0.3708807,0.2769919,0.19209239,0.119594604,0.06244275,0.022928566,0.0026448965,0.0024093091,0.02223131,0.0613119,0.11807576,0.19023478,0.27488026,0.3686002,0.46761677,0.5679387,0.66552204,0.7564333,0.8370079,0.90399784,0.9547029,0.98707914,0.99982154,0.9924163,0.96516216,0.9191492,0.85624623,0.7789831,0.6904744,0.59428775,0.4943004,0.3945428,0.29903615,0.2116302,0.13584831,0.07474515,0.030783772,0.005736232,0.0006121993,0.015618175,0.05014932,0.10281372,0.17148843,0.25340527,0.34526223,0.44335657,0.54373413,0.6423489,0.735239,0.8186322,0.8891815,0.9440431,0.98100555,0.998579,0.996055,0.9735353,0.9319277,0.87290925,0.79885906,0.71276206,0.6180887,0.5186553,0.4184699,0.32157093,0.23186436,0.15296614,0.08805668,0.039752424,0.010000497,1.4901161e-7,0.010157585,0.04006028,0.088502854,0.15353268,0.23252839,0.32230574,0.41924584,0.51944107,0.6188527,0.7134734,0.79948914,0.87343264,0.9323232,0.9737872,0.996153,0.9985192,0.9807903,0.9436811,0.8886874,0.8180258,0.7345449,0.6416095,0.54295075,0.44257534,0.34451467,0.25272155,0.17089605,0.102336556,0.049806654,0.015423775,0.0005739033,0.00585562,0.031055987,0.07515925,0.13638759,0.21227294,0.2997564,0.3953116,0.4950867,0.5950599,0.6912012,0.7796353,0.8567976,0.9195774,0.9654444,0.99255216,0.99979985,0.9869009,0.95437527,0.90353405,0.83642656,0.7557579,0.66477984,0.56715953,0.4668321,0.36784163,0.2741784,0.1896179,0.11756873,0.06093514,0.022000015,0.0023328066,0.0027262866,0.02316457,0.0628238,0.120105386,0.1927003,0.27769595,0.37164053,0.47075918,0.57105654,0.66848963,0.759131,0.839327,0.9058448,0.9560033,0.9877806,0.9998957,0.9918603,0.9639983,0.9174328,0.85404074,0.77637756,0.68757373,0.59120893,0.49116758,0.3914822,0.29617113,0.20907632,0.13369805,0.073097646,0.029705405,0.005270481,0.0007778406,0.016408533,0.051532537,0.10473403,0.17386845,0.25614905,0.34825915,0.44648582,0.54686964,0.64536417,0.73799914,0.8210405,0.8911409,0.9454746,0.9818515,0.9988053,0.99565244,0.9725202,0.9303409,0.87080455,0.796329,0.7099087,0.61502707,0.5155087,0.41536528,0.31863338,0.22921228,0.15070647,0.086280495,0.038531303,0.009383649,1.2487173e-5,0.010795534,0.04129812,0.090290725,0.1557985,0.2351808,0.32523784,0.42233944,0.5225715,0.6218937,0.7163162,0.80200434,0.8755188,0.93389636,0.9747838,0.9965329,0.9982672,0.97991645,0.9422207,0.8866992,0.81559,0.73175967,0.63858724,0.53982836,0.43946406,0.34153992,0.25000322,0.16854376,0.10044509,0.048452288,0.0146611035,0.0004336238,0.0063458383,0.0321576,0.076827824,0.13855588,0.21485353,0.30264527,0.3983923,0.49823505,0.59814894,0.6941065,0.7822398,0.8589961,0.92128146,0.9665853,0.9930813,0.9997014,0.9861789,0.9530588,0.9016761,0.83410215,0.7530607,0.6618185,0.5640535,0.4636913,0.3648078,0.27137387,0.18715572,0.115548134,0.059437603,0.021085858,0.002038896,0.0030644536,0.024121225,0.06436038,0.12215993,0.19518998,0.28050676,0.3746712,0.47388756,0.5741565,0.67143625,0.7618055,0.8416215,0.9076669,0.95727956,0.98846275,0.9999501,0.9912847,0.962816,0.91569144,0.8518106,0.7737484,0.68465155,0.5881116,0.48801982,0.388411,0.29330027,0.20652148,0.13157266,0.07147491,0.02865079,0.004826486,0.00096282363,0.017216086,0.052930146,0.10666531,0.17625558,0.25889578,0.3512548,0.4496096,0.54999566,0.6483664,0.7407566,0.8234478,0.89309436,0.9468955,0.9826825,0.99901295,0.99522835,0.97148144,0.92872936,0.86869544,0.79379964,0.70706093,0.6119683,0.51236916,0.41227147,0.31571007,0.22657731,0.14846605,0.08452493,0.037331372,0.008787721,4.4554472e-5,0.011454314,0.04256016,0.09210351,0.15808895,0.23785663,0.32819113,0.4254512,0.52571625,0.6249447,0.7191367,0.80449545,0.87758017,0.9354485,0.97575927,0.99689233,0.9979961,0.9790258,0.9407463,0.88470054,0.8131477,0.7289721,0.6355668,0.5366968,0.43634,0.33855695,0.24728158,0.16619313,0.098560244,0.047109187,0.01391387,0.00031244755,0.0068531334,0.033272266,0.07850495,0.14073318,0.21743912,0.30553496,0.40146953,0.50137585,0.6012267,0.69699717,0.78482676,0.8611752,0.9229648,0.967705,0.9935922,0.99958277,0.9854341,0.951718,0.89979327,0.83175313,0.7503403,0.6588363,0.5609297,0.46056712,0.36179402,0.26859194,0.18471184,0.11354762,0.057961047,0.020192832,0.0017653704,0.0034214556,0.02509436,0.06591043,0.124224395,0.19768566,0.28333306,0.37772158,0.47703218,0.5772686,0.6743904,0.7644826,0.8439137,0.90948176,0.95854384,0.98912233,0.99998456,0.9906927,0.9616183,0.9139379,0.8495718,0.7711147,0.6817292,0.5850182,0.48488018,0.38535166,0.2904445,0.20398444,0.12945661,0.06986126,0.027609676,0.0043998957,0.0011674762,0.018042713,0.05434537,0.10861209,0.17865548,0.26165205,0.3542563,0.4527354,0.5531273,0.65137005,0.7435112,0.82583654,0.8950275,0.94829524,0.98349243,0.99920034,0.99478567,0.97042656,0.92710483,0.86656666,0.7912463,0.7041911,0.608905,0.5092291,0.40918115,0.31279406,0.22395313,0.14623952,0.082785755,0.03614968,0.008211136,9.649992e-5,0.012134045,0.04383719,0.09392801,0.16038734,0.2405363,0.33114406,0.42855832,0.52885234,0.6279834,0.7219554,0.8069867,0.8796365,0.9369835,0.9767159,0.9972322,0.99770534,0.9781162,0.9392545,0.88268673,0.810693,0.7261755,0.63253355,0.5335561,0.43322605,0.3355876,0.24457648,0.1638614,0.09669581,0.045787215,0.0131877065,0.00021129847,0.0073810816,0.034410834,0.08020693,0.14292464,0.22003585,0.30843228,0.40455067,0.5045166,0.60430044,0.69988,0.7874025,0.86333996,0.9246354,0.9688089,0.99408484,0.9994446,0.98467195,0.9503625,0.89789915,0.8293968,0.7476166,0.65585506,0.55781114,0.4574293,0.35877103,0.2658056,0.18228042,0.11156234,0.056501955,0.01931873,0.0015115142,0.0037980676,0.026086241,0.06747761,0.1263037,0.2001994,0.2861748,0.3807694,0.4801701,0.5803701,0.6773305,0.7671428,0.84618664,0.911276,0.959787,0.9897642,0.9999994,0.99007833,0.9604025,0.912168,0.84731936,0.7684704,0.6787996,0.58192146,0.48174113,0.3822968,0.28759703,0.20145297,0.12735006,0.06826848,0.026589751,0.0039939284,0.0013918281,0.018888324,0.055778176,0.110574335,0.18106803,0.2644177,0.3572709,0.45587063,0.55624926,0.6543605,0.7462495,0.8282124,0.8969452,0.94967735,0.98428327,0.9993681,0.99432355,0.9693505,0.9254594,0.8644182,0.7886876,0.70132005,0.6058375,0.5060887,0.40609443,0.30988544,0.22133985,0.14402694,0.08105889,0.034983486,0.00765267,0.0001680553,0.01283139,0.04513222,0.09576851,0.16269916,0.2432262,0.33410364,0.43166828,0.5319873,0.63102436,0.7247722,0.8094597,0.881673,0.93850124,0.9776538,0.9975524,0.9973949,0.97718775,0.93774545,0.8806578,0.8082201,0.72336316,0.62950253,0.5304218,0.43011472,0.3326247,0.24188149,0.16154289,0.09484732,0.044483185,0.012480706,0.0001296699,0.007929832,0.03556505,0.08192137,0.14513022,0.22264364,0.31133717,0.40763557,0.5076572,0.6073701,0.702755,0.78997314,0.8654957,0.92628527,0.96989155,0.9945568,0.9992868,0.9838907,0.9489893,0.8959894,0.82702744,0.7448831,0.65286046,0.55468273,0.45430076,0.35576093,0.2630353,0.17986155,0.10959241,0.055060387,0.018463612,0.0012773275,0.00419423,0.027099282,0.06906572,0.12840286,0.20271888,0.2890181,0.3838219,0.4833088,0.5834685,0.68026364,0.76979244,0.848446,0.9130583,0.9610149,0.99038833,0.9999944,0.98944604,0.9591684,0.9103819,0.84505314,0.7658155,0.67586297,0.57882154,0.47860283,0.3792392,0.28475103,0.19893941,0.12526336,0.06669277,0.025588512,0.0036075413,0.0016358495,0.01975292,0.057228506,0.11255196,0.1834991,0.2671994,0.3602838,0.45900005,0.55936897,0.65734476,0.74897814,0.8305752,0.8988471,0.9510417,0.98505497,0.99951637,0.9938407,0.9682585,0.9238012,0.8622606,0.7861175,0.69844115,0.6027658,0.502948,0.40301138,0.3069843,0.21873128,0.14182305,0.07935277,0.03383851,0.0071149766,0.0002593398,0.013547987,0.04644522,0.09762499,0.16502428,0.24592626,0.337077,0.43478853,0.53512865,0.6340528,0.72757334,0.8119205,0.8836944,0.9400017,0.97857285,0.997853,0.99706495,0.97623813,0.9362153,0.8786089,0.80574095,0.72054875,0.6264664,0.52728623,0.42700616,0.32966843,0.23919669,0.15923777,0.09301478,0.043194026,0.011791319,6.80089e-5,0.008496672,0.03673756,0.08365232,0.14734977,0.22526237,0.31424952,0.41072413,0.5107974,0.6104429,0.7056289,0.792526,0.8676317,0.92791826,0.9709557,0.9950092,0.99910915,0.98309034,0.94759834,0.894064,0.8246393,0.7421333,0.64986706,0.5515597,0.45117405,0.3527565,0.2602743,0.17745528,0.10763788,0.053636342,0.017627478,0.0010623038,0.0046110153,0.028128564,0.070667,0.13051161,0.20525008,0.29186976,0.38687903,0.48644817,0.5865635,0.68318963,0.7724378,0.8506971,0.91481996,0.9622217,0.99099153,0.9999697,0.9887945,0.9579162,0.9085796,0.8427733,0.7631501,0.67291224,0.5757109,0.47545773,0.3761938,0.28192043,0.19643775,0.123191476,0.06513414,0.02460599,0.0032407045,0.0018995106,0.020638645,0.058699906,0.1145497,0.18593678,0.2699836,0.36330223,0.46213105,0.56248635,0.6603229,0.7516969,0.83292514,0.90073335,0.9523915,0.98580945,0.99964464,0.9933394,0.96714807,0.9221262,0.86008865,0.78353614,0.69555444,0.5996901,0.49980724,0.3999247,0.30408376,0.21614012,0.13963869,0.07766321,0.032711923,0.006596744,0.00037035346,0.0142837465,0.047776103,0.09949735,0.16736832,0.24864292,0.34004956,0.43790376,0.538261,0.63707596,0.73036546,0.8143691,0.8857006,0.9414848,0.979473,0.99813455,0.9967145,0.97527206,0.9346717,0.87654996,0.8032497,0.7177257,0.62342525,0.5241496,0.42390046,0.32671887,0.23651567,0.15694052,0.091193914,0.041926056,0.011122882,2.6077032e-5,0.009082943,0.037928373,0.08539966,0.14958325,0.22789195,0.31717628,0.41382372,0.51394486,0.61350393,0.7084877,0.7950674,0.8697532,0.9295344,0.9720013,0.99544215,0.9989119,0.9822709,0.94618636,0.89211833,0.82224417,0.7393806,0.6468677,0.5484347,0.44804925,0.3497579,0.25752276,0.17506176,0.105698824,0.052226543,0.01680842,0.0008675158,0.005046338,0.029176474,0.072285235,0.13263494,0.20779291,0.2947296,0.38994062,0.48958805,0.5896627,0.6861155,0.775066,0.8529289,0.9165653,0.9634102,0.99157536,0.9999254,0.98812366,0.95664597,0.90676117,0.84047437,0.76046777,0.66996187,0.5726049,0.4723212,0.37315327,0.27909845,0.19394806,0.12113443,0.06359267,0.023642212,0.002892673,0.0021835864,0.021541178,0.060185164,0.11655784,0.18838686,0.27277684,0.36632603,0.46526355,0.56560504,0.66329825,0.754409,0.8352647,0.902606,0.9537201,0.9865428,0.9997532,0.9928188,0.96601915,0.9204346,0.85789984,0.7809404,0.69265646,0.5966066,0.49666265,0.39684945,0.301198,0.21356016,0.13746855,0.07599035,0.031603754,0.0060973763,0.00050124526,0.015039623,0.049126476,0.1013878,0.16971982,0.25136292,0.3430285,0.44102144,0.5413918,0.6400937,0.73315185,0.8168081,0.887694,0.9429523,0.98035526,0.99839544,0.99634516,0.97428715,0.93311095,0.8744762,0.80074656,0.7148906,0.6203755,0.5210082,0.420794,0.3237726,0.2338548,0.15466243,0.089393616,0.040676147,0.010473728,3.874302e-6,0.009689301,0.039138883,0.087165534,0.1518333,0.23053548,0.3200996,0.41691917,0.5170841,0.61656046,0.7113383,0.79759717,0.87186265,0.9311355,0.9730295,0.9958559,0.9986947,0.98143137,0.9447601,0.8901619,0.8198364,0.73661846,0.6438626,0.5453077,0.4449227,0.3467616,0.2547775,0.17267817,0.103773,0.050837815,0.016010463,0.00069242716,0.0055012107,0.03024295,0.07392034,0.13477537,0.2103504,0.29760104,0.39301026,0.49273217,0.5927508,0.6890269,0.7776834,0.85514665,0.9182942,0.9645804,0.9921404,0.9998611,0.9874327,0.9553561,0.9049244,0.8381676,0.7577817,0.66700476,0.5694959,0.4691858,0.37011772,0.27628177,0.19146743,0.11908987,0.062066555,0.022696108,0.002565533,0.0024866164,0.022462547,0.061687768,0.118581116,0.19084921,0.27558243,0.3693588,0.46840122,0.5687174,0.6662636,0.75710785,0.83759093,0.90446275,0.95503086,0.98725694,0.999842,0.992278,0.96487045,0.9187243,0.85569954,0.77833676,0.68975437,0.5935194,0.49351817,0.39377826,0.29832008,0.2109915,0.13531268,0.07433221,0.03051278,0.0056180954,0.0006516874,0.015813708,0.0504947,0.103294015,0.17208433,0.25409275,0.34601355,0.44414145,0.5445248,0.64310956,0.7359257,0.81923175,0.8896698,0.94440216,0.9812186,0.9986373,0.9959563,0.9732836,0.9315331,0.87238514,0.7982285,0.71205044,0.6173247,0.5178698,0.4176907,0.32083327,0.23119798,0.15239793,0.08760953,0.039444357,0.009843141,1.4007092e-6,0.010314286,0.040366143,0.08894557,0.15409437,0.23318967,0.32303715,0.42001796,0.5202228,0.6196124,0.714184,0.8001182,0.8739549,0.9327176,0.97403777,0.9962497,0.9984578,0.9805729,0.94331634,0.88819,0.8174159,0.73384356,0.6408481,0.5421751,0.4418021,0.343775,0.25204524,0.17030752,0.10186285,0.04946685,0.01523158,0.00053703785,0.0059761703,0.031329304,0.07557428,0.1369276,0.2129162,0.30047697,0.39608413,0.49587658,0.5958352,0.69193083,0.78028977,0.85735047,0.9200086,0.96573377,0.99268544,0.99977726,0.9867233,0.9540483,0.90307164,0.83584744,0.75508547,0.66404104,0.56638426,0.4660478,0.36708367,0.27347732,0.189002,0.11706281,0.060557783,0.021768898,0.002257228,0.0028092563,0.02340281,0.063207686,0.12062192,0.1933268,0.2783935,0.37239307,0.47153637,0.5718308,0.66922593,0.7597997,0.8399011,0.90630126,0.9563236,0.9879527,0.9999112,0.9917184,0.9637048,0.9169995,0.8534852,0.7757189,0.6868413,0.59043217,0.49037778,0.39071128,0.29544663,0.20843115,0.13316864,0.0726929,0.029441655,0.005158365,0.00082206726,0.01660791,0.05187899,0.10521358,0.17446181,0.2568356,0.34900835,0.44726747,0.5476522,0.64611614,0.73869014,0.8216456,0.89163244,0.9458327,0.9820618,0.9988592,0.9955479,0.97226006,0.9299362,0.8702819,0.7957017,0.70920193,0.6142656,0.5147268,0.41459438,0.3179046,0.228555,0.15014717,0.08583957,0.038229257,0.0092327,1.8656254e-5,0.010958612,0.041613042,0.09074402,0.15637186,0.23585117,0.32597816,0.42311984,0.52336437,0.6226633,0.71701777,0.80262434,0.8760336,0.9342836,0.9750279,0.9966243,0.9982015,0.9796964,0.9418542,0.8862016,0.8149799,0.7310628,0.63783175,0.53904283,0.43868193,0.34079275,0.24931946,0.16795278,0.09997073,0.04811281,0.014471352,0.00040128827,0.006470084,0.032432824,0.077243984,0.13909552,0.2154949,0.30336428,0.39915836,0.49901733,0.5989178,0.694829,0.78288674,0.85954285,0.92170435,0.9668679,0.99321127,0.9996736,0.98599386,0.9527241,0.90120524,0.83351266,0.75237745,0.6610691,0.5632662,0.4629149,0.36405852,0.27068013,0.18654734,0.11504844,0.059068203,0.020861685,0.0019687712,0.0031517744,0.024362415,0.06474671,0.12267524,0.19581348,0.28121504,0.3754342,0.47467452,0.5749376,0.67217803,0.7624797,0.8421992,0.90812486,0.9576,0.9886284,0.9999605,0.9911391,0.9625201,0.9152573,0.8512542,0.77309346,0.6839244,0.5873395,0.48723587,0.3876449,0.29258475,0.20588541,0.1310404,0.07106945,0.02838847,0.004717618,0.0010119379,0.017420202,0.053281844,0.10714993,0.17685503,0.25958475,0.35200548,0.45039368,0.55077964,0.6491187,0.7414486,0.824044,0.89357734,0.9472467,0.98288655,0.9990616,0.9951194,0.9712192,0.9283234,0.86816275,0.79316163,0.7063417,0.6112057,0.51158714,0.41149956,0.31498134,0.2259211,0.14790747,0.08408809,0.037033886,0.008641243,5.570054e-5,0.011623025,0.04287654,0.09255642,0.15866154,0.2385247,0.3289278,0.42622858,0.52650124,0.6257057,0.7198447,0.8051201,0.8780975,0.9358325,0.9759993,0.99697906,0.9979253,0.9788005,0.94037455,0.88419795,0.8125345,0.7282713,0.63480806,0.53591084,0.4355642,0.33781677,0.24660525,0.16560972,0.09809327,0.046776652,0.013730317,0.00028526783,0.006983757,0.033555508,0.078929365,0.14127767,0.21808484,0.30625588,0.40223846,0.50216,0.60199636,0.6977194,0.7854725,0.8617196,0.92338455,0.96798337,0.9937175,0.99955016,0.9852458,0.9513812,0.89932185,0.8311653,0.7496595,0.6580907,0.5601485,0.45978162,0.361036,0.26789284,0.1841051,0.11305112,0.05759558,0.019972831,0.0017000735,0.0035138726,0.025340855,0.066301525,0.12474468,0.19831368,0.28404436,0.37848026,0.4778146,0.5780423,0.6751251,0.7651485,0.84448314,0.9099323,0.95885706,0.98928523,0.9999901,0.99054056,0.9613172,0.91349864,0.8490114,0.7704555,0.6809975,0.5842444,0.48409447,0.3845857,0.28972933,0.20334977,0.12892735,0.069462955,0.027353913,0.0042968392,0.0012216568,0.018252313,0.054701895,0.10910177,0.17925882,0.2623442,0.35501027,0.45352086,0.55390507,0.65211546,0.744195,0.8264309,0.8955078,0.94864243,0.98369217,0.9992442,0.9946717,0.970159,0.92669404,0.8660296,0.7906101,0.70347583,0.6081395,0.508445,0.40840918,0.3120654,0.22329804,0.14568374,0.08235201,0.03585571,0.008069277,0.000112473965,0.012306154,0.044158638,0.09438604,0.16096401,0.24120817,0.33188462,0.42933738,0.529639,0.62874544,0.7226621,0.8076037,0.8801455,0.93736386,0.97695184,0.9973141,0.9976295,0.9778856,0.93887794,0.8821794,0.81007487,0.7254716,0.63177913,0.5327751,0.43244946,0.3348472,0.24390227,0.16328022,0.09623167,0.045458764,0.013008624,0.00018897653,0.0075167418,0.03469643,0.08063266,0.14347333,0.22068593,0.3091573,0.40532196,0.50530267,0.6050698,0.7006016,0.78804713,0.86388147,0.9250477,0.9690803,0.9942044,0.99940705,0.9844786,0.9500208,0.8974227,0.82880443,0.7469323,0.6551062,0.5570277,0.4566504,0.35802054,0.2651139,0.1816755,0.111068845,0.056139916,0.01910299,0.0014510155,0.0038955212,0.026338011,0.067873776,0.12682858,0.2008259,0.28688294,0.3815307,0.48095393,0.581145,0.678065,0.76780725,0.8467542,0.9117235,0.96009624,0.9899225,1.0],"x":[-804.24774,-804.04663,-803.8455,-803.6444,-803.4433,-803.2422,-803.041,-802.8399,-802.6388,-802.4377,-802.2366,-802.03546,-801.83435,-801.63324,-801.4321,-801.231,-801.0299,-800.8288,-800.6277,-800.4266,-800.22546,-800.02435,-799.82324,-799.62213,-799.421,-799.2199,-799.0188,-798.8177,-798.6166,-798.41547,-798.21436,-798.01324,-797.81213,-797.611,-797.4099,-797.2088,-797.0077,-796.8066,-796.60547,-796.40436,-796.20325,-796.00214,-795.801,-795.5999,-795.3988,-795.1977,-794.9966,-794.7955,-794.59436,-794.39325,-794.19214,-793.99097,-793.78986,-793.58875,-793.38763,-793.1865,-792.9854,-792.7843,-792.5832,-792.3821,-792.18097,-791.97986,-791.77875,-791.57764,-791.3765,-791.1754,-790.9743,-790.7732,-790.5721,-790.371,-790.16986,-789.96875,-789.76764,-789.5665,-789.3654,-789.1643,-788.9632,-788.7621,-788.561,-788.35986,-788.15875,-787.95764,-787.75653,-787.5554,-787.3543,-787.1532,-786.9521,-786.751,-786.54987,-786.34875,-786.14764,-785.94653,-785.7454,-785.5443,-785.3432,-785.1421,-784.9409,-784.7398,-784.5387,-784.3376,-784.1365,-783.93536,-783.73425,-783.53314,-783.33203,-783.1309,-782.9298,-782.7287,-782.5276,-782.3265,-782.12537,-781.92426,-781.72314,-781.52203,-781.3209,-781.1198,-780.9187,-780.7176,-780.5165,-780.31537,-780.11426,-779.91315,-779.71204,-779.5109,-779.3098,-779.1087,-778.9076,-778.7065,-778.5054,-778.30426,-778.10315,-777.90204,-777.7009,-777.4998,-777.2987,-777.0976,-776.8965,-776.6954,-776.49426,-776.29315,-776.092,-775.89087,-775.68976,-775.48865,-775.28754,-775.0864,-774.8853,-774.6842,-774.4831,-774.282,-774.0809,-773.87976,-773.67865,-773.47754,-773.2764,-773.0753,-772.8742,-772.6731,-772.472,-772.2709,-772.06976,-771.86865,-771.66754,-771.46643,-771.2653,-771.0642,-770.8631,-770.662,-770.4609,-770.25977,-770.05865,-769.85754,-769.65643,-769.4553,-769.2542,-769.0531,-768.852,-768.6509,-768.44977,-768.24866,-768.04755,-767.84644,-767.6453,-767.4442,-767.2431,-767.04193,-766.8408,-766.6397,-766.4386,-766.2375,-766.0364,-765.83527,-765.63416,-765.43304,-765.23193,-765.0308,-764.8297,-764.6286,-764.4275,-764.2264,-764.02527,-763.82416,-763.62305,-763.42194,-763.2208,-763.0197,-762.8186,-762.6175,-762.4164,-762.2153,-762.01416,-761.81305,-761.61194,-761.4108,-761.2097,-761.0086,-760.8075,-760.6064,-760.4053,-760.20416,-760.00305,-759.80194,-759.6008,-759.3997,-759.1986,-758.9975,-758.7964,-758.5953,-758.39417,-758.19305,-757.9919,-757.7908,-757.58966,-757.38855,-757.18744,-756.9863,-756.7852,-756.5841,-756.383,-756.1819,-755.9808,-755.77966,-755.57855,-755.37744,-755.17633,-754.9752,-754.7741,-754.573,-754.3719,-754.1708,-753.96967,-753.76855,-753.56744,-753.36633,-753.1652,-752.9641,-752.763,-752.5619,-752.3608,-752.15967,-751.95856,-751.75745,-751.55634,-751.3552,-751.1541,-750.953,-750.7519,-750.5508,-750.3497,-750.14856,-749.94745,-749.74634,-749.5452,-749.3441,-749.14294,-748.94183,-748.7407,-748.5396,-748.3385,-748.1374,-747.9363,-747.73517,-747.53406,-747.33295,-747.13184,-746.9307,-746.7296,-746.5285,-746.3274,-746.1263,-745.9252,-745.72406,-745.52295,-745.32184,-745.1207,-744.9196,-744.7185,-744.5174,-744.3163,-744.1152,-743.91406,-743.71295,-743.51184,-743.3107,-743.1096,-742.9085,-742.7074,-742.5063,-742.3052,-742.10406,-741.90295,-741.70184,-741.50073,-741.2996,-741.0985,-740.8974,-740.6963,-740.4952,-740.29407,-740.0929,-739.8918,-739.6907,-739.48956,-739.28845,-739.08734,-738.8862,-738.6851,-738.484,-738.2829,-738.0818,-737.8807,-737.67957,-737.47845,-737.27734,-737.07623,-736.8751,-736.674,-736.4729,-736.2718,-736.0707,-735.86957,-735.66846,-735.46735,-735.26624,-735.0651,-734.864,-734.6629,-734.4618,-734.2607,-734.0596,-733.85846,-733.65735,-733.45624,-733.2551,-733.054,-732.8529,-732.6518,-732.4507,-732.2496,-732.04846,-731.84735,-731.64624,-731.4451,-731.24396,-731.04285,-730.84174,-730.6406,-730.4395,-730.2384,-730.0373,-729.8362,-729.6351,-729.43396,-729.23285,-729.03174,-728.8306,-728.6295,-728.4284,-728.2273,-728.0262,-727.8251,-727.62396,-727.42285,-727.22174,-727.0206,-726.8195,-726.6184,-726.4173,-726.2162,-726.0151,-725.81396,-725.61285,-725.41174,-725.21063,-725.0095,-724.8084,-724.6073,-724.4062,-724.2051,-724.00397,-723.80286,-723.60175,-723.40063,-723.1995,-722.9984,-722.7973,-722.5962,-722.3951,-722.1939,-721.9928,-721.7917,-721.5906,-721.38947,-721.18835,-720.98724,-720.78613,-720.585,-720.3839,-720.1828,-719.9817,-719.7806,-719.57947,-719.37836,-719.17725,-718.97614,-718.775,-718.5739,-718.3728,-718.1717,-717.9706,-717.7695,-717.56836,-717.36725,-717.16614,-716.965,-716.7639,-716.5628,-716.3617,-716.1606,-715.9595,-715.75836,-715.55725,-715.35614,-715.155,-714.9539,-714.7528,-714.5517,-714.3506,-714.1495,-713.94836,-713.74725,-713.54614,-713.34503,-713.14386,-712.94275,-712.74164,-712.5405,-712.3394,-712.1383,-711.9372,-711.7361,-711.535,-711.33386,-711.13275,-710.93164,-710.7305,-710.5294,-710.3283,-710.1272,-709.9261,-709.725,-709.52386,-709.32275,-709.12164,-708.92053,-708.7194,-708.5183,-708.3172,-708.1161,-707.915,-707.71387,-707.51276,-707.31165,-707.11053,-706.9094,-706.7083,-706.5072,-706.3061,-706.105,-705.9039,-705.70276,-705.50165,-705.30054,-705.0994,-704.8983,-704.6972,-704.4961,-704.2949,-704.0938,-703.8927,-703.6916,-703.4905,-703.28937,-703.08826,-702.88715,-702.68604,-702.4849,-702.2838,-702.0827,-701.8816,-701.6805,-701.4794,-701.27826,-701.07715,-700.87604,-700.6749,-700.4738,-700.2727,-700.0716,-699.8705,-699.6694,-699.46826,-699.26715,-699.06604,-698.8649,-698.6638,-698.4627,-698.2616,-698.0605,-697.8594,-697.65826,-697.45715,-697.25604,-697.05493,-696.8538,-696.6527,-696.4516,-696.2505,-696.0494,-695.84827,-695.64716,-695.44604,-695.2449,-695.04376,-694.84265,-694.64154,-694.4404,-694.2393,-694.0382,-693.8371,-693.636,-693.4349,-693.23376,-693.03265,-692.83154,-692.63043,-692.4293,-692.2282,-692.0271,-691.826,-691.6249,-691.42377,-691.22266,-691.02155,-690.82043,-690.6193,-690.4182,-690.2171,-690.016,-689.8149,-689.6138,-689.41266,-689.21155,-689.01044,-688.8093,-688.6082,-688.4071,-688.206,-688.0049,-687.8038,-687.60266,-687.40155,-687.20044,-686.9993,-686.7982,-686.5971,-686.39594,-686.1948,-685.9937,-685.7926,-685.5915,-685.3904,-685.1893,-684.98816,-684.78705,-684.58594,-684.3848,-684.1837,-683.9826,-683.7815,-683.5804,-683.3793,-683.17816,-682.97705,-682.77594,-682.5748,-682.3737,-682.1726,-681.9715,-681.7704,-681.5693,-681.36816,-681.16705,-680.96594,-680.76483,-680.5637,-680.3626,-680.1615,-679.9604,-679.7593,-679.55817,-679.35706,-679.15594,-678.95483,-678.7537,-678.5526,-678.3515,-678.1504,-677.9493,-677.74817,-677.54706,-677.3459,-677.1448,-676.94366,-676.74255,-676.54144,-676.34033,-676.1392,-675.9381,-675.737,-675.5359,-675.3348,-675.13367,-674.93256,-674.73145,-674.53033,-674.3292,-674.1281,-673.927,-673.7259,-673.5248,-673.32367,-673.12256,-672.92145,-672.72034,-672.5192,-672.3181,-672.117,-671.9159,-671.7148,-671.5137,-671.31256,-671.11145,-670.91034,-670.7092,-670.5081,-670.307,-670.1059,-669.9048,-669.7037,-669.50256,-669.30145,-669.10034,-668.89923,-668.6981,-668.497,-668.29584,-668.0947,-667.8936,-667.6925,-667.4914,-667.2903,-667.0892,-666.88806,-666.68695,-666.48584,-666.2847,-666.0836,-665.8825,-665.6814,-665.4803,-665.2792,-665.07806,-664.87695,-664.67584,-664.47473,-664.2736,-664.0725,-663.8714,-663.6703,-663.4692,-663.26807,-663.06696,-662.86584,-662.66473,-662.4636,-662.2625,-662.0614,-661.8603,-661.6592,-661.45807,-661.25696,-661.05585,-660.85474,-660.6536,-660.4525,-660.2514,-660.0503,-659.8492,-659.6481,-659.4469,-659.2458,-659.0447,-658.84357,-658.64246,-658.44135,-658.24023,-658.0391,-657.838,-657.6369,-657.4358,-657.2347,-657.03357,-656.83246,-656.63135,-656.43024,-656.2291,-656.028,-655.8269,-655.6258,-655.4247,-655.2236,-655.02246,-654.82135,-654.62024,-654.4191,-654.218,-654.0169,-653.8158,-653.6147,-653.4136,-653.21246,-653.01135,-652.81024,-652.60913,-652.408,-652.2069,-652.0058,-651.8047,-651.6036,-651.40247,-651.20135,-651.00024,-650.79913,-650.598,-650.39685,-650.19574,-649.9946,-649.7935,-649.5924,-649.3913,-649.1902,-648.9891,-648.78796,-648.58685,-648.38574,-648.18463,-647.9835,-647.7824,-647.5813,-647.3802,-647.1791,-646.97797,-646.77686,-646.57574,-646.37463,-646.1735,-645.9724,-645.7713,-645.5702,-645.3691,-645.16797,-644.96686,-644.76575,-644.56464,-644.3635,-644.1624,-643.9613,-643.7602,-643.5591,-643.358,-643.15686,-642.95575,-642.75464,-642.5535,-642.3524,-642.1513,-641.9502,-641.7491,-641.548,-641.3468,-641.1457,-640.9446,-640.74347,-640.54236,-640.34125,-640.14014,-639.939,-639.7379,-639.5368,-639.3357,-639.1346,-638.9335,-638.73236,-638.53125,-638.33014,-638.129,-637.9279,-637.7268,-637.5257,-637.3246,-637.1235,-636.92236,-636.72125,-636.52014,-636.31903,-636.1179,-635.9168,-635.7157,-635.5146,-635.3135,-635.11237,-634.91125,-634.71014,-634.50903,-634.3079,-634.1068,-633.9057,-633.7046,-633.5035,-633.30237,-633.10126,-632.90015,-632.69904,-632.49786,-632.29675,-632.09564,-631.89453,-631.6934,-631.4923,-631.2912,-631.0901,-630.889,-630.68787,-630.48676,-630.28564,-630.08453,-629.8834,-629.6823,-629.4812,-629.2801,-629.079,-628.87787,-628.67676,-628.47565,-628.27454,-628.0734,-627.8723,-627.6712,-627.4701,-627.269,-627.0679,-626.86676,-626.66565,-626.46454,-626.2634,-626.0623,-625.8612,-625.6601,-625.459,-625.2579,-625.05676,-624.85565,-624.65454,-624.4534,-624.2523,-624.0512,-623.8501,-623.649,-623.4478,-623.2467,-623.0456,-622.8445,-622.6434,-622.44226,-622.24115,-622.04004,-621.8389,-621.6378,-621.4367,-621.2356,-621.0345,-620.8334,-620.63226,-620.43115,-620.23004,-620.02893,-619.8278,-619.6267,-619.4256,-619.2245,-619.0234,-618.82227,-618.62115,-618.42004,-618.21893,-618.0178,-617.8167,-617.6156,-617.4145,-617.2134,-617.01227,-616.81116,-616.61005,-616.40894,-616.2078,-616.0067,-615.8056,-615.6045,-615.4034,-615.2023,-615.00116,-614.80005,-614.5989,-614.39777,-614.19666,-613.99554,-613.79443,-613.5933,-613.3922,-613.1911,-612.99,-612.7889,-612.58777,-612.38666,-612.18555,-611.98444,-611.7833,-611.5822,-611.3811,-611.18,-610.9789,-610.7778,-610.57666,-610.37555,-610.17444,-609.9733,-609.7722,-609.5711,-609.37,-609.1689,-608.9678,-608.76666,-608.56555,-608.36444,-608.1633,-607.9622,-607.7611,-607.56,-607.3589,-607.1578,-606.95667,-606.75555,-606.55444,-606.35333,-606.1522,-605.9511,-605.75,-605.5488,-605.3477,-605.1466,-604.9455,-604.7444,-604.5433,-604.34216,-604.14105,-603.93994,-603.73883,-603.5377,-603.3366,-603.1355,-602.9344,-602.7333,-602.53217,-602.33105,-602.12994,-601.92883,-601.7277,-601.5266,-601.3255,-601.1244,-600.9233,-600.72217,-600.52106,-600.31995,-600.11884,-599.9177,-599.7166,-599.5155,-599.3144,-599.1133,-598.9122,-598.71106,-598.50995,-598.30884,-598.1077,-597.9066,-597.7055,-597.5044,-597.3033,-597.1022,-596.90106,-596.69995,-596.4988,-596.29767,-596.09656,-595.89545,-595.69434,-595.4932,-595.2921,-595.091,-594.8899,-594.6888,-594.4877,-594.28656,-594.08545,-593.88434,-593.6832,-593.4821,-593.281,-593.0799,-592.8788,-592.6777,-592.47656,-592.27545,-592.07434,-591.8732,-591.6721,-591.471,-591.2699,-591.0688,-590.8677,-590.66656,-590.46545,-590.26434,-590.06323,-589.8621,-589.661,-589.4599,-589.2588,-589.0577,-588.85657,-588.65546,-588.45435,-588.25323,-588.0521,-587.851,-587.64984,-587.4487,-587.2476,-587.0465,-586.8454,-586.6443,-586.4432,-586.24207,-586.04095,-585.83984,-585.63873,-585.4376,-585.2365,-585.0354,-584.8343,-584.6332,-584.43207,-584.23096,-584.02985,-583.82874,-583.6276,-583.4265,-583.2254,-583.0243,-582.8232,-582.6221,-582.42096,-582.21985,-582.01874,-581.8176,-581.6165,-581.4154,-581.2143,-581.0132,-580.8121,-580.61096,-580.40985,-580.20874,-580.0076,-579.8065,-579.6054,-579.4043,-579.2032,-579.0021,-578.80096,-578.5998,-578.3987,-578.1976,-577.99646,-577.79535,-577.59424,-577.3931,-577.192,-576.9909,-576.7898,-576.5887,-576.3876,-576.18646,-575.98535,-575.78424,-575.5831,-575.382,-575.1809,-574.9798,-574.7787,-574.5776,-574.37646,-574.17535,-573.97424,-573.77313,-573.572,-573.3709,-573.1698,-572.9687,-572.7676,-572.56647,-572.36536,-572.16425,-571.96313,-571.762,-571.5609,-571.3598,-571.1587,-570.9576,-570.7565,-570.55536,-570.35425,-570.15314,-569.952,-569.75085,-569.54974,-569.34863,-569.1475,-568.9464,-568.7453,-568.5442,-568.3431,-568.14197,-567.94086,-567.73975,-567.53864,-567.3375,-567.1364,-566.9353,-566.7342,-566.5331,-566.332,-566.13086,-565.92975,-565.72864,-565.5275,-565.3264,-565.1253,-564.9242,-564.7231,-564.522,-564.32086,-564.11975,-563.91864,-563.7175,-563.5164,-563.3153,-563.1142,-562.9131,-562.712,-562.51086,-562.30975,-562.10864,-561.90753,-561.7064,-561.5053,-561.3042,-561.1031,-560.902,-560.7008,-560.4997,-560.2986,-560.0975,-559.89636,-559.69525,-559.49414,-559.293,-559.0919,-558.8908,-558.6897,-558.4886,-558.2875,-558.08636,-557.88525,-557.68414,-557.48303,-557.2819,-557.0808,-556.8797,-556.6786,-556.4775,-556.27637,-556.07526,-555.87415,-555.67303,-555.4719,-555.2708,-555.0697,-554.8686,-554.6675,-554.4664,-554.26526,-554.06415,-553.86304,-553.6619,-553.4608,-553.2597,-553.0586,-552.8575,-552.6564,-552.45526,-552.25415,-552.05304,-551.8519,-551.65076,-551.44965,-551.24854,-551.0474,-550.8463,-550.6452,-550.4441,-550.243,-550.0419,-549.84076,-549.63965,-549.43854,-549.2374,-549.0363,-548.8352,-548.6341,-548.433,-548.2319,-548.03076,-547.82965,-547.62854,-547.4274,-547.2263,-547.0252,-546.8241,-546.623,-546.4219,-546.22076,-546.01965,-545.81854,-545.61743,-545.4163,-545.2152,-545.0141,-544.813,-544.6119,-544.41077,-544.20966,-544.00854,-543.80743,-543.6063,-543.4052,-543.2041,-543.003,-542.8018,-542.6007,-542.3996,-542.1985,-541.9974,-541.79626,-541.59515,-541.39404,-541.19293,-540.9918,-540.7907,-540.5896,-540.3885,-540.1874,-539.98627,-539.78516,-539.58405,-539.38293,-539.1818,-538.9807,-538.7796,-538.5785,-538.3774,-538.1763,-537.97516,-537.77405,-537.57294,-537.3718,-537.1707,-536.9696,-536.7685,-536.5674,-536.3663,-536.16516,-535.96405,-535.76294,-535.5618,-535.3607,-535.1596,-534.9585,-534.7574,-534.5563,-534.35516,-534.15405,-533.95294,-533.7518,-533.55066,-533.34955,-533.14844,-532.9473,-532.7462,-532.5451,-532.344,-532.1429,-531.9418,-531.74066,-531.53955,-531.33844,-531.1373,-530.9362,-530.7351,-530.534,-530.3329,-530.1318,-529.93066,-529.72955,-529.52844,-529.32733,-529.1262,-528.9251,-528.724,-528.5229,-528.3218,-528.12067,-527.91956,-527.71844,-527.51733,-527.3162,-527.1151,-526.914,-526.7129,-526.5118,-526.31067,-526.10956,-525.90845,-525.70734,-525.5062,-525.3051,-525.104,-524.9029,-524.7017,-524.5006,-524.2995,-524.0984,-523.8973,-523.69617,-523.49506,-523.29395,-523.09283,-522.8917,-522.6906,-522.4895,-522.2884,-522.0873,-521.88617,-521.68506,-521.48395,-521.28284,-521.0817,-520.8806,-520.6795,-520.4784,-520.2773,-520.0762,-519.87506,-519.67395,-519.47284,-519.2717,-519.0706,-518.8695,-518.6684,-518.4673,-518.2662,-518.06506,-517.86395,-517.66284,-517.46173,-517.2606,-517.0595,-516.8584,-516.6573,-516.4562,-516.25507,-516.05396,-515.8528,-515.6517,-515.45056,-515.24945,-515.04834,-514.8472,-514.6461,-514.445,-514.2439,-514.0428,-513.8417,-513.64056,-513.43945,-513.23834,-513.03723,-512.8361,-512.635,-512.4339,-512.2328,-512.0317,-511.83057,-511.62946,-511.42834,-511.22723,-511.02612,-510.825,-510.6239,-510.4228,-510.22168,-510.02057,-509.81946,-509.61835,-509.41724,-509.21613,-509.01498,-508.81387,-508.61276,-508.41165,-508.21054,-508.00943,-507.80832,-507.6072,-507.4061,-507.205,-507.00388,-506.80276,-506.60165,-506.40054,-506.19943,-505.99832,-505.7972,-505.5961,-505.395,-505.19388,-504.99277,-504.79166,-504.5905,-504.3894,-504.1883,-503.98718,-503.78607,-503.58496,-503.38385,-503.18274,-502.98163,-502.78052,-502.5794,-502.3783,-502.1772,-501.97607,-501.77496,-501.57385,-501.37274,-501.17163,-500.97052,-500.7694,-500.5683,-500.3672,-500.16605,-499.96494,-499.76382,-499.5627,-499.3616,-499.1605,-498.95938,-498.75827,-498.55716,-498.35605,-498.15494,-497.95383,-497.75272,-497.5516,-497.3505,-497.14938,-496.94827,-496.74716,-496.54605,-496.34494,-496.14383,-495.94272,-495.7416,-495.54047,-495.33936,-495.13824,-494.93713,-494.73602,-494.5349,-494.3338,-494.1327,-493.93158,-493.73047,-493.52936,-493.32825,-493.12714,-492.92603,-492.7249,-492.5238,-492.3227,-492.12158,-491.92047,-491.71936,-491.51825,-491.31714,-491.116,-490.9149,-490.71378,-490.51266,-490.31155,-490.11044,-489.90933,-489.70822,-489.5071,-489.306,-489.1049,-488.90378,-488.70267,-488.50156,-488.30045,-488.09933,-487.89822,-487.6971,-487.496,-487.2949,-487.09378,-486.89267,-486.69153,-486.49042,-486.2893,-486.0882,-485.8871,-485.68597,-485.48486,-485.28375,-485.08264,-484.88153,-484.68042,-484.4793,-484.2782,-484.0771,-483.87598,-483.67487,-483.47375,-483.27264,-483.07153,-482.87042,-482.6693,-482.4682,-482.26706,-482.06595,-481.86484,-481.66373,-481.46262,-481.2615,-481.0604,-480.85928,-480.65817,-480.45706,-480.25595,-480.05484,-479.85373,-479.65262,-479.4515,-479.2504,-479.0493,-478.84818,-478.64706,-478.44595,-478.24484,-478.04373,-477.84262,-477.64148,-477.44037,-477.23926,-477.03815,-476.83704,-476.63593,-476.4348,-476.2337,-476.0326,-475.83148,-475.63037,-475.42926,-475.22815,-475.02704,-474.82593,-474.62482,-474.4237,-474.2226,-474.02148,-473.82037,-473.61926,-473.41815,-473.217,-473.0159,-472.8148,-472.61368,-472.41257,-472.21146,-472.01035,-471.80923,-471.60812,-471.407,-471.2059,-471.0048,-470.80368,-470.60257,-470.40146,-470.20035,-469.99924,-469.79813,-469.59702,-469.3959,-469.1948,-468.99368,-468.79254,-468.59143,-468.39032,-468.1892,-467.9881,-467.787,-467.58588,-467.38477,-467.18365,-466.98254,-466.78143,-466.58032,-466.3792,-466.1781,-465.977,-465.77588,-465.57477,-465.37366,-465.17255,-464.97144,-464.77032,-464.5692,-464.3681,-464.16696,-463.96585,-463.76474,-463.56363,-463.36252,-463.1614,-462.9603,-462.7592,-462.55807,-462.35696,-462.15585,-461.95474,-461.75363,-461.55252,-461.3514,-461.1503,-460.9492,-460.74808,-460.54697,-460.34586,-460.14474,-459.94363,-459.7425,-459.54138,-459.34027,-459.13916,-458.93805,-458.73694,-458.53583,-458.33472,-458.1336,-457.9325,-457.73138,-457.53027,-457.32916,-457.12805,-456.92694,-456.72583,-456.52472,-456.3236,-456.1225,-455.9214,-455.72028,-455.51917,-455.31802,-455.1169,-454.9158,-454.7147,-454.51358,-454.31247,-454.11136,-453.91025,-453.70914,-453.50803,-453.30692,-453.1058,-452.9047,-452.70358,-452.50247,-452.30136,-452.10025,-451.89914,-451.69803,-451.49692,-451.2958,-451.0947,-450.8936,-450.69244,-450.49133,-450.29022,-450.0891,-449.888,-449.6869,-449.48578,-449.28467,-449.08356,-448.88245,-448.68134,-448.48022,-448.2791,-448.078,-447.8769,-447.67578,-447.47467,-447.27356,-447.07245,-446.87134,-446.67023,-446.46912,-446.26797,-446.06686,-445.86575,-445.66464,-445.46353,-445.26242,-445.0613,-444.8602,-444.6591,-444.45798,-444.25687,-444.05576,-443.85464,-443.65353,-443.45242,-443.2513,-443.0502,-442.8491,-442.64798,-442.44687,-442.24576,-442.04465,-441.8435,-441.6424,-441.44128,-441.24017,-441.03906,-440.83795,-440.63684,-440.43573,-440.23462,-440.0335,-439.8324,-439.6313,-439.43018,-439.22906,-439.02795,-438.82684,-438.62573,-438.42462,-438.2235,-438.0224,-437.8213,-437.62018,-437.41907,-437.21793,-437.0168,-436.8157,-436.6146,-436.41348,-436.21237,-436.01126,-435.81015,-435.60904,-435.40793,-435.20682,-435.0057,-434.8046,-434.6035,-434.40237,-434.20126,-434.00015,-433.79904,-433.59793,-433.39682,-433.1957,-432.9946,-432.79346,-432.59235,-432.39124,-432.19012,-431.989,-431.7879,-431.5868,-431.38568,-431.18457,-430.98346,-430.78235,-430.58124,-430.38013,-430.17902,-429.9779,-429.7768,-429.57568,-429.37457,-429.17346,-428.97235,-428.77124,-428.57013,-428.369,-428.16788,-427.96677,-427.76566,-427.56454,-427.36343,-427.16232,-426.9612,-426.7601,-426.559,-426.35788,-426.15677,-425.95566,-425.75455,-425.55344,-425.35233,-425.1512,-424.9501,-424.749,-424.54788,-424.34677,-424.14566,-423.94452,-423.7434,-423.5423,-423.3412,-423.14008,-422.93896,-422.73785,-422.53674,-422.33563,-422.13452,-421.9334,-421.7323,-421.5312,-421.33008,-421.12897,-420.92786,-420.72675,-420.52563,-420.32452,-420.1234,-419.9223,-419.7212,-419.52008,-419.31894,-419.11783,-418.91672,-418.7156,-418.5145,-418.3134,-418.11227,-417.91116,-417.71005,-417.50894,-417.30783,-417.10672,-416.9056,-416.7045,-416.5034,-416.30228,-416.10117,-415.90005,-415.69894,-415.49783,-415.29672,-415.0956,-414.89447,-414.69336,-414.49225,-414.29114,-414.09003,-413.88892,-413.6878,-413.4867,-413.28558,-413.08447,-412.88336,-412.68225,-412.48114,-412.28003,-412.07892,-411.8778,-411.6767,-411.4756,-411.27448,-411.07336,-410.87225,-410.67114,-410.47,-410.2689,-410.06778,-409.86667,-409.66556,-409.46445,-409.26334,-409.06223,-408.8611,-408.66,-408.4589,-408.25778,-408.05667,-407.85556,-407.65445,-407.45334,-407.25223,-407.05112,-406.85,-406.6489,-406.44778,-406.24667,-406.04556,-405.84442,-405.6433,-405.4422,-405.2411,-405.03998,-404.83887,-404.63776,-404.43665,-404.23553,-404.03442,-403.8333,-403.6322,-403.4311,-403.22998,-403.02887,-402.82776,-402.62665,-402.42554,-402.22443,-402.02332,-401.8222,-401.6211,-401.41995,-401.21884,-401.01773,-400.81662,-400.6155,-400.4144,-400.2133,-400.01218,-399.81107,-399.60995,-399.40884,-399.20773,-399.00662,-398.8055,-398.6044,-398.4033,-398.20218,-398.00107,-397.79996,-397.59885,-397.39774,-397.19662,-396.99548,-396.79437,-396.59326,-396.39215,-396.19104,-395.98993,-395.78882,-395.5877,-395.3866,-395.1855,-394.98438,-394.78326,-394.58215,-394.38104,-394.17993,-393.97882,-393.7777,-393.5766,-393.3755,-393.17438,-392.97327,-392.77216,-392.57104,-392.3699,-392.1688,-391.96768,-391.76657,-391.56546,-391.36435,-391.16324,-390.96213,-390.76102,-390.5599,-390.3588,-390.15768,-389.95657,-389.75546,-389.55435,-389.35324,-389.15213,-388.95102,-388.7499,-388.5488,-388.3477,-388.14658,-387.94543,-387.74432,-387.5432,-387.3421,-387.141,-386.93988,-386.73877,-386.53766,-386.33655,-386.13544,-385.93433,-385.73322,-385.5321,-385.331,-385.12988,-384.92877,-384.72766,-384.52655,-384.32544,-384.12433,-383.92322,-383.7221,-383.52097,-383.31985,-383.11874,-382.91763,-382.71652,-382.5154,-382.3143,-382.1132,-381.91208,-381.71097,-381.50986,-381.30875,-381.10764,-380.90652,-380.7054,-380.5043,-380.3032,-380.10208,-379.90097,-379.69986,-379.49875,-379.29764,-379.09653,-378.8954,-378.69427,-378.49316,-378.29205,-378.09094,-377.88983,-377.68872,-377.4876,-377.2865,-377.0854,-376.88428,-376.68317,-376.48206,-376.28094,-376.07983,-375.87872,-375.6776,-375.4765,-375.2754,-375.07428,-374.87317,-374.67206,-374.47092,-374.2698,-374.0687,-373.86758,-373.66647,-373.46536,-373.26425,-373.06314,-372.86203,-372.66092,-372.4598,-372.2587,-372.0576,-371.85648,-371.65536,-371.45425,-371.25314,-371.05203,-370.85092,-370.6498,-370.4487,-370.2476,-370.04645,-369.84534,-369.64423,-369.4431,-369.242,-369.0409,-368.83978,-368.63867,-368.43756,-368.23645,-368.03534,-367.83423,-367.63312,-367.432,-367.2309,-367.0298,-366.82867,-366.62756,-366.42645,-366.22534,-366.02423,-365.82312,-365.62198,-365.42087,-365.21976,-365.01865,-364.81754,-364.61642,-364.4153,-364.2142,-364.0131,-363.81198,-363.61087,-363.40976,-363.20865,-363.00754,-362.80643,-362.60532,-362.4042,-362.2031,-362.00198,-361.80087,-361.59976,-361.39865,-361.19754,-360.9964,-360.7953,-360.59418,-360.39307,-360.19196,-359.99084,-359.78973,-359.58862,-359.3875,-359.1864,-358.9853,-358.78418,-358.58307,-358.38196,-358.18085,-357.97974,-357.77863,-357.5775,-357.3764,-357.1753,-356.97418,-356.77307,-356.57193,-356.37082,-356.1697,-355.9686,-355.7675,-355.56638,-355.36526,-355.16415,-354.96304,-354.76193,-354.56082,-354.3597,-354.1586,-353.9575,-353.75638,-353.55527,-353.35416,-353.15305,-352.95193,-352.75082,-352.5497,-352.3486,-352.14746,-351.94635,-351.74524,-351.54413,-351.34302,-351.1419,-350.9408,-350.7397,-350.53857,-350.33746,-350.13635,-349.93524,-349.73413,-349.53302,-349.3319,-349.1308,-348.9297,-348.72858,-348.52747,-348.32635,-348.12524,-347.92413,-347.72302,-347.52188,-347.32077,-347.11966,-346.91855,-346.71744,-346.51633,-346.31522,-346.1141,-345.913,-345.71188,-345.51077,-345.30966,-345.10855,-344.90744,-344.70633,-344.50522,-344.3041,-344.103,-343.9019,-343.70078,-343.49966,-343.29855,-343.0974,-342.8963,-342.6952,-342.49408,-342.29297,-342.09186,-341.89075,-341.68964,-341.48853,-341.2874,-341.0863,-340.8852,-340.68408,-340.48297,-340.28186,-340.08075,-339.87964,-339.67853,-339.47742,-339.2763,-339.0752,-338.87408,-338.67294,-338.47183,-338.27072,-338.0696,-337.8685,-337.6674,-337.46628,-337.26517,-337.06406,-336.86295,-336.66183,-336.46072,-336.2596,-336.0585,-335.8574,-335.65628,-335.45517,-335.25406,-335.05295,-334.85184,-334.65073,-334.44962,-334.2485,-334.04736,-333.84625,-333.64514,-333.44403,-333.24292,-333.0418,-332.8407,-332.6396,-332.43848,-332.23737,-332.03625,-331.83514,-331.63403,-331.43292,-331.2318,-331.0307,-330.8296,-330.62848,-330.42737,-330.22626,-330.02515,-329.82404,-329.6229,-329.42178,-329.22067,-329.01956,-328.81845,-328.61734,-328.41623,-328.21512,-328.014,-327.8129,-327.6118,-327.41068,-327.20956,-327.00845,-326.80734,-326.60623,-326.40512,-326.204,-326.0029,-325.8018,-325.60068,-325.39957,-325.19843,-324.9973,-324.7962,-324.5951,-324.39398,-324.19287,-323.99176,-323.79065,-323.58954,-323.38843,-323.18732,-322.9862,-322.7851,-322.58398,-322.38287,-322.18176,-321.98065,-321.77954,-321.57843,-321.37732,-321.1762,-320.9751,-320.774,-320.57285,-320.37173,-320.17062,-319.9695,-319.7684,-319.5673,-319.36618,-319.16507,-318.96396,-318.76285,-318.56174,-318.36063,-318.15952,-317.9584,-317.7573,-317.55618,-317.35507,-317.15396,-316.95285,-316.75174,-316.55063,-316.34952,-316.14838,-315.94727,-315.74615,-315.54504,-315.34393,-315.14282,-314.9417,-314.7406,-314.5395,-314.33838,-314.13727,-313.93616,-313.73505,-313.53394,-313.33282,-313.1317,-312.9306,-312.7295,-312.52838,-312.32727,-312.12616,-311.92505,-311.7239,-311.5228,-311.3217,-311.12057,-310.91946,-310.71835,-310.51724,-310.31613,-310.11502,-309.9139,-309.7128,-309.5117,-309.31058,-309.10947,-308.90836,-308.70724,-308.50613,-308.30502,-308.1039,-307.9028,-307.7017,-307.50058,-307.29944,-307.09833,-306.89722,-306.6961,-306.495,-306.29388,-306.09277,-305.89166,-305.69055,-305.48944,-305.28833,-305.08722,-304.8861,-304.685,-304.4839,-304.28278,-304.08167,-303.88055,-303.67944,-303.47833,-303.27722,-303.0761,-302.875,-302.67386,-302.47275,-302.27164,-302.07053,-301.86942,-301.6683,-301.4672,-301.26608,-301.06497,-300.86386,-300.66275,-300.46164,-300.26053,-300.05942,-299.8583,-299.6572,-299.4561,-299.25497,-299.05386,-298.85275,-298.65164,-298.45053,-298.2494,-298.04828,-297.84717,-297.64606,-297.44495,-297.24384,-297.04272,-296.8416,-296.6405,-296.4394,-296.23828,-296.03717,-295.83606,-295.63495,-295.43384,-295.23273,-295.03162,-294.8305,-294.6294,-294.42828,-294.22717,-294.02606,-293.82492,-293.6238,-293.4227,-293.2216,-293.02048,-292.81937,-292.61826,-292.41714,-292.21603,-292.01492,-291.8138,-291.6127,-291.4116,-291.21048,-291.00937,-290.80826,-290.60715,-290.40604,-290.20493,-290.0038,-289.8027,-289.6016,-289.40048,-289.19934,-288.99823,-288.79712,-288.596,-288.3949,-288.1938,-287.99268,-287.79156,-287.59045,-287.38934,-287.18823,-286.98712,-286.786,-286.5849,-286.3838,-286.18268,-285.98157,-285.78046,-285.57935,-285.37823,-285.17712,-284.976,-284.77487,-284.57376,-284.37265,-284.17154,-283.97043,-283.76932,-283.5682,-283.3671,-283.166,-282.96487,-282.76376,-282.56265,-282.36154,-282.16043,-281.95932,-281.7582,-281.5571,-281.356,-281.15488,-280.95377,-280.75266,-280.55154,-280.3504,-280.1493,-279.94818,-279.74707,-279.54596,-279.34485,-279.14374,-278.94263,-278.74152,-278.5404,-278.3393,-278.13818,-277.93707,-277.73596,-277.53485,-277.33374,-277.13263,-276.93152,-276.7304,-276.5293,-276.3282,-276.12708,-275.92596,-275.72482,-275.5237,-275.3226,-275.1215,-274.92038,-274.71927,-274.51816,-274.31705,-274.11594,-273.91483,-273.7137,-273.5126,-273.3115,-273.11038,-272.90927,-272.70816,-272.50705,-272.30594,-272.10483,-271.90372,-271.7026,-271.5015,-271.30035,-271.09924,-270.89813,-270.69702,-270.4959,-270.2948,-270.0937,-269.89258,-269.69147,-269.49036,-269.28925,-269.08813,-268.88702,-268.6859,-268.4848,-268.2837,-268.08258,-267.88147,-267.68036,-267.47925,-267.27814,-267.07703,-266.8759,-266.67477,-266.47366,-266.27255,-266.07144,-265.87033,-265.66922,-265.4681,-265.267,-265.0659,-264.86478,-264.66367,-264.46255,-264.26144,-264.06033,-263.85922,-263.6581,-263.457,-263.2559,-263.05478,-262.85367,-262.65256,-262.45145,-262.2503,-262.0492,-261.84808,-261.64697,-261.44586,-261.24475,-261.04364,-260.84253,-260.64142,-260.4403,-260.2392,-260.0381,-259.83698,-259.63586,-259.43475,-259.23364,-259.03253,-258.83142,-258.6303,-258.4292,-258.2281,-258.02698,-257.82584,-257.62473,-257.4236,-257.2225,-257.0214,-256.82028,-256.61917,-256.41806,-256.21695,-256.01584,-255.81473,-255.61362,-255.4125,-255.2114,-255.01028,-254.80917,-254.60806,-254.40694,-254.20583,-254.00471,-253.8036,-253.6025,-253.40138,-253.20027,-252.99916,-252.79805,-252.59694,-252.39583,-252.1947,-251.99359,-251.79248,-251.59137,-251.39026,-251.18915,-250.98804,-250.78693,-250.58582,-250.3847,-250.1836,-249.98247,-249.78136,-249.58025,-249.37914,-249.17802,-248.97691,-248.7758,-248.57469,-248.37358,-248.17247,-247.97136,-247.77023,-247.56912,-247.36801,-247.1669,-246.96579,-246.76468,-246.56357,-246.36246,-246.16135,-245.96024,-245.75912,-245.558,-245.35689,-245.15578,-244.95467,-244.75356,-244.55244,-244.35133,-244.15022,-243.94911,-243.748,-243.54689,-243.34576,-243.14465,-242.94354,-242.74243,-242.54132,-242.34021,-242.1391,-241.93799,-241.73688,-241.53577,-241.33466,-241.13353,-240.93242,-240.73131,-240.5302,-240.32909,-240.12798,-239.92686,-239.72575,-239.52464,-239.32353,-239.12242,-238.92131,-238.72018,-238.51907,-238.31796,-238.11685,-237.91574,-237.71463,-237.51352,-237.31241,-237.1113,-236.91019,-236.70908,-236.50795,-236.30684,-236.10573,-235.90462,-235.7035,-235.5024,-235.30128,-235.10017,-234.89906,-234.69795,-234.49684,-234.29572,-234.0946,-233.8935,-233.69238,-233.49127,-233.29016,-233.08905,-232.88794,-232.68683,-232.48572,-232.2846,-232.08348,-231.88237,-231.68126,-231.48015,-231.27904,-231.07793,-230.87682,-230.6757,-230.4746,-230.27348,-230.07237,-229.87125,-229.67014,-229.46902,-229.26791,-229.0668,-228.86569,-228.66458,-228.46347,-228.26236,-228.06125,-227.86014,-227.65901,-227.4579,-227.25679,-227.05568,-226.85457,-226.65346,-226.45235,-226.25124,-226.05013,-225.84901,-225.6479,-225.4468,-225.24567,-225.04456,-224.84344,-224.64233,-224.44122,-224.24011,-224.039,-223.83789,-223.63678,-223.43567,-223.23456,-223.03343,-222.83232,-222.63121,-222.4301,-222.22899,-222.02788,-221.82677,-221.62566,-221.42455,-221.22343,-221.02232,-220.8212,-220.62009,-220.41898,-220.21786,-220.01675,-219.81564,-219.61453,-219.41342,-219.21231,-219.0112,-218.81009,-218.60896,-218.40785,-218.20674,-218.00563,-217.80452,-217.60341,-217.4023,-217.20119,-217.00008,-216.79897,-216.59785,-216.39673,-216.19562,-215.9945,-215.7934,-215.59229,-215.39117,-215.19006,-214.98895,-214.78784,-214.58673,-214.38562,-214.1845,-213.98338,-213.78227,-213.58116,-213.38005,-213.17894,-212.97783,-212.77672,-212.5756,-212.3745,-212.17339,-211.97226,-211.77115,-211.57004,-211.36893,-211.16782,-210.9667,-210.7656,-210.56448,-210.36337,-210.16226,-209.96115,-209.76004,-209.55891,-209.3578,-209.1567,-208.95558,-208.75447,-208.55336,-208.35225,-208.15114,-207.95003,-207.74892,-207.5478,-207.34668,-207.14557,-206.94446,-206.74335,-206.54224,-206.34113,-206.14001,-205.9389,-205.7378,-205.53668,-205.33557,-205.13445,-204.93333,-204.73222,-204.53111,-204.33,-204.12889,-203.92778,-203.72667,-203.52556,-203.32445,-203.12334,-202.92221,-202.7211,-202.51999,-202.31888,-202.11777,-201.91666,-201.71555,-201.51443,-201.31332,-201.11221,-200.9111,-200.70998,-200.50887,-200.30775,-200.10664,-199.90553,-199.70442,-199.50331,-199.3022,-199.10109,-198.89998,-198.69887,-198.49774,-198.29663,-198.09552,-197.89441,-197.6933,-197.49219,-197.29108,-197.08997,-196.88885,-196.68774,-196.48663,-196.28552,-196.0844,-195.88329,-195.68217,-195.48106,-195.27995,-195.07884,-194.87773,-194.67662,-194.47551,-194.2744,-194.07329,-193.87216,-193.67105,-193.46994,-193.26883,-193.06772,-192.86661,-192.6655,-192.46439,-192.26328,-192.06216,-191.86105,-191.65993,-191.45882,-191.2577,-191.0566,-190.85548,-190.65437,-190.45326,-190.25215,-190.05104,-189.84993,-189.64882,-189.4477,-189.24658,-189.04547,-188.84436,-188.64325,-188.44214,-188.24103,-188.03992,-187.8388,-187.6377,-187.43658,-187.23546,-187.03435,-186.83324,-186.63213,-186.43102,-186.2299,-186.0288,-185.82768,-185.62657,-185.42546,-185.22435,-185.02322,-184.82211,-184.621,-184.41989,-184.21878,-184.01767,-183.81656,-183.61545,-183.41434,-183.21323,-183.01212,-182.81099,-182.60988,-182.40877,-182.20766,-182.00655,-181.80544,-181.60432,-181.40321,-181.2021,-181.00099,-180.79988,-180.59877,-180.39764,-180.19653,-179.99542,-179.79431,-179.5932,-179.39209,-179.19098,-178.98987,-178.78876,-178.58765,-178.38654,-178.18541,-177.9843,-177.78319,-177.58208,-177.38097,-177.17986,-176.97874,-176.77763,-176.57652,-176.37541,-176.1743,-175.97318,-175.77206,-175.57095,-175.36984,-175.16873,-174.96762,-174.76651,-174.5654,-174.36429,-174.16318,-173.96207,-173.76094,-173.55983,-173.35872,-173.15761,-172.9565,-172.75539,-172.55428,-172.35316,-172.15205,-171.95094,-171.74983,-171.5487,-171.3476,-171.14648,-170.94537,-170.74426,-170.54315,-170.34204,-170.14093,-169.93982,-169.73871,-169.5376,-169.33647,-169.13536,-168.93425,-168.73314,-168.53203,-168.33092,-168.1298,-167.9287,-167.72758,-167.52647,-167.32536,-167.12425,-166.92313,-166.72202,-166.5209,-166.3198,-166.11868,-165.91757,-165.71646,-165.51535,-165.31424,-165.11313,-164.91202,-164.71089,-164.50978,-164.30867,-164.10756,-163.90645,-163.70534,-163.50423,-163.30312,-163.102,-162.9009,-162.69978,-162.49866,-162.29755,-162.09644,-161.89532,-161.69421,-161.4931,-161.29199,-161.09088,-160.88977,-160.68866,-160.48755,-160.28642,-160.08531,-159.8842,-159.68309,-159.48198,-159.28087,-159.07976,-158.87865,-158.67754,-158.47643,-158.27531,-158.07419,-157.87308,-157.67197,-157.47086,-157.26974,-157.06863,-156.86752,-156.66641,-156.4653,-156.26419,-156.06308,-155.86195,-155.66084,-155.45973,-155.25862,-155.05751,-154.8564,-154.65529,-154.45418,-154.25307,-154.05196,-153.85085,-153.64972,-153.44861,-153.2475,-153.04639,-152.84528,-152.64417,-152.44305,-152.24194,-152.04083,-151.83972,-151.63861,-151.4375,-151.23637,-151.03526,-150.83415,-150.63304,-150.43193,-150.23082,-150.02971,-149.8286,-149.62749,-149.42638,-149.22527,-149.02414,-148.82303,-148.62192,-148.4208,-148.2197,-148.01859,-147.81747,-147.61636,-147.41525,-147.21414,-147.01303,-146.8119,-146.6108,-146.40968,-146.20857,-146.00746,-145.80635,-145.60524,-145.40413,-145.20302,-145.0019,-144.8008,-144.59967,-144.39856,-144.19745,-143.99634,-143.79523,-143.59412,-143.393,-143.1919,-142.99078,-142.78967,-142.58856,-142.38744,-142.18633,-141.98521,-141.7841,-141.583,-141.38188,-141.18077,-140.97966,-140.77855,-140.57744,-140.37633,-140.1752,-139.97409,-139.77298,-139.57187,-139.37076,-139.16965,-138.96854,-138.76743,-138.56631,-138.3652,-138.1641,-137.96298,-137.76186,-137.56075,-137.35963,-137.15852,-136.95741,-136.7563,-136.55519,-136.35408,-136.15297,-135.95186,-135.75075,-135.54962,-135.34851,-135.1474,-134.94629,-134.74518,-134.54407,-134.34296,-134.14185,-133.94073,-133.73962,-133.53851,-133.33739,-133.13628,-132.93517,-132.73405,-132.53294,-132.33183,-132.13072,-131.92961,-131.7285,-131.52739,-131.32628,-131.12515,-130.92404,-130.72293,-130.52182,-130.32071,-130.1196,-129.91849,-129.71738,-129.51627,-129.31516,-129.11404,-128.91292,-128.7118,-128.5107,-128.30959,-128.10847,-127.907364,-127.70625,-127.50514,-127.30403,-127.10291,-126.9018,-126.70069,-126.49958,-126.29847,-126.09735,-125.89624,-125.69513,-125.49402,-125.29291,-125.0918,-124.89068,-124.68957,-124.48846,-124.287346,-124.086235,-123.88512,-123.684006,-123.482895,-123.281784,-123.08067,-122.87956,-122.678444,-122.47733,-122.27622,-122.07511,-121.874,-121.67288,-121.47177,-121.27066,-121.06955,-120.86844,-120.66733,-120.46621,-120.2651,-120.06399,-119.86288,-119.661766,-119.460655,-119.25954,-119.058426,-118.857315,-118.656204,-118.45509,-118.253975,-118.052864,-117.85175,-117.65064,-117.44953,-117.24842,-117.0473,-116.84619,-116.64508,-116.44397,-116.24286,-116.04174,-115.84063,-115.63952,-115.43841,-115.2373,-115.03619,-114.83507,-114.63396,-114.432846,-114.231735,-114.030624,-113.829506,-113.628395,-113.427284,-113.22617,-113.02506,-112.82395,-112.62283,-112.42172,-112.22061,-112.0195,-111.81839,-111.61728,-111.41616,-111.21505,-111.01394,-110.81283,-110.61172,-110.4106,-110.20949,-110.00838,-109.80727,-109.606155,-109.405045,-109.203926,-109.002815,-108.801704,-108.60059,-108.39948,-108.198364,-107.99725,-107.79614,-107.59503,-107.39392,-107.19281,-106.99169,-106.79058,-106.58947,-106.38836,-106.18725,-105.98613,-105.78502,-105.58391,-105.3828,-105.18169,-104.980576,-104.77946,-104.57835,-104.377235,-104.176125,-103.97501,-103.7739,-103.572784,-103.37167,-103.17056,-102.96945,-102.76834,-102.56722,-102.36611,-102.165,-101.96389,-101.76278,-101.56167,-101.36055,-101.15944,-100.95833,-100.75722,-100.55611,-100.35499,-100.15388,-99.95277,-99.751656,-99.550545,-99.349434,-99.148315,-98.947205,-98.74609,-98.54498,-98.34387,-98.14276,-97.94164,-97.74053,-97.53942,-97.33831,-97.1372,-96.93608,-96.73497,-96.53386,-96.33275,-96.13164,-95.93053,-95.72941,-95.5283,-95.32719,-95.126076,-94.924965,-94.72385,-94.522736,-94.321625,-94.120514,-93.9194,-93.71829,-93.51717,-93.31606,-93.11495,-92.91384,-92.71273,-92.51161,-92.3105,-92.10939,-91.90828,-91.70717,-91.50606,-91.30494,-91.10383,-90.90272,-90.70161,-90.500496,-90.299385,-90.09827,-89.897156,-89.696045,-89.494934,-89.29382,-89.092705,-88.891594,-88.69048,-88.48937,-88.28826,-88.08715,-87.88603,-87.68492,-87.48381,-87.2827,-87.08159,-86.88047,-86.67936,-86.47825,-86.27714,-86.07603,-85.874916,-85.6738,-85.47269,-85.271576,-85.070465,-84.869354,-84.668236,-84.467125,-84.266014,-84.0649,-83.86379,-83.66268,-83.46156,-83.26045,-83.05934,-82.85823,-82.65712,-82.45601,-82.25489,-82.05378,-81.85267,-81.65156,-81.45045,-81.24933,-81.04822,-80.84711,-80.645996,-80.444885,-80.243774,-80.042656,-79.841545,-79.640434,-79.43932,-79.23821,-79.037094,-78.83598,-78.63487,-78.43376,-78.23265,-78.03154,-77.83042,-77.62931,-77.4282,-77.22709,-77.02598,-76.82486,-76.62375,-76.42264,-76.22153,-76.02042,-75.819305,-75.61819,-75.417076,-75.215965,-75.014854,-74.81374,-74.61263,-74.411514,-74.2104,-74.00929,-73.80818,-73.60707,-73.40595,-73.20484,-73.00373,-72.80262,-72.60151,-72.4004,-72.19928,-71.99817,-71.79706,-71.59595,-71.39484,-71.19372,-70.99261,-70.7915,-70.590385,-70.389275,-70.18816,-69.987045,-69.785934,-69.58482,-69.38371,-69.1826,-68.98149,-68.78037,-68.57926,-68.37815,-68.17704,-67.97593,-67.77481,-67.5737,-67.37259,-67.17148,-66.97037,-66.76926,-66.56814,-66.36703,-66.16592,-65.964806,-65.763695,-65.56258,-65.361465,-65.160355,-64.95924,-64.75813,-64.55702,-64.3559,-64.15479,-63.953682,-63.75257,-63.551456,-63.350346,-63.149235,-62.94812,-62.74701,-62.5459,-62.344784,-62.143673,-61.94256,-61.741447,-61.540337,-61.339222,-61.13811,-60.937,-60.735886,-60.534775,-60.333664,-60.13255,-59.93144,-59.730328,-59.529213,-59.328102,-59.126987,-58.925877,-58.724766,-58.52365,-58.32254,-58.12143,-57.920315,-57.719204,-57.518093,-57.31698,-57.115868,-56.914753,-56.713642,-56.51253,-56.311417,-56.110306,-55.909195,-55.70808,-55.50697,-55.30586,-55.104744,-54.903633,-54.702522,-54.501408,-54.300297,-54.099182,-53.89807,-53.69696,-53.495846,-53.294735,-53.093624,-52.89251,-52.6914,-52.490288,-52.289173,-52.088062,-51.88695,-51.685837,-51.484726,-51.28361,-51.0825,-50.88139,-50.680275,-50.479164,-50.278053,-50.07694,-49.875828,-49.674717,-49.473602,-49.27249,-49.07138,-48.870266,-48.669155,-48.46804,-48.26693,-48.06582,-47.864704,-47.663593,-47.462482,-47.261368,-47.060257,-46.859146,-46.65803,-46.45692,-46.255806,-46.054695,-45.853584,-45.65247,-45.45136,-45.250248,-45.049133,-44.848022,-44.64691,-44.445797,-44.244686,-44.043575,-43.84246,-43.64135,-43.440235,-43.239124,-43.038013,-42.8369,-42.635788,-42.434677,-42.233562,-42.03245,-41.83134,-41.630226,-41.429115,-41.228004,-41.02689,-40.82578,-40.624664,-40.423553,-40.222443,-40.021328,-39.820217,-39.619106,-39.41799,-39.21688,-39.01577,-38.814655,-38.613544,-38.41243,-38.21132,-38.01021,-37.809093,-37.607983,-37.40687,-37.205757,-37.004646,-36.803535,-36.60242,-36.40131,-36.2002,-35.999084,-35.797974,-35.59686,-35.39575,-35.194637,-34.993523,-34.79241,-34.5913,-34.390186,-34.189075,-33.987965,-33.78685,-33.58574,-33.38463,-33.183514,-32.982403,-32.78129,-32.580177,-32.379066,-32.17795,-31.976841,-31.775728,-31.574617,-31.373505,-31.172392,-30.97128,-30.770168,-30.569056,-30.367943,-30.166832,-29.96572,-29.764606,-29.563494,-29.362383,-29.16127,-28.960157,-28.759047,-28.557934,-28.356821,-28.155708,-27.954597,-27.753485,-27.552372,-27.351261,-27.150148,-26.949036,-26.747923,-26.546812,-26.3457,-26.144587,-25.943476,-25.742363,-25.54125,-25.340137,-25.139027,-24.937914,-24.736801,-24.53569,-24.334578,-24.133465,-23.932352,-23.731241,-23.530128,-23.329016,-23.127903,-22.926792,-22.72568,-22.524567,-22.323456,-22.122343,-21.92123,-21.720118,-21.519007,-21.317894,-21.116781,-20.91567,-20.714558,-20.513445,-20.312332,-20.111221,-19.910109,-19.708996,-19.507885,-19.306772,-19.10566,-18.904547,-18.703436,-18.502323,-18.30121,-18.1001,-17.898987,-17.697874,-17.496761,-17.29565,-17.094538,-16.893425,-16.692314,-16.491201,-16.290089,-16.088976,-15.887864,-15.686752,-15.48564,-15.284528,-15.083416,-14.882303,-14.681191,-14.480079,-14.278967,-14.077854,-13.876742,-13.675631,-13.474518,-13.273406,-13.072293,-12.8711815,-12.670069,-12.468957,-12.267845,-12.066732,-11.865621,-11.664508,-11.463396,-11.262283,-11.061172,-10.860059,-10.658947,-10.457835,-10.256722,-10.055611,-9.854498,-9.653386,-9.452273,-9.251162,-9.05005,-8.848937,-8.647825,-8.4467125,-8.245601,-8.044488,-7.843376,-7.642264,-7.4411516,-7.2400393,-7.038927,-6.8378153,-6.636703,-6.4355907,-6.2344785,-6.033366,-5.832254,-5.6311417,-5.4300294,-5.2289176,-5.0278053,-4.826693,-4.625581,-4.4244685,-4.2233562,-4.022244,-3.821132,-3.6200197,-3.4189076,-3.2177954,-3.016683,-2.8155708,-2.6144588,-2.4133465,-2.2122343,-2.011122,-1.8100098,-1.6088977,-1.4077854,-1.2066733,-1.005561,-0.80444884,-0.60333663,-0.40222442,-0.20111221,0.0]}
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/medium_positive.json b/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/medium_positive.json
new file mode 100644
index 000000000000..d4abb7c02196
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/medium_positive.json
@@ -0,0 +1 @@
+{"expected":[1.0,0.9899225,0.96009624,0.9117235,0.8467542,0.76780725,0.678065,0.581145,0.48095393,0.3815307,0.28688294,0.2008259,0.12682858,0.067873776,0.026338011,0.0038955212,0.0014510155,0.01910299,0.056139916,0.111068845,0.1816755,0.2651139,0.35802054,0.4566504,0.5570277,0.6551062,0.7469323,0.82880443,0.8974227,0.9500208,0.9844786,0.99940705,0.9942044,0.9690803,0.9250477,0.86388147,0.78804713,0.7006016,0.6050698,0.50530267,0.40532196,0.3091573,0.22068593,0.14347333,0.08063266,0.03469643,0.0075167418,0.00018897653,0.013008624,0.045458764,0.09623167,0.16328022,0.24390227,0.3348472,0.43244946,0.5327751,0.63177913,0.7254716,0.81007487,0.8821794,0.93887794,0.9778856,0.9976295,0.9973141,0.97695184,0.93736386,0.8801455,0.8076037,0.7226621,0.62874544,0.529639,0.42933738,0.33188462,0.24120817,0.16096401,0.09438604,0.044158638,0.012306154,0.000112473965,0.008069277,0.03585571,0.08235201,0.14568374,0.22329804,0.3120654,0.40840918,0.508445,0.6081395,0.70347583,0.7906101,0.8660296,0.92669404,0.970159,0.9946717,0.9992442,0.98369217,0.94864243,0.8955078,0.8264309,0.744195,0.65211546,0.55390507,0.45352086,0.35501027,0.2623442,0.17925882,0.10910177,0.054701895,0.018252313,0.0012216568,0.0042968392,0.027353913,0.069462955,0.12892735,0.20334977,0.28972933,0.3845857,0.48409447,0.5842444,0.6809975,0.7704555,0.8490114,0.91349864,0.9613172,0.99054056,0.9999901,0.98928523,0.95885706,0.9099323,0.84448314,0.7651485,0.6751251,0.5780423,0.4778146,0.37848026,0.28404436,0.19831368,0.12474468,0.066301525,0.025340855,0.0035138726,0.0017000735,0.019972831,0.05759558,0.11305112,0.1841051,0.26789284,0.361036,0.45978162,0.5601485,0.6580907,0.7496595,0.8311653,0.89932185,0.9513812,0.9852458,0.99955016,0.9937175,0.96798337,0.92338455,0.8617196,0.7854725,0.6977194,0.60199636,0.50216,0.40223846,0.30625588,0.21808484,0.14127767,0.078929365,0.033555508,0.006983757,0.00028526783,0.013730317,0.046776652,0.09809327,0.16560972,0.24660525,0.33781677,0.4355642,0.53591084,0.63480806,0.7282713,0.8125345,0.88419795,0.94037455,0.9788005,0.9979253,0.99697906,0.9759993,0.9358325,0.8780975,0.8051201,0.7198447,0.6257057,0.52650124,0.42622858,0.3289278,0.2385247,0.15866154,0.09255642,0.04287654,0.011623025,5.570054e-5,0.008641243,0.037033886,0.08408809,0.14790747,0.2259211,0.31498134,0.41149956,0.51158714,0.6112057,0.7063417,0.79316163,0.86816275,0.9283234,0.9712192,0.9951194,0.9990616,0.98288655,0.9472467,0.89357734,0.824044,0.7414486,0.6491187,0.55077964,0.45039368,0.35200548,0.25958475,0.17685503,0.10714993,0.053281844,0.017420202,0.0010119379,0.004717618,0.02838847,0.07106945,0.1310404,0.20588541,0.29258475,0.3876449,0.48723587,0.5873395,0.6839244,0.77309346,0.8512542,0.9152573,0.9625201,0.9911391,0.9999605,0.9886284,0.9576,0.90812486,0.8421992,0.7624797,0.67217803,0.5749376,0.47467452,0.3754342,0.28121504,0.19581348,0.12267524,0.06474671,0.024362415,0.0031517744,0.0019687712,0.020861685,0.059068203,0.11504844,0.18654734,0.27068013,0.36405852,0.4629149,0.5632662,0.6610691,0.75237745,0.83351266,0.90120524,0.9527241,0.98599386,0.9996736,0.99321127,0.9668679,0.92170435,0.85954285,0.78288674,0.694829,0.5989178,0.49901733,0.39915836,0.30336428,0.2154949,0.13909552,0.077243984,0.032432824,0.006470084,0.00040128827,0.014471352,0.04811281,0.09997073,0.16795278,0.24931946,0.34079275,0.43868193,0.53904283,0.63783175,0.7310628,0.8149799,0.8862016,0.9418542,0.9796964,0.9982015,0.9966243,0.9750279,0.9342836,0.8760336,0.80262434,0.71701777,0.6226633,0.52336437,0.42311984,0.32597816,0.23585117,0.15637186,0.09074402,0.041613042,0.010958612,1.8656254e-5,0.0092327,0.038229257,0.08583957,0.15014717,0.228555,0.3179046,0.41459438,0.5147268,0.6142656,0.70920193,0.7957017,0.8702819,0.9299362,0.97226006,0.9955479,0.9988592,0.9820618,0.9458327,0.89163244,0.8216456,0.73869014,0.64611614,0.5476522,0.44726747,0.34900835,0.2568356,0.17446181,0.10521358,0.05187899,0.01660791,0.00082206726,0.005158365,0.029441655,0.0726929,0.13316864,0.20843115,0.29544663,0.39071128,0.49037778,0.59043217,0.6868413,0.7757189,0.8534852,0.9169995,0.9637048,0.9917184,0.9999112,0.9879527,0.9563236,0.90630126,0.8399011,0.7597997,0.66922593,0.5718308,0.47153637,0.37239307,0.2783935,0.1933268,0.12062192,0.063207686,0.02340281,0.0028092563,0.002257228,0.021768898,0.060557783,0.11706281,0.189002,0.27347732,0.36708367,0.4660478,0.56638426,0.66404104,0.75508547,0.83584744,0.90307164,0.9540483,0.9867233,0.99977726,0.99268544,0.96573377,0.9200086,0.85735047,0.78028977,0.69193083,0.5958352,0.49587658,0.39608413,0.30047697,0.2129162,0.1369276,0.07557428,0.031329304,0.0059761703,0.00053703785,0.01523158,0.04946685,0.10186285,0.17030752,0.25204524,0.343775,0.4418021,0.5421751,0.6408481,0.73384356,0.8174159,0.88819,0.94331634,0.9805729,0.9984578,0.9962497,0.97403777,0.9327176,0.8739549,0.8001182,0.714184,0.6196124,0.5202228,0.42001796,0.32303715,0.23318967,0.15409437,0.08894557,0.040366143,0.010314286,1.4007092e-6,0.009843141,0.039444357,0.08760953,0.15239793,0.23119798,0.32083327,0.4176907,0.5178698,0.6173247,0.71205044,0.7982285,0.87238514,0.9315331,0.9732836,0.9959563,0.9986373,0.9812186,0.94440216,0.8896698,0.81923175,0.7359257,0.64310956,0.5445248,0.44414145,0.34601355,0.25409275,0.17208433,0.103294015,0.0504947,0.015813708,0.0006516874,0.0056180954,0.03051278,0.07433221,0.13531268,0.2109915,0.29832008,0.39377826,0.49351817,0.5935194,0.68975437,0.77833676,0.85569954,0.9187243,0.96487045,0.992278,0.999842,0.98725694,0.95503086,0.90446275,0.83759093,0.75710785,0.6662636,0.5687174,0.46840122,0.3693588,0.27558243,0.19084921,0.118581116,0.061687768,0.022462547,0.0024866164,0.002565533,0.022696108,0.062066555,0.11908987,0.19146743,0.27628177,0.37011772,0.4691858,0.5694959,0.66700476,0.7577817,0.8381676,0.9049244,0.9553561,0.9874327,0.9998611,0.9921404,0.9645804,0.9182942,0.85514665,0.7776834,0.6890269,0.5927508,0.49273217,0.39301026,0.29760104,0.2103504,0.13477537,0.07392034,0.03024295,0.0055012107,0.00069242716,0.016010463,0.050837815,0.103773,0.17267817,0.2547775,0.3467616,0.4449227,0.5453077,0.6438626,0.73661846,0.8198364,0.8901619,0.9447601,0.98143137,0.9986947,0.9958559,0.9730295,0.9311355,0.87186265,0.79759717,0.7113383,0.61656046,0.5170841,0.41691917,0.3200996,0.23053548,0.1518333,0.087165534,0.039138883,0.009689301,3.874302e-6,0.010473728,0.040676147,0.089393616,0.15466243,0.2338548,0.3237726,0.420794,0.5210082,0.6203755,0.7148906,0.80074656,0.8744762,0.93311095,0.97428715,0.99634516,0.99839544,0.98035526,0.9429523,0.887694,0.8168081,0.73315185,0.6400937,0.5413918,0.44102144,0.3430285,0.25136292,0.16971982,0.1013878,0.049126476,0.015039623,0.00050124526,0.0060973763,0.031603754,0.07599035,0.13746855,0.21356016,0.301198,0.39684945,0.49666265,0.5966066,0.69265646,0.7809404,0.85789984,0.9204346,0.96601915,0.9928188,0.9997532,0.9865428,0.9537201,0.902606,0.8352647,0.754409,0.66329825,0.56560504,0.46526355,0.36632603,0.27277684,0.18838686,0.11655784,0.060185164,0.021541178,0.0021835864,0.002892673,0.023642212,0.06359267,0.12113443,0.19394806,0.27909845,0.37315327,0.4723212,0.5726049,0.66996187,0.76046777,0.84047437,0.90676117,0.95664597,0.98812366,0.9999254,0.99157536,0.9634102,0.9165653,0.8529289,0.775066,0.6861155,0.5896627,0.48958805,0.38994062,0.2947296,0.20779291,0.13263494,0.072285235,0.029176474,0.005046338,0.0008675158,0.01680842,0.052226543,0.105698824,0.17506176,0.25752276,0.3497579,0.44804925,0.5484347,0.6468677,0.7393806,0.82224417,0.89211833,0.94618636,0.9822709,0.9989119,0.99544215,0.9720013,0.9295344,0.8697532,0.7950674,0.7084877,0.61350393,0.51394486,0.41382372,0.31717628,0.22789195,0.14958325,0.08539966,0.037928373,0.009082943,2.6077032e-5,0.011122882,0.041926056,0.091193914,0.15694052,0.23651567,0.32671887,0.42390046,0.5241496,0.62342525,0.7177257,0.8032497,0.87654996,0.9346717,0.97527206,0.9967145,0.99813455,0.979473,0.9414848,0.8857006,0.8143691,0.73036546,0.63707596,0.538261,0.43790376,0.34004956,0.24864292,0.16736832,0.09949735,0.047776103,0.0142837465,0.00037035346,0.006596744,0.032711923,0.07766321,0.13963869,0.21614012,0.30408376,0.3999247,0.49980724,0.5996901,0.69555444,0.78353614,0.86008865,0.9221262,0.96714807,0.9933394,0.99964464,0.98580945,0.9523915,0.90073335,0.83292514,0.7516969,0.6603229,0.56248635,0.46213105,0.36330223,0.2699836,0.18593678,0.1145497,0.058699906,0.020638645,0.0018995106,0.0032407045,0.02460599,0.06513414,0.123191476,0.19643775,0.28192043,0.3761938,0.47545773,0.5757109,0.67291224,0.7631501,0.8427733,0.9085796,0.9579162,0.9887945,0.9999697,0.99099153,0.9622217,0.91481996,0.8506971,0.7724378,0.68318963,0.5865635,0.48644817,0.38687903,0.29186976,0.20525008,0.13051161,0.070667,0.028128564,0.0046110153,0.0010623038,0.017627478,0.053636342,0.10763788,0.17745528,0.2602743,0.3527565,0.45117405,0.5515597,0.64986706,0.7421333,0.8246393,0.894064,0.94759834,0.98309034,0.99910915,0.9950092,0.9709557,0.92791826,0.8676317,0.792526,0.7056289,0.6104429,0.5107974,0.41072413,0.31424952,0.22526237,0.14734977,0.08365232,0.03673756,0.008496672,6.80089e-5,0.011791319,0.043194026,0.09301478,0.15923777,0.23919669,0.32966843,0.42700616,0.52728623,0.6264664,0.72054875,0.80574095,0.8786089,0.9362153,0.97623813,0.99706495,0.997853,0.97857285,0.9400017,0.8836944,0.8119205,0.72757334,0.6340528,0.53512865,0.43478853,0.337077,0.24592626,0.16502428,0.09762499,0.04644522,0.013547987,0.0002593398,0.0071149766,0.03383851,0.07935277,0.14182305,0.21873128,0.3069843,0.40301138,0.502948,0.6027658,0.69844115,0.7861175,0.8622606,0.9238012,0.9682585,0.9938407,0.99951637,0.98505497,0.9510417,0.8988471,0.8305752,0.74897814,0.65734476,0.55936897,0.45900005,0.3602838,0.2671994,0.1834991,0.11255196,0.057228506,0.01975292,0.0016358495,0.0036075413,0.025588512,0.06669277,0.12526336,0.19893941,0.28475103,0.3792392,0.47860283,0.57882154,0.67586297,0.7658155,0.84505314,0.9103819,0.9591684,0.98944604,0.9999944,0.99038833,0.9610149,0.9130583,0.848446,0.76979244,0.68026364,0.5834685,0.4833088,0.3838219,0.2890181,0.20271888,0.12840286,0.06906572,0.027099282,0.00419423,0.0012773275,0.018463612,0.055060387,0.10959241,0.17986155,0.2630353,0.35576093,0.45430076,0.55468273,0.65286046,0.7448831,0.82702744,0.8959894,0.9489893,0.9838907,0.9992868,0.9945568,0.96989155,0.92628527,0.8654957,0.78997314,0.702755,0.6073701,0.5076572,0.40763557,0.31133717,0.22264364,0.14513022,0.08192137,0.03556505,0.007929832,0.0001296699,0.012480706,0.044483185,0.09484732,0.16154289,0.24188149,0.3326247,0.43011472,0.5304218,0.62950253,0.72336316,0.8082201,0.8806578,0.93774545,0.97718775,0.9973949,0.9975524,0.9776538,0.93850124,0.881673,0.8094597,0.7247722,0.63102436,0.5319873,0.43166828,0.33410364,0.2432262,0.16269916,0.09576851,0.04513222,0.01283139,0.0001680553,0.00765267,0.034983486,0.08105889,0.14402694,0.22133985,0.30988544,0.40609443,0.5060887,0.6058375,0.70132005,0.7886876,0.8644182,0.9254594,0.9693505,0.99432355,0.9993681,0.98428327,0.94967735,0.8969452,0.8282124,0.7462495,0.6543605,0.55624926,0.45587063,0.3572709,0.2644177,0.18106803,0.110574335,0.055778176,0.018888324,0.0013918281,0.0039939284,0.026589751,0.06826848,0.12735006,0.20145297,0.28759703,0.3822968,0.48174113,0.58192146,0.6787996,0.7684704,0.84731936,0.912168,0.9604025,0.99007833,0.9999994,0.9897642,0.959787,0.911276,0.84618664,0.7671428,0.6773305,0.5803701,0.4801701,0.3807694,0.2861748,0.2001994,0.1263037,0.06747761,0.026086241,0.0037980676,0.0015115142,0.01931873,0.056501955,0.11156234,0.18228042,0.2658056,0.35877103,0.4574293,0.55781114,0.65585506,0.7476166,0.8293968,0.89789915,0.9503625,0.98467195,0.9994446,0.99408484,0.9688089,0.9246354,0.86333996,0.7874025,0.69988,0.60430044,0.5045166,0.40455067,0.30843228,0.22003585,0.14292464,0.08020693,0.034410834,0.0073810816,0.00021129847,0.0131877065,0.045787215,0.09669581,0.1638614,0.24457648,0.3355876,0.43322605,0.5335561,0.63253355,0.7261755,0.810693,0.88268673,0.9392545,0.9781162,0.99770534,0.9972322,0.9767159,0.9369835,0.8796365,0.8069867,0.7219554,0.6279834,0.52885234,0.42855832,0.33114406,0.2405363,0.16038734,0.09392801,0.04383719,0.012134045,9.649992e-5,0.008211136,0.03614968,0.082785755,0.14623952,0.22395313,0.31279406,0.40918115,0.5092291,0.608905,0.7041911,0.7912463,0.86656666,0.92710483,0.97042656,0.99478567,0.99920034,0.98349243,0.94829524,0.8950275,0.82583654,0.7435112,0.65137005,0.5531273,0.4527354,0.3542563,0.26165205,0.17865548,0.10861209,0.05434537,0.018042713,0.0011674762,0.0043998957,0.027609676,0.06986126,0.12945661,0.20398444,0.2904445,0.38535166,0.48488018,0.5850182,0.6817292,0.7711147,0.8495718,0.9139379,0.9616183,0.9906927,0.99998456,0.98912233,0.95854384,0.90948176,0.8439137,0.7644826,0.6743904,0.5772686,0.47703218,0.37772158,0.28333306,0.19768566,0.124224395,0.06591043,0.02509436,0.0034214556,0.0017653704,0.020192832,0.057961047,0.11354762,0.18471184,0.26859194,0.36179402,0.46056712,0.5609297,0.6588363,0.7503403,0.83175313,0.89979327,0.951718,0.9854341,0.99958277,0.9935922,0.967705,0.9229648,0.8611752,0.78482676,0.69699717,0.6012267,0.50137585,0.40146953,0.30553496,0.21743912,0.14073318,0.07850495,0.033272266,0.0068531334,0.00031244755,0.01391387,0.047109187,0.098560244,0.16619313,0.24728158,0.33855695,0.43634,0.5366968,0.6355668,0.7289721,0.8131477,0.88470054,0.9407463,0.9790258,0.9979961,0.99689233,0.97575927,0.9354485,0.87758017,0.80449545,0.7191367,0.6249447,0.52571625,0.4254512,0.32819113,0.23785663,0.15808895,0.09210351,0.04256016,0.011454314,4.4554472e-5,0.008787721,0.037331372,0.08452493,0.14846605,0.22657731,0.31571007,0.41227147,0.51236916,0.6119683,0.70706093,0.79379964,0.86869544,0.92872936,0.97148144,0.99522835,0.99901295,0.9826825,0.9468955,0.89309436,0.8234478,0.7407566,0.6483664,0.54999566,0.4496096,0.3512548,0.25889578,0.17625558,0.10666531,0.052930146,0.017216086,0.00096282363,0.004826486,0.02865079,0.07147491,0.13157266,0.20652148,0.29330027,0.388411,0.48801982,0.5881116,0.68465155,0.7737484,0.8518106,0.91569144,0.962816,0.9912847,0.9999501,0.98846275,0.95727956,0.9076669,0.8416215,0.7618055,0.67143625,0.5741565,0.47388756,0.3746712,0.28050676,0.19518998,0.12215993,0.06436038,0.024121225,0.0030644536,0.002038896,0.021085858,0.059437603,0.115548134,0.18715572,0.27137387,0.3648078,0.4636913,0.5640535,0.6618185,0.7530607,0.83410215,0.9016761,0.9530588,0.9861789,0.9997014,0.9930813,0.9665853,0.92128146,0.8589961,0.7822398,0.6941065,0.59814894,0.49823505,0.3983923,0.30264527,0.21485353,0.13855588,0.076827824,0.0321576,0.0063458383,0.0004336238,0.0146611035,0.048452288,0.10044509,0.16854376,0.25000322,0.34153992,0.43946406,0.53982836,0.63858724,0.73175967,0.81559,0.8866992,0.9422207,0.97991645,0.9982672,0.9965329,0.9747838,0.93389636,0.8755188,0.80200434,0.7163162,0.6218937,0.5225715,0.42233944,0.32523784,0.2351808,0.1557985,0.090290725,0.04129812,0.010795534,1.2487173e-5,0.009383649,0.038531303,0.086280495,0.15070647,0.22921228,0.31863338,0.41536528,0.5155087,0.61502707,0.7099087,0.796329,0.87080455,0.9303409,0.9725202,0.99565244,0.9988053,0.9818515,0.9454746,0.8911409,0.8210405,0.73799914,0.64536417,0.54686964,0.44648582,0.34825915,0.25614905,0.17386845,0.10473403,0.051532537,0.016408533,0.0007778406,0.005270481,0.029705405,0.073097646,0.13369805,0.20907632,0.29617113,0.3914822,0.49116758,0.59120893,0.68757373,0.77637756,0.85404074,0.9174328,0.9639983,0.9918603,0.9998957,0.9877806,0.9560033,0.9058448,0.839327,0.759131,0.66848963,0.57105654,0.47075918,0.37164053,0.27769595,0.1927003,0.120105386,0.0628238,0.02316457,0.0027262866,0.0023328066,0.022000015,0.06093514,0.11756873,0.1896179,0.2741784,0.36784163,0.4668321,0.56715953,0.66477984,0.7557579,0.83642656,0.90353405,0.95437527,0.9869009,0.99979985,0.99255216,0.9654444,0.9195774,0.8567976,0.7796353,0.6912012,0.5950599,0.4950867,0.3953116,0.2997564,0.21227294,0.13638759,0.07515925,0.031055987,0.00585562,0.0005739033,0.015423775,0.049806654,0.102336556,0.17089605,0.25272155,0.34451467,0.44257534,0.54295075,0.6416095,0.7345449,0.8180258,0.8886874,0.9436811,0.9807903,0.9985192,0.996153,0.9737872,0.9323232,0.87343264,0.79948914,0.7134734,0.6188527,0.51944107,0.41924584,0.32230574,0.23252839,0.15353268,0.088502854,0.04006028,0.010157585,1.4901161e-7,0.010000497,0.039752424,0.08805668,0.15296614,0.23186436,0.32157093,0.4184699,0.5186553,0.6180887,0.71276206,0.79885906,0.87290925,0.9319277,0.9735353,0.996055,0.998579,0.98100555,0.9440431,0.8891815,0.8186322,0.735239,0.6423489,0.54373413,0.44335657,0.34526223,0.25340527,0.17148843,0.10281372,0.05014932,0.015618175,0.0006121993,0.005736232,0.030783772,0.07474515,0.13584831,0.2116302,0.29903615,0.3945428,0.4943004,0.59428775,0.6904744,0.7789831,0.85624623,0.9191492,0.96516216,0.9924163,0.99982154,0.98707914,0.9547029,0.90399784,0.8370079,0.7564333,0.66552204,0.5679387,0.46761677,0.3686002,0.27488026,0.19023478,0.11807576,0.0613119,0.02223131,0.0024093091,0.0026448965,0.022928566,0.06244275,0.119594604,0.19209239,0.2769919,0.3708807,0.46997422,0.5702781,0.66774905,0.7584582,0.83874905,0.905385,0.95568025,0.98760724,0.999879,0.992001,0.9642907,0.9178651,0.85459554,0.7770325,0.6883024,0.591982,0.4919538,0.39224994,0.29688942,0.20970377,0.13423374,0.07350755,0.029973,0.0053849816,0.00073459744,0.016209334,0.05118543,0.104252934,0.17327282,0.25546288,0.34751007,0.44570407,0.54608667,0.6446116,0.7373073,0.82043725,0.8906506,0.945117,0.981641,0.9987503,0.9957553,0.97277176,0.93073297,0.8713316,0.796962,0.71062213,0.61579216,0.51629466,0.41614038,0.3193664,0.22987366,0.15126956,0.08672258,0.03883457,0.009535909,7.5399876e-6,0.010633618,0.040985763,0.0898405,0.15522856,0.23451415,0.3245013,0.42156273,0.5217859,0.6211457,0.715607,0.80137724,0.87499917,0.93350506,0.97453666,0.9964399,0.9983319,0.9801365,0.942587,0.88719714,0.81619954,0.73245615,0.63934255,0.54061216,0.4402447,0.34228593,0.25068453,0.16913292,0.10091835,0.048790514,0.014850706,0.00046634674,0.0062215626,0.031880736,0.07640952,0.13801298,0.21420795,0.30192304,0.39762247,0.4974487,0.5973778,0.6933816,0.78159034,0.8584483,0.9208574,0.96630204,0.9929503,0.99972796,0.9863619,0.95339084,0.9021439,0.83468676,0.7537385,0.6625479,0.56481814,0.4644756,0.36556506,0.27207348,0.1877695,0.116051376,0.059809983,0.021312416,0.0021104515,0.002978146,0.023880512,0.06397498,0.12164536,0.19456702,0.2798005,0.37391013,0.47310233,0.57337874,0.67069733,0.7611352,0.84104687,0.9072111,0.9569671,0.9882942,0.99993837,0.99143034,0.963113,0.9161279,0.85236883,0.7744061,0.6853821,0.5888855,0.48880595,0.38917765,0.29401654,0.20715848,0.13210472,0.07188061,0.028913736,0.004936099,0.00091418624,0.017010152,0.05257517,0.10617563,0.17566252,0.25821388,0.3505115,0.44883493,0.5492208,0.6476226,0.7400738,0.8228477,0.8926079,0.94654226,0.9824768,0.9989629,0.9953361,0.97174263,0.9291334,0.8692261,0.7944355,0.7077764,0.61274195,0.51316285,0.41305324,0.3164484,0.2272296,0.14902022,0.08495867,0.03762716,0.008933663,3.4749508e-5,0.011289179,0.042243242,0.091649234,0.15751562,0.23718733,0.3274529,0.42467374,0.5249309,0.6241832,0.7184296,0.8038714,0.87706417,0.93505776,0.9755144,0.9968034,0.9980664,0.9792527,0.9411135,0.8851975,0.81375444,0.7296641,0.6363161,0.5374733,0.43712002,0.33930138,0.24796039,0.16677898,0.09902951,0.047442943,0.014098704,0.00034084916,0.006724,0.032990783,0.07808247,0.14018142,0.21678445,0.30480373,0.40069127,0.50058186,0.600464,0.6962812,0.78418636,0.86063623,0.922549,0.96742904,0.99346733,0.99961424,0.9856219,0.9520545,0.900265,0.8323411,0.75102067,0.6595817,0.5617101,0.46135107,0.3625499,0.26928928,0.18532848,0.11405191,0.05833268,0.020416796,0.0018313527,0.0033311248,0.024851322,0.06552452,0.12371114,0.19706577,0.28263152,0.37695926,0.4762467,0.5764916,0.67365324,0.7638149,0.8433424,0.90902996,0.9582298,0.9889586,0.9999777,0.99084306,0.9619228,0.9143827,0.8501391,0.77178156,0.68246865,0.58578545,0.48565856,0.38610974,0.2911518,0.20461237,0.12997988,0.0702627,0.027867943,0.004504591,0.0011143982,0.017833978,0.05398938,0.10812324,0.17805341,0.2609611,0.3535043,0.45195264,0.55233777,0.6506132,0.7428174,0.8252339,0.8945403,0.9479499,0.9832934,0.9991557,0.99489725,0.97068983,0.9275092,0.8670958,0.7918851,0.7049086,0.60967237,0.5100153,0.40995455,0.31352344,0.2246091,0.14679566,0.08321965,0.03644383,0.00835368,8.1539154e-5,0.011960804,0.043512672,0.09346527,0.15981624,0.23987094,0.33041131,0.4277877,0.5280749,0.62723047,0.7212574,0.8063656,0.87912434,0.9366008,0.9764782,0.997149,0.99777997,0.97834575,0.9396296,0.8831923,0.81130874,0.7268765,0.633299,0.53434825,0.434013,0.33633763,0.24524623,0.16443828,0.097156614,0.046113312,0.013365954,0.00023451447,0.007248372,0.034124732,0.07978028,0.14237466,0.2193847,0.30770618,0.4037789,0.5037303,0.60353124,0.69915897,0.78675866,0.8627993,0.92421573,0.9685322,0.99396247,0.9994814,0.98486644,0.9507002,0.89837027,0.8299822,0.7482928,0.6565948,0.5585846,0.45821285,0.3595255,0.26650065,0.182888,0.112057954,0.056865633,0.01953581,0.0015732348,0.0037019253,0.02583614,0.06708363,0.12578171,0.19956437,0.28545737,0.37999848,0.4793768,0.57960147,0.6766022,0.7664842,0.8456244,0.91083264,0.95948046,0.98960686,0.9999975,0.99023354,0.96070856,0.9126127,0.8478846,0.76913345,0.6795337,0.5826971,0.482527,0.3830612,0.28830916,0.20209023,0.12787992,0.06866953,0.026845843,0.004092753,0.0013343692,0.018676907,0.055421293,0.11008638,0.18046871,0.26373112,0.35651743,0.45508742,0.55546784,0.6536124,0.7455648,0.8276187,0.89646655,0.94933295,0.9840871,0.9993279,0.9944411,0.9696236,0.9258759,0.8649614,0.7893355,0.70204663,0.60659844,0.50686735,0.4068594,0.31060588,0.22198677,0.1445742,0.08148864,0.035273045,0.007790327,0.00014829636,0.01265499,0.0448063,0.09530622,0.16211912,0.2425518,0.33336204,0.4308894,0.53120255,0.63025796,0.72406274,0.8088356,0.8811596,0.93812656,0.9774231,0.99747485,0.9974737,0.97741973,0.9381212,0.8811623,0.80883884,0.7240664,0.6302619,0.5312066,0.43089342,0.3333659,0.24255529,0.1621221,0.0953086,0.044808,0.012655914,0.00014838576,0.007789612,0.035271525,0.081486404,0.14458206,0.22199607,0.31061625,0.40687037,0.5068785,0.6066094,0.7020429,0.78933215,0.86495864,0.92587376,0.96962225,0.99444044,0.99932814,0.98408806,0.94933474,0.896469,0.8276218,0.7455684,0.6536162,0.55547184,0.45509148,0.3565213,0.2637347,0.1804601,0.11007938,0.055416167,0.018673867,0.0013335347,0.0040941834,0.026844501,0.06866747,0.1278772,0.20208699,0.28830546,0.38305724,0.4825229,0.5826931,0.6795299,0.76913,0.8478817,0.9126104,0.96070695,0.99023277,0.99999756,0.9896077,0.95947605,0.91082627,0.8456163,0.7664747,0.67659175,0.5795904,0.47938085,0.38000244,0.28546104,0.19956762,0.12578443,0.06708565,0.025837451,0.003702432,0.001572907,0.019534677,0.056863755,0.11205539,0.18288484,0.26649705,0.35952163,0.4582088,0.5585957,0.6566054,0.7483025,0.8299906,0.89837706,0.95070505,0.9848654,0.9994812,0.9939631,0.96853364,0.9242179,0.86280215,0.786762,0.6991627,0.60353523,0.50373435,0.4037829,0.30770993,0.21938807,0.1423775,0.079782486,0.034126222,0.0072490573,0.0002348721,0.013368517,0.04611802,0.09716323,0.16444656,0.24525589,0.33633375,0.43400896,0.5343442,0.63329506,0.72687286,0.8113056,0.8831897,0.93962765,0.97834456,0.9977796,0.9971494,0.9764794,0.93660283,0.879127,0.8063688,0.721261,0.6272196,0.5280637,0.4277766,0.33040076,0.2398614,0.15980804,0.09346762,0.04351431,0.0119616985,8.159876e-5,0.008352935,0.03644228,0.08321738,0.14679277,0.22460574,0.31351966,0.40995052,0.51001126,0.6096684,0.70490485,0.7918818,0.8670931,0.927515,0.9706936,0.99489886,0.99915504,0.98329055,0.9479449,0.8945428,0.825237,0.742821,0.650617,0.5523418,0.4519567,0.35350817,0.26096466,0.17805654,0.108125776,0.05399123,0.01783505,0.0011146665,0.004504055,0.027866632,0.070260614,0.12998742,0.2046214,0.29116195,0.38612065,0.48566973,0.5857965,0.68246484,0.7717781,0.85013616,0.91438043,0.9619213,0.99084234,0.9999778,0.98895943,0.95823145,0.90903234,0.8433454,0.7638184,0.67365706,0.57649565,0.47625077,0.3769632,0.28263518,0.19705689,0.12370378,0.065518975,0.024847835,0.0033298433,0.0018323064,0.020415664,0.058330774,0.114049315,0.18532532,0.26928568,0.362546,0.461347,0.5617061,0.65957785,0.7510171,0.83233804,0.9002626,0.9520528,0.985621,0.99961406,0.99346805,0.9674251,0.92254305,0.8606285,0.7841772,0.6962709,0.600453,0.5005859,0.40069526,0.30480748,0.21678779,0.14018425,0.07808468,0.032992244,0.0067246556,0.00034070015,0.01409775,0.047441214,0.0990271,0.16677594,0.24795687,0.33929753,0.437116,0.5374845,0.6363269,0.72967404,0.81376314,0.8852046,0.9411187,0.9792516,0.99806607,0.9968038,0.9755157,0.9350598,0.87706685,0.8038746,0.71843326,0.6241871,0.52493495,0.42467773,0.3274567,0.23719078,0.15751857,0.09165159,0.04224488,0.011290044,3.46303e-5,0.008935779,0.037631422,0.0849649,0.14902821,0.22723898,0.3164446,0.41304925,0.5131588,0.61273795,0.70777273,0.7944323,0.86922336,0.9291314,0.97174126,0.9953356,0.9989632,0.98247784,0.9465441,0.89261043,0.8228508,0.7400774,0.64761186,0.54920965,0.4488238,0.35050082,0.2582041,0.175654,0.106178135,0.05257699,0.017011195,0.00091442466,0.004935533,0.028912365,0.07187849,0.13210195,0.2071552,0.29401284,0.3891737,0.4888019,0.5888815,0.6853783,0.7744026,0.852366,0.9161341,0.96311724,0.9914324,0.9999382,0.98829174,0.9569626,0.90721345,0.84104985,0.7611387,0.67070115,0.5733828,0.47310638,0.37391406,0.27980417,0.19457024,0.12164804,0.06397697,0.023881763,0.002978593,0.0021100938,0.021311224,0.059808046,0.11604875,0.18777823,0.27208346,0.36557582,0.46448678,0.56482923,0.66255844,0.75373507,0.8346837,0.90214145,0.95338917,0.98636097,0.99972785,0.992951,0.9663035,0.92085963,0.8584511,0.7815937,0.69338536,0.5973818,0.4974528,0.39762646,0.30192676,0.21419877,0.13800526,0.07640356,0.031876802,0.0062198043,0.00046682358,0.014849722,0.048788786,0.10091588,0.16912985,0.250681,0.34228206,0.44024065,0.5406081,0.6393387,0.7324526,0.81619644,0.8871946,0.9425852,0.9801354,0.9983316,0.9964404,0.9745331,0.93349946,0.8749918,0.80136836,0.7155969,0.6211349,0.52178997,0.42156675,0.32450512,0.23451757,0.1552315,0.089842826,0.040987372,0.010634452,7.56979e-6,0.009535104,0.038832992,0.08672029,0.15126663,0.22987023,0.31936258,0.41613635,0.5162906,0.61580306,0.71063226,0.7969711,0.8713391,0.9307386,0.97277534,0.9957548,0.9987506,0.9816421,0.94511884,0.89065313,0.8204404,0.7373109,0.6446155,0.5460907,0.4457081,0.34751394,0.2554664,0.17327589,0.10425544,0.051187217,0.016210377,0.0007340014,0.0053866208,0.029976815,0.07351336,0.13424137,0.2097129,0.29688573,0.39224598,0.49194974,0.59197795,0.68829864,0.77702916,0.8545927,0.9178629,0.9642892,0.9920003,0.9998791,0.98760813,0.9556819,0.9053874,0.83875203,0.7584617,0.66773856,0.570267,0.46996307,0.37086987,0.2769819,0.1920836,0.11959723,0.062444717,0.022929788,0.0026453137,0.002408892,0.022230119,0.061309963,0.118073136,0.19023159,0.27487662,0.36859626,0.46761268,0.56793463,0.66551816,0.7564298,0.8370049,0.90400445,0.95470756,0.98708165,0.9998218,0.99241436,0.96515805,0.9191514,0.8562491,0.7789865,0.69047815,0.59429175,0.49430448,0.39454678,0.29903987,0.21163353,0.13585109,0.074747294,0.030785173,0.0057368577,0.0006119907,0.015617162,0.050147563,0.10281125,0.17149687,0.25341502,0.34527287,0.4433677,0.5437453,0.6423596,0.73523545,0.818629,0.88917893,0.94404125,0.9810045,0.99857867,0.9960555,0.9735366,0.9319297,0.87291193,0.79886234,0.71276575,0.6180927,0.5186594,0.41847393,0.32157475,0.23185492,0.1529581,0.088050365,0.039748073,0.009998262,1.4901161e-7,0.010156751,0.040058672,0.08850056,0.15352973,0.23252496,0.32230192,0.41924182,0.519437,0.61884874,0.71346974,0.79948586,0.8734299,0.9323212,0.9737859,0.99615246,0.9985195,0.9807873,0.94367594,0.88868034,0.8180172,0.734535,0.64159876,0.5429548,0.4425794,0.34451854,0.25272506,0.17089912,0.10233903,0.049808413,0.015424788,0.00057411194,0.005854994,0.031054586,0.075157106,0.13638481,0.21226963,0.2997527,0.3953076,0.49508262,0.5950559,0.69119745,0.779632,0.8567947,0.9195752,0.9654429,0.9925488,0.99980044,0.98690534,0.9543834,0.9035455,0.8364183,0.7557483,0.6647693,0.56714845,0.46682093,0.36783084,0.27416843,0.18960914,0.11756152,0.060929805,0.021996737,0.0023317337,0.002727449,0.023167938,0.062829226,0.12011266,0.19270912,0.27769232,0.3716366,0.47075513,0.5710525,0.6684858,0.7591275,0.839324,0.9058425,0.95600164,0.98777974,0.99989563,0.99186105,0.9639998,0.917435,0.8540436,0.77638096,0.6875775,0.5912129,0.49117163,0.39148617,0.29617488,0.20907962,0.13371122,0.07310769,0.029711962,0.0052732825,0.00077676773,0.016411394,0.051537514,0.10474089,0.17387694,0.25615883,0.34826982,0.44649696,0.5468808,0.64537483,0.738009,0.8210491,0.89114785,0.94547975,0.98185456,0.99880606,0.995651,0.97251654,0.93033516,0.8708073,0.79633236,0.7099124,0.615031,0.5155128,0.41536927,0.31863716,0.22921568,0.15070939,0.08628276,0.038532883,0.009384453,1.2457371e-5,0.010794699,0.041296512,0.0902884,0.15579554,0.23517737,0.32523403,0.42233542,0.52256745,0.62188977,0.71629876,0.8019889,0.87550604,0.93388677,0.9747777,0.9965342,0.9982662,0.97991335,0.94221544,0.88669205,0.8155814,0.7317498,0.63857645,0.5398172,0.43945295,0.3415293,0.24999353,0.16853538,0.100438386,0.04844749,0.0146583915,0.00043317676,0.0063451827,0.03215617,0.07682565,0.13855305,0.21485019,0.30264154,0.39838833,0.498231,0.59814495,0.69410276,0.78223646,0.8589933,0.9212793,0.96658385,0.9930806,0.99970156,0.9861798,0.9530605,0.90167856,0.83410513,0.75306416,0.6618223,0.5640575,0.46371058,0.36482644,0.27139106,0.1871708,0.1155605,0.059432298,0.02108264,0.0020378828,0.0030657053,0.024124652,0.064365864,0.12216726,0.19519886,0.2805168,0.374682,0.47389874,0.57416755,0.67144674,0.761815,0.8416296,0.90767336,0.9572841,0.98846185,0.99995005,0.99128556,0.96281755,0.9156937,0.85181344,0.7737518,0.68465537,0.5881156,0.48802388,0.38841498,0.29330397,0.20652479,0.1315754,0.071477026,0.028652161,0.0048270524,0.0009620786,0.017213047,0.0529249,0.10665807,0.17624664,0.25888556,0.35124362,0.44959798,0.54998404,0.64835525,0.7407731,0.82345635,0.8931013,0.9469005,0.98268545,0.9990136,0.9952268,0.9714777,0.9287236,0.86868787,0.7937906,0.70705074,0.61196476,0.5123656,0.41226798,0.3157068,0.22657433,0.14846352,0.08452293,0.03733,0.008787036,4.4614077e-5,0.011455059,0.04255852,0.09210116,0.15808597,0.23785314,0.32818732,0.42544717,0.5257122,0.62494075,0.719133,0.80449224,0.8775774,0.9354428,0.97575563,0.9968911,0.9979971,0.9790292,0.9407518,0.884708,0.81315684,0.7289825,0.63557804,0.5367085,0.43632892,0.33854637,0.24727193,0.16618481,0.09855357,0.047104448,0.013911277,0.00031206012,0.006854981,0.03327629,0.07851097,0.14073566,0.21744207,0.30553824,0.40147305,0.50137943,0.60123014,0.6970004,0.7848297,0.8611776,0.9229667,0.9677062,0.99359274,0.9995829,0.9854351,0.9517197,0.8997957,0.83175623,0.7503438,0.6588402,0.56093377,0.46057117,0.36179793,0.26859555,0.18472093,0.113555044,0.05796653,0.02019614,0.0017663538,0.0034200847,0.025090694,0.06590462,0.124216676,0.19767636,0.2833225,0.37773243,0.47704336,0.5772797,0.67440087,0.7644921,0.8439218,0.9094882,0.9585483,0.98912466,0.9999846,0.9906905,0.961617,0.9139359,0.8495693,0.7711117,0.68172586,0.5850147,0.48487663,0.38534817,0.29044127,0.20398158,0.1294542,0.06986332,0.027611017,0.004400432,0.001167208,0.01804161,0.05434352,0.10860956,0.17865235,0.26164848,0.3542524,0.45273134,0.55311567,0.6513589,0.74350095,0.8258276,0.89502037,0.9482901,0.98348945,0.9991996,0.9947874,0.9704305,0.9271109,0.8665539,0.7912371,0.70418084,0.6088941,0.5092179,0.40917015,0.3127837,0.2239438,0.14623159,0.08277959,0.03614551,0.008209139,9.6559525e-5,0.01213482,0.04383865,0.093930095,0.16038996,0.24053934,0.33114743,0.42856187,0.5288559,0.6279868,0.72195864,0.8069835,0.8796339,0.93698156,0.97671473,0.9972318,0.9977057,0.9781174,0.9392564,0.88268936,0.81069624,0.7261791,0.6325449,0.5335678,0.43323764,0.33559865,0.24458656,0.16387004,0.096702725,0.045792133,0.013190359,0.00021162629,0.007379085,0.034414917,0.08021301,0.14293247,0.22004515,0.3084426,0.40456167,0.50452775,0.60431135,0.69989026,0.7874117,0.86334765,0.9246373,0.9688101,0.99408543,0.9994444,0.9846711,0.95036095,0.897897,0.8293941,0.7476135,0.6558517,0.5578076,0.45743334,0.35877493,0.26580918,0.18228358,0.111564904,0.056503862,0.019319862,0.0015118122,0.003797561,0.02608493,0.06747556,0.12630099,0.20019004,0.28616422,0.38075805,0.48015842,0.5803586,0.6773196,0.7671329,0.84617823,0.9112693,0.95978236,0.989768,0.9999994,0.99007607,0.9603981,0.9121617,0.84731126,0.768461,0.67878914,0.58191043,0.48172995,0.38228592,0.2875869,0.20145011,0.12734771,0.06826669,0.026588619,0.0039934814,0.0013920963,0.018889278,0.055779815,0.11057657,0.18107077,0.26442087,0.35726696,0.4558666,0.5562452,0.6543566,0.746246,0.8282093,0.89694273,0.94967556,0.98428226,0.99936783,0.99432415,0.9693545,0.9254655,0.86442626,0.7886971,0.7013308,0.6058489,0.50610036,0.4061059,0.30989623,0.22134957,0.14403513,0.08105278,0.034979373,0.007650703,0.00016835332,0.012833923,0.04513687,0.0957751,0.16270742,0.2432358,0.3341142,0.43167937,0.5319985,0.6310278,0.72477543,0.8094625,0.8816753,0.938503,0.9776549,0.99755275,0.99739456,0.9771867,0.93774366,0.8806555,0.80822325,0.72336674,0.62950647,0.53042585,0.43011874,0.33262855,0.24188498,0.1615459,0.094849706,0.044484884,0.0124816,0.00012993813,0.007927746,0.035560697,0.08191496,0.14512196,0.22263393,0.31132632,0.40762407,0.5076454,0.60735863,0.70274425,0.7899822,0.8655033,0.9262911,0.96989536,0.99455845,0.9992862,0.9838879,0.9489844,0.89598256,0.827019,0.74487334,0.65285707,0.55467916,0.4542972,0.35575753,0.26303214,0.1798588,0.10959017,0.055058748,0.018462658,0.0012770593,0.0041947067,0.02709797,0.06906366,0.12840015,0.2027156,0.28901443,0.38381797,0.48330474,0.5834645,0.6802598,0.769789,0.84844315,0.9130517,0.9610104,0.990386,0.9999945,0.9894484,0.959173,0.9103886,0.8450616,0.7658254,0.67587394,0.5788331,0.47858402,0.37922835,0.28474092,0.19893047,0.12525597,0.06668717,0.025584996,0.0036062002,0.0016367435,0.019756049,0.05723369,0.11255902,0.18350187,0.26720256,0.3602872,0.4590036,0.5593725,0.65734816,0.7489812,0.83057797,0.89884925,0.95104325,0.98505586,0.9995162,0.9938413,0.96825993,0.9238033,0.8622634,0.78612083,0.6984449,0.6027698,0.5029521,0.40301538,0.30698806,0.21874094,0.14183122,0.079359084,0.033842742,0.0071169436,0.00025895238,0.013545275,0.046440303,0.09761804,0.16501561,0.24591619,0.33708757,0.4347996,0.5351398,0.6340636,0.7275833,0.8119292,0.88370156,0.94000703,0.97857606,0.997854,0.99706376,0.97623706,0.9362136,0.87860656,0.8057381,0.72054553,0.62646294,0.52728266,0.42700264,0.32966506,0.23919365,0.15923515,0.09301272,0.043195695,0.011792183,6.8068504e-5,0.008495927,0.03673604,0.08365005,0.14734688,0.22525898,0.31424573,0.4107201,0.5107933,0.6104315,0.7056182,0.7925166,0.86762375,0.92791224,0.9709518,0.9950076,0.99910986,0.9830934,0.9476036,0.8940524,0.8246308,0.7421235,0.6498563,0.5515486,0.4511629,0.35274583,0.26026446,0.17744672,0.10763094,0.053631306,0.017624557,0.0010620654,0.004611492,0.028129756,0.07066882,0.130514,0.20525295,0.29187298,0.38688248,0.48645172,0.58656704,0.6831929,0.77243435,0.8506942,0.9148177,0.96222013,0.99099076,0.99996984,0.98879534,0.9579178,0.9085819,0.8427763,0.76315355,0.6729232,0.57572246,0.4754694,0.37620515,0.28193098,0.19644704,0.123199165,0.06513989,0.024609625,0.0032420456,0.0018984973,0.020641834,0.05870515,0.11455682,0.18594548,0.2699935,0.36331296,0.4621422,0.56249744,0.6603335,0.75170654,0.8329335,0.90074,0.952393,0.9858103,0.99964476,0.9933389,0.96714675,0.92212427,0.8600862,0.7835332,0.69555116,0.59968656,0.49980366,0.3999287,0.30408752,0.21614346,0.13964152,0.07766542,0.032713354,0.0065973997,0.00037020445,0.014282793,0.047774374,0.099494904,0.16735959,0.24863279,0.34003848,0.43789214,0.5382493,0.6370647,0.7303551,0.81435996,0.8856932,0.9414793,0.97946966,0.99813557,0.99671316,0.9752686,0.93466616,0.8765426,0.80324084,0.7177156,0.6234144,0.5241384,0.4238894,0.32670838,0.23651266,0.15693793,0.09119186,0.041924626,0.011122137,2.604723e-5,0.009083599,0.037929744,0.085401654,0.14958581,0.22789493,0.31717247,0.4138197,0.5139408,0.61349994,0.708484,0.79506415,0.86975044,0.9295323,0.97199994,0.99544156,0.9989122,0.98227197,0.94619167,0.8921256,0.8222531,0.73939085,0.6468789,0.5484463,0.44806087,0.34976906,0.257533,0.17507064,0.10568723,0.052221566,0.01680556,0.00086686015,0.0050479174,0.029180229,0.07229105,0.13264254,0.207802,0.29473978,0.38995153,0.48959923,0.5896662,0.6861188,0.775069,0.8529314,0.9165672,0.96341157,0.99157596,0.99992526,0.9881229,0.95664454,0.906759,0.84047735,0.7604712,0.6699657,0.5726089,0.47232527,0.3731572,0.2791021,0.19395128,0.12113708,0.06359464,0.023643464,0.0028939545,0.0021824837,0.02153778,0.06017959,0.11655033,0.18837771,0.2727664,0.36631477,0.4652519,0.56558967,0.6632836,0.75442195,0.83527577,0.90261495,0.95372486,0.9865453,0.9997535,0.9928169,0.9660151,0.9204285,0.85789466,0.78093433,0.69264966,0.5965994,0.49665526,0.39684597,0.30119473,0.21355724,0.13746607,0.07598847,0.03160253,0.006097406,0.00050121546,0.015039563,0.049126387,0.10138765,0.16971675,0.2513594,0.3430246,0.4410174,0.54138774,0.64008975,0.7331449,0.816802,0.88768905,0.9429486,0.9803531,0.99839485,0.9963466,0.97429085,0.9331168,0.87448394,0.8007559,0.7149046,0.6203906,0.5210237,0.4207792,0.32375854,0.2338421,0.15465432,0.08938724,0.040671706,0.010471463,3.8146973e-6,0.009690732,0.039141744,0.08716971,0.1518386,0.23054168,0.3201065,0.4169227,0.5170877,0.6165639,0.7113415,0.79760003,0.8718625,0.93113536,0.9730294,0.9958559,0.9986948,0.9814315,0.944762,0.8901644,0.8198395,0.73662204,0.6438665,0.54531175,0.44493052,0.34676912,0.25478438,0.17268413,0.103777796,0.05084297,0.016013384,0.000693053,0.005499482,0.030238956,0.07391423,0.13476476,0.21033776,0.29761475,0.39302492,0.49274716,0.5927618,0.6890372,0.7776927,0.8551545,0.9183003,0.9645846,0.9921417,0.99986094,0.98743105,0.9553531,0.9049201,0.838165,0.75777864,0.66700137,0.5694924,0.46918225,0.37011433,0.276282,0.19146761,0.11909002,0.062066674,0.022696197,0.002565533,0.0024861991,0.022461355,0.06168583,0.11857849,0.19084603,0.2755754,0.3693512,0.46839336,0.5687096,0.6662562,0.75710106,0.83758235,0.9044559,0.95502603,0.9872543,0.9998417,0.9922807,0.9648762,0.91873276,0.855689,0.7783243,0.68974054,0.59350836,0.493507,0.39376733,0.29830986,0.21098238,0.13530505,0.07432836,0.030510247,0.0056169927,0.0006520748,0.015815556,0.05049625,0.10329619,0.17208701,0.25409585,0.34601694,0.444145,0.54452455,0.6431093,0.73592544,0.8192315,0.8896696,0.9444003,0.9812175,0.9986371,0.99595684,0.9732849,0.9315351,0.8723904,0.7982348,0.7120576,0.6173324,0.51787764,0.41770223,0.3208442,0.23120785,0.15240633,0.087616146,0.039448887,0.0098462105,1.3411045e-6,0.010317326,0.040372044,0.08895412,0.15410522,0.23319912,0.32304764,0.42002898,0.5202339,0.61962324,0.71419066,0.8001241,0.8739598,0.93272126,0.9740401,0.9962506,0.99845755,0.98057187,0.9433147,0.88818777,0.8174131,0.7338438,0.64084834,0.5421754,0.44180235,0.34377524,0.25204545,0.17031059,0.10186529,0.049468607,0.015232563,0.00053724647,0.0059749484,0.031326562,0.07557011,0.13692221,0.21290976,0.30046976,0.3960727,0.49586487,0.59582376,0.69192004,0.7802801,0.85734224,0.9200002,0.9657281,0.99268794,0.99977684,0.98671985,0.95404357,0.903065,0.83583915,0.7550758,0.6640305,0.56637317,0.46604043,0.36707658,0.27347076,0.18899623,0.11705807,0.060556084,0.021767855,0.0022568703,0.0028096437,0.023403883,0.063209414,0.12062174,0.19332659,0.27839327,0.3723928,0.4715361,0.57182676,0.6692221,0.75979626,0.8398981,0.9062989,0.95632195,0.98795104,0.999911,0.99171984,0.9637078,0.91700387,0.8534908,0.7757287,0.68685216,0.5904437,0.4903895,0.3907227,0.2954608,0.20844376,0.13317919,0.07268509,0.029436588,0.005156219,0.0008226931,0.016610771,0.051883966,0.10522047,0.1744703,0.25684208,0.34901536,0.4472748,0.5476595,0.6461232,0.73869663,0.82164836,0.8916347,0.9458344,0.98206276,0.99885947,0.9955474,0.9722601,0.92993635,0.87028205,0.79570186,0.7092022,0.6142696,0.5147309,0.4145984,0.3179084,0.22855839,0.15015006,0.08584398,0.038232297,0.00923419,1.859665e-5,0.010956973,0.041608363,0.09073728,0.15636337,0.23584121,0.3259672,0.42310828,0.52334887,0.6226483,0.7170313,0.80263627,0.87604225,0.9342901,0.975032,0.9966256,0.99820054,0.9796933,0.9418498,0.88619566,0.8149742,0.73105633,0.63782465,0.53903735,0.4386765,0.34078756,0.2493164,0.16795012,0.09996858,0.048112094,0.014470965,0.00040122867,0.0064700246,0.032432735,0.07724282,0.13909402,0.21549314,0.30336055,0.3991544,0.49901325,0.5989119,0.69482344,0.7828818,0.85953736,0.9217001,0.9668644,0.9932097,0.99967396,0.9859966,0.95272905,0.9012122,0.8335228,0.7523892,0.66108197,0.5632816,0.46289995,0.36404407,0.2706685,0.18653715,0.115041316,0.059062928,0.020858467,0.0019679368,0.0031527877,0.024365276,0.06475034,0.12268007,0.19581935,0.28121996,0.3754395,0.47467998,0.5749411,0.67218137,0.76248115,0.8422004,0.9081258,0.9575999,0.9886284,0.9999605,0.99113953,0.96252096,0.91525847,0.85125715,0.7730968,0.68392813,0.5873454,0.48724186,0.38765258,0.29259193,0.20589179,0.13104701,0.071074486,0.028391719,0.0047192276,0.0010111928,0.017417133,0.053275734,0.107141495,0.1768432,0.2595979,0.3520198,0.4504067,0.5507927,0.64913124,0.74145836,0.82405245,0.89358425,0.9472508,0.98288894,0.9990621,0.9951184,0.9712167,0.9283205,0.86815906,0.7931572,0.7063384,0.61120224,0.51158357,0.41149795,0.3149798,0.22591972,0.14790767,0.084088236,0.037034005,0.00864163,5.567074e-5,0.011622161,0.042874873,0.09255406,0.15865716,0.23851961,0.32892215,0.42622077,0.5264934,0.6256981,0.71983594,0.80511236,0.8780898,0.9358267,0.97599566,0.99697757,0.99792653,0.97880435,0.9403819,0.8841883,0.81252277,0.7282597,0.6347955,0.5358978,0.43555307,0.3378062,0.24659723,0.1656028,0.09808773,0.046773523,0.013728619,0.0002850294,0.006984651,0.033557475,0.078932315,0.14128014,0.21808779,0.30625916,0.4022401,0.5021617,0.6019961,0.69771916,0.7854723,0.8617182,0.92338336,0.96798223,0.993717,0.99955034,0.9852471,0.95138377,0.89932543,0.83117056,0.74966633,0.6580982,0.56015724,0.4597914,0.3610463,0.26790237,0.18411416,0.11305913,0.057601452,0.019976616,0.0017012656,0.0035120547,0.025345564,0.06630853,0.124753326,0.19832414,0.2840553,0.3784911,0.47782484,0.57805246,0.6751338,0.7651556,0.84448916,0.90993655,0.9588596,0.9892863,0.99999017,0.99053967,0.9613159,0.9134966,0.8490095,0.77045417,0.68099684,0.5842437,0.48409474,0.38458687,0.28973126,0.2033515,0.12892944,0.06946504,0.027355224,0.004297495,0.0012212396,0.018250465,0.054698735,0.109096855,0.17925206,0.26233643,0.35500088,0.45351017,0.55389345,0.6521043,0.7441839,0.8264206,0.89549947,0.948636,0.983696,0.9992449,0.9946697,0.9701545,0.9266877,0.8660214,0.7906009,0.70346653,0.60813046,0.5084358,0.408401,0.31205857,0.2232919,0.1456792,0.082349,0.03585404,0.008068562,0.00011253357,0.01230672,0.04415953,0.094386995,0.16096452,0.24120834,0.33188394,0.4293362,0.52963686,0.6287429,0.72265935,0.8076005,0.88014257,0.9373612,0.97695005,0.9973134,0.99763024,0.9778879,0.93888223,0.8821854,0.8100829,0.72548115,0.6317904,0.53278726,0.43246245,0.33486006,0.24391437,0.16329134,0.09622282,0.045452923,0.013005555,0.0001886487,0.0075188577,0.03470069,0.0806385,0.14348051,0.22069365,0.30916542,0.40532967,0.50531,0.6050763,0.70060706,0.7880514,0.86388457,0.9250498,0.9690815,0.99420476,0.99940693,0.9844783,0.9500206,0.8974228,0.8288052,0.7469336,0.6551082,0.5570305,0.45665398,0.35802466,0.26511833,0.18167993,0.11107281,0.056143135,0.019105107,0.0014516413,0.0038943887,0.026334882,0.06786856,0.12682119,0.20081645,0.2868716,0.3815179,0.4809401,0.5811306,0.67805076,0.76781964,0.8467642,0.911731,0.9601011,0.9899249,1.0],"x":[0.0,0.20111221,0.40222442,0.60333663,0.80444884,1.005561,1.2066733,1.4077854,1.6088977,1.8100098,2.011122,2.2122343,2.4133465,2.6144588,2.8155708,3.016683,3.2177954,3.4189076,3.6200197,3.821132,4.022244,4.2233562,4.4244685,4.625581,4.826693,5.0278053,5.2289176,5.4300294,5.6311417,5.832254,6.033366,6.2344785,6.4355907,6.636703,6.8378153,7.038927,7.2400393,7.4411516,7.642264,7.843376,8.044488,8.245601,8.4467125,8.647825,8.848937,9.05005,9.251162,9.452273,9.653386,9.854498,10.055611,10.256722,10.457835,10.658947,10.860059,11.061172,11.262283,11.463396,11.664508,11.865621,12.066732,12.267845,12.468957,12.670069,12.8711815,13.072293,13.273406,13.474518,13.675631,13.876742,14.077854,14.278967,14.480079,14.681191,14.882303,15.083416,15.284528,15.48564,15.686752,15.887864,16.088976,16.290089,16.491201,16.692314,16.893425,17.094538,17.29565,17.496761,17.697874,17.898987,18.1001,18.30121,18.502323,18.703436,18.904547,19.10566,19.306772,19.507885,19.708996,19.910109,20.111221,20.312332,20.513445,20.714558,20.91567,21.116781,21.317894,21.519007,21.720118,21.92123,22.122343,22.323456,22.524567,22.72568,22.926792,23.127903,23.329016,23.530128,23.731241,23.932352,24.133465,24.334578,24.53569,24.736801,24.937914,25.139027,25.340137,25.54125,25.742363,25.943476,26.144587,26.3457,26.546812,26.747923,26.949036,27.150148,27.351261,27.552372,27.753485,27.954597,28.155708,28.356821,28.557934,28.759047,28.960157,29.16127,29.362383,29.563494,29.764606,29.96572,30.166832,30.367943,30.569056,30.770168,30.97128,31.172392,31.373505,31.574617,31.775728,31.976841,32.17795,32.379066,32.580177,32.78129,32.982403,33.183514,33.38463,33.58574,33.78685,33.987965,34.189075,34.390186,34.5913,34.79241,34.993523,35.194637,35.39575,35.59686,35.797974,35.999084,36.2002,36.40131,36.60242,36.803535,37.004646,37.205757,37.40687,37.607983,37.809093,38.01021,38.21132,38.41243,38.613544,38.814655,39.01577,39.21688,39.41799,39.619106,39.820217,40.021328,40.222443,40.423553,40.624664,40.82578,41.02689,41.228004,41.429115,41.630226,41.83134,42.03245,42.233562,42.434677,42.635788,42.8369,43.038013,43.239124,43.440235,43.64135,43.84246,44.043575,44.244686,44.445797,44.64691,44.848022,45.049133,45.250248,45.45136,45.65247,45.853584,46.054695,46.255806,46.45692,46.65803,46.859146,47.060257,47.261368,47.462482,47.663593,47.864704,48.06582,48.26693,48.46804,48.669155,48.870266,49.07138,49.27249,49.473602,49.674717,49.875828,50.07694,50.278053,50.479164,50.680275,50.88139,51.0825,51.28361,51.484726,51.685837,51.88695,52.088062,52.289173,52.490288,52.6914,52.89251,53.093624,53.294735,53.495846,53.69696,53.89807,54.099182,54.300297,54.501408,54.702522,54.903633,55.104744,55.30586,55.50697,55.70808,55.909195,56.110306,56.311417,56.51253,56.713642,56.914753,57.115868,57.31698,57.518093,57.719204,57.920315,58.12143,58.32254,58.52365,58.724766,58.925877,59.126987,59.328102,59.529213,59.730328,59.93144,60.13255,60.333664,60.534775,60.735886,60.937,61.13811,61.339222,61.540337,61.741447,61.94256,62.143673,62.344784,62.5459,62.74701,62.94812,63.149235,63.350346,63.551456,63.75257,63.953682,64.15479,64.3559,64.55702,64.75813,64.95924,65.160355,65.361465,65.56258,65.763695,65.964806,66.16592,66.36703,66.56814,66.76926,66.97037,67.17148,67.37259,67.5737,67.77481,67.97593,68.17704,68.37815,68.57926,68.78037,68.98149,69.1826,69.38371,69.58482,69.785934,69.987045,70.18816,70.389275,70.590385,70.7915,70.99261,71.19372,71.39484,71.59595,71.79706,71.99817,72.19928,72.4004,72.60151,72.80262,73.00373,73.20484,73.40595,73.60707,73.80818,74.00929,74.2104,74.411514,74.61263,74.81374,75.014854,75.215965,75.417076,75.61819,75.819305,76.02042,76.22153,76.42264,76.62375,76.82486,77.02598,77.22709,77.4282,77.62931,77.83042,78.03154,78.23265,78.43376,78.63487,78.83598,79.037094,79.23821,79.43932,79.640434,79.841545,80.042656,80.243774,80.444885,80.645996,80.84711,81.04822,81.24933,81.45045,81.65156,81.85267,82.05378,82.25489,82.45601,82.65712,82.85823,83.05934,83.26045,83.46156,83.66268,83.86379,84.0649,84.266014,84.467125,84.668236,84.869354,85.070465,85.271576,85.47269,85.6738,85.874916,86.07603,86.27714,86.47825,86.67936,86.88047,87.08159,87.2827,87.48381,87.68492,87.88603,88.08715,88.28826,88.48937,88.69048,88.891594,89.092705,89.29382,89.494934,89.696045,89.897156,90.09827,90.299385,90.500496,90.70161,90.90272,91.10383,91.30494,91.50606,91.70717,91.90828,92.10939,92.3105,92.51161,92.71273,92.91384,93.11495,93.31606,93.51717,93.71829,93.9194,94.120514,94.321625,94.522736,94.72385,94.924965,95.126076,95.32719,95.5283,95.72941,95.93053,96.13164,96.33275,96.53386,96.73497,96.93608,97.1372,97.33831,97.53942,97.74053,97.94164,98.14276,98.34387,98.54498,98.74609,98.947205,99.148315,99.349434,99.550545,99.751656,99.95277,100.15388,100.35499,100.55611,100.75722,100.95833,101.15944,101.36055,101.56167,101.76278,101.96389,102.165,102.36611,102.56722,102.76834,102.96945,103.17056,103.37167,103.572784,103.7739,103.97501,104.176125,104.377235,104.57835,104.77946,104.980576,105.18169,105.3828,105.58391,105.78502,105.98613,106.18725,106.38836,106.58947,106.79058,106.99169,107.19281,107.39392,107.59503,107.79614,107.99725,108.198364,108.39948,108.60059,108.801704,109.002815,109.203926,109.405045,109.606155,109.80727,110.00838,110.20949,110.4106,110.61172,110.81283,111.01394,111.21505,111.41616,111.61728,111.81839,112.0195,112.22061,112.42172,112.62283,112.82395,113.02506,113.22617,113.427284,113.628395,113.829506,114.030624,114.231735,114.432846,114.63396,114.83507,115.03619,115.2373,115.43841,115.63952,115.84063,116.04174,116.24286,116.44397,116.64508,116.84619,117.0473,117.24842,117.44953,117.65064,117.85175,118.052864,118.253975,118.45509,118.656204,118.857315,119.058426,119.25954,119.460655,119.661766,119.86288,120.06399,120.2651,120.46621,120.66733,120.86844,121.06955,121.27066,121.47177,121.67288,121.874,122.07511,122.27622,122.47733,122.678444,122.87956,123.08067,123.281784,123.482895,123.684006,123.88512,124.086235,124.287346,124.48846,124.68957,124.89068,125.0918,125.29291,125.49402,125.69513,125.89624,126.09735,126.29847,126.49958,126.70069,126.9018,127.10291,127.30403,127.50514,127.70625,127.907364,128.10847,128.30959,128.5107,128.7118,128.91292,129.11404,129.31516,129.51627,129.71738,129.91849,130.1196,130.32071,130.52182,130.72293,130.92404,131.12515,131.32628,131.52739,131.7285,131.92961,132.13072,132.33183,132.53294,132.73405,132.93517,133.13628,133.33739,133.53851,133.73962,133.94073,134.14185,134.34296,134.54407,134.74518,134.94629,135.1474,135.34851,135.54962,135.75075,135.95186,136.15297,136.35408,136.55519,136.7563,136.95741,137.15852,137.35963,137.56075,137.76186,137.96298,138.1641,138.3652,138.56631,138.76743,138.96854,139.16965,139.37076,139.57187,139.77298,139.97409,140.1752,140.37633,140.57744,140.77855,140.97966,141.18077,141.38188,141.583,141.7841,141.98521,142.18633,142.38744,142.58856,142.78967,142.99078,143.1919,143.393,143.59412,143.79523,143.99634,144.19745,144.39856,144.59967,144.8008,145.0019,145.20302,145.40413,145.60524,145.80635,146.00746,146.20857,146.40968,146.6108,146.8119,147.01303,147.21414,147.41525,147.61636,147.81747,148.01859,148.2197,148.4208,148.62192,148.82303,149.02414,149.22527,149.42638,149.62749,149.8286,150.02971,150.23082,150.43193,150.63304,150.83415,151.03526,151.23637,151.4375,151.63861,151.83972,152.04083,152.24194,152.44305,152.64417,152.84528,153.04639,153.2475,153.44861,153.64972,153.85085,154.05196,154.25307,154.45418,154.65529,154.8564,155.05751,155.25862,155.45973,155.66084,155.86195,156.06308,156.26419,156.4653,156.66641,156.86752,157.06863,157.26974,157.47086,157.67197,157.87308,158.07419,158.27531,158.47643,158.67754,158.87865,159.07976,159.28087,159.48198,159.68309,159.8842,160.08531,160.28642,160.48755,160.68866,160.88977,161.09088,161.29199,161.4931,161.69421,161.89532,162.09644,162.29755,162.49866,162.69978,162.9009,163.102,163.30312,163.50423,163.70534,163.90645,164.10756,164.30867,164.50978,164.71089,164.91202,165.11313,165.31424,165.51535,165.71646,165.91757,166.11868,166.3198,166.5209,166.72202,166.92313,167.12425,167.32536,167.52647,167.72758,167.9287,168.1298,168.33092,168.53203,168.73314,168.93425,169.13536,169.33647,169.5376,169.73871,169.93982,170.14093,170.34204,170.54315,170.74426,170.94537,171.14648,171.3476,171.5487,171.74983,171.95094,172.15205,172.35316,172.55428,172.75539,172.9565,173.15761,173.35872,173.55983,173.76094,173.96207,174.16318,174.36429,174.5654,174.76651,174.96762,175.16873,175.36984,175.57095,175.77206,175.97318,176.1743,176.37541,176.57652,176.77763,176.97874,177.17986,177.38097,177.58208,177.78319,177.9843,178.18541,178.38654,178.58765,178.78876,178.98987,179.19098,179.39209,179.5932,179.79431,179.99542,180.19653,180.39764,180.59877,180.79988,181.00099,181.2021,181.40321,181.60432,181.80544,182.00655,182.20766,182.40877,182.60988,182.81099,183.01212,183.21323,183.41434,183.61545,183.81656,184.01767,184.21878,184.41989,184.621,184.82211,185.02322,185.22435,185.42546,185.62657,185.82768,186.0288,186.2299,186.43102,186.63213,186.83324,187.03435,187.23546,187.43658,187.6377,187.8388,188.03992,188.24103,188.44214,188.64325,188.84436,189.04547,189.24658,189.4477,189.64882,189.84993,190.05104,190.25215,190.45326,190.65437,190.85548,191.0566,191.2577,191.45882,191.65993,191.86105,192.06216,192.26328,192.46439,192.6655,192.86661,193.06772,193.26883,193.46994,193.67105,193.87216,194.07329,194.2744,194.47551,194.67662,194.87773,195.07884,195.27995,195.48106,195.68217,195.88329,196.0844,196.28552,196.48663,196.68774,196.88885,197.08997,197.29108,197.49219,197.6933,197.89441,198.09552,198.29663,198.49774,198.69887,198.89998,199.10109,199.3022,199.50331,199.70442,199.90553,200.10664,200.30775,200.50887,200.70998,200.9111,201.11221,201.31332,201.51443,201.71555,201.91666,202.11777,202.31888,202.51999,202.7211,202.92221,203.12334,203.32445,203.52556,203.72667,203.92778,204.12889,204.33,204.53111,204.73222,204.93333,205.13445,205.33557,205.53668,205.7378,205.9389,206.14001,206.34113,206.54224,206.74335,206.94446,207.14557,207.34668,207.5478,207.74892,207.95003,208.15114,208.35225,208.55336,208.75447,208.95558,209.1567,209.3578,209.55891,209.76004,209.96115,210.16226,210.36337,210.56448,210.7656,210.9667,211.16782,211.36893,211.57004,211.77115,211.97226,212.17339,212.3745,212.5756,212.77672,212.97783,213.17894,213.38005,213.58116,213.78227,213.98338,214.1845,214.38562,214.58673,214.78784,214.98895,215.19006,215.39117,215.59229,215.7934,215.9945,216.19562,216.39673,216.59785,216.79897,217.00008,217.20119,217.4023,217.60341,217.80452,218.00563,218.20674,218.40785,218.60896,218.81009,219.0112,219.21231,219.41342,219.61453,219.81564,220.01675,220.21786,220.41898,220.62009,220.8212,221.02232,221.22343,221.42455,221.62566,221.82677,222.02788,222.22899,222.4301,222.63121,222.83232,223.03343,223.23456,223.43567,223.63678,223.83789,224.039,224.24011,224.44122,224.64233,224.84344,225.04456,225.24567,225.4468,225.6479,225.84901,226.05013,226.25124,226.45235,226.65346,226.85457,227.05568,227.25679,227.4579,227.65901,227.86014,228.06125,228.26236,228.46347,228.66458,228.86569,229.0668,229.26791,229.46902,229.67014,229.87125,230.07237,230.27348,230.4746,230.6757,230.87682,231.07793,231.27904,231.48015,231.68126,231.88237,232.08348,232.2846,232.48572,232.68683,232.88794,233.08905,233.29016,233.49127,233.69238,233.8935,234.0946,234.29572,234.49684,234.69795,234.89906,235.10017,235.30128,235.5024,235.7035,235.90462,236.10573,236.30684,236.50795,236.70908,236.91019,237.1113,237.31241,237.51352,237.71463,237.91574,238.11685,238.31796,238.51907,238.72018,238.92131,239.12242,239.32353,239.52464,239.72575,239.92686,240.12798,240.32909,240.5302,240.73131,240.93242,241.13353,241.33466,241.53577,241.73688,241.93799,242.1391,242.34021,242.54132,242.74243,242.94354,243.14465,243.34576,243.54689,243.748,243.94911,244.15022,244.35133,244.55244,244.75356,244.95467,245.15578,245.35689,245.558,245.75912,245.96024,246.16135,246.36246,246.56357,246.76468,246.96579,247.1669,247.36801,247.56912,247.77023,247.97136,248.17247,248.37358,248.57469,248.7758,248.97691,249.17802,249.37914,249.58025,249.78136,249.98247,250.1836,250.3847,250.58582,250.78693,250.98804,251.18915,251.39026,251.59137,251.79248,251.99359,252.1947,252.39583,252.59694,252.79805,252.99916,253.20027,253.40138,253.6025,253.8036,254.00471,254.20583,254.40694,254.60806,254.80917,255.01028,255.2114,255.4125,255.61362,255.81473,256.01584,256.21695,256.41806,256.61917,256.82028,257.0214,257.2225,257.4236,257.62473,257.82584,258.02698,258.2281,258.4292,258.6303,258.83142,259.03253,259.23364,259.43475,259.63586,259.83698,260.0381,260.2392,260.4403,260.64142,260.84253,261.04364,261.24475,261.44586,261.64697,261.84808,262.0492,262.2503,262.45145,262.65256,262.85367,263.05478,263.2559,263.457,263.6581,263.85922,264.06033,264.26144,264.46255,264.66367,264.86478,265.0659,265.267,265.4681,265.66922,265.87033,266.07144,266.27255,266.47366,266.67477,266.8759,267.07703,267.27814,267.47925,267.68036,267.88147,268.08258,268.2837,268.4848,268.6859,268.88702,269.08813,269.28925,269.49036,269.69147,269.89258,270.0937,270.2948,270.4959,270.69702,270.89813,271.09924,271.30035,271.5015,271.7026,271.90372,272.10483,272.30594,272.50705,272.70816,272.90927,273.11038,273.3115,273.5126,273.7137,273.91483,274.11594,274.31705,274.51816,274.71927,274.92038,275.1215,275.3226,275.5237,275.72482,275.92596,276.12708,276.3282,276.5293,276.7304,276.93152,277.13263,277.33374,277.53485,277.73596,277.93707,278.13818,278.3393,278.5404,278.74152,278.94263,279.14374,279.34485,279.54596,279.74707,279.94818,280.1493,280.3504,280.55154,280.75266,280.95377,281.15488,281.356,281.5571,281.7582,281.95932,282.16043,282.36154,282.56265,282.76376,282.96487,283.166,283.3671,283.5682,283.76932,283.97043,284.17154,284.37265,284.57376,284.77487,284.976,285.17712,285.37823,285.57935,285.78046,285.98157,286.18268,286.3838,286.5849,286.786,286.98712,287.18823,287.38934,287.59045,287.79156,287.99268,288.1938,288.3949,288.596,288.79712,288.99823,289.19934,289.40048,289.6016,289.8027,290.0038,290.20493,290.40604,290.60715,290.80826,291.00937,291.21048,291.4116,291.6127,291.8138,292.01492,292.21603,292.41714,292.61826,292.81937,293.02048,293.2216,293.4227,293.6238,293.82492,294.02606,294.22717,294.42828,294.6294,294.8305,295.03162,295.23273,295.43384,295.63495,295.83606,296.03717,296.23828,296.4394,296.6405,296.8416,297.04272,297.24384,297.44495,297.64606,297.84717,298.04828,298.2494,298.45053,298.65164,298.85275,299.05386,299.25497,299.4561,299.6572,299.8583,300.05942,300.26053,300.46164,300.66275,300.86386,301.06497,301.26608,301.4672,301.6683,301.86942,302.07053,302.27164,302.47275,302.67386,302.875,303.0761,303.27722,303.47833,303.67944,303.88055,304.08167,304.28278,304.4839,304.685,304.8861,305.08722,305.28833,305.48944,305.69055,305.89166,306.09277,306.29388,306.495,306.6961,306.89722,307.09833,307.29944,307.50058,307.7017,307.9028,308.1039,308.30502,308.50613,308.70724,308.90836,309.10947,309.31058,309.5117,309.7128,309.9139,310.11502,310.31613,310.51724,310.71835,310.91946,311.12057,311.3217,311.5228,311.7239,311.92505,312.12616,312.32727,312.52838,312.7295,312.9306,313.1317,313.33282,313.53394,313.73505,313.93616,314.13727,314.33838,314.5395,314.7406,314.9417,315.14282,315.34393,315.54504,315.74615,315.94727,316.14838,316.34952,316.55063,316.75174,316.95285,317.15396,317.35507,317.55618,317.7573,317.9584,318.15952,318.36063,318.56174,318.76285,318.96396,319.16507,319.36618,319.5673,319.7684,319.9695,320.17062,320.37173,320.57285,320.774,320.9751,321.1762,321.37732,321.57843,321.77954,321.98065,322.18176,322.38287,322.58398,322.7851,322.9862,323.18732,323.38843,323.58954,323.79065,323.99176,324.19287,324.39398,324.5951,324.7962,324.9973,325.19843,325.39957,325.60068,325.8018,326.0029,326.204,326.40512,326.60623,326.80734,327.00845,327.20956,327.41068,327.6118,327.8129,328.014,328.21512,328.41623,328.61734,328.81845,329.01956,329.22067,329.42178,329.6229,329.82404,330.02515,330.22626,330.42737,330.62848,330.8296,331.0307,331.2318,331.43292,331.63403,331.83514,332.03625,332.23737,332.43848,332.6396,332.8407,333.0418,333.24292,333.44403,333.64514,333.84625,334.04736,334.2485,334.44962,334.65073,334.85184,335.05295,335.25406,335.45517,335.65628,335.8574,336.0585,336.2596,336.46072,336.66183,336.86295,337.06406,337.26517,337.46628,337.6674,337.8685,338.0696,338.27072,338.47183,338.67294,338.87408,339.0752,339.2763,339.47742,339.67853,339.87964,340.08075,340.28186,340.48297,340.68408,340.8852,341.0863,341.2874,341.48853,341.68964,341.89075,342.09186,342.29297,342.49408,342.6952,342.8963,343.0974,343.29855,343.49966,343.70078,343.9019,344.103,344.3041,344.50522,344.70633,344.90744,345.10855,345.30966,345.51077,345.71188,345.913,346.1141,346.31522,346.51633,346.71744,346.91855,347.11966,347.32077,347.52188,347.72302,347.92413,348.12524,348.32635,348.52747,348.72858,348.9297,349.1308,349.3319,349.53302,349.73413,349.93524,350.13635,350.33746,350.53857,350.7397,350.9408,351.1419,351.34302,351.54413,351.74524,351.94635,352.14746,352.3486,352.5497,352.75082,352.95193,353.15305,353.35416,353.55527,353.75638,353.9575,354.1586,354.3597,354.56082,354.76193,354.96304,355.16415,355.36526,355.56638,355.7675,355.9686,356.1697,356.37082,356.57193,356.77307,356.97418,357.1753,357.3764,357.5775,357.77863,357.97974,358.18085,358.38196,358.58307,358.78418,358.9853,359.1864,359.3875,359.58862,359.78973,359.99084,360.19196,360.39307,360.59418,360.7953,360.9964,361.19754,361.39865,361.59976,361.80087,362.00198,362.2031,362.4042,362.60532,362.80643,363.00754,363.20865,363.40976,363.61087,363.81198,364.0131,364.2142,364.4153,364.61642,364.81754,365.01865,365.21976,365.42087,365.62198,365.82312,366.02423,366.22534,366.42645,366.62756,366.82867,367.0298,367.2309,367.432,367.63312,367.83423,368.03534,368.23645,368.43756,368.63867,368.83978,369.0409,369.242,369.4431,369.64423,369.84534,370.04645,370.2476,370.4487,370.6498,370.85092,371.05203,371.25314,371.45425,371.65536,371.85648,372.0576,372.2587,372.4598,372.66092,372.86203,373.06314,373.26425,373.46536,373.66647,373.86758,374.0687,374.2698,374.47092,374.67206,374.87317,375.07428,375.2754,375.4765,375.6776,375.87872,376.07983,376.28094,376.48206,376.68317,376.88428,377.0854,377.2865,377.4876,377.68872,377.88983,378.09094,378.29205,378.49316,378.69427,378.8954,379.09653,379.29764,379.49875,379.69986,379.90097,380.10208,380.3032,380.5043,380.7054,380.90652,381.10764,381.30875,381.50986,381.71097,381.91208,382.1132,382.3143,382.5154,382.71652,382.91763,383.11874,383.31985,383.52097,383.7221,383.92322,384.12433,384.32544,384.52655,384.72766,384.92877,385.12988,385.331,385.5321,385.73322,385.93433,386.13544,386.33655,386.53766,386.73877,386.93988,387.141,387.3421,387.5432,387.74432,387.94543,388.14658,388.3477,388.5488,388.7499,388.95102,389.15213,389.35324,389.55435,389.75546,389.95657,390.15768,390.3588,390.5599,390.76102,390.96213,391.16324,391.36435,391.56546,391.76657,391.96768,392.1688,392.3699,392.57104,392.77216,392.97327,393.17438,393.3755,393.5766,393.7777,393.97882,394.17993,394.38104,394.58215,394.78326,394.98438,395.1855,395.3866,395.5877,395.78882,395.98993,396.19104,396.39215,396.59326,396.79437,396.99548,397.19662,397.39774,397.59885,397.79996,398.00107,398.20218,398.4033,398.6044,398.8055,399.00662,399.20773,399.40884,399.60995,399.81107,400.01218,400.2133,400.4144,400.6155,400.81662,401.01773,401.21884,401.41995,401.6211,401.8222,402.02332,402.22443,402.42554,402.62665,402.82776,403.02887,403.22998,403.4311,403.6322,403.8333,404.03442,404.23553,404.43665,404.63776,404.83887,405.03998,405.2411,405.4422,405.6433,405.84442,406.04556,406.24667,406.44778,406.6489,406.85,407.05112,407.25223,407.45334,407.65445,407.85556,408.05667,408.25778,408.4589,408.66,408.8611,409.06223,409.26334,409.46445,409.66556,409.86667,410.06778,410.2689,410.47,410.67114,410.87225,411.07336,411.27448,411.4756,411.6767,411.8778,412.07892,412.28003,412.48114,412.68225,412.88336,413.08447,413.28558,413.4867,413.6878,413.88892,414.09003,414.29114,414.49225,414.69336,414.89447,415.0956,415.29672,415.49783,415.69894,415.90005,416.10117,416.30228,416.5034,416.7045,416.9056,417.10672,417.30783,417.50894,417.71005,417.91116,418.11227,418.3134,418.5145,418.7156,418.91672,419.11783,419.31894,419.52008,419.7212,419.9223,420.1234,420.32452,420.52563,420.72675,420.92786,421.12897,421.33008,421.5312,421.7323,421.9334,422.13452,422.33563,422.53674,422.73785,422.93896,423.14008,423.3412,423.5423,423.7434,423.94452,424.14566,424.34677,424.54788,424.749,424.9501,425.1512,425.35233,425.55344,425.75455,425.95566,426.15677,426.35788,426.559,426.7601,426.9612,427.16232,427.36343,427.56454,427.76566,427.96677,428.16788,428.369,428.57013,428.77124,428.97235,429.17346,429.37457,429.57568,429.7768,429.9779,430.17902,430.38013,430.58124,430.78235,430.98346,431.18457,431.38568,431.5868,431.7879,431.989,432.19012,432.39124,432.59235,432.79346,432.9946,433.1957,433.39682,433.59793,433.79904,434.00015,434.20126,434.40237,434.6035,434.8046,435.0057,435.20682,435.40793,435.60904,435.81015,436.01126,436.21237,436.41348,436.6146,436.8157,437.0168,437.21793,437.41907,437.62018,437.8213,438.0224,438.2235,438.42462,438.62573,438.82684,439.02795,439.22906,439.43018,439.6313,439.8324,440.0335,440.23462,440.43573,440.63684,440.83795,441.03906,441.24017,441.44128,441.6424,441.8435,442.04465,442.24576,442.44687,442.64798,442.8491,443.0502,443.2513,443.45242,443.65353,443.85464,444.05576,444.25687,444.45798,444.6591,444.8602,445.0613,445.26242,445.46353,445.66464,445.86575,446.06686,446.26797,446.46912,446.67023,446.87134,447.07245,447.27356,447.47467,447.67578,447.8769,448.078,448.2791,448.48022,448.68134,448.88245,449.08356,449.28467,449.48578,449.6869,449.888,450.0891,450.29022,450.49133,450.69244,450.8936,451.0947,451.2958,451.49692,451.69803,451.89914,452.10025,452.30136,452.50247,452.70358,452.9047,453.1058,453.30692,453.50803,453.70914,453.91025,454.11136,454.31247,454.51358,454.7147,454.9158,455.1169,455.31802,455.51917,455.72028,455.9214,456.1225,456.3236,456.52472,456.72583,456.92694,457.12805,457.32916,457.53027,457.73138,457.9325,458.1336,458.33472,458.53583,458.73694,458.93805,459.13916,459.34027,459.54138,459.7425,459.94363,460.14474,460.34586,460.54697,460.74808,460.9492,461.1503,461.3514,461.55252,461.75363,461.95474,462.15585,462.35696,462.55807,462.7592,462.9603,463.1614,463.36252,463.56363,463.76474,463.96585,464.16696,464.3681,464.5692,464.77032,464.97144,465.17255,465.37366,465.57477,465.77588,465.977,466.1781,466.3792,466.58032,466.78143,466.98254,467.18365,467.38477,467.58588,467.787,467.9881,468.1892,468.39032,468.59143,468.79254,468.99368,469.1948,469.3959,469.59702,469.79813,469.99924,470.20035,470.40146,470.60257,470.80368,471.0048,471.2059,471.407,471.60812,471.80923,472.01035,472.21146,472.41257,472.61368,472.8148,473.0159,473.217,473.41815,473.61926,473.82037,474.02148,474.2226,474.4237,474.62482,474.82593,475.02704,475.22815,475.42926,475.63037,475.83148,476.0326,476.2337,476.4348,476.63593,476.83704,477.03815,477.23926,477.44037,477.64148,477.84262,478.04373,478.24484,478.44595,478.64706,478.84818,479.0493,479.2504,479.4515,479.65262,479.85373,480.05484,480.25595,480.45706,480.65817,480.85928,481.0604,481.2615,481.46262,481.66373,481.86484,482.06595,482.26706,482.4682,482.6693,482.87042,483.07153,483.27264,483.47375,483.67487,483.87598,484.0771,484.2782,484.4793,484.68042,484.88153,485.08264,485.28375,485.48486,485.68597,485.8871,486.0882,486.2893,486.49042,486.69153,486.89267,487.09378,487.2949,487.496,487.6971,487.89822,488.09933,488.30045,488.50156,488.70267,488.90378,489.1049,489.306,489.5071,489.70822,489.90933,490.11044,490.31155,490.51266,490.71378,490.9149,491.116,491.31714,491.51825,491.71936,491.92047,492.12158,492.3227,492.5238,492.7249,492.92603,493.12714,493.32825,493.52936,493.73047,493.93158,494.1327,494.3338,494.5349,494.73602,494.93713,495.13824,495.33936,495.54047,495.7416,495.94272,496.14383,496.34494,496.54605,496.74716,496.94827,497.14938,497.3505,497.5516,497.75272,497.95383,498.15494,498.35605,498.55716,498.75827,498.95938,499.1605,499.3616,499.5627,499.76382,499.96494,500.16605,500.3672,500.5683,500.7694,500.97052,501.17163,501.37274,501.57385,501.77496,501.97607,502.1772,502.3783,502.5794,502.78052,502.98163,503.18274,503.38385,503.58496,503.78607,503.98718,504.1883,504.3894,504.5905,504.79166,504.99277,505.19388,505.395,505.5961,505.7972,505.99832,506.19943,506.40054,506.60165,506.80276,507.00388,507.205,507.4061,507.6072,507.80832,508.00943,508.21054,508.41165,508.61276,508.81387,509.01498,509.21613,509.41724,509.61835,509.81946,510.02057,510.22168,510.4228,510.6239,510.825,511.02612,511.22723,511.42834,511.62946,511.83057,512.0317,512.2328,512.4339,512.635,512.8361,513.03723,513.23834,513.43945,513.64056,513.8417,514.0428,514.2439,514.445,514.6461,514.8472,515.04834,515.24945,515.45056,515.6517,515.8528,516.05396,516.25507,516.4562,516.6573,516.8584,517.0595,517.2606,517.46173,517.66284,517.86395,518.06506,518.2662,518.4673,518.6684,518.8695,519.0706,519.2717,519.47284,519.67395,519.87506,520.0762,520.2773,520.4784,520.6795,520.8806,521.0817,521.28284,521.48395,521.68506,521.88617,522.0873,522.2884,522.4895,522.6906,522.8917,523.09283,523.29395,523.49506,523.69617,523.8973,524.0984,524.2995,524.5006,524.7017,524.9029,525.104,525.3051,525.5062,525.70734,525.90845,526.10956,526.31067,526.5118,526.7129,526.914,527.1151,527.3162,527.51733,527.71844,527.91956,528.12067,528.3218,528.5229,528.724,528.9251,529.1262,529.32733,529.52844,529.72955,529.93066,530.1318,530.3329,530.534,530.7351,530.9362,531.1373,531.33844,531.53955,531.74066,531.9418,532.1429,532.344,532.5451,532.7462,532.9473,533.14844,533.34955,533.55066,533.7518,533.95294,534.15405,534.35516,534.5563,534.7574,534.9585,535.1596,535.3607,535.5618,535.76294,535.96405,536.16516,536.3663,536.5674,536.7685,536.9696,537.1707,537.3718,537.57294,537.77405,537.97516,538.1763,538.3774,538.5785,538.7796,538.9807,539.1818,539.38293,539.58405,539.78516,539.98627,540.1874,540.3885,540.5896,540.7907,540.9918,541.19293,541.39404,541.59515,541.79626,541.9974,542.1985,542.3996,542.6007,542.8018,543.003,543.2041,543.4052,543.6063,543.80743,544.00854,544.20966,544.41077,544.6119,544.813,545.0141,545.2152,545.4163,545.61743,545.81854,546.01965,546.22076,546.4219,546.623,546.8241,547.0252,547.2263,547.4274,547.62854,547.82965,548.03076,548.2319,548.433,548.6341,548.8352,549.0363,549.2374,549.43854,549.63965,549.84076,550.0419,550.243,550.4441,550.6452,550.8463,551.0474,551.24854,551.44965,551.65076,551.8519,552.05304,552.25415,552.45526,552.6564,552.8575,553.0586,553.2597,553.4608,553.6619,553.86304,554.06415,554.26526,554.4664,554.6675,554.8686,555.0697,555.2708,555.4719,555.67303,555.87415,556.07526,556.27637,556.4775,556.6786,556.8797,557.0808,557.2819,557.48303,557.68414,557.88525,558.08636,558.2875,558.4886,558.6897,558.8908,559.0919,559.293,559.49414,559.69525,559.89636,560.0975,560.2986,560.4997,560.7008,560.902,561.1031,561.3042,561.5053,561.7064,561.90753,562.10864,562.30975,562.51086,562.712,562.9131,563.1142,563.3153,563.5164,563.7175,563.91864,564.11975,564.32086,564.522,564.7231,564.9242,565.1253,565.3264,565.5275,565.72864,565.92975,566.13086,566.332,566.5331,566.7342,566.9353,567.1364,567.3375,567.53864,567.73975,567.94086,568.14197,568.3431,568.5442,568.7453,568.9464,569.1475,569.34863,569.54974,569.75085,569.952,570.15314,570.35425,570.55536,570.7565,570.9576,571.1587,571.3598,571.5609,571.762,571.96313,572.16425,572.36536,572.56647,572.7676,572.9687,573.1698,573.3709,573.572,573.77313,573.97424,574.17535,574.37646,574.5776,574.7787,574.9798,575.1809,575.382,575.5831,575.78424,575.98535,576.18646,576.3876,576.5887,576.7898,576.9909,577.192,577.3931,577.59424,577.79535,577.99646,578.1976,578.3987,578.5998,578.80096,579.0021,579.2032,579.4043,579.6054,579.8065,580.0076,580.20874,580.40985,580.61096,580.8121,581.0132,581.2143,581.4154,581.6165,581.8176,582.01874,582.21985,582.42096,582.6221,582.8232,583.0243,583.2254,583.4265,583.6276,583.82874,584.02985,584.23096,584.43207,584.6332,584.8343,585.0354,585.2365,585.4376,585.63873,585.83984,586.04095,586.24207,586.4432,586.6443,586.8454,587.0465,587.2476,587.4487,587.64984,587.851,588.0521,588.25323,588.45435,588.65546,588.85657,589.0577,589.2588,589.4599,589.661,589.8621,590.06323,590.26434,590.46545,590.66656,590.8677,591.0688,591.2699,591.471,591.6721,591.8732,592.07434,592.27545,592.47656,592.6777,592.8788,593.0799,593.281,593.4821,593.6832,593.88434,594.08545,594.28656,594.4877,594.6888,594.8899,595.091,595.2921,595.4932,595.69434,595.89545,596.09656,596.29767,596.4988,596.69995,596.90106,597.1022,597.3033,597.5044,597.7055,597.9066,598.1077,598.30884,598.50995,598.71106,598.9122,599.1133,599.3144,599.5155,599.7166,599.9177,600.11884,600.31995,600.52106,600.72217,600.9233,601.1244,601.3255,601.5266,601.7277,601.92883,602.12994,602.33105,602.53217,602.7333,602.9344,603.1355,603.3366,603.5377,603.73883,603.93994,604.14105,604.34216,604.5433,604.7444,604.9455,605.1466,605.3477,605.5488,605.75,605.9511,606.1522,606.35333,606.55444,606.75555,606.95667,607.1578,607.3589,607.56,607.7611,607.9622,608.1633,608.36444,608.56555,608.76666,608.9678,609.1689,609.37,609.5711,609.7722,609.9733,610.17444,610.37555,610.57666,610.7778,610.9789,611.18,611.3811,611.5822,611.7833,611.98444,612.18555,612.38666,612.58777,612.7889,612.99,613.1911,613.3922,613.5933,613.79443,613.99554,614.19666,614.39777,614.5989,614.80005,615.00116,615.2023,615.4034,615.6045,615.8056,616.0067,616.2078,616.40894,616.61005,616.81116,617.01227,617.2134,617.4145,617.6156,617.8167,618.0178,618.21893,618.42004,618.62115,618.82227,619.0234,619.2245,619.4256,619.6267,619.8278,620.02893,620.23004,620.43115,620.63226,620.8334,621.0345,621.2356,621.4367,621.6378,621.8389,622.04004,622.24115,622.44226,622.6434,622.8445,623.0456,623.2467,623.4478,623.649,623.8501,624.0512,624.2523,624.4534,624.65454,624.85565,625.05676,625.2579,625.459,625.6601,625.8612,626.0623,626.2634,626.46454,626.66565,626.86676,627.0679,627.269,627.4701,627.6712,627.8723,628.0734,628.27454,628.47565,628.67676,628.87787,629.079,629.2801,629.4812,629.6823,629.8834,630.08453,630.28564,630.48676,630.68787,630.889,631.0901,631.2912,631.4923,631.6934,631.89453,632.09564,632.29675,632.49786,632.69904,632.90015,633.10126,633.30237,633.5035,633.7046,633.9057,634.1068,634.3079,634.50903,634.71014,634.91125,635.11237,635.3135,635.5146,635.7157,635.9168,636.1179,636.31903,636.52014,636.72125,636.92236,637.1235,637.3246,637.5257,637.7268,637.9279,638.129,638.33014,638.53125,638.73236,638.9335,639.1346,639.3357,639.5368,639.7379,639.939,640.14014,640.34125,640.54236,640.74347,640.9446,641.1457,641.3468,641.548,641.7491,641.9502,642.1513,642.3524,642.5535,642.75464,642.95575,643.15686,643.358,643.5591,643.7602,643.9613,644.1624,644.3635,644.56464,644.76575,644.96686,645.16797,645.3691,645.5702,645.7713,645.9724,646.1735,646.37463,646.57574,646.77686,646.97797,647.1791,647.3802,647.5813,647.7824,647.9835,648.18463,648.38574,648.58685,648.78796,648.9891,649.1902,649.3913,649.5924,649.7935,649.9946,650.19574,650.39685,650.598,650.79913,651.00024,651.20135,651.40247,651.6036,651.8047,652.0058,652.2069,652.408,652.60913,652.81024,653.01135,653.21246,653.4136,653.6147,653.8158,654.0169,654.218,654.4191,654.62024,654.82135,655.02246,655.2236,655.4247,655.6258,655.8269,656.028,656.2291,656.43024,656.63135,656.83246,657.03357,657.2347,657.4358,657.6369,657.838,658.0391,658.24023,658.44135,658.64246,658.84357,659.0447,659.2458,659.4469,659.6481,659.8492,660.0503,660.2514,660.4525,660.6536,660.85474,661.05585,661.25696,661.45807,661.6592,661.8603,662.0614,662.2625,662.4636,662.66473,662.86584,663.06696,663.26807,663.4692,663.6703,663.8714,664.0725,664.2736,664.47473,664.67584,664.87695,665.07806,665.2792,665.4803,665.6814,665.8825,666.0836,666.2847,666.48584,666.68695,666.88806,667.0892,667.2903,667.4914,667.6925,667.8936,668.0947,668.29584,668.497,668.6981,668.89923,669.10034,669.30145,669.50256,669.7037,669.9048,670.1059,670.307,670.5081,670.7092,670.91034,671.11145,671.31256,671.5137,671.7148,671.9159,672.117,672.3181,672.5192,672.72034,672.92145,673.12256,673.32367,673.5248,673.7259,673.927,674.1281,674.3292,674.53033,674.73145,674.93256,675.13367,675.3348,675.5359,675.737,675.9381,676.1392,676.34033,676.54144,676.74255,676.94366,677.1448,677.3459,677.54706,677.74817,677.9493,678.1504,678.3515,678.5526,678.7537,678.95483,679.15594,679.35706,679.55817,679.7593,679.9604,680.1615,680.3626,680.5637,680.76483,680.96594,681.16705,681.36816,681.5693,681.7704,681.9715,682.1726,682.3737,682.5748,682.77594,682.97705,683.17816,683.3793,683.5804,683.7815,683.9826,684.1837,684.3848,684.58594,684.78705,684.98816,685.1893,685.3904,685.5915,685.7926,685.9937,686.1948,686.39594,686.5971,686.7982,686.9993,687.20044,687.40155,687.60266,687.8038,688.0049,688.206,688.4071,688.6082,688.8093,689.01044,689.21155,689.41266,689.6138,689.8149,690.016,690.2171,690.4182,690.6193,690.82043,691.02155,691.22266,691.42377,691.6249,691.826,692.0271,692.2282,692.4293,692.63043,692.83154,693.03265,693.23376,693.4349,693.636,693.8371,694.0382,694.2393,694.4404,694.64154,694.84265,695.04376,695.2449,695.44604,695.64716,695.84827,696.0494,696.2505,696.4516,696.6527,696.8538,697.05493,697.25604,697.45715,697.65826,697.8594,698.0605,698.2616,698.4627,698.6638,698.8649,699.06604,699.26715,699.46826,699.6694,699.8705,700.0716,700.2727,700.4738,700.6749,700.87604,701.07715,701.27826,701.4794,701.6805,701.8816,702.0827,702.2838,702.4849,702.68604,702.88715,703.08826,703.28937,703.4905,703.6916,703.8927,704.0938,704.2949,704.4961,704.6972,704.8983,705.0994,705.30054,705.50165,705.70276,705.9039,706.105,706.3061,706.5072,706.7083,706.9094,707.11053,707.31165,707.51276,707.71387,707.915,708.1161,708.3172,708.5183,708.7194,708.92053,709.12164,709.32275,709.52386,709.725,709.9261,710.1272,710.3283,710.5294,710.7305,710.93164,711.13275,711.33386,711.535,711.7361,711.9372,712.1383,712.3394,712.5405,712.74164,712.94275,713.14386,713.34503,713.54614,713.74725,713.94836,714.1495,714.3506,714.5517,714.7528,714.9539,715.155,715.35614,715.55725,715.75836,715.9595,716.1606,716.3617,716.5628,716.7639,716.965,717.16614,717.36725,717.56836,717.7695,717.9706,718.1717,718.3728,718.5739,718.775,718.97614,719.17725,719.37836,719.57947,719.7806,719.9817,720.1828,720.3839,720.585,720.78613,720.98724,721.18835,721.38947,721.5906,721.7917,721.9928,722.1939,722.3951,722.5962,722.7973,722.9984,723.1995,723.40063,723.60175,723.80286,724.00397,724.2051,724.4062,724.6073,724.8084,725.0095,725.21063,725.41174,725.61285,725.81396,726.0151,726.2162,726.4173,726.6184,726.8195,727.0206,727.22174,727.42285,727.62396,727.8251,728.0262,728.2273,728.4284,728.6295,728.8306,729.03174,729.23285,729.43396,729.6351,729.8362,730.0373,730.2384,730.4395,730.6406,730.84174,731.04285,731.24396,731.4451,731.64624,731.84735,732.04846,732.2496,732.4507,732.6518,732.8529,733.054,733.2551,733.45624,733.65735,733.85846,734.0596,734.2607,734.4618,734.6629,734.864,735.0651,735.26624,735.46735,735.66846,735.86957,736.0707,736.2718,736.4729,736.674,736.8751,737.07623,737.27734,737.47845,737.67957,737.8807,738.0818,738.2829,738.484,738.6851,738.8862,739.08734,739.28845,739.48956,739.6907,739.8918,740.0929,740.29407,740.4952,740.6963,740.8974,741.0985,741.2996,741.50073,741.70184,741.90295,742.10406,742.3052,742.5063,742.7074,742.9085,743.1096,743.3107,743.51184,743.71295,743.91406,744.1152,744.3163,744.5174,744.7185,744.9196,745.1207,745.32184,745.52295,745.72406,745.9252,746.1263,746.3274,746.5285,746.7296,746.9307,747.13184,747.33295,747.53406,747.73517,747.9363,748.1374,748.3385,748.5396,748.7407,748.94183,749.14294,749.3441,749.5452,749.74634,749.94745,750.14856,750.3497,750.5508,750.7519,750.953,751.1541,751.3552,751.55634,751.75745,751.95856,752.15967,752.3608,752.5619,752.763,752.9641,753.1652,753.36633,753.56744,753.76855,753.96967,754.1708,754.3719,754.573,754.7741,754.9752,755.17633,755.37744,755.57855,755.77966,755.9808,756.1819,756.383,756.5841,756.7852,756.9863,757.18744,757.38855,757.58966,757.7908,757.9919,758.19305,758.39417,758.5953,758.7964,758.9975,759.1986,759.3997,759.6008,759.80194,760.00305,760.20416,760.4053,760.6064,760.8075,761.0086,761.2097,761.4108,761.61194,761.81305,762.01416,762.2153,762.4164,762.6175,762.8186,763.0197,763.2208,763.42194,763.62305,763.82416,764.02527,764.2264,764.4275,764.6286,764.8297,765.0308,765.23193,765.43304,765.63416,765.83527,766.0364,766.2375,766.4386,766.6397,766.8408,767.04193,767.2431,767.4442,767.6453,767.84644,768.04755,768.24866,768.44977,768.6509,768.852,769.0531,769.2542,769.4553,769.65643,769.85754,770.05865,770.25977,770.4609,770.662,770.8631,771.0642,771.2653,771.46643,771.66754,771.86865,772.06976,772.2709,772.472,772.6731,772.8742,773.0753,773.2764,773.47754,773.67865,773.87976,774.0809,774.282,774.4831,774.6842,774.8853,775.0864,775.28754,775.48865,775.68976,775.89087,776.092,776.29315,776.49426,776.6954,776.8965,777.0976,777.2987,777.4998,777.7009,777.90204,778.10315,778.30426,778.5054,778.7065,778.9076,779.1087,779.3098,779.5109,779.71204,779.91315,780.11426,780.31537,780.5165,780.7176,780.9187,781.1198,781.3209,781.52203,781.72314,781.92426,782.12537,782.3265,782.5276,782.7287,782.9298,783.1309,783.33203,783.53314,783.73425,783.93536,784.1365,784.3376,784.5387,784.7398,784.9409,785.1421,785.3432,785.5443,785.7454,785.94653,786.14764,786.34875,786.54987,786.751,786.9521,787.1532,787.3543,787.5554,787.75653,787.95764,788.15875,788.35986,788.561,788.7621,788.9632,789.1643,789.3654,789.5665,789.76764,789.96875,790.16986,790.371,790.5721,790.7732,790.9743,791.1754,791.3765,791.57764,791.77875,791.97986,792.18097,792.3821,792.5832,792.7843,792.9854,793.1865,793.38763,793.58875,793.78986,793.99097,794.19214,794.39325,794.59436,794.7955,794.9966,795.1977,795.3988,795.5999,795.801,796.00214,796.20325,796.40436,796.60547,796.8066,797.0077,797.2088,797.4099,797.611,797.81213,798.01324,798.21436,798.41547,798.6166,798.8177,799.0188,799.2199,799.421,799.62213,799.82324,800.02435,800.22546,800.4266,800.6277,800.8288,801.0299,801.231,801.4321,801.63324,801.83435,802.03546,802.2366,802.4377,802.6388,802.8399,803.041,803.2422,803.4433,803.6444,803.8455,804.04663,804.24774]}
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/runner.jl
new file mode 100755
index 000000000000..ae51f618c2f3
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/test/fixtures/julia/runner.jl
@@ -0,0 +1,86 @@
+#!/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, name )
+
+Generate fixture data and write to file.
+
+# Arguments
+
+* `domain`: domain
+* `name::AbstractString`: output filename
+
+# Examples
+
+``` julia
+julia> x = range( -1000.0, stop = 1000.0, length = 2001 );
+julia> gen( x, \"data.json\" );
+```
+"""
+function gen( domain, name )
+ x = collect( domain );
+ y = (1.0f0 .+ cos.( x )) ./ 2.0f0;
+
+ # Store data to be written to file as a collection:
+ data = Dict([
+ ("x", x),
+ ("expected", y)
+ ]);
+
+ # Based on the script directory, create an output filepath:
+ filepath = joinpath( dir, name );
+
+ # Write the data to the output filepath as JSON:
+ 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 = Float32.( range( -256.0*pi, stop = 0.0, length = 4000 ) );
+gen( x, "medium_negative.json" );
+
+# Positive medium sized values:
+x = Float32.( range( 0.0, stop = 256.0*pi, length = 4000 ) );
+gen( x, "medium_positive.json" );
+
+# Negative large values:
+x = Float32.( range( -2.0^20*(pi/2.0), stop = -2.0^60*(pi/2.0), length = 4000 ) );
+gen( x, "large_negative.json" );
+
+# Positive large values:
+x = Float32.( range( 2.0^20*(pi/2.0), stop = 2.0^60*(pi/2.0), length = 4000 ) );
+gen( x, "large_positive.json" );
+
+# Negative huge values:
+x = Float32.( range( -2.0^60*(pi/2.0), stop = -2.0^120*(pi/2.0), length = 4000 ) );
+gen( x, "huge_negative.json" );
+
+# Positive huge values:
+x = Float32.( range( 2.0^60*(pi/2.0), stop = 2.0^120*(pi/2.0), length = 4000 ) );
+gen( x, "huge_positive.json" );
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/test/test.js b/lib/node_modules/@stdlib/math/base/special/havercosf/test/test.js
new file mode 100644
index 000000000000..f0356e506401
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/test/test.js
@@ -0,0 +1,173 @@
+/**
+* @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 isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var f32 = require( '@stdlib/number/float64/base/to-float32' );
+var PINF = require( '@stdlib/constants/float32/pinf' );
+var NINF = require( '@stdlib/constants/float32/ninf' );
+var havercosf = require( './../lib' );
+
+
+// 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 havercosf, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function computes the half-value versed cosine (for -256*pi < x < 0 )', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = mediumNegative.x;
+ expected = mediumNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = havercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the half-value versed cosine (for 0 < x < 256*pi )', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = mediumPositive.x;
+ expected = mediumPositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = havercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the half-value versed cosine (for -2**60 (PI/2) < x < -2**20 (PI/2) )', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = largeNegative.x;
+ expected = largeNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = havercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the half-value versed cosine (for 2**20 (PI/2) < x < 2**60 (PI/2) )', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = largePositive.x;
+ expected = largePositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = havercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the half-value versed cosine (for x <= -2**60 (PI/2) )', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = hugeNegative.x;
+ expected = hugeNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = havercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the half-value versed cosine (for x >= 2**60 (PI/2) )', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = hugePositive.x;
+ expected = hugePositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = havercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided a `NaN`', function test( t ) {
+ var v = havercosf( NaN );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided `+infinity`', function test( t ) {
+ var v = havercosf( PINF );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided `-infinity`', function test( t ) {
+ var v = havercosf( NINF );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});
diff --git a/lib/node_modules/@stdlib/math/base/special/havercosf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/havercosf/test/test.native.js
new file mode 100644
index 000000000000..6a6ebeeb69d9
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/havercosf/test/test.native.js
@@ -0,0 +1,182 @@
+/**
+* @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 isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var f32 = require( '@stdlib/number/float64/base/to-float32' );
+var PINF = require( '@stdlib/constants/float32/pinf' );
+var NINF = require( '@stdlib/constants/float32/ninf' );
+var tryRequire = require( '@stdlib/utils/try-require' );
+
+
+// VARIABLES //
+
+var havercosf = tryRequire( resolve( __dirname, './../lib/native.js' ) );
+var opts = {
+ 'skip': ( havercosf 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 havercosf, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function computes the half-value versed cosine (for -256*pi < x < 0 )', opts, function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = mediumNegative.x;
+ expected = mediumNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = havercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the half-value versed cosine (for 0 < x < 256*pi )', opts, function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = mediumPositive.x;
+ expected = mediumPositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = havercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the half-value versed cosine (for -2**60 (PI/2) < x < -2**20 (PI/2) )', opts, function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = largeNegative.x;
+ expected = largeNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = havercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the half-value versed cosine (for 2**20 (PI/2) < x < 2**60 (PI/2) )', opts, function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = largePositive.x;
+ expected = largePositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = havercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the half-value versed cosine (for x <= -2**60 (PI/2) )', opts, function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = hugeNegative.x;
+ expected = hugeNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = havercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the half-value versed cosine (for x >= 2**60 (PI/2) )', opts, function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = hugePositive.x;
+ expected = hugePositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = havercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided a `NaN`', opts, function test( t ) {
+ var v = havercosf( NaN );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided `+infinity`', opts, function test( t ) {
+ var v = havercosf( PINF );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided `-infinity`', opts, function test( t ) {
+ var v = havercosf( NINF );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});