From b1c440e10221f0263e20c7c964e991d098a6c336 Mon Sep 17 00:00:00 2001 From: Karan Anand Date: Fri, 25 Jul 2025 19:41:38 +0530 Subject: [PATCH] feat: add `math/base/special/sincf` --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: passed - task: lint_repl_help status: passed - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: passed - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: passed - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: passed - task: lint_c_benchmarks status: passed - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed --- --- .../@stdlib/math/base/special/sincf/README.md | 201 ++++++++++++++++++ .../base/special/sincf/benchmark/benchmark.js | 54 +++++ .../sincf/benchmark/benchmark.native.js | 63 ++++++ .../special/sincf/benchmark/c/native/Makefile | 146 +++++++++++++ .../sincf/benchmark/c/native/benchmark.c | 138 ++++++++++++ .../math/base/special/sincf/binding.gyp | 170 +++++++++++++++ .../math/base/special/sincf/docs/repl.txt | 29 +++ .../base/special/sincf/docs/types/index.d.ts | 48 +++++ .../base/special/sincf/docs/types/test.ts | 44 ++++ .../base/special/sincf/examples/c/Makefile | 146 +++++++++++++ .../base/special/sincf/examples/c/example.c | 31 +++ .../math/base/special/sincf/examples/index.js | 30 +++ .../math/base/special/sincf/include.gypi | 53 +++++ .../include/stdlib/math/base/special/sincf.h | 38 ++++ .../math/base/special/sincf/lib/index.js | 49 +++++ .../math/base/special/sincf/lib/main.js | 97 +++++++++ .../math/base/special/sincf/lib/native.js | 58 +++++ .../math/base/special/sincf/manifest.json | 87 ++++++++ .../math/base/special/sincf/package.json | 67 ++++++ .../math/base/special/sincf/src/Makefile | 70 ++++++ .../math/base/special/sincf/src/addon.c | 22 ++ .../math/base/special/sincf/src/main.c | 65 ++++++ .../special/sincf/test/fixtures/julia/REQUIRE | 2 + .../sincf/test/fixtures/julia/data.json | 1 + .../test/fixtures/julia/huge_negative.json | 1 + .../test/fixtures/julia/huge_positive.json | 1 + .../test/fixtures/julia/large_negative.json | 1 + .../test/fixtures/julia/large_positive.json | 1 + .../test/fixtures/julia/medium_negative.json | 1 + .../test/fixtures/julia/medium_positive.json | 1 + .../sincf/test/fixtures/julia/runner.jl | 86 ++++++++ .../test/fixtures/julia/tiny_negative.json | 1 + .../test/fixtures/julia/tiny_positive.json | 1 + .../math/base/special/sincf/test/test.js | 177 +++++++++++++++ .../base/special/sincf/test/test.native.js | 186 ++++++++++++++++ 35 files changed, 2166 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/README.md create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/benchmark/benchmark.js create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/benchmark/benchmark.native.js create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/benchmark/c/native/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/benchmark/c/native/benchmark.c create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/binding.gyp create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/docs/repl.txt create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/docs/types/index.d.ts create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/docs/types/test.ts create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/examples/c/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/examples/c/example.c create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/examples/index.js create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/include.gypi create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/include/stdlib/math/base/special/sincf.h create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/lib/index.js create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/lib/main.js create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/lib/native.js create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/manifest.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/package.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/src/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/src/addon.c create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/src/main.c create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/REQUIRE create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/data.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/huge_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/huge_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/large_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/large_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/medium_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/medium_positive.json create mode 100755 lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/runner.jl create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/tiny_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/tiny_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/test/test.js create mode 100644 lib/node_modules/@stdlib/math/base/special/sincf/test/test.native.js diff --git a/lib/node_modules/@stdlib/math/base/special/sincf/README.md b/lib/node_modules/@stdlib/math/base/special/sincf/README.md new file mode 100644 index 000000000000..aabcc2a34a6e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/README.md @@ -0,0 +1,201 @@ + + +# sincf + +> Compute the [cardinal sine][sinc] of a single-precision floating-point number (in radians). + +
+ +The normalized [cardinal sine][sinc] function is defined as + + + +```math +\mathop{\mathrm{sinc}}(x) := \begin{cases} \frac {\sin(\pi x)}{\pi x} & \textrm{if}\ x \neq 0 \\ 1 & \textrm{if}\ x = 0 \end{cases} +``` + + + +for any real number `x`. + +
+ + + +
+ +## Usage + +```javascript +var sincf = require( '@stdlib/math/base/special/sincf' ); +``` + +#### sincf( x ) + +Computes the normalized [cardinal sine][sinc] of a single-precision floating-point number (in radians). + +```javascript +var v = sincf( 0.5 ); +// returns ~0.637 + +v = sincf( -1.2 ); +// returns ~-0.156 + +v = sincf( 0.0 ); +// returns 1.0 + +v = sincf( NaN ); +// returns NaN +``` + +
+ + + +
+ +## Examples + + + +```javascript +var uniform = require( '@stdlib/random/array/uniform' ); +var logEachMap = require( '@stdlib/console/log-each-map' ); +var sincf = require( '@stdlib/math/base/special/sincf' ); + +var opts = { + 'dtype': 'float32' +}; +var x = uniform( 100, -5.0, 5.0, opts ); + +logEachMap( 'sincf( %0.4f ) = %0.4f', x, sincf ); +``` + +
+ + + + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/math/base/special/sincf.h" +``` + +#### stdlib_base_sincf( x ) + +Computes the normalized [cardinal sine][sinc] of a single-precision floating-point number (in radians). + +```c +float y = stdlib_base_sincf( 0.5f ); +// returns ~0.637f +``` + +The function accepts the following arguments: + +- **x**: `[in] float` input value. + +```c +float stdlib_base_sincf( const float x ); +``` + +
+ + + + + +
+ +
+ + + + + +
+ +### Examples + +```c +#include "stdlib/math/base/special/sincf.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_sincf( x[ i ] ); + printf( "sincf(%f) = %f\n", x[ i ], y ); + } +} +``` + +
+ + + +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/math/base/special/sincf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/sincf/benchmark/benchmark.js new file mode 100644 index 000000000000..23c5af5ba64e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/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 sincf = 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 = sincf( 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/sincf/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/sincf/benchmark/benchmark.native.js new file mode 100644 index 000000000000..c896891e64f7 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/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 sincf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( sincf 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 = sincf( 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/sincf/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/sincf/benchmark/c/native/Makefile new file mode 100644 index 000000000000..a4bd7b38fd74 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/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/sincf/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/sincf/benchmark/c/native/benchmark.c new file mode 100644 index 000000000000..5cdc730ea18a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/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/sincf.h" +#include +#include +#include +#include +#include + +#define NAME "sincf" +#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_sincf( 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/sincf/binding.gyp b/lib/node_modules/@stdlib/math/base/special/sincf/binding.gyp new file mode 100644 index 000000000000..68a1ca11d160 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/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/sincf/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/sincf/docs/repl.txt new file mode 100644 index 000000000000..3726cdeee8e3 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/docs/repl.txt @@ -0,0 +1,29 @@ + +{{alias}}( x ) + Computes the normalized cardinal sine of a single-precision floating-point + number (in radians). + + Parameters + ---------- + x: number + Input value. + + Returns + ------- + y: number + Cardinal sine. + + Examples + -------- + > var y = {{alias}}( 0.5 ) + ~0.637 + > y = {{alias}}( -1.2 ) + ~-0.156 + > y = {{alias}}( 0.0 ) + 1.0 + > y = {{alias}}( NaN ) + NaN + + See Also + -------- + diff --git a/lib/node_modules/@stdlib/math/base/special/sincf/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/sincf/docs/types/index.d.ts new file mode 100644 index 000000000000..6d78025610ff --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/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 normalized cardinal sine of a single-precision floating-point number (in radians). +* +* @param x - input value +* @returns cardinal sine +* +* @example +* var v = sincf( 0.5 ); +* // returns ~0.637 +* +* @example +* var v = sincf( -1.2 ); +* // returns ~-0.156 +* +* @example +* var v = sincf( 0.0 ); +* // returns 1.0 +* +* @example +* var v = sincf( NaN ); +* // returns NaN +*/ +declare function sincf( x: number ): number; + + +// EXPORTS // + +export = sincf; diff --git a/lib/node_modules/@stdlib/math/base/special/sincf/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/sincf/docs/types/test.ts new file mode 100644 index 000000000000..79f7d58e2f99 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/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 sincf = require( './index' ); + + +// TESTS // + +// The function returns a number... +{ + sincf( 8 ); // $ExpectType number +} + +// The compiler throws an error if the function is provided a value other than a number... +{ + sincf( true ); // $ExpectError + sincf( false ); // $ExpectError + sincf( null ); // $ExpectError + sincf( undefined ); // $ExpectError + sincf( '5' ); // $ExpectError + sincf( [] ); // $ExpectError + sincf( {} ); // $ExpectError + sincf( ( x: number ): number => x ); // $ExpectError +} + +// The compiler throws an error if the function is provided insufficient arguments... +{ + sincf(); // $ExpectError +} diff --git a/lib/node_modules/@stdlib/math/base/special/sincf/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/sincf/examples/c/Makefile new file mode 100644 index 000000000000..25ced822f96a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/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/sincf/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/sincf/examples/c/example.c new file mode 100644 index 000000000000..acf780b36cd6 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/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/sincf.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_sincf( x[ i ] ); + printf( "sincf(%f) = %f\n", x[ i ], y ); + } +} diff --git a/lib/node_modules/@stdlib/math/base/special/sincf/examples/index.js b/lib/node_modules/@stdlib/math/base/special/sincf/examples/index.js new file mode 100644 index 000000000000..c48e9a2ff259 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/examples/index.js @@ -0,0 +1,30 @@ +/** +* @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 sincf = require( './../lib' ); + +var opts = { + 'dtype': 'float32' +}; +var x = uniform( 100, -5.0, 5.0, opts ); + +logEachMap( 'sincf( %0.4f ) = %0.4f', x, sincf ); diff --git a/lib/node_modules/@stdlib/math/base/special/sincf/include.gypi b/lib/node_modules/@stdlib/math/base/special/sincf/include.gypi new file mode 100644 index 000000000000..ecfaf82a3279 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/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", + "sin", + "sincf", + "sine", + "cardinal", + "trig", + "trigonometry", + "normalized" + ] +} diff --git a/lib/node_modules/@stdlib/math/base/special/sincf/src/Makefile b/lib/node_modules/@stdlib/math/base/special/sincf/src/Makefile new file mode 100644 index 000000000000..7733b6180cb4 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/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/sincf/src/addon.c b/lib/node_modules/@stdlib/math/base/special/sincf/src/addon.c new file mode 100644 index 000000000000..7fc5a620c2b7 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/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/sincf.h" +#include "stdlib/math/base/napi/unary.h" + +STDLIB_MATH_BASE_NAPI_MODULE_F_F( stdlib_base_sincf ) diff --git a/lib/node_modules/@stdlib/math/base/special/sincf/src/main.c b/lib/node_modules/@stdlib/math/base/special/sincf/src/main.c new file mode 100644 index 000000000000..bb3164c9bc5f --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/src/main.c @@ -0,0 +1,65 @@ +/** +* @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/sincf.h" +#include "stdlib/math/base/special/sinpif.h" +#include "stdlib/math/base/assert/is_nanf.h" +#include "stdlib/math/base/assert/is_infinitef.h" +#include "stdlib/constants/float32/pi.h" + +/** +* Computes the normalized cardinal sine of a single-precision floating-point number (in radians). +* +* ## Method +* +* For \\( x \neq 0 \\), the normalized cardinal sine is calculated as +* +* ```tex +* \operatorname{sinc}(x) = \frac{\operatorname{sin}(\pi x)}{\pi x}. +* ``` +* +* ## Special Cases +* +* ```tex +* \begin{align*} +* \operatorname{sinc}(0) &= 1 & \\ +* \operatorname{sinc}(\infty) &= 0 & \\ +* \operatorname{sinc}(-\infty) &= 0 & \\ +* \operatorname{sinc}(\mathrm{NaN}) &= \mathrm{NaN} +* \end{align*} +* ``` +* +* @param x input value +* @return cardinal sine +* +* @example +* float y = stdlib_base_sincf( 0.5f ); +* // returns ~0.637f +*/ +float stdlib_base_sincf( const float x ) { + if ( stdlib_base_is_nanf( x ) ) { + return 0.0f / 0.0f; // NaN + } + if ( stdlib_base_is_infinitef( x ) ) { + return 0.0f; + } + if ( x == 0.0f ) { + return 1.0f; + } + return stdlib_base_sinpif( x ) / ( STDLIB_CONSTANT_FLOAT32_PI * x ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/REQUIRE new file mode 100644 index 000000000000..308c3be89c85 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 1.5 +JSON 0.21 diff --git a/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/data.json b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/data.json new file mode 100644 index 000000000000..9deb0b81476d --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/data.json @@ -0,0 +1 @@ +{"expected":[0.0,-0.0004979484171856053,-0.0009841399885140729,-0.0014465974938411748,-0.001873915821329042,-0.0022555432153013566,-0.002582041805419834,-0.002845320985171439,-0.0030388378693467265,-0.003157759864523715,-0.0031990853139244606,-0.0031617192056659906,-0.0030465020362126353,-0.002856191071681028,-0.0025953944202871545,-0.002270459490870487,-0.0018893185364843,-0.0014612950408170098,-0.0009968756725717792,-0.0005074533850053559,-5.047953504107395e-6,0.0004979891943641825,0.0009892786084450267,0.0014567174418617138,0.0018887775777249986,0.002274789913622713,0.0026052077940286423,0.0028718430868188084,0.0030680690666735405,0.003188985079062221,0.003231538893921081,0.0031946036951719567,0.003079007765459827,0.002887516087604052,0.002624764266710047,0.002297146350598696,0.0019126592622949528,0.001480707628769972,0.0010118737685612493,0.0005176584631119219,1.0198861363700948e-5,-0.0004980295636934392,-0.0009945196882999979,-0.0014670405030020358,-0.0019039383969259704,-0.002294424540413871,-0.002628841279696403,-0.0028989009665132703,-0.0030978913172011774,-0.0032208422133739355,-0.00326464979997276,-0.0032281547830542373,-0.003112172953577059,-0.002919477137058461,-0.0026547309634748686,-0.0023243760378063583,-0.0019364752399723662,-0.0015005159652911758,-0.001027178106299872,-0.0005280724493664604,-1.545589339407222e-5,0.0004980695251135532,0.0009998664106766566,0.0014775729769418826,0.0019194075529372137,0.002314459127279241,0.0026529567659724818,0.002926511251937036,0.0031283229710997546,0.0032533508943310163,0.003298438456543866,0.00326239319062105,0.003146018108595766,0.0029520940078529984,0.002685313086918562,0.0023521654539889717,0.0019607812722298736,0.0015207323804181968,0.0010427982287369107,0.0005387018526958475,2.0822351418051697e-5,-0.0004981090785657377,-0.001005322090856745,-0.0014883214261299312,-0.0019351947067978814,-0.0023349062082004823,-0.002677569362315304,-0.002954691265781971,-0.003159383145946983,-0.0032865315700335456,-0.0033329261431463155,-0.003297340507108926,-0.003180564597991611,-0.0029853873174923,-0.0027165299926846776,-0.0023805322100585694,-0.0019855927834285998,-0.0015413697222672565,-0.0010587440800023894,-0.0005495534558027233,-2.6301676208954497e-5,0.0004981482239912289,0.0010108901837920985,0.0014992926896293514,0.0019513099269824446,0.0023557788460340265,0.002702694816065715,0.0029834590624454606,0.003191091767267006,0.003320405553214996,0.0033681350395562424,0.0033330192356046673,0.0032158346941821626,0.003019378557122128,0.0027484018570227975,0.002409494663957775,0.002010925852557115,0.0015624413845310434,0.001075026026713675,0.0005606343297113969,3.189745487887599e-5,-0.0004981869613324518,-0.0010165742915382609,-0.0015104938978460383,-0.0019677637111083822,-0.0023770906607018085,-0.0027283495464680823,-0.0030128334670749615,-0.0032234696116672655,-0.003354995067429716,-0.0034040882739307583,-0.003369452841914527,-0.0032518516229450554,-0.0030540901382987242,-0.002780949720741039,-0.0024390719606944716,-0.0020367972483311494,-0.0015839613357489504,-0.001091654880652145,-0.0005719518492535973,-3.761342874095078e-5,0.0004982252905318412,0.001022378171167947,0.0015219324882094376,0.0019845670090447563,0.0023988558592064244,0.0027545506808907545,0.0030428341171408273,0.003256538352768117,0.003390323296233511,0.003440809974044072,0.003406665806602925,0.003288639614979209,0.003089545442794039,0.0028141955360155855,0.002469284074977216,0.002063224466578198,0.0016059441504799085,0.0011086419229187027,0.0005835137095606349,4.3453501686560485e-5,-0.0004982632115330347,-0.0010283057431994059,-0.001533616221877156,-0.0020017312475315977,-0.0024210892676064023,-0.0027813160934166492,-0.003073481506728138,-0.0032903206101400993,-0.0034264144355852654,-0.003478325321881563,-0.0034446836804439013,-0.003326223960848225,-0.0031257688756715562,-0.0028481622162732953,-0.0025001518566542887,-0.002090225770078284,-0.001628405042528276,-0.0011259989296769795,-0.0005953279436442237,-4.942174911208309e-5,0.0004983007242796662,0.0010343611005830435,0.0015455532015407746,0.002019268356425221,0.0024438063651054985,0.0028086644459837766,0.0031047970337596863,0.0033248400014794723,0.0034632937497192768,0.0035166606118513114,0.0034835331435485407,0.003364631069569198,0.003162785921883737,0.0028828736893883916,0.0025316970791701855,0.0021178202310554437,0.0016513599003776449,0.001143738199612283,0.0006074029411455721,5.552242744295473e-5,-0.0004983378287165857,-0.001040548518285073,-0.001557751890422174,-0.002037190796694864,-0.002467023320419674,-0.002836615232277634,-0.0031368030503765147,-0.0033601211982765395,-0.003500987630758621,-0.003555843312895935,-0.003523242068456614,-0.003403888531130716,-0.003200623206669064,-0.0029183549544499247,-0.0025639424912796407,-0.0021460277765237355,-0.0016748253250103383,-0.001161872583236179,-0.0006197474683495501,-6.175998429688796e-5,0.0004983745247886269,0.0010468724635200573,0.001570221132549645,0.002055511590311878,0.002490757030600152,0.002865188824589519,0.003169522916727579,0.003396189985250863,0.0035395236623659747,0.0035959021348129865,0.0035638395875052563,0.0034440251832525124,0.003239308560047316,0.0029546321423858986,0.00259691187227384,0.0021748692367183297,0.0016988186702973905,0.0011804155141881586,0.0006323706895593717,6.813906934222675e-5,-0.0004984108124418531,-0.0010533376066790532,-0.0015829701744203663,-0.0020742443521781905,-0.0025150251625112746,-0.002894406523879812,-0.003202981058438294,-0.003433073323855914,-0.0035789306877536333,-0.0036368670991204738,-0.00360535616481757,-0.0034850711827247886,-0.0032788710857435607,-0.0029917325807501194,-0.002630630091004051,-0.002204366396855014,-0.0017233580861699474,-0.001199381042689853,-0.0006452821899462679,-7.466454590211034e-5,0.0004984466916222977,0.0010599488330143533,0.0015960086881562086,0.0020934033242626738,0.0025398461971736074,0.0029242906133038495,0.003237203028056906,0.00347079942018024,0.0036192388824060036,0.0036787696148350255,0.003647823673284301,0.003527058081699554,0.0033193412348973984,0.003029684863012243,0.0026651231690070472,0.002234542052492471,0.0017484625647933205,0.0012187838713316977,0.0006584919999888736,8.134150337040277e-5,-0.0004984821622772376,-0.001066711255137382,-0.0016093467962793224,-0.0021130034121211038,-0.002565239477209873,-0.002954864415482041,-0.003272215570802842,-0.003509397797605817,-0.0036604798318989884,-0.0037216425595647646,-0.003691275476948093,-0.0035700189093381,-0.0033607508849519876,-0.0030685189227173115,-0.0027004183480726107,-0.002265420068788891,-0.0017741519899950786,-0.0012386393933787395,-0.0006720106216383503,-8.817527050085159e-5,0.000498517224353906,0.0010736302264018885,0.0016229950982362409,0.002133060224000768,0.002591225257645969,0.0029861523538260355,0.00330804669497175,0.0035488993746164476,0.0037026866152389693,0.0037655203663567944,0.0037357465192371557,0.003613988259260146,0.0034031334241501426,0.003108266112921947,0.002736544162618248,0.0022970254439807916,0.0018004471902129562,0.0012589637338102466,0.0006858490563475613,9.517142964761325e-5,-0.0004985518778007949,-0.001080711355241041,-0.0016369646988212603,-0.002153590112741015,-0.0026178247603512532,-0.0030181800182567525,-0.003344725747388711,-0.003589336548186579,-0.003745893894182583,-0.0038104391167815476,-0.0037812734175394326,-0.003659002383279734,-0.003446523842110451,-0.0031489592913472677,-0.0027735305172788627,-0.002329384377434712,-0.0018273699952635265,-0.001279773793318108,-0.0007000188351267093,-0.00010233583203185616,0.0004985861225663366,0.0010879605205442054,0.001651267238654529,0.0021746102207105132,0.0026450602324217917,0.003050974235689144,0.003382283494334375,0.003630743283224622,0.0037901380090449408,0.0038564366407827476,0.0038278945646545333,0.0037050992919631983,0.0034909588269975552,0.0031906329117375796,0.002811408770151105,0.0023625243426653605,0.0018549432972521389,0.0013010872955213537,0.0007145320507927611,0.00010967461412752293,-0.0004986199586002391,-0.001095383888156867,-0.0016659149268954672,-0.0021961385280363276,-0.0026729550088480064,-0.0030845631456884472,-0.0034207522084155942,-0.0036731552085880258,-0.003835457081552563,-0.0039035526238738205,-0.0038756502377148556,-0.003752318862593936,-0.003536476869856068,-0.0032333231219556875,-0.002850211822183158,-0.002396474165743659,-0.0018831911159860532,-0.0013229228376689499,-0.000729401392607532,-0.00011719421525729847,0.0004986533858521337,0.0011029879286062277,0.0016809205763798618,0.0022181939044144776,0.0027015335798338228,0.0031189762817496777,0.0034601657618934943,0.003716609720242386,0.003881891125352535,0.003951828722319142,0.003924582715224827,0.0038007029551900286,0.0035831183767293805,0.0032770678694049025,0.0028899742132417537,0.0024312641095693027,0.0019121386692788332,0.0013452999451408507,0.0007446401835075916,0.0001249013965102919,-0.000498686404272945,-0.0011107794361543178,-0.0016962976413981126,-0.0022407961648112304,-0.002730821663179478,-0.003154244658690453,-0.0035005597270388582,-0.00376114609219053,-0.003929482164852002,-0.004001308687002701,-0.003974736402933296,-0.003850295537282631,-0.0036309257892521546,-0.0033219070144208536,-0.002930732225449789,-0.002466925964521319,-0.0019418124485833497,-0.001368239130077827,-0.0007602624201610082,-0.00013280326109271938,0.0004987190138135041,0.0011187655493018677,0.001712060258343741,0.002263966129405304,0.0027608462821736048,0.00319040086670408,0.0035419714841371133,0.0038068055958650603,0.00397827436312883,0.004052038496758475,0.004026157969326973,0.0039011428182383874,0.0036799437144705953,0.003367882452348414,0.002972523994440541,0.002503493146061756,0.001972240300425282,0.0013917619545153609,0.0007762828160985754,0.0001409072762459341,-0.000498751214425952,-0.0011269537728676021,-0.0017282232894953666,-0.002287725688147475,-0.0027916358494945565,-0.003227479172668968,-0.0035844403378348733,-0.003853631628745344,-0.004028314159732833,-0.00410406650201642,-0.004078896491613337,-0.003953293393987211,-0.0037302190647274754,-0.003415038245086422,-0.003015389629249405,-0.0025410007999179213,-0.002003451514168219,-0.0014158910984247287,-0.0007927168482044509,-0.00014922129686829603,0.0004987830060623196,0.0011353520017919668,0.0017448023702120214,0.0023120978703630836,0.0028232202576643542,0.003265515629379815,0.0036280076425864788,0.0039016698530433777,0.004079650419280244,0.004157443579707545,0.004133003613153557,0.0040067984031086894,0.003781801208532114,0.0034634207629714703,0.003059371341631531,0.0025794859155436026,0.0020354769166868003,0.001440650433117972,0.000809580806869352,0.00015775359100368895,-0.0004988143886759659,-0.0011439685468184455,-0.0017618139598620337,-0.0023371069198578395,-0.0028556309766647717,-0.003304548193428921,-0.003672716938044913,-0.003950968345388164,-0.004132334591842,-0.004212223300471078,-0.0041885337134062684,-0.004061711695331435,-0.003834742133435919,-0.0035130788379586146,-0.003104513585685571,-0.002618987448624658,-0.002068348974596193,-0.0014660651005107062,-0.0008268918501536366,-0.00016651286736473167,0.0004988453622201207,0.001152812162233677,0.001779275396828912,0.002362778376046668,0.0028889011593813633,0.003344616852551425,0.003718614095326008,0.004001577758542031,0.004186420886231281,0.00426846210931905,0.004245544091558453,0.0041180900136112,0.00388909662204386,0.0035640639291636806,0.0031508632087512657,0.002659546453486447,0.0021021019047454403,0.0014921615988015187,0.0008446680623330474,0.00017550830508916387,-0.0004988759266493618,-0.001161892075855331,-0.0017972049579859917,-0.0023891391616713644,-0.0029230657556224377,-0.0033857637633289235,-0.003765747475181695,-0.004053551496290331,-0.004241966457418358,-0.004326219521038878,-0.0043040951651462525,-0.0041759931910834505,-0.003944922442412582,-0.0036164303019479366,-0.0031984696146588124,-0.0027012062263444907,-0.002136771793770344,-0.0015189678751761518,-0.0008629285172529031,-0.0001847495859371765,0.0004989060819181181,0.001171218021489431,0.001815621923063279,0.0024162176777453677,0.0029581616355329,0.003428033400252026,0.0038141680992259076,0.0041069459027759676,0.004299031609433661,0.004385558331756163,0.004364250685113706,0.004235484364325886,0.004002280554228679,0.0036702352218526595,0.0032473849405272276,0.0027440124604536926,0.0021723967275787473,0.0015465134262239314,0.0008816933469513917,0.00019424692917314562,-0.0004989358279821871,-0.00118080027409129,-0.0018345466443885374,-0.002444043906424473,-0.0029942277233235655,-0.0034714727172461034,-0.0038639298354905707,-0.00416182046768777,-0.004357680015274515,-0.004446544848238485,-0.004426077968918025,-0.00429663020453047,-0.004061235332311548,-0.003725539164843909,-0.0032976642484385324,-0.00278801341432119,-0.002209016931750107,-0.0015748294068192038,-0.0009009838160769917,-0.0002040111293898457,0.0004989651647971963,0.0011906496879029755,0.001854000622527379,0.00247264952259193,0.0030313051423310907,0.003516131322897338,0.003915089599727332,0.004218238048875759,0.004417978955500211,0.0045092491367007045,0.004489648153473979,0.004359501168362803,0.004121854809166118,0.003782406045486839,0.003349365733473225,0.002833260094286147,0.0022466749239332625,0.001603948748318357,0.0009208224026722554,0.0002140535975756675,-0.0004989940923201636,-0.0012007777378588993,-0.0018740065884190315,-0.0025020680150257975,-0.0030694373725496556,-0.0035620616707499387,-0.003967707574039605,-0.004276265114142462,-0.004479999577396246,-0.004573745293074292,-0.004555036469934834,-0.004424171770494853,-0.004184210938504212,-0.0038409034648629265,-0.0034025509497552704,-0.0028798064529203336,-0.002285415679457893,-0.001633906287010624,-0.0009412328859753212,-0.0002243864057470228,0.0004990226105079152,0.0012111965645976927,0.0018945885926617018,0.002532334818128306,0.0031086704218984186,0.0036093192662131927,0.004021847444607473,0.004335972004167912,0.004543817176805342,0.00464011173693275,0.004622322542542066,0.004490720880025752,0.004248379881883172,0.0039011029802484038,0.003457285056356873,0.002927709604868079,0.0023252868115176983,0.001664738903877841,0.0009622404419539777,0.00023502233551934661,-0.0004990507193186902,-0.001221919023445403,-0.0019157721026907203,-0.0025634874553012907,-0.003149053012647872,-0.003657962891790274,-0.004077576660482938,-0.004397433218752754,-0.0046095115049737305,-0.004708431531524252,-0.004691590714039125,-0.004559232043271503,-0.004314442320859904,-0.003963080398819343,-0.0035136370851241356,-0.0029770300619459526,-0.002366338767438618,-0.0016964856768440163,-0.0009838717473853724,-0.0002459749310211105,0.0004990784187105133,0.0012329587377918046,0.001937584108669108,0.0025955656951928766,0.0031906367845885584,0.003708054852554489,0.004134966715663405,0.004460727728830894,0.004677167103040538,0.004778792732657876,0.0047629304004462095,0.004629793835699608,0.004382483797353004,0.004026916097914493,0.0035716802327426353,0.0030278319895318258,0.002408625042738683,0.0017291880468313775,0.0010061550933810979,0.000257258556617783,-0.0004991057086428458,-0.0012443301573194486,-0.00196005323902232,-0.00262861172217786,-0.0032334765167283713,-0.0037596612440242093,-0.004194093456927031,-0.004525939316996899,-0.004746873667121443,-0.004851288769524329,-0.004836436478333121,-0.004702500246127501,-0.004452595085229361,-0.004092695374704395,-0.00363149217963671,-0.003080183486532642,-0.0024522024148836115,-0.001762889999112639,-0.001029120509375415,-0.0002688884599578775,0.0004991325890751277,0.0012560486216152238,0.0019832098866509633,0.0026626703226140984,0.0032776303695147735,0.003812852244862413,0.00425503742021364,0.0045931569496381495,0.004818726447300286,0.004926018860914603,0.0049122097081178645,0.004777451096687194,0.0045248725965120525,0.004160508828461759,0.00369315543862843,0.0031341568914942967,0.002497131198891782,0.0017976382616219783,0.0010527998987214108,0.0002808808409249539,-0.0004991590599673905,-0.001268130429746832,-0.002007086346997732,-0.0026977890885985433,-0.0033231601498391965,-0.0038677024371222344,-0.00431788419869166,-0.0046624751841449616,-0.004892826684262159,-0.00500308847073524,-0.004990357197361619,-0.004854752502503775,-0.004599418826029224,-0.004230452779039355,-0.0037567577366424847,-0.0031898291177523837,-0.0025434755272024895,-0.0018334825221112672,-0.0010772271871774145,-0.0002932529271535201,0.0004991851212808195,0.0012805929164737,0.0020317169692812696,0.002734018641177403,0.0033701316013577025,0.003924291157115461,0.0043827248460450085,0.004733994615120348,0.004969282087775558,0.005082609807218276,0.005070992908540356,0.004934517375537622,0.0046763428388188755,0.004302629725616512,0.0038223924331743596,0.0032472820208839064,0.002591303656543708,0.0018704756662674044,0.001102438485742836,0.0003060230568437195,-0.0004992107729767691,-0.0012934545358373121,-0.0020571383223919448,-0.0027714128752081325,-0.003418614723000364,-0.003982702880372353,-0.004449656318979023,-0.004807822364015872,-0.005048207361780579,-0.0051647023707949305,-0.005154238216354864,-0.005016865977622425,-0.00475576080516197,-0.004377148850312425,-0.0038901589797166376,-0.003306602802156573,-0.0026406883048833213,-0.0019086740391963822,-0.0011284722694826124,-0.0003192107697180752,0.0004992360150173086,0.0013067349529809705,0.002083389377130332,0.002810029228366162,0.0034686841189110838,0.004043027644622638,0.004518781963465712,0.004884072617206557,0.0051297247814656565,0.00524949355625904,0.005240222520311385,0.005101926528395135,0.004837796588765052,0.004454126571867653,0.003960163424899833,0.0033678844521541663,0.0026917070219641434,0.0019481377329887916,0.001155369574205037,0.00033283690706444556,-0.0004992608473651126,-0.0013204551451590709,-0.002110511706700611,-0.0028499289771196233,-0.0035204193834989695,-0.004105361515251484,-0.004590212049858264,-0.004962867218188989,-0.005213964828439405,-0.005337119315601866,-0.005329083919074996,-0.005189835874581361,-0.0049225823943547355,-0.004533687155300853,-0.004032518970743513,-0.003431226239326559,-0.0027444425973930627,-0.00198893090345579,-0.0011831742131067637,-0.0003469237219449453,0.0004992852699834612,0.001334637513027222,0.002138549707627634,0.0028911775628799184,0.003573905525780575,0.004169807098291436,0.004664064362702018,0.0050443363203623295,0.005301066890937123,0.005427724888771913,0.0054209699539874675,0.005280740227984156,0.005010259481806343,0.004615963384254445,0.0041073465861544605,0.003496734248862375,0.0027989835108012304,0.0020311221195462256,0.001211933015790789,0.0003614950007958476,-0.0004993092828362403,-0.001349306003455068,-0.002167550843566953,-0.002933844951979487,-0.003629233437771507,-0.00423647410671219,-0.004740464851877603,-0.005128619107748382,-0.005391180036965443,-0.0055214656106216805,-0.005516038430169592,-0.005374795980547332,-0.005100978954919898,-0.0047010973036822395,-0.0041847756846658795,-0.003564521978037302,-0.002855424429223849,-0.0020747847494479673,-0.001241696092400159,-0.0003765761978162575,0.0004993328858879418,0.0013644862452781303,0.002197565914824165,0.0029780060336419465,0.0036865004123560227,0.004305479986582424,0.004819548352648121,0.005215864592045647,0.005484463869405808,0.005618507803472118,0.0056144583248202125,0.005472170606050852,0.005194902634108511,0.004789241041616164,0.00426494487440376,0.0036347109950666994,0.0029138667575810077,0.002119997387946734,0.0012725171260012716,0.00039219458374272734,-0.0004993560791036628,-0.0013802056996074816,-0.002228649356802987,-0.003023741060706416,-0.003745810716841524,-0.004376950610621241,-0.0049014593832697444,-0.005306232495619118,-0.0055810894733952805,-0.005719029766083681,-0.0057164107937097515,-0.0055730436593746996,-0.005292204023601741,-0.004880557720013452,-0.0043480027894247505,-0.0037074316695068334,-0.002974419248993278,-0.0021668443302790726,-0.0013044536968056491,-0.0004083794108390892,0.0004993788624491068,0.0013964938265517643,0.0022608595710706075,0.003071136138562334,0.0038072762293109965,0.004451021047755252,0.004986353030091614,0.005399894231433152,0.005681240467815142,0.005823222871405137,0.0058220902884803544,0.00567760788587446,0.005393069385325811,0.0049752224661573485,0.004434109012914148,0.0037828239834388124,0.003037198682660485,0.0022154160984898313,0.001337567642349765,0.00042516209620153196,-0.0004994012358905829,-0.001413382270481044,-0.002294259293276324,-0.0031202837685617006,-0.0038710171459441123,-0.0045278364185797,-0.005074395931549558,-0.005497033992576092,-0.005785114174483438,-0.005931292787319428,-0.005931705799250733,-0.0057860704552892585,-0.005497698933444512,-0.005073423537804843,-0.0045234351043086955,-0.003861038434053021,-0.0031023306181918254,-0.002265810027208975,-0.0013719254583731547,-0.0004425764257956385,0.0004994231993950062,0.0014309050662837338,0.002328916002800086,0.0031712834531242825,0.003937162768715742,0.004607552848123224,0.0051657673741894745,0.005597849965947223,0.005892922920715492,0.00604346083677062,0.006045482239232985,0.00589865433680216,0.0056063081656796115,0.005175363577291166,0.004616165744253739,0.0039422370398797205,0.0031699502366417673,0.002318130916824251,0.0014075987458627799,0.00046065878201354227,-0.0004994447529298979,-0.0014490988694453005,-0.0023649023797592404,-0.003224242370864638,-0.004005852384333669,-0.004690338529078103,-0.005260660515888773,-0.005702555686933521,-0.006004895493344948,-0.006159965516198533,-0.006163661990663994,-0.006015599834457481,-0.005719129350038298,-0.00528126101217035,-0.004712500013473497,-0.004026594464822248,-0.0032402032801042424,-0.0023724917632710714,-0.0014446647105886001,-0.0004794483979762931,0.0004994658964633853,0.0014680032132216182,0.002402296815886421,0.003279276131380149,0.004077236246987845,0.004776374910732589,0.005359283753837758,0.0058113815545614185,0.006121278765158374,0.006281064194202998,0.0062865066344118545,0.0061371663051847155,0.005836413188532,0.005391351622764299,0.004812652824190476,0.004114299276403143,0.003313247103609064,0.002429014575136549,0.0014832067224623852,0.00049898764232188,-0.0004994866299642018,-0.0014876607967040138,-0.0024411839868356293,-0.003336509620886159,-0.004151476679503171,-0.004865858031292078,-0.0054618622576696665,-0.005924576529748495,-0.006242339518075985,-0.006407035015899065,-0.006414298889231547,-0.006263634085278337,-0.0059584306829663135,-0.005505890300295326,-0.004916856525754135,-0.004205555357299137,-0.003389251855298386,-0.002487831290511065,-0.0015233149432513535,-0.0005193223388304313,0.0004995069534018319,0.0015081178081936151,0.002481655494709924,0.003396077951716217,0.004228749309879922,0.004959000014178264,0.005568639691477361,0.006042410043000381,0.006368366491416408,0.006538179042619891,0.006547344790928543,0.006395306655450966,0.006085475232027197,0.005625153023194407,0.005025362709726539,0.004300583492403815,0.003468401803513102,0.0025490848080893997,0.0015650870325921698,0.000540502125959515,-0.0004995268667459349,-0.0015294242890396418,-0.002523810591072749,-0.003458127530881927,-0.004309244463048439,-0.005056030752344932,-0.0056798801524359024,-0.006165174142321336,-0.006499672688346078,-0.006674822661613705,-0.006685976146785181,-0.006532513079655107,-0.006217864993821124,-0.005749439083839183,-0.00513844424394292,-0.004399623157422036,-0.00355089683257666,-0.002612930149483023,-0.0016086289439431784,-0.0005625808622302939,0.0004995463699672048,0.0015516345439747503,0.002567756992455373,0.003522817265481432,0.004393168731053918,0.0051571998087626405,0.00579587035849868,0.006293185917383429,0.00663659797929637,0.006817320306335428,0.006830553306687212,0.0066756107589302964,0.0063559455539161066,0.005879073603542854,0.0052563975701654195,0.004502934539498232,0.0036369541328365278,0.002679535772645588,0.0016540558241312868,0.0005856170844319539,-0.0004995654630368001,-0.001574807605029865,-0.0026136118024667624,-0.0035903199258494715,-0.004480746748942261,-0.005262778566147284,-0.005916922123318421,-0.006426790242315971,-0.006779512047935621,-0.00696605753506431,-0.006981468299673631,-0.006824988548794429,-0.006500092945987263,-0.006014410380286908,-0.005379545306061812,-0.004610800825773317,-0.003726810115047434,-0.0027490850598400076,-0.0017014930325724936,-0.0006096745268524057,0.0004995841459264859,0.0015990077573746666,0.002661502557124518,0.00366082369106865,0.004572223208487779,0.005373062664920417,0.006043375163372362,0.006566362887066885,0.006928817733460248,0.007121454524150196,0.007139148393392101,0.006981070297430318,0.006650717080657745,0.006155835121716455,0.005508239199596709,0.004723530802254397,0.0038207225846256412,0.0028217780078207697,0.001751077299161873,0.0006348227112328063,-0.0004996024186086334,-0.0016243051369436027,-0.0027115684130571555,-0.0037345339059533106,-0.004667865147774014,-0.0054883747755184375,-0.006175600290505054,-0.006712314056442612,-0.007084954832834188,-0.007283970042533686,-0.007304060144513753,-0.007144318872459579,-0.0068082656483729465,-0.00630376912560896,-0.005642863492807218,-0.004841461813221321,-0.003918973217882978,-0.0028978331530358048,-0.0018029580433547453,-0.000661137618945707,0.0004996202810562207,0.0016507764115494547,0.002763961501886978,0.0038116750840514395,0.00476796456174382,0.005609067759797775,0.006314003053072047,0.00686509242701998,0.0072484044385550265,0.007454105986715664,0.007476714020971239,0.007315240756871837,0.00697322857456826,0.00645867348177893,0.005783838762709905,0.004964963140903979,0.004021870390332069,0.002977489770878448,0.0018572988812404086,0.0006887024590844695,-0.0004996377332428323,-0.0016785055594146566,-0.0028188484785587834,-0.0038924931978167655,-0.004872841387469698,-0.005735528286773773,-0.006459027900989132,-0.00702518976560601,-0.007419693902059468,-0.007632412570596073,-0.007657669692472181,-0.00749439131022715,-0.0071461431205133005,-0.006621053883690652,-0.005931626320208761,-0.005094439876749037,-0.00412975241688066,-0.0030610103956079625,-0.0019142793526266359,-0.0007176085488191038,0.0004996547751426591,0.0017075847617731318,0.0028764122968070907,0.003977258305157144,0.00498284692843379,0.005868180980738414,0.006611162964793749,0.0071931462293892065,0.007599402530636992,0.007819494283229648,0.007847542104792373,0.007682380810259297,0.007327599741707257,0.006791466155552376,0.006086733263927448,0.005230337369769898,0.004242991275637051,0.003148683716845993,0.001974096906540806,0.0007479563256406181,-0.0004996714067304989,-0.001738115429529981,-0.002936854251610923,-0.00406626757144897,-0.005098367795032375,-0.006007493195508426,-0.0067709455569826904,-0.007369556468131376,-0.007788168147512269,-0.008016016750413116,-0.008047008476746451,-0.007879881413354087,-0.007518248838415677,-0.006970522622169472,-0.006249718305618962,-0.005373146354899208,-0.004361996901685738,-0.0032408279199805166,-0.002036969191411513,-0.0007798565151358726,0.0004996876279817562,0.001770209388071569,0.0030003963366801744,0.004159848758271796,0.005219830454435312,0.00615398052791303,0.006938968526270473,0.007555076673659634,0.007986694671629482,0.008222714664223712,0.008256816387595532,0.008087635201188133,0.007718808560978605,0.0071588994753847635,0.006421198508172137,0.005523408885788824,0.004487222155278088,0.0033377945519282148,0.0021031367059087002,0.0008134314829056422,-0.000499703438872442,-0.0018039902493973679,-0.003067283975158818,-0.004258364265178828,-0.005347706502646116,-0.006308213207596361,-0.0071158876231350015,-0.007750432752783476,-0.008195760906976714,-0.008440400979594465,-0.008477793158440083,-0.00830646351654873,-0.007930073867307213,-0.0073573453238827856,-0.006601857107479762,-0.005681725223228556,-0.0046191685913440795,-0.00343997301124608,-0.002172865878491089,-0.000848816805416778,0.0004997188393791741,0.0018395950070607538,0.0031377891943448924,0.0043622158295575945,0.00548251879613691,0.006470823530053587,0.007302430069540686,0.00795642983820608,0.008416230772783183,0.008669977620587218,0.008710856775759574,0.008537277835914221,0.008152927073374361,0.007566691154240954,0.0067924526271774775,0.005848761863716986,0.004758393185276712,0.003547795783489767,0.002246452658789748,0.0008861631022999444,-0.0004997338294791775,-0.0018771758973029884,-0.00321221433100436,-0.004471850013078171,-0.005624848611131677,-0.006642514537169457,-0.007499404568950085,-0.008173963400150804,-0.008649065257907065,-0.008912447993631547,-0.008957028661184158,-0.008781092482245416,-0.008388350191923908,-0.007787861982682491,-0.006993829542630063,-0.006025260934597521,-0.00490551620515694,-0.0036617445702319786,-0.0023242267229033843,-0.0009256381823074528,0.0004997484091502838,0.0019169025796951778,0.0032908963737016744,0.004587764632723605,0.005775344037248705,0.006824070196554876,0.007707713047173838,0.008404032282078013,0.008895336448238294,0.009168931673829792,0.009217448662096237,0.009039039551906143,0.008637439423280494,0.00802189054207004,0.0072069308103380825,0.006212051235057717,0.005061230465070703,0.0037823574949215487,0.0024065564186282855,0.0009674295674134457,-0.0004997625783709313,-0.0019589647031661435,-0.003374212073684432,-0.0047105163317371,-0.005934729861138727,-0.00701636739054331,-0.00792836448357954,-0.00864775406075006,-0.009156244058995261,-0.009440681717724978,-0.009493392727115867,-0.009312386519058333,-0.008901422249298773,-0.008269933431326915,-0.007432812654895259,-0.006410061269489353,-0.005226312250712162,-0.003910237612970433,-0.0024938546071045717,-0.0010117474751470943,0.0004997763371201655,0.0020035749392887845,0.003462583987844246,0.004840729533390602,0.0061038192581056505,0.007220390101644551,0.008162491280137086,0.008906383228972753,0.009433135009774935,0.009729105167362266,0.009786293844752715,0.009602557095107062,0.009181677692858837,0.008533290260114216,0.007672662102749089,0.006620334705659712,0.0054016342808136195,0.004046063010037322,0.0025865855963589407,0.0010588283592409028,-0.0004997896853776387,-0.00205097258519768,-0.0035564876582846873,-0.004979107081491587,-0.006283527689693456,-0.007437246278714156,-0.008411368728706002,-0.009181332825301973,-0.009727526716384924,-0.010035787453696708,-0.010097766970372691,-0.009911156067689896,-0.009479760448602735,-0.00881342645756093,-0.007927817877065648,-0.006844048800851644,-0.005588181161158136,-0.004190598845406027,-0.0026852734125083896,-0.0011089391344622614,0.0004998026231236104,0.0021014278649721407,0.0036564601859800858,0.005126442950356316,0.00647488950859523,0.007668187994082764,0.008676438283004689,0.009474200297950855,0.010041134949701522,0.010362521592814119,0.010429638856830072,0.01023999903404854,0.009797429776316572,0.00911200059013373,0.008199795430191765,0.007082536482775649,0.00578706790892566,0.0043447117920560625,0.002790511719708866,0.0011623822450053728,-0.0004998151503389469,-0.0021552470927320567,-0.003763110524900982,-0.005283637509551593,-0.006679077906832461,-0.007914635665988832,-0.008959335531986636,-0.0097867986025394,-0.010375907341593256,-0.01071134331031862,-0.010783983952346933,-0.010591148192132959,-0.010136684290920787,-0.009430897264079186,-0.0084903171022179,-0.007337312959898937,-0.005999562283412168,-0.004509387448960357,-0.0029029757854541617,-0.0012195017797111186,0.0004998272670051219,0.0022127789058054284,0.0038771319133282475,0.005451715963279508,0.0068974290198050275,0.008178207336127728,0.009261924021310554,0.010121193812462388,0.01073406392005948,0.011084573547377905,0.011163167855840832,0.01096695567991756,0.010499804102458802,0.00977226699134646,0.008801348673583398,0.007610107983526702,0.006227111867964588,0.0046857514647080855,0.003023437000742889,0.0012806908953553464,-0.0004998389731042158,-0.002274421835964055,-0.003999316978568101,-0.005631850762340595,-0.007131471232654131,-0.00846075427748175,-0.009586336400759704,-0.010479750890638568,-0.011118146456355518,-0.011484870223983422,-0.01156990025341489,-0.011370116387791783,-0.010889402183820174,-0.010138574801233098,-0.009135143951220975,-0.007902905213460468,-0.006471377125873054,-0.00487509532933025,-0.003152780615042457,-0.001346400886507567,0.0004998502686189164,0.002340633566277561,0.004130576210748532,0.005825389024356908,0.007382961047751267,0.008764404588953112,0.009935024818272702,0.010865189766344709,0.011531078943048102,0.01191529170012241,0.012007299840468286,0.011803732751077144,0.011308487412946367,0.010532659921096364,0.00949429952644526,0.008217990581521268,0.006734272026314245,0.0050789080839449925,0.0032920275482569024,0.0014171523444164776,-0.0004998611535325186,-0.0024119423282804933,-0.004271960716259689,-0.006033886318456931,-0.007653927293463686,-0.009091616947969672,-0.010310823079117648,-0.011280654529437162,-0.011976242246615457,-0.012379375139769267,-0.012478974519597449,-0.01227139481779388,-0.011760542506896118,-0.010957809582676706,-0.00988182251890185,-0.008558012147395192,-0.007018014343138497,-0.0052989155953275845,-0.003442361416709588,-0.0014935489886831372,0.0004998716278289244,0.0024889610399411273,0.004424690453950987,0.006259148607228472,0.007946726028588931,0.009445247394025387,0.010717023904460795,0.011729799466980577,0.012457566967998242,0.012881234026972468,0.012989121238799589,0.012777279964959283,0.012249621120025238,0.01141785101478432,0.010301215047417406,0.008926054764172664,0.0073251884244305825,0.005537129588137686,0.0036051622875877326,0.0015762949496619493,-0.0004998816914927914,-0.0025724049855013645,-0.004590189559913259,-0.006503284740106256,-0.00826410928824345,-0.009828632983852033,-0.011157475749066484,-0.012216896927351098,-0.012979649911765305,-0.01342568052680455,-0.013542651320281375,-0.013326278128651059,-0.012780469839135626,-0.01191726707436337,-0.01075658045299994,-0.00932573401241398,-0.007658824195577588,-0.005795909385283268,-0.0037820492007743915,-0.0016662165495358848,0.0004998913445089461,0.0026631141174971538,0.00477013092766235,0.0067687727305811955,0.008609311920774534,0.010245697509493373,0.011636705209578624,0.012746973757611902,0.013547901476296881,0.014018380403549201,0.014145349210283263,0.013924150503129907,0.013358682855896302,0.012461342919452703,0.011252758102018584,0.00976131546474939,0.008022497514517292,0.006078040372536607,0.003974934235069368,0.0017642900102140923,-0.0004999005868632548,-0.0027620814550023795,-0.0049664930020716334,-0.007058544233101008,-0.008986162324739762,-0.010701086379985947,-0.012160073278409874,-0.01332598555263255,-0.014168733985685347,-0.014666051071562288,-0.014804075531180369,-0.014577732631325226,-0.01399090000536382,-0.013056353901713934,-0.011795496162110052,-0.010237867625189771,-0.00842045892941534,-0.00638683472261581,-0.004186091948690948,-0.0018716770589677124,0.0004999094185420486,0.00287048961502302,0.005181632877782936,0.007376093329870268,0.009399225129245892,0.011200340504971734,0.012733976888613273,0.013961041533492402,0.014849804875587623,0.015376717471201845,0.015527029563466578,0.015295197081771052,0.014685063051126261,0.013709808857247924,0.012391675444855458,0.010761460183788627,0.008857800681197014,0.006726262111548684,0.004418249548285629,0.0019897711891188065,-0.0004999178395322659,-0.0029897583307750167,-0.005418381437338485,-0.007725618200310448,-0.009853987110754086,-0.011750123003712042,-0.013366111842978676,-0.014660698091045404,-0.015600334323726319,-0.016160046474455167,-0.016324092491425985,-0.016086397156987883,-0.015450751233894125,-0.01443076883642403,-0.013049602836854107,-0.01133942406496496,-0.009340675894370185,-0.007101121390555302,-0.004674705383281189,-0.0021202584910250057,0.0004999258498214523,0.0031216070153280927,0.005680168691896224,0.00811220788424745,0.01035710244503576,0.012358518460985912,0.01406582010540616,0.01543534676709281,0.0164315253418428,0.017027789454111136,0.01720728197172487,0.016963322376947847,0.016299626238109367,0.01523027005054772,0.013779400937706705,0.011980696971165165,0.009876590028559139,0.0075172690089661464,0.004959486720135837,0.0022651987038900872,-0.0004999334493977613,-0.0032681382378879765,-0.005971191135590831,-0.008542091822640277,-0.010916720628327143,-0.013035433339911882,-0.014844554818168681,-0.01629773412717272,-0.01735712708081612,-0.017994376158632423,-0.018191362554092323,-0.01794071057576574,-0.01724603059531682,-0.016121893082504484,-0.014593532832559097,-0.012696289115624747,-0.010474793999178085,-0.007981927351863769,-0.005277562875973007,-0.002427134790205834,0.0004999406382499534,0.0034319507492050765,0.006296638515645208,0.009022978255544349,0.011542931513181105,0.01379313982622832,0.015716512391245194,0.017263668974895407,0.018394201740041794,0.019077723889096176,0.019294678073157472,0.019036883255541804,0.01830780501559801,0.017122540982044753,0.015507520032454175,0.013499920917995685,0.011146822898354138,0.008504107630408701,0.0056351377808999265,0.002609243472602071,-0.0004999474163673963,-0.003616295024378269,-0.006663006176108738,-0.009564520720248104,-0.012248379345277055,-0.014647026851347274,-0.016699506154456256,-0.018353000702765035,-0.019564186441956236,-0.02030035889874853,-0.02054030625648175,-0.020274905349463867,-0.019507424159823372,-0.018253521502547703,-0.016540941959918513,-0.014408911596615046,-0.011907247368846102,-0.009095200253482405,-0.006040058790253993,-0.002815545785387743,0.0004999537837400654,0.003825291230864221,0.007078533177597518,0.010178973033506908,0.013049125734071241,0.015616656616311184,0.01781619660230772,0.019590998332757507,0.020894391493352135,0.02169100022536502,0.02195769110143211,0.021684226547443234,0.020873605650342932,0.019542081840961685,0.017718854799131892,0.015445441904884439,0.012774742459901284,0.009769815533596396,0.0065023994595077815,0.0030512075413408474,-0.0004999597403585432,-0.004064240946168138,-0.007553829533469238,-0.010882128020591146,-0.013965887828077738,-0.01672728214438614,-0.019095860432197388,-0.021010335728581388,-0.02242015964433271,-0.023286844851593526,-0.023585000752886786,-0.023303054811625274,-0.02244363953422503,-0.0210236331485044,-0.01907385042888005,-0.016638388672805315,-0.013773642326682486,-0.010547007984849897,-0.007035309238976557,-0.0033229779441487865,0.0004999652862140198,0.004340083300719416,0.008102795183753802,0.011694694561402047,0.015025856884812715,0.01801207897605098,0.02057699534870267,0.022654018410591694,0.024188053565816138,0.025136945372233994,0.025472617162239794,0.025181873754796753,0.024266844906126683,0.02274505577530648,0.020649119713045,0.018026057899468144,0.014936259535971766,0.011452105212472875,0.0076562845047458234,0.0036398465970852944,-0.0004999704212984408,-0.004662080146458924,-0.00874400231728427,-0.012644371875125142,-0.016265441537321165,-0.019515516452917665,-0.02231126066493941,-0.024579817743191713,-0.02626069202230027,-0.027307342293871464,-0.027688446438060007,-0.0273888031865175,-0.026409845806358884,-0.024769751780945926,-0.02250314231701907,-0.019660375494870534,-0.01630644685707196,-0.012519520958176236,-0.008389126633342703,-0.004014057258478694,0.0004999751456039276,0.005042876660268622,0.009502838605092542,0.013769070874739083,0.01773453509766169,0.02129861064849018,0.024369627586925395,0.026867203255982346,0.028724323500909723,0.029889115177902006,0.030326263682841043,0.030018037484782146,0.028964890906297284,0.027185626436596784,0.02471710845601142,0.021613531138895765,0.01794525422382682,0.013797231029453067,0.009267063289083565,0.004462726824327107,-0.0004999794591236295,-0.005500201507258421,-0.01041494936313575,-0.015122097767925552,-0.019503395495178665,-0.02344740987169951,-0.026852333797550428,-0.029628585216403165,-0.031701133358597124,-0.03301149209331342,-0.033519328252961715,-0.033203641663975256,-0.03206348363128898,-0.030118191546738345,-0.027407128868067964,-0.023988931670441,-0.01994027501969843,-0.015354184264487215,-0.010337927703079418,-0.005010537669552639,0.0004999833618511663,0.0060597067783225746,0.01153200027416424,0.01678085196368086,0.02167421608177798,0.02608729880143247,0.02990570327086984,0.0330283555186565,0.035370137351112864,0.03686415868545219,0.037463609790383184,0.037143143467409614,0.035899748085635654,0.03375308433137408,0.030745271273611756,0.0269401205777288,0.02242183110802162,0.017293169422147762,0.011673174455208277,0.0056944367032340255,-0.0004999868537807644,-0.006759951276797449,-0.012931816860374167,-0.018862172060414205,-0.024401597056645626,-0.02940837678972897,-0.03375207243519965,-0.03731686260315953,-0.04000457005326665,-0.041737296306062384,-0.042459595079703864,-0.042140125802848705,-0.04077274032215785,-0.03837696906924548,-0.03499788707570154,-0.03070535499784223,-0.025592645387472197,-0.019774479462189867,-0.013384514226768273,-0.006572333619781862,0.0004999899349072574,0.007661685923094698,0.014737340888804688,0.02155112357544523,0.027931079912776952,0.033713394656709875,0.03874651588525045,0.04289504043866155,0.046043262752153966,0.04809829629297826,0.04899268585018807,0.04868644004828253,0.047168426426974816,0.04445708596298059,0.040600439679584474,0.035675376635813556,0.029786229723793814,0.023062662928087254,0.015656910604921387,0.007740425514916414,-0.000499992605226233,-0.008866502592579446,-0.017154864477134043,-0.025159312550910806,-0.03267754510405275,-0.039515712488908054,-0.04549328337019278,-0.05044767005173991,-0.05423849765455427,-0.056751408606241706,-0.057901303270916867,-0.05763492941910795,-0.055932747365152566,-0.05281001368478218,-0.04831704411740193,-0.042538635162671444,-0.03559264357197898,-0.027627742960354456,-0.018820396657069215,-0.00937110520379557,0.000499994864733469,0.010558087605421663,0.02055908147188417,0.03025533970306005,0.03940160679616202,0.047760993603911533,0.0551108797452098,0.06124859141693846,0.06599671540832616,0.06920791613822018,0.07076913177280675,0.07060503777420397,0.06868068134314281,0.06500320784720393,0.05962262010271856,0.05263153288132015,0.04416390777299434,0.034392777052016085,0.023526988931147484,0.011807030010445595,-0.0004999967134257442,-0.013106138745335857,-0.02570898710078263,-0.03799855973928189,-0.04966452564529567,-0.06040360885843763,-0.0699270043039464,-0.07796763352247421,-0.08428706849279462,-0.08868195574505121,-0.09098978085123151,-0.09109382504126834,-0.08892718092846849,-0.08447571285442106,-0.07777986882055789,-0.06893527492942458,-0.05809206921936693,-0.04545295919545017,-0.03127001565003504,-0.015840243913447575,0.0004999981513004579,0.01738163892660421,0.0344104665610476,0.05117549186887743,0.06725793467404159,0.08224065035583895,0.09571779973862263,0.10730455590546896,0.11664663627926364,0.1234294475873677,0.1273866351949371,0.1283078367450191,0.1260454529686226,0.12052026571419104,0.11172575438709667,0.09973098668999142,0.08468198733600249,0.06680151871809546,0.04638723974713541,0.023808242557048796,-0.0004999991783552169,-0.0260422026827106,-0.05227126862330819,-0.07859756170011685,-0.10439931806693205,-0.1290339921507744,-0.15185033272407747,-0.17220095940620642,-0.1894551965684494,-0.2030119122415731,-0.2123121053306151,-0.2168509853762307,-0.21618929530524725,-0.2099636390140855,-0.19789559204640889,-0.17979939477273835,-0.15558805296510078,-0.1252777000001067,-0.0889901075505834,-0.046953266897194146,0.0004999997945887241,0.052935400477926546,0.1098224699283309,0.17054172711652502,0.23439358093258905,0.30060883659125076,0.36836062236504513,0.4367775269616815,0.5049577125022463,0.5719837472068464,0.6369378860023601,0.6989175166812505,0.7570504842010011,0.8105100063474131,0.8585289003020907,0.900412851548317,0.9355524737985185,0.9634339308982586,0.9836479185198092,0.9958968343713442,1.0,0.9958968343713442,0.9836479185198092,0.9634339308982586,0.9355524737985185,0.900412851548317,0.8585289003020907,0.8105100063474131,0.7570504842010011,0.6989175166812505,0.6369378860023601,0.5719837472068464,0.5049577125022463,0.4367775269616815,0.36836062236504513,0.30060883659125076,0.23439358093258905,0.17054172711652502,0.1098224699283309,0.052935400477926546,0.0004999997945887241,-0.046953266897194146,-0.0889901075505834,-0.1252777000001067,-0.15558805296510078,-0.17979939477273835,-0.19789559204640889,-0.2099636390140855,-0.21618929530524725,-0.2168509853762307,-0.2123121053306151,-0.2030119122415731,-0.1894551965684494,-0.17220095940620642,-0.15185033272407747,-0.1290339921507744,-0.10439931806693205,-0.07859756170011685,-0.05227126862330819,-0.0260422026827106,-0.0004999991783552169,0.023808242557048796,0.04638723974713541,0.06680151871809546,0.08468198733600249,0.09973098668999142,0.11172575438709667,0.12052026571419104,0.1260454529686226,0.1283078367450191,0.1273866351949371,0.1234294475873677,0.11664663627926364,0.10730455590546896,0.09571779973862263,0.08224065035583895,0.06725793467404159,0.05117549186887743,0.0344104665610476,0.01738163892660421,0.0004999981513004579,-0.015840243913447575,-0.03127001565003504,-0.04545295919545017,-0.05809206921936693,-0.06893527492942458,-0.07777986882055789,-0.08447571285442106,-0.08892718092846849,-0.09109382504126834,-0.09098978085123151,-0.08868195574505121,-0.08428706849279462,-0.07796763352247421,-0.0699270043039464,-0.06040360885843763,-0.04966452564529567,-0.03799855973928189,-0.02570898710078263,-0.013106138745335857,-0.0004999967134257442,0.011807030010445595,0.023526988931147484,0.034392777052016085,0.04416390777299434,0.05263153288132015,0.05962262010271856,0.06500320784720393,0.06868068134314281,0.07060503777420397,0.07076913177280675,0.06920791613822018,0.06599671540832616,0.06124859141693846,0.0551108797452098,0.047760993603911533,0.03940160679616202,0.03025533970306005,0.02055908147188417,0.010558087605421663,0.000499994864733469,-0.00937110520379557,-0.018820396657069215,-0.027627742960354456,-0.03559264357197898,-0.042538635162671444,-0.04831704411740193,-0.05281001368478218,-0.055932747365152566,-0.05763492941910795,-0.057901303270916867,-0.056751408606241706,-0.05423849765455427,-0.05044767005173991,-0.04549328337019278,-0.039515712488908054,-0.03267754510405275,-0.025159312550910806,-0.017154864477134043,-0.008866502592579446,-0.000499992605226233,0.007740425514916414,0.015656910604921387,0.023062662928087254,0.029786229723793814,0.035675376635813556,0.040600439679584474,0.04445708596298059,0.047168426426974816,0.04868644004828253,0.04899268585018807,0.04809829629297826,0.046043262752153966,0.04289504043866155,0.03874651588525045,0.033713394656709875,0.027931079912776952,0.02155112357544523,0.014737340888804688,0.007661685923094698,0.0004999899349072574,-0.006572333619781862,-0.013384514226768273,-0.019774479462189867,-0.025592645387472197,-0.03070535499784223,-0.03499788707570154,-0.03837696906924548,-0.04077274032215785,-0.042140125802848705,-0.042459595079703864,-0.041737296306062384,-0.04000457005326665,-0.03731686260315953,-0.03375207243519965,-0.02940837678972897,-0.024401597056645626,-0.018862172060414205,-0.012931816860374167,-0.006759951276797449,-0.0004999868537807644,0.0056944367032340255,0.011673174455208277,0.017293169422147762,0.02242183110802162,0.0269401205777288,0.030745271273611756,0.03375308433137408,0.035899748085635654,0.037143143467409614,0.037463609790383184,0.03686415868545219,0.035370137351112864,0.0330283555186565,0.02990570327086984,0.02608729880143247,0.02167421608177798,0.01678085196368086,0.01153200027416424,0.0060597067783225746,0.0004999833618511663,-0.005010537669552639,-0.010337927703079418,-0.015354184264487215,-0.01994027501969843,-0.023988931670441,-0.027407128868067964,-0.030118191546738345,-0.03206348363128898,-0.033203641663975256,-0.033519328252961715,-0.03301149209331342,-0.031701133358597124,-0.029628585216403165,-0.026852333797550428,-0.02344740987169951,-0.019503395495178665,-0.015122097767925552,-0.01041494936313575,-0.005500201507258421,-0.0004999794591236295,0.004462726824327107,0.009267063289083565,0.013797231029453067,0.01794525422382682,0.021613531138895765,0.02471710845601142,0.027185626436596784,0.028964890906297284,0.030018037484782146,0.030326263682841043,0.029889115177902006,0.028724323500909723,0.026867203255982346,0.024369627586925395,0.02129861064849018,0.01773453509766169,0.013769070874739083,0.009502838605092542,0.005042876660268622,0.0004999751456039276,-0.004014057258478694,-0.008389126633342703,-0.012519520958176236,-0.01630644685707196,-0.019660375494870534,-0.02250314231701907,-0.024769751780945926,-0.026409845806358884,-0.0273888031865175,-0.027688446438060007,-0.027307342293871464,-0.02626069202230027,-0.024579817743191713,-0.02231126066493941,-0.019515516452917665,-0.016265441537321165,-0.012644371875125142,-0.00874400231728427,-0.004662080146458924,-0.0004999704212984408,0.0036398465970852944,0.0076562845047458234,0.011452105212472875,0.014936259535971766,0.018026057899468144,0.020649119713045,0.02274505577530648,0.024266844906126683,0.025181873754796753,0.025472617162239794,0.025136945372233994,0.024188053565816138,0.022654018410591694,0.02057699534870267,0.01801207897605098,0.015025856884812715,0.011694694561402047,0.008102795183753802,0.004340083300719416,0.0004999652862140198,-0.0033229779441487865,-0.007035309238976557,-0.010547007984849897,-0.013773642326682486,-0.016638388672805315,-0.01907385042888005,-0.0210236331485044,-0.02244363953422503,-0.023303054811625274,-0.023585000752886786,-0.023286844851593526,-0.02242015964433271,-0.021010335728581388,-0.019095860432197388,-0.01672728214438614,-0.013965887828077738,-0.010882128020591146,-0.007553829533469238,-0.004064240946168138,-0.0004999597403585432,0.0030512075413408474,0.0065023994595077815,0.009769815533596396,0.012774742459901284,0.015445441904884439,0.017718854799131892,0.019542081840961685,0.020873605650342932,0.021684226547443234,0.02195769110143211,0.02169100022536502,0.020894391493352135,0.019590998332757507,0.01781619660230772,0.015616656616311184,0.013049125734071241,0.010178973033506908,0.007078533177597518,0.003825291230864221,0.0004999537837400654,-0.002815545785387743,-0.006040058790253993,-0.009095200253482405,-0.011907247368846102,-0.014408911596615046,-0.016540941959918513,-0.018253521502547703,-0.019507424159823372,-0.020274905349463867,-0.02054030625648175,-0.02030035889874853,-0.019564186441956236,-0.018353000702765035,-0.016699506154456256,-0.014647026851347274,-0.012248379345277055,-0.009564520720248104,-0.006663006176108738,-0.003616295024378269,-0.0004999474163673963,0.002609243472602071,0.0056351377808999265,0.008504107630408701,0.011146822898354138,0.013499920917995685,0.015507520032454175,0.017122540982044753,0.01830780501559801,0.019036883255541804,0.019294678073157472,0.019077723889096176,0.018394201740041794,0.017263668974895407,0.015716512391245194,0.01379313982622832,0.011542931513181105,0.009022978255544349,0.006296638515645208,0.0034319507492050765,0.0004999406382499534,-0.002427134790205834,-0.005277562875973007,-0.007981927351863769,-0.010474793999178085,-0.012696289115624747,-0.014593532832559097,-0.016121893082504484,-0.01724603059531682,-0.01794071057576574,-0.018191362554092323,-0.017994376158632423,-0.01735712708081612,-0.01629773412717272,-0.014844554818168681,-0.013035433339911882,-0.010916720628327143,-0.008542091822640277,-0.005971191135590831,-0.0032681382378879765,-0.0004999334493977613,0.0022651987038900872,0.004959486720135837,0.0075172690089661464,0.009876590028559139,0.011980696971165165,0.013779400937706705,0.01523027005054772,0.016299626238109367,0.016963322376947847,0.01720728197172487,0.017027789454111136,0.0164315253418428,0.01543534676709281,0.01406582010540616,0.012358518460985912,0.01035710244503576,0.00811220788424745,0.005680168691896224,0.0031216070153280927,0.0004999258498214523,-0.0021202584910250057,-0.004674705383281189,-0.007101121390555302,-0.009340675894370185,-0.01133942406496496,-0.013049602836854107,-0.01443076883642403,-0.015450751233894125,-0.016086397156987883,-0.016324092491425985,-0.016160046474455167,-0.015600334323726319,-0.014660698091045404,-0.013366111842978676,-0.011750123003712042,-0.009853987110754086,-0.007725618200310448,-0.005418381437338485,-0.0029897583307750167,-0.0004999178395322659,0.0019897711891188065,0.004418249548285629,0.006726262111548684,0.008857800681197014,0.010761460183788627,0.012391675444855458,0.013709808857247924,0.014685063051126261,0.015295197081771052,0.015527029563466578,0.015376717471201845,0.014849804875587623,0.013961041533492402,0.012733976888613273,0.011200340504971734,0.009399225129245892,0.007376093329870268,0.005181632877782936,0.00287048961502302,0.0004999094185420486,-0.0018716770589677124,-0.004186091948690948,-0.00638683472261581,-0.00842045892941534,-0.010237867625189771,-0.011795496162110052,-0.013056353901713934,-0.01399090000536382,-0.014577732631325226,-0.014804075531180369,-0.014666051071562288,-0.014168733985685347,-0.01332598555263255,-0.012160073278409874,-0.010701086379985947,-0.008986162324739762,-0.007058544233101008,-0.0049664930020716334,-0.0027620814550023795,-0.0004999005868632548,0.0017642900102140923,0.003974934235069368,0.006078040372536607,0.008022497514517292,0.00976131546474939,0.011252758102018584,0.012461342919452703,0.013358682855896302,0.013924150503129907,0.014145349210283263,0.014018380403549201,0.013547901476296881,0.012746973757611902,0.011636705209578624,0.010245697509493373,0.008609311920774534,0.0067687727305811955,0.00477013092766235,0.0026631141174971538,0.0004998913445089461,-0.0016662165495358848,-0.0037820492007743915,-0.005795909385283268,-0.007658824195577588,-0.00932573401241398,-0.01075658045299994,-0.01191726707436337,-0.012780469839135626,-0.013326278128651059,-0.013542651320281375,-0.01342568052680455,-0.012979649911765305,-0.012216896927351098,-0.011157475749066484,-0.009828632983852033,-0.00826410928824345,-0.006503284740106256,-0.004590189559913259,-0.0025724049855013645,-0.0004998816914927914,0.0015762949496619493,0.0036051622875877326,0.005537129588137686,0.0073251884244305825,0.008926054764172664,0.010301215047417406,0.01141785101478432,0.012249621120025238,0.012777279964959283,0.012989121238799589,0.012881234026972468,0.012457566967998242,0.011729799466980577,0.010717023904460795,0.009445247394025387,0.007946726028588931,0.006259148607228472,0.004424690453950987,0.0024889610399411273,0.0004998716278289244,-0.0014935489886831372,-0.003442361416709588,-0.0052989155953275845,-0.007018014343138497,-0.008558012147395192,-0.00988182251890185,-0.010957809582676706,-0.011760542506896118,-0.01227139481779388,-0.012478974519597449,-0.012379375139769267,-0.011976242246615457,-0.011280654529437162,-0.010310823079117648,-0.009091616947969672,-0.007653927293463686,-0.006033886318456931,-0.004271960716259689,-0.0024119423282804933,-0.0004998611535325186,0.0014171523444164776,0.0032920275482569024,0.0050789080839449925,0.006734272026314245,0.008217990581521268,0.00949429952644526,0.010532659921096364,0.011308487412946367,0.011803732751077144,0.012007299840468286,0.01191529170012241,0.011531078943048102,0.010865189766344709,0.009935024818272702,0.008764404588953112,0.007382961047751267,0.005825389024356908,0.004130576210748532,0.002340633566277561,0.0004998502686189164,-0.001346400886507567,-0.003152780615042457,-0.00487509532933025,-0.006471377125873054,-0.007902905213460468,-0.009135143951220975,-0.010138574801233098,-0.010889402183820174,-0.011370116387791783,-0.01156990025341489,-0.011484870223983422,-0.011118146456355518,-0.010479750890638568,-0.009586336400759704,-0.00846075427748175,-0.007131471232654131,-0.005631850762340595,-0.003999316978568101,-0.002274421835964055,-0.0004998389731042158,0.0012806908953553464,0.003023437000742889,0.0046857514647080855,0.006227111867964588,0.007610107983526702,0.008801348673583398,0.00977226699134646,0.010499804102458802,0.01096695567991756,0.011163167855840832,0.011084573547377905,0.01073406392005948,0.010121193812462388,0.009261924021310554,0.008178207336127728,0.0068974290198050275,0.005451715963279508,0.0038771319133282475,0.0022127789058054284,0.0004998272670051219,-0.0012195017797111186,-0.0029029757854541617,-0.004509387448960357,-0.005999562283412168,-0.007337312959898937,-0.0084903171022179,-0.009430897264079186,-0.010136684290920787,-0.010591148192132959,-0.010783983952346933,-0.01071134331031862,-0.010375907341593256,-0.0097867986025394,-0.008959335531986636,-0.007914635665988832,-0.006679077906832461,-0.005283637509551593,-0.003763110524900982,-0.0021552470927320567,-0.0004998151503389469,0.0011623822450053728,0.002790511719708866,0.0043447117920560625,0.00578706790892566,0.007082536482775649,0.008199795430191765,0.00911200059013373,0.009797429776316572,0.01023999903404854,0.010429638856830072,0.010362521592814119,0.010041134949701522,0.009474200297950855,0.008676438283004689,0.007668187994082764,0.00647488950859523,0.005126442950356316,0.0036564601859800858,0.0021014278649721407,0.0004998026231236104,-0.0011089391344622614,-0.0026852734125083896,-0.004190598845406027,-0.005588181161158136,-0.006844048800851644,-0.007927817877065648,-0.00881342645756093,-0.009479760448602735,-0.009911156067689896,-0.010097766970372691,-0.010035787453696708,-0.009727526716384924,-0.009181332825301973,-0.008411368728706002,-0.007437246278714156,-0.006283527689693456,-0.004979107081491587,-0.0035564876582846873,-0.00205097258519768,-0.0004997896853776387,0.0010588283592409028,0.0025865855963589407,0.004046063010037322,0.0054016342808136195,0.006620334705659712,0.007672662102749089,0.008533290260114216,0.009181677692858837,0.009602557095107062,0.009786293844752715,0.009729105167362266,0.009433135009774935,0.008906383228972753,0.008162491280137086,0.007220390101644551,0.0061038192581056505,0.004840729533390602,0.003462583987844246,0.0020035749392887845,0.0004997763371201655,-0.0010117474751470943,-0.0024938546071045717,-0.003910237612970433,-0.005226312250712162,-0.006410061269489353,-0.007432812654895259,-0.008269933431326915,-0.008901422249298773,-0.009312386519058333,-0.009493392727115867,-0.009440681717724978,-0.009156244058995261,-0.00864775406075006,-0.00792836448357954,-0.00701636739054331,-0.005934729861138727,-0.0047105163317371,-0.003374212073684432,-0.0019589647031661435,-0.0004997625783709313,0.0009674295674134457,0.0024065564186282855,0.0037823574949215487,0.005061230465070703,0.006212051235057717,0.0072069308103380825,0.00802189054207004,0.008637439423280494,0.009039039551906143,0.009217448662096237,0.009168931673829792,0.008895336448238294,0.008404032282078013,0.007707713047173838,0.006824070196554876,0.005775344037248705,0.004587764632723605,0.0032908963737016744,0.0019169025796951778,0.0004997484091502838,-0.0009256381823074528,-0.0023242267229033843,-0.0036617445702319786,-0.00490551620515694,-0.006025260934597521,-0.006993829542630063,-0.007787861982682491,-0.008388350191923908,-0.008781092482245416,-0.008957028661184158,-0.008912447993631547,-0.008649065257907065,-0.008173963400150804,-0.007499404568950085,-0.006642514537169457,-0.005624848611131677,-0.004471850013078171,-0.00321221433100436,-0.0018771758973029884,-0.0004997338294791775,0.0008861631022999444,0.002246452658789748,0.003547795783489767,0.004758393185276712,0.005848761863716986,0.0067924526271774775,0.007566691154240954,0.008152927073374361,0.008537277835914221,0.008710856775759574,0.008669977620587218,0.008416230772783183,0.00795642983820608,0.007302430069540686,0.006470823530053587,0.00548251879613691,0.0043622158295575945,0.0031377891943448924,0.0018395950070607538,0.0004997188393791741,-0.000848816805416778,-0.002172865878491089,-0.00343997301124608,-0.0046191685913440795,-0.005681725223228556,-0.006601857107479762,-0.0073573453238827856,-0.007930073867307213,-0.00830646351654873,-0.008477793158440083,-0.008440400979594465,-0.008195760906976714,-0.007750432752783476,-0.0071158876231350015,-0.006308213207596361,-0.005347706502646116,-0.004258364265178828,-0.003067283975158818,-0.0018039902493973679,-0.000499703438872442,0.0008134314829056422,0.0021031367059087002,0.0033377945519282148,0.004487222155278088,0.005523408885788824,0.006421198508172137,0.0071588994753847635,0.007718808560978605,0.008087635201188133,0.008256816387595532,0.008222714664223712,0.007986694671629482,0.007555076673659634,0.006938968526270473,0.00615398052791303,0.005219830454435312,0.004159848758271796,0.0030003963366801744,0.001770209388071569,0.0004996876279817562,-0.0007798565151358726,-0.002036969191411513,-0.0032408279199805166,-0.004361996901685738,-0.005373146354899208,-0.006249718305618962,-0.006970522622169472,-0.007518248838415677,-0.007879881413354087,-0.008047008476746451,-0.008016016750413116,-0.007788168147512269,-0.007369556468131376,-0.0067709455569826904,-0.006007493195508426,-0.005098367795032375,-0.00406626757144897,-0.002936854251610923,-0.001738115429529981,-0.0004996714067304989,0.0007479563256406181,0.001974096906540806,0.003148683716845993,0.004242991275637051,0.005230337369769898,0.006086733263927448,0.006791466155552376,0.007327599741707257,0.007682380810259297,0.007847542104792373,0.007819494283229648,0.007599402530636992,0.0071931462293892065,0.006611162964793749,0.005868180980738414,0.00498284692843379,0.003977258305157144,0.0028764122968070907,0.0017075847617731318,0.0004996547751426591,-0.0007176085488191038,-0.0019142793526266359,-0.0030610103956079625,-0.00412975241688066,-0.005094439876749037,-0.005931626320208761,-0.006621053883690652,-0.0071461431205133005,-0.00749439131022715,-0.007657669692472181,-0.007632412570596073,-0.007419693902059468,-0.00702518976560601,-0.006459027900989132,-0.005735528286773773,-0.004872841387469698,-0.0038924931978167655,-0.0028188484785587834,-0.0016785055594146566,-0.0004996377332428323,0.0006887024590844695,0.0018572988812404086,0.002977489770878448,0.004021870390332069,0.004964963140903979,0.005783838762709905,0.00645867348177893,0.00697322857456826,0.007315240756871837,0.007476714020971239,0.007454105986715664,0.0072484044385550265,0.00686509242701998,0.006314003053072047,0.005609067759797775,0.00476796456174382,0.0038116750840514395,0.002763961501886978,0.0016507764115494547,0.0004996202810562207,-0.000661137618945707,-0.0018029580433547453,-0.0028978331530358048,-0.003918973217882978,-0.004841461813221321,-0.005642863492807218,-0.00630376912560896,-0.0068082656483729465,-0.007144318872459579,-0.007304060144513753,-0.007283970042533686,-0.007084954832834188,-0.006712314056442612,-0.006175600290505054,-0.0054883747755184375,-0.004667865147774014,-0.0037345339059533106,-0.0027115684130571555,-0.0016243051369436027,-0.0004996024186086334,0.0006348227112328063,0.001751077299161873,0.0028217780078207697,0.0038207225846256412,0.004723530802254397,0.005508239199596709,0.006155835121716455,0.006650717080657745,0.006981070297430318,0.007139148393392101,0.007121454524150196,0.006928817733460248,0.006566362887066885,0.006043375163372362,0.005373062664920417,0.004572223208487779,0.00366082369106865,0.002661502557124518,0.0015990077573746666,0.0004995841459264859,-0.0006096745268524057,-0.0017014930325724936,-0.0027490850598400076,-0.003726810115047434,-0.004610800825773317,-0.005379545306061812,-0.006014410380286908,-0.006500092945987263,-0.006824988548794429,-0.006981468299673631,-0.00696605753506431,-0.006779512047935621,-0.006426790242315971,-0.005916922123318421,-0.005262778566147284,-0.004480746748942261,-0.0035903199258494715,-0.0026136118024667624,-0.001574807605029865,-0.0004995654630368001,0.0005856170844319539,0.0016540558241312868,0.002679535772645588,0.0036369541328365278,0.004502934539498232,0.0052563975701654195,0.005879073603542854,0.0063559455539161066,0.0066756107589302964,0.006830553306687212,0.006817320306335428,0.00663659797929637,0.006293185917383429,0.00579587035849868,0.0051571998087626405,0.004393168731053918,0.003522817265481432,0.002567756992455373,0.0015516345439747503,0.0004995463699672048,-0.0005625808622302939,-0.0016086289439431784,-0.002612930149483023,-0.00355089683257666,-0.004399623157422036,-0.00513844424394292,-0.005749439083839183,-0.006217864993821124,-0.006532513079655107,-0.006685976146785181,-0.006674822661613705,-0.006499672688346078,-0.006165174142321336,-0.0056798801524359024,-0.005056030752344932,-0.004309244463048439,-0.003458127530881927,-0.002523810591072749,-0.0015294242890396418,-0.0004995268667459349,0.000540502125959515,0.0015650870325921698,0.0025490848080893997,0.003468401803513102,0.004300583492403815,0.005025362709726539,0.005625153023194407,0.006085475232027197,0.006395306655450966,0.006547344790928543,0.006538179042619891,0.006368366491416408,0.006042410043000381,0.005568639691477361,0.004959000014178264,0.004228749309879922,0.003396077951716217,0.002481655494709924,0.0015081178081936151,0.0004995069534018319,-0.0005193223388304313,-0.0015233149432513535,-0.002487831290511065,-0.003389251855298386,-0.004205555357299137,-0.004916856525754135,-0.005505890300295326,-0.0059584306829663135,-0.006263634085278337,-0.006414298889231547,-0.006407035015899065,-0.006242339518075985,-0.005924576529748495,-0.0054618622576696665,-0.004865858031292078,-0.004151476679503171,-0.003336509620886159,-0.0024411839868356293,-0.0014876607967040138,-0.0004994866299642018,0.00049898764232188,0.0014832067224623852,0.002429014575136549,0.003313247103609064,0.004114299276403143,0.004812652824190476,0.005391351622764299,0.005836413188532,0.0061371663051847155,0.0062865066344118545,0.006281064194202998,0.006121278765158374,0.0058113815545614185,0.005359283753837758,0.004776374910732589,0.004077236246987845,0.003279276131380149,0.002402296815886421,0.0014680032132216182,0.0004994658964633853,-0.0004794483979762931,-0.0014446647105886001,-0.0023724917632710714,-0.0032402032801042424,-0.004026594464822248,-0.004712500013473497,-0.00528126101217035,-0.005719129350038298,-0.006015599834457481,-0.006163661990663994,-0.006159965516198533,-0.006004895493344948,-0.005702555686933521,-0.005260660515888773,-0.004690338529078103,-0.004005852384333669,-0.003224242370864638,-0.0023649023797592404,-0.0014490988694453005,-0.0004994447529298979,0.00046065878201354227,0.0014075987458627799,0.002318130916824251,0.0031699502366417673,0.0039422370398797205,0.004616165744253739,0.005175363577291166,0.0056063081656796115,0.00589865433680216,0.006045482239232985,0.00604346083677062,0.005892922920715492,0.005597849965947223,0.0051657673741894745,0.004607552848123224,0.003937162768715742,0.0031712834531242825,0.002328916002800086,0.0014309050662837338,0.0004994231993950062,-0.0004425764257956385,-0.0013719254583731547,-0.002265810027208975,-0.0031023306181918254,-0.003861038434053021,-0.0045234351043086955,-0.005073423537804843,-0.005497698933444512,-0.0057860704552892585,-0.005931705799250733,-0.005931292787319428,-0.005785114174483438,-0.005497033992576092,-0.005074395931549558,-0.0045278364185797,-0.0038710171459441123,-0.0031202837685617006,-0.002294259293276324,-0.001413382270481044,-0.0004994012358905829,0.00042516209620153196,0.001337567642349765,0.0022154160984898313,0.003037198682660485,0.0037828239834388124,0.004434109012914148,0.0049752224661573485,0.005393069385325811,0.00567760788587446,0.0058220902884803544,0.005823222871405137,0.005681240467815142,0.005399894231433152,0.004986353030091614,0.004451021047755252,0.0038072762293109965,0.003071136138562334,0.0022608595710706075,0.0013964938265517643,0.0004993788624491068,-0.0004083794108390892,-0.0013044536968056491,-0.0021668443302790726,-0.002974419248993278,-0.0037074316695068334,-0.0043480027894247505,-0.004880557720013452,-0.005292204023601741,-0.0055730436593746996,-0.0057164107937097515,-0.005719029766083681,-0.0055810894733952805,-0.005306232495619118,-0.0049014593832697444,-0.004376950610621241,-0.003745810716841524,-0.003023741060706416,-0.002228649356802987,-0.0013802056996074816,-0.0004993560791036628,0.00039219458374272734,0.0012725171260012716,0.002119997387946734,0.0029138667575810077,0.0036347109950666994,0.00426494487440376,0.004789241041616164,0.005194902634108511,0.005472170606050852,0.0056144583248202125,0.005618507803472118,0.005484463869405808,0.005215864592045647,0.004819548352648121,0.004305479986582424,0.0036865004123560227,0.0029780060336419465,0.002197565914824165,0.0013644862452781303,0.0004993328858879418,-0.0003765761978162575,-0.001241696092400159,-0.0020747847494479673,-0.002855424429223849,-0.003564521978037302,-0.0041847756846658795,-0.0047010973036822395,-0.005100978954919898,-0.005374795980547332,-0.005516038430169592,-0.0055214656106216805,-0.005391180036965443,-0.005128619107748382,-0.004740464851877603,-0.00423647410671219,-0.003629233437771507,-0.002933844951979487,-0.002167550843566953,-0.001349306003455068,-0.0004993092828362403,0.0003614950007958476,0.001211933015790789,0.0020311221195462256,0.0027989835108012304,0.003496734248862375,0.0041073465861544605,0.004615963384254445,0.005010259481806343,0.005280740227984156,0.0054209699539874675,0.005427724888771913,0.005301066890937123,0.0050443363203623295,0.004664064362702018,0.004169807098291436,0.003573905525780575,0.0028911775628799184,0.002138549707627634,0.001334637513027222,0.0004992852699834612,-0.0003469237219449453,-0.0011831742131067637,-0.00198893090345579,-0.0027444425973930627,-0.003431226239326559,-0.004032518970743513,-0.004533687155300853,-0.0049225823943547355,-0.005189835874581361,-0.005329083919074996,-0.005337119315601866,-0.005213964828439405,-0.004962867218188989,-0.004590212049858264,-0.004105361515251484,-0.0035204193834989695,-0.0028499289771196233,-0.002110511706700611,-0.0013204551451590709,-0.0004992608473651126,0.00033283690706444556,0.001155369574205037,0.0019481377329887916,0.0026917070219641434,0.0033678844521541663,0.003960163424899833,0.004454126571867653,0.004837796588765052,0.005101926528395135,0.005240222520311385,0.00524949355625904,0.0051297247814656565,0.004884072617206557,0.004518781963465712,0.004043027644622638,0.0034686841189110838,0.002810029228366162,0.002083389377130332,0.0013067349529809705,0.0004992360150173086,-0.0003192107697180752,-0.0011284722694826124,-0.0019086740391963822,-0.0026406883048833213,-0.003306602802156573,-0.0038901589797166376,-0.004377148850312425,-0.00475576080516197,-0.005016865977622425,-0.005154238216354864,-0.0051647023707949305,-0.005048207361780579,-0.004807822364015872,-0.004449656318979023,-0.003982702880372353,-0.003418614723000364,-0.0027714128752081325,-0.0020571383223919448,-0.0012934545358373121,-0.0004992107729767691,0.0003060230568437195,0.001102438485742836,0.0018704756662674044,0.002591303656543708,0.0032472820208839064,0.0038223924331743596,0.004302629725616512,0.0046763428388188755,0.004934517375537622,0.005070992908540356,0.005082609807218276,0.004969282087775558,0.004733994615120348,0.0043827248460450085,0.003924291157115461,0.0033701316013577025,0.002734018641177403,0.0020317169692812696,0.0012805929164737,0.0004991851212808195,-0.0002932529271535201,-0.0010772271871774145,-0.0018334825221112672,-0.0025434755272024895,-0.0031898291177523837,-0.0037567577366424847,-0.004230452779039355,-0.004599418826029224,-0.004854752502503775,-0.004990357197361619,-0.00500308847073524,-0.004892826684262159,-0.0046624751841449616,-0.00431788419869166,-0.0038677024371222344,-0.0033231601498391965,-0.0026977890885985433,-0.002007086346997732,-0.001268130429746832,-0.0004991590599673905,0.0002808808409249539,0.0010527998987214108,0.0017976382616219783,0.002497131198891782,0.0031341568914942967,0.00369315543862843,0.004160508828461759,0.0045248725965120525,0.004777451096687194,0.0049122097081178645,0.004926018860914603,0.004818726447300286,0.0045931569496381495,0.00425503742021364,0.003812852244862413,0.0032776303695147735,0.0026626703226140984,0.0019832098866509633,0.0012560486216152238,0.0004991325890751277,-0.0002688884599578775,-0.001029120509375415,-0.001762889999112639,-0.0024522024148836115,-0.003080183486532642,-0.00363149217963671,-0.004092695374704395,-0.004452595085229361,-0.004702500246127501,-0.004836436478333121,-0.004851288769524329,-0.004746873667121443,-0.004525939316996899,-0.004194093456927031,-0.0037596612440242093,-0.0032334765167283713,-0.00262861172217786,-0.00196005323902232,-0.0012443301573194486,-0.0004991057086428458,0.000257258556617783,0.0010061550933810979,0.0017291880468313775,0.002408625042738683,0.0030278319895318258,0.0035716802327426353,0.004026916097914493,0.004382483797353004,0.004629793835699608,0.0047629304004462095,0.004778792732657876,0.004677167103040538,0.004460727728830894,0.004134966715663405,0.003708054852554489,0.0031906367845885584,0.0025955656951928766,0.001937584108669108,0.0012329587377918046,0.0004990784187105133,-0.0002459749310211105,-0.0009838717473853724,-0.0016964856768440163,-0.002366338767438618,-0.0029770300619459526,-0.0035136370851241356,-0.003963080398819343,-0.004314442320859904,-0.004559232043271503,-0.004691590714039125,-0.004708431531524252,-0.0046095115049737305,-0.004397433218752754,-0.004077576660482938,-0.003657962891790274,-0.003149053012647872,-0.0025634874553012907,-0.0019157721026907203,-0.001221919023445403,-0.0004990507193186902,0.00023502233551934661,0.0009622404419539777,0.001664738903877841,0.0023252868115176983,0.002927709604868079,0.003457285056356873,0.0039011029802484038,0.004248379881883172,0.004490720880025752,0.004622322542542066,0.00464011173693275,0.004543817176805342,0.004335972004167912,0.004021847444607473,0.0036093192662131927,0.0031086704218984186,0.002532334818128306,0.0018945885926617018,0.0012111965645976927,0.0004990226105079152,-0.0002243864057470228,-0.0009412328859753212,-0.001633906287010624,-0.002285415679457893,-0.0028798064529203336,-0.0034025509497552704,-0.0038409034648629265,-0.004184210938504212,-0.004424171770494853,-0.004555036469934834,-0.004573745293074292,-0.004479999577396246,-0.004276265114142462,-0.003967707574039605,-0.0035620616707499387,-0.0030694373725496556,-0.0025020680150257975,-0.0018740065884190315,-0.0012007777378588993,-0.0004989940923201636,0.0002140535975756675,0.0009208224026722554,0.001603948748318357,0.0022466749239332625,0.002833260094286147,0.003349365733473225,0.003782406045486839,0.004121854809166118,0.004359501168362803,0.004489648153473979,0.0045092491367007045,0.004417978955500211,0.004218238048875759,0.003915089599727332,0.003516131322897338,0.0030313051423310907,0.00247264952259193,0.001854000622527379,0.0011906496879029755,0.0004989651647971963,-0.0002040111293898457,-0.0009009838160769917,-0.0015748294068192038,-0.002209016931750107,-0.00278801341432119,-0.0032976642484385324,-0.003725539164843909,-0.004061235332311548,-0.00429663020453047,-0.004426077968918025,-0.004446544848238485,-0.004357680015274515,-0.00416182046768777,-0.0038639298354905707,-0.0034714727172461034,-0.0029942277233235655,-0.002444043906424473,-0.0018345466443885374,-0.00118080027409129,-0.0004989358279821871,0.00019424692917314562,0.0008816933469513917,0.0015465134262239314,0.0021723967275787473,0.0027440124604536926,0.0032473849405272276,0.0036702352218526595,0.004002280554228679,0.004235484364325886,0.004364250685113706,0.004385558331756163,0.004299031609433661,0.0041069459027759676,0.0038141680992259076,0.003428033400252026,0.0029581616355329,0.0024162176777453677,0.001815621923063279,0.001171218021489431,0.0004989060819181181,-0.0001847495859371765,-0.0008629285172529031,-0.0015189678751761518,-0.002136771793770344,-0.0027012062263444907,-0.0031984696146588124,-0.0036164303019479366,-0.003944922442412582,-0.0041759931910834505,-0.0043040951651462525,-0.004326219521038878,-0.004241966457418358,-0.004053551496290331,-0.003765747475181695,-0.0033857637633289235,-0.0029230657556224377,-0.0023891391616713644,-0.0017972049579859917,-0.001161892075855331,-0.0004988759266493618,0.00017550830508916387,0.0008446680623330474,0.0014921615988015187,0.0021021019047454403,0.002659546453486447,0.0031508632087512657,0.0035640639291636806,0.00388909662204386,0.0041180900136112,0.004245544091558453,0.00426846210931905,0.004186420886231281,0.004001577758542031,0.003718614095326008,0.003344616852551425,0.0028889011593813633,0.002362778376046668,0.001779275396828912,0.001152812162233677,0.0004988453622201207,-0.00016651286736473167,-0.0008268918501536366,-0.0014660651005107062,-0.002068348974596193,-0.002618987448624658,-0.003104513585685571,-0.0035130788379586146,-0.003834742133435919,-0.004061711695331435,-0.0041885337134062684,-0.004212223300471078,-0.004132334591842,-0.003950968345388164,-0.003672716938044913,-0.003304548193428921,-0.0028556309766647717,-0.0023371069198578395,-0.0017618139598620337,-0.0011439685468184455,-0.0004988143886759659,0.00015775359100368895,0.000809580806869352,0.001440650433117972,0.0020354769166868003,0.0025794859155436026,0.003059371341631531,0.0034634207629714703,0.003781801208532114,0.0040067984031086894,0.004133003613153557,0.004157443579707545,0.004079650419280244,0.0039016698530433777,0.0036280076425864788,0.003265515629379815,0.0028232202576643542,0.0023120978703630836,0.0017448023702120214,0.0011353520017919668,0.0004987830060623196,-0.00014922129686829603,-0.0007927168482044509,-0.0014158910984247287,-0.002003451514168219,-0.0025410007999179213,-0.003015389629249405,-0.003415038245086422,-0.0037302190647274754,-0.003953293393987211,-0.004078896491613337,-0.00410406650201642,-0.004028314159732833,-0.003853631628745344,-0.0035844403378348733,-0.003227479172668968,-0.0027916358494945565,-0.002287725688147475,-0.0017282232894953666,-0.0011269537728676021,-0.000498751214425952,0.0001409072762459341,0.0007762828160985754,0.0013917619545153609,0.001972240300425282,0.002503493146061756,0.002972523994440541,0.003367882452348414,0.0036799437144705953,0.0039011428182383874,0.004026157969326973,0.004052038496758475,0.00397827436312883,0.0038068055958650603,0.0035419714841371133,0.00319040086670408,0.0027608462821736048,0.002263966129405304,0.001712060258343741,0.0011187655493018677,0.0004987190138135041,-0.00013280326109271938,-0.0007602624201610082,-0.001368239130077827,-0.0019418124485833497,-0.002466925964521319,-0.002930732225449789,-0.0033219070144208536,-0.0036309257892521546,-0.003850295537282631,-0.003974736402933296,-0.004001308687002701,-0.003929482164852002,-0.00376114609219053,-0.0035005597270388582,-0.003154244658690453,-0.002730821663179478,-0.0022407961648112304,-0.0016962976413981126,-0.0011107794361543178,-0.000498686404272945,0.0001249013965102919,0.0007446401835075916,0.0013452999451408507,0.0019121386692788332,0.0024312641095693027,0.0028899742132417537,0.0032770678694049025,0.0035831183767293805,0.0038007029551900286,0.003924582715224827,0.003951828722319142,0.003881891125352535,0.003716609720242386,0.0034601657618934943,0.0031189762817496777,0.0027015335798338228,0.0022181939044144776,0.0016809205763798618,0.0011029879286062277,0.0004986533858521337,-0.00011719421525729847,-0.000729401392607532,-0.0013229228376689499,-0.0018831911159860532,-0.002396474165743659,-0.002850211822183158,-0.0032333231219556875,-0.003536476869856068,-0.003752318862593936,-0.0038756502377148556,-0.0039035526238738205,-0.003835457081552563,-0.0036731552085880258,-0.0034207522084155942,-0.0030845631456884472,-0.0026729550088480064,-0.0021961385280363276,-0.0016659149268954672,-0.001095383888156867,-0.0004986199586002391,0.00010967461412752293,0.0007145320507927611,0.0013010872955213537,0.0018549432972521389,0.0023625243426653605,0.002811408770151105,0.0031906329117375796,0.0034909588269975552,0.0037050992919631983,0.0038278945646545333,0.0038564366407827476,0.0037901380090449408,0.003630743283224622,0.003382283494334375,0.003050974235689144,0.0026450602324217917,0.0021746102207105132,0.001651267238654529,0.0010879605205442054,0.0004985861225663366,-0.00010233583203185616,-0.0007000188351267093,-0.001279773793318108,-0.0018273699952635265,-0.002329384377434712,-0.0027735305172788627,-0.0031489592913472677,-0.003446523842110451,-0.003659002383279734,-0.0037812734175394326,-0.0038104391167815476,-0.003745893894182583,-0.003589336548186579,-0.003344725747388711,-0.0030181800182567525,-0.0026178247603512532,-0.002153590112741015,-0.0016369646988212603,-0.001080711355241041,-0.0004985518778007949,9.517142964761325e-5,0.0006858490563475613,0.0012589637338102466,0.0018004471902129562,0.0022970254439807916,0.002736544162618248,0.003108266112921947,0.0034031334241501426,0.003613988259260146,0.0037357465192371557,0.0037655203663567944,0.0037026866152389693,0.0035488993746164476,0.00330804669497175,0.0029861523538260355,0.002591225257645969,0.002133060224000768,0.0016229950982362409,0.0010736302264018885,0.000498517224353906,-8.817527050085159e-5,-0.0006720106216383503,-0.0012386393933787395,-0.0017741519899950786,-0.002265420068788891,-0.0027004183480726107,-0.0030685189227173115,-0.0033607508849519876,-0.0035700189093381,-0.003691275476948093,-0.0037216425595647646,-0.0036604798318989884,-0.003509397797605817,-0.003272215570802842,-0.002954864415482041,-0.002565239477209873,-0.0021130034121211038,-0.0016093467962793224,-0.001066711255137382,-0.0004984821622772376,8.134150337040277e-5,0.0006584919999888736,0.0012187838713316977,0.0017484625647933205,0.002234542052492471,0.0026651231690070472,0.003029684863012243,0.0033193412348973984,0.003527058081699554,0.003647823673284301,0.0036787696148350255,0.0036192388824060036,0.00347079942018024,0.003237203028056906,0.0029242906133038495,0.0025398461971736074,0.0020934033242626738,0.0015960086881562086,0.0010599488330143533,0.0004984466916222977,-7.466454590211034e-5,-0.0006452821899462679,-0.001199381042689853,-0.0017233580861699474,-0.002204366396855014,-0.002630630091004051,-0.0029917325807501194,-0.0032788710857435607,-0.0034850711827247886,-0.00360535616481757,-0.0036368670991204738,-0.0035789306877536333,-0.003433073323855914,-0.003202981058438294,-0.002894406523879812,-0.0025150251625112746,-0.0020742443521781905,-0.0015829701744203663,-0.0010533376066790532,-0.0004984108124418531,6.813906934222675e-5,0.0006323706895593717,0.0011804155141881586,0.0016988186702973905,0.0021748692367183297,0.00259691187227384,0.0029546321423858986,0.003239308560047316,0.0034440251832525124,0.0035638395875052563,0.0035959021348129865,0.0035395236623659747,0.003396189985250863,0.003169522916727579,0.002865188824589519,0.002490757030600152,0.002055511590311878,0.001570221132549645,0.0010468724635200573,0.0004983745247886269,-6.175998429688796e-5,-0.0006197474683495501,-0.001161872583236179,-0.0016748253250103383,-0.0021460277765237355,-0.0025639424912796407,-0.0029183549544499247,-0.003200623206669064,-0.003403888531130716,-0.003523242068456614,-0.003555843312895935,-0.003500987630758621,-0.0033601211982765395,-0.0031368030503765147,-0.002836615232277634,-0.002467023320419674,-0.002037190796694864,-0.001557751890422174,-0.001040548518285073,-0.0004983378287165857,5.552242744295473e-5,0.0006074029411455721,0.001143738199612283,0.0016513599003776449,0.0021178202310554437,0.0025316970791701855,0.0028828736893883916,0.003162785921883737,0.003364631069569198,0.0034835331435485407,0.0035166606118513114,0.0034632937497192768,0.0033248400014794723,0.0031047970337596863,0.0028086644459837766,0.0024438063651054985,0.002019268356425221,0.0015455532015407746,0.0010343611005830435,0.0004983007242796662,-4.942174911208309e-5,-0.0005953279436442237,-0.0011259989296769795,-0.001628405042528276,-0.002090225770078284,-0.0025001518566542887,-0.0028481622162732953,-0.0031257688756715562,-0.003326223960848225,-0.0034446836804439013,-0.003478325321881563,-0.0034264144355852654,-0.0032903206101400993,-0.003073481506728138,-0.0027813160934166492,-0.0024210892676064023,-0.0020017312475315977,-0.001533616221877156,-0.0010283057431994059,-0.0004982632115330347,4.3453501686560485e-5,0.0005835137095606349,0.0011086419229187027,0.0016059441504799085,0.002063224466578198,0.002469284074977216,0.0028141955360155855,0.003089545442794039,0.003288639614979209,0.003406665806602925,0.003440809974044072,0.003390323296233511,0.003256538352768117,0.0030428341171408273,0.0027545506808907545,0.0023988558592064244,0.0019845670090447563,0.0015219324882094376,0.001022378171167947,0.0004982252905318412,-3.761342874095078e-5,-0.0005719518492535973,-0.001091654880652145,-0.0015839613357489504,-0.0020367972483311494,-0.0024390719606944716,-0.002780949720741039,-0.0030540901382987242,-0.0032518516229450554,-0.003369452841914527,-0.0034040882739307583,-0.003354995067429716,-0.0032234696116672655,-0.0030128334670749615,-0.0027283495464680823,-0.0023770906607018085,-0.0019677637111083822,-0.0015104938978460383,-0.0010165742915382609,-0.0004981869613324518,3.189745487887599e-5,0.0005606343297113969,0.001075026026713675,0.0015624413845310434,0.002010925852557115,0.002409494663957775,0.0027484018570227975,0.003019378557122128,0.0032158346941821626,0.0033330192356046673,0.0033681350395562424,0.003320405553214996,0.003191091767267006,0.0029834590624454606,0.002702694816065715,0.0023557788460340265,0.0019513099269824446,0.0014992926896293514,0.0010108901837920985,0.0004981482239912289,-2.6301676208954497e-5,-0.0005495534558027233,-0.0010587440800023894,-0.0015413697222672565,-0.0019855927834285998,-0.0023805322100585694,-0.0027165299926846776,-0.0029853873174923,-0.003180564597991611,-0.003297340507108926,-0.0033329261431463155,-0.0032865315700335456,-0.003159383145946983,-0.002954691265781971,-0.002677569362315304,-0.0023349062082004823,-0.0019351947067978814,-0.0014883214261299312,-0.001005322090856745,-0.0004981090785657377,2.0822351418051697e-5,0.0005387018526958475,0.0010427982287369107,0.0015207323804181968,0.0019607812722298736,0.0023521654539889717,0.002685313086918562,0.0029520940078529984,0.003146018108595766,0.00326239319062105,0.003298438456543866,0.0032533508943310163,0.0031283229710997546,0.002926511251937036,0.0026529567659724818,0.002314459127279241,0.0019194075529372137,0.0014775729769418826,0.0009998664106766566,0.0004980695251135532,-1.545589339407222e-5,-0.0005280724493664604,-0.001027178106299872,-0.0015005159652911758,-0.0019364752399723662,-0.0023243760378063583,-0.0026547309634748686,-0.002919477137058461,-0.003112172953577059,-0.0032281547830542373,-0.00326464979997276,-0.0032208422133739355,-0.0030978913172011774,-0.0028989009665132703,-0.002628841279696403,-0.002294424540413871,-0.0019039383969259704,-0.0014670405030020358,-0.0009945196882999979,-0.0004980295636934392,1.0198861363700948e-5,0.0005176584631119219,0.0010118737685612493,0.001480707628769972,0.0019126592622949528,0.002297146350598696,0.002624764266710047,0.002887516087604052,0.003079007765459827,0.0031946036951719567,0.003231538893921081,0.003188985079062221,0.0030680690666735405,0.0028718430868188084,0.0026052077940286423,0.002274789913622713,0.0018887775777249986,0.0014567174418617138,0.0009892786084450267,0.0004979891943641825,-5.047953504107395e-6,-0.0005074533850053559,-0.0009968756725717792,-0.0014612950408170098,-0.0018893185364843,-0.002270459490870487,-0.0025953944202871545,-0.002856191071681028,-0.0030465020362126353,-0.0031617192056659906,-0.0031990853139244606,-0.003157759864523715,-0.0030388378693467265,-0.002845320985171439,-0.002582041805419834,-0.0022555432153013566,-0.001873915821329042,-0.0014465974938411748,-0.0009841399885140729,-0.0004979484171856053,0.0],"x":[-100.0,-99.95002498750625,-99.9000499750125,-99.85007496251875,-99.80009995002499,-99.75012493753124,-99.70014992503748,-99.65017491254373,-99.60019990004997,-99.55022488755623,-99.50024987506247,-99.45027486256872,-99.40029985007496,-99.35032483758121,-99.30034982508745,-99.2503748125937,-99.20039980009994,-99.1504247876062,-99.10044977511244,-99.05047476261869,-99.00049975012493,-98.95052473763118,-98.90054972513744,-98.85057471264368,-98.80059970014993,-98.75062468765617,-98.70064967516242,-98.65067466266866,-98.60069965017492,-98.55072463768116,-98.50074962518741,-98.45077461269365,-98.4007996001999,-98.35082458770614,-98.3008495752124,-98.25087456271864,-98.20089955022489,-98.15092453773113,-98.10094952523738,-98.05097451274362,-98.00099950024988,-97.95102448775611,-97.90104947526237,-97.85107446276862,-97.80109945027486,-97.75112443778112,-97.70114942528735,-97.65117441279361,-97.60119940029985,-97.5512243878061,-97.50124937531234,-97.4512743628186,-97.40129935032483,-97.35132433783109,-97.30134932533733,-97.25137431284358,-97.20139930034982,-97.15142428785607,-97.10144927536231,-97.05147426286857,-97.0014992503748,-96.95152423788106,-96.90154922538731,-96.85157421289355,-96.8015992003998,-96.75162418790605,-96.7016491754123,-96.65167416291854,-96.60169915042479,-96.55172413793103,-96.50174912543729,-96.45177411294353,-96.40179910044978,-96.35182408795602,-96.30184907546227,-96.25187406296851,-96.20189905047476,-96.151924037981,-96.10194902548726,-96.0519740129935,-96.00199900049975,-95.95202398800599,-95.90204897551224,-95.8520739630185,-95.80209895052474,-95.75212393803099,-95.70214892553723,-95.65217391304348,-95.60219890054972,-95.55222388805598,-95.50224887556222,-95.45227386306847,-95.40229885057471,-95.35232383808096,-95.3023488255872,-95.25237381309346,-95.2023988005997,-95.15242378810595,-95.10244877561219,-95.05247376311844,-95.00249875062468,-94.95252373813094,-94.90254872563717,-94.85257371314343,-94.80259870064968,-94.75262368815592,-94.70264867566218,-94.65267366316841,-94.60269865067467,-94.55272363818091,-94.50274862568716,-94.4527736131934,-94.40279860069965,-94.3528235882059,-94.30284857571215,-94.25287356321839,-94.20289855072464,-94.15292353823088,-94.10294852573713,-94.05297351324337,-94.00299850074963,-93.95302348825587,-93.90304847576212,-93.85307346326836,-93.80309845077461,-93.75312343828087,-93.7031484257871,-93.65317341329336,-93.6031984007996,-93.55322338830585,-93.50324837581209,-93.45327336331835,-93.40329835082458,-93.35332333833084,-93.30334832583708,-93.25337331334333,-93.20339830084957,-93.15342328835582,-93.10344827586206,-93.05347326336832,-93.00349825087456,-92.95352323838081,-92.90354822588705,-92.8535732133933,-92.80359820089954,-92.7536231884058,-92.70364817591205,-92.65367316341829,-92.60369815092454,-92.55372313843078,-92.50374812593704,-92.45377311344328,-92.40379810094953,-92.35382308845577,-92.30384807596202,-92.25387306346826,-92.20389805097452,-92.15392303848076,-92.10394802598701,-92.05397301349325,-92.0039980009995,-91.95402298850574,-91.904047976012,-91.85407296351823,-91.80409795102449,-91.75412293853073,-91.70414792603698,-91.65417291354323,-91.60419790104947,-91.55422288855573,-91.50424787606197,-91.45427286356822,-91.40429785107446,-91.35432283858071,-91.30434782608695,-91.2543728135932,-91.20439780109945,-91.1544227886057,-91.10444777611194,-91.0544727636182,-91.00449775112443,-90.95452273863069,-90.90454772613693,-90.85457271364318,-90.80459770114942,-90.75462268865567,-90.70464767616193,-90.65467266366817,-90.60469765117442,-90.55472263868066,-90.50474762618691,-90.45477261369315,-90.4047976011994,-90.35482258870564,-90.3048475762119,-90.25487256371814,-90.20489755122439,-90.15492253873063,-90.10494752623688,-90.05497251374312,-90.00499750124938,-89.95502248875562,-89.90504747626187,-89.85507246376811,-89.80509745127436,-89.7551224387806,-89.70514742628686,-89.65517241379311,-89.60519740129935,-89.5552223888056,-89.50524737631184,-89.4552723638181,-89.40529735132434,-89.35532233883059,-89.30534732633683,-89.25537231384308,-89.20539730134932,-89.15542228885558,-89.10544727636182,-89.05547226386807,-89.00549725137431,-88.95552223888056,-88.9055472263868,-88.85557221389305,-88.8055972013993,-88.75562218890555,-88.70564717641179,-88.65567216391804,-88.6056971514243,-88.55572213893053,-88.50574712643679,-88.45577211394303,-88.40579710144928,-88.35582208895552,-88.30584707646177,-88.25587206396801,-88.20589705147427,-88.1559220389805,-88.10594702648676,-88.055972013993,-88.00599700149925,-87.95602198900549,-87.90604697651175,-87.85607196401799,-87.80609695152424,-87.75612193903048,-87.70614692653673,-87.65617191404297,-87.60619690154923,-87.55622188905548,-87.50624687656172,-87.45627186406797,-87.40629685157421,-87.35632183908046,-87.3063468265867,-87.25637181409296,-87.2063968015992,-87.15642178910545,-87.10644677661169,-87.05647176411794,-87.00649675162418,-86.95652173913044,-86.90654672663668,-86.85657171414293,-86.80659670164917,-86.75662168915542,-86.70664667666166,-86.65667166416792,-86.60669665167416,-86.55672163918041,-86.50674662668666,-86.4567716141929,-86.40679660169916,-86.3568215892054,-86.30684657671165,-86.25687156421789,-86.20689655172414,-86.15692153923038,-86.10694652673664,-86.05697151424287,-86.00699650174913,-85.95702148925537,-85.90704647676162,-85.85707146426786,-85.80709645177411,-85.75712143928035,-85.70714642678661,-85.65717141429285,-85.6071964017991,-85.55722138930535,-85.5072463768116,-85.45727136431785,-85.40729635182409,-85.35732133933034,-85.30734632683658,-85.25737131434283,-85.20739630184907,-85.15742128935533,-85.10744627686157,-85.05747126436782,-85.00749625187406,-84.95752123938031,-84.90754622688655,-84.8575712143928,-84.80759620189905,-84.7576211894053,-84.70764617691154,-84.65767116441779,-84.60769615192403,-84.55772113943029,-84.50774612693654,-84.45777111444278,-84.40779610194903,-84.35782108945527,-84.30784607696152,-84.25787106446776,-84.20789605197402,-84.15792103948026,-84.10794602698651,-84.05797101449275,-84.007996001999,-83.95802098950524,-83.9080459770115,-83.85807096451774,-83.80809595202399,-83.75812093953023,-83.70814592703648,-83.65817091454272,-83.60819590204898,-83.55822088955522,-83.50824587706147,-83.45827086456772,-83.40829585207396,-83.35832083958022,-83.30834582708646,-83.25837081459271,-83.20839580209895,-83.1584207896052,-83.10844577711144,-83.0584707646177,-83.00849575212393,-82.95852073963019,-82.90854572713643,-82.85857071464268,-82.80859570214892,-82.75862068965517,-82.70864567716141,-82.65867066466767,-82.6086956521739,-82.55872063968016,-82.5087456271864,-82.45877061469265,-82.40879560219891,-82.35882058970515,-82.3088455772114,-82.25887056471764,-82.2088955522239,-82.15892053973013,-82.10894552723639,-82.05897051474263,-82.00899550224888,-81.95902048975512,-81.90904547726137,-81.85907046476761,-81.80909545227387,-81.7591204397801,-81.70914542728636,-81.6591704147926,-81.60919540229885,-81.55922038980509,-81.50924537731134,-81.45927036481758,-81.40929535232384,-81.35932033983009,-81.30934532733633,-81.25937031484258,-81.20939530234882,-81.15942028985508,-81.10944527736132,-81.05947026486757,-81.00949525237381,-80.95952023988006,-80.9095452273863,-80.85957021489256,-80.8095952023988,-80.75962018990505,-80.70964517741129,-80.65967016491754,-80.60969515242378,-80.55972013993004,-80.50974512743628,-80.45977011494253,-80.40979510244878,-80.35982008995502,-80.30984507746128,-80.25987006496752,-80.20989505247377,-80.15992003998001,-80.10994502748626,-80.0599700149925,-80.00999500249875,-79.960019990005,-79.91004497751125,-79.86006996501749,-79.81009495252374,-79.76011994002998,-79.71014492753623,-79.66016991504247,-79.61019490254873,-79.56021989005497,-79.51024487756122,-79.46026986506746,-79.41029485257371,-79.36031984007997,-79.3103448275862,-79.26036981509246,-79.2103948025987,-79.16041979010495,-79.11044477761119,-79.06046976511745,-79.01049475262369,-78.96051974012994,-78.91054472763618,-78.86056971514243,-78.81059470264867,-78.76061969015493,-78.71064467766116,-78.66066966516742,-78.61069465267366,-78.56071964017991,-78.51074462768615,-78.4607696151924,-78.41079460269864,-78.3608195902049,-78.31084457771115,-78.26086956521739,-78.21089455272364,-78.16091954022988,-78.11094452773614,-78.06096951524238,-78.01099450274863,-77.96101949025487,-77.91104447776112,-77.86106946526736,-77.81109445277362,-77.76111944027986,-77.71114442778611,-77.66116941529235,-77.6111944027986,-77.56121939030484,-77.5112443778111,-77.46126936531734,-77.41129435282359,-77.36131934032983,-77.31134432783608,-77.26136931534234,-77.21139430284857,-77.16141929035483,-77.11144427786107,-77.06146926536732,-77.01149425287356,-76.96151924037981,-76.91154422788605,-76.86156921539231,-76.81159420289855,-76.7616191904048,-76.71164417791104,-76.6616691654173,-76.61169415292353,-76.56171914042979,-76.51174412793603,-76.46176911544228,-76.41179410294852,-76.36181909045477,-76.31184407796101,-76.26186906546727,-76.21189405297352,-76.16191904047976,-76.11194402798601,-76.06196901549225,-76.0119940029985,-75.96201899050475,-75.912043978011,-75.86206896551724,-75.81209395302349,-75.76211894052973,-75.71214392803599,-75.66216891554222,-75.61219390304848,-75.56221889055472,-75.51224387806097,-75.46226886556721,-75.41229385307346,-75.3623188405797,-75.31234382808596,-75.2623688155922,-75.21239380309845,-75.1624187906047,-75.11244377811094,-75.0624687656172,-75.01249375312344,-74.96251874062969,-74.91254372813593,-74.86256871564218,-74.81259370314842,-74.76261869065468,-74.71264367816092,-74.66266866566717,-74.61269365317341,-74.56271864067966,-74.5127436281859,-74.46276861569216,-74.4127936031984,-74.36281859070465,-74.31284357821089,-74.26286856571714,-74.2128935532234,-74.16291854072963,-74.11294352823589,-74.06296851574213,-74.01299350324838,-73.96301849075462,-73.91304347826087,-73.86306846576711,-73.81309345327337,-73.7631184407796,-73.71314342828586,-73.6631684157921,-73.61319340329835,-73.5632183908046,-73.51324337831085,-73.46326836581709,-73.41329335332334,-73.36331834082958,-73.31334332833583,-73.26336831584207,-73.21339330334833,-73.16341829085458,-73.11344327836082,-73.06346826586707,-73.01349325337331,-72.96351824087957,-72.9135432283858,-72.86356821589206,-72.8135932033983,-72.76361819090455,-72.71364317841079,-72.66366816591704,-72.61369315342328,-72.56371814092954,-72.51374312843578,-72.46376811594203,-72.41379310344827,-72.36381809095452,-72.31384307846076,-72.26386806596702,-72.21389305347326,-72.16391804097951,-72.11394302848576,-72.063968015992,-72.01399300349826,-71.9640179910045,-71.91404297851075,-71.86406796601699,-71.81409295352324,-71.76411794102948,-71.71414292853574,-71.66416791604198,-71.61419290354823,-71.56421789105447,-71.51424287856072,-71.46426786606696,-71.41429285357322,-71.36431784107945,-71.31434282858571,-71.26436781609195,-71.2143928035982,-71.16441779110444,-71.1144427786107,-71.06446776611695,-71.01449275362319,-70.96451774112944,-70.91454272863568,-70.86456771614193,-70.81459270364817,-70.76461769115443,-70.71464267866067,-70.66466766616692,-70.61469265367316,-70.56471764117941,-70.51474262868565,-70.4647676161919,-70.41479260369815,-70.3648175912044,-70.31484257871064,-70.26486756621689,-70.21489255372313,-70.16491754122939,-70.11494252873563,-70.06496751624188,-70.01499250374813,-69.96501749125437,-69.91504247876063,-69.86506746626686,-69.81509245377312,-69.76511744127936,-69.71514242878561,-69.66516741629185,-69.6151924037981,-69.56521739130434,-69.5152423788106,-69.46526736631684,-69.41529235382309,-69.36531734132933,-69.31534232883558,-69.26536731634182,-69.21539230384808,-69.16541729135432,-69.11544227886057,-69.06546726636682,-69.01549225387306,-68.96551724137932,-68.91554222888556,-68.86556721639181,-68.81559220389805,-68.7656171914043,-68.71564217891054,-68.6656671664168,-68.61569215392304,-68.56571714142929,-68.51574212893553,-68.46576711644178,-68.41579210394802,-68.36581709145428,-68.31584207896051,-68.26586706646677,-68.21589205397301,-68.16591704147926,-68.1159420289855,-68.06596701649175,-68.01599200399801,-67.96601699150425,-67.9160419790105,-67.86606696651674,-67.816091954023,-67.76611694152923,-67.71614192903549,-67.66616691654173,-67.61619190404798,-67.56621689155422,-67.51624187906047,-67.46626686656671,-67.41629185407297,-67.3663168415792,-67.31634182908546,-67.2663668165917,-67.21639180409795,-67.16641679160419,-67.11644177911045,-67.06646676661668,-67.01649175412294,-66.96651674162919,-66.91654172913543,-66.86656671664169,-66.81659170414792,-66.76661669165418,-66.71664167916042,-66.66666666666667,-66.61669165417291,-66.56671664167916,-66.5167416291854,-66.46676661669166,-66.4167916041979,-66.36681659170415,-66.31684157921039,-66.26686656671664,-66.21689155422288,-66.16691654172914,-66.11694152923538,-66.06696651674163,-66.01699150424787,-65.96701649175412,-65.91704147926038,-65.86706646676662,-65.81709145427287,-65.76711644177911,-65.71714142928536,-65.6671664167916,-65.61719140429786,-65.5672163918041,-65.51724137931035,-65.46726636681659,-65.41729135432284,-65.36731634182908,-65.31734132933533,-65.26736631684157,-65.21739130434783,-65.16741629185407,-65.11744127936032,-65.06746626686656,-65.01749125437281,-64.96751624187905,-64.91754122938531,-64.86756621689156,-64.8175912043978,-64.76761619190405,-64.7176411794103,-64.66766616691655,-64.61769115442279,-64.56771614192904,-64.51774112943528,-64.46776611694153,-64.41779110444777,-64.36781609195403,-64.31784107946027,-64.26786606696652,-64.21789105447276,-64.16791604197901,-64.11794102948525,-64.0679660169915,-64.01799100449774,-63.968015992004,-63.918040979510245,-63.86806596701649,-63.81809095452274,-63.768115942028984,-63.71814092953523,-63.66816591704148,-63.618190904547724,-63.56821589205397,-63.51824087956022,-63.468265867066464,-63.41829085457271,-63.368315842078964,-63.31834082958521,-63.26836581709146,-63.2183908045977,-63.16841579210395,-63.1184407796102,-63.06846576711644,-63.01849075462269,-62.968515742128936,-62.91854072963518,-62.86856571714143,-62.818590704647676,-62.76861569215392,-62.71864067966017,-62.668665667166415,-62.61869065467266,-62.56871564217891,-62.518740629685155,-62.4687656171914,-62.41879060469765,-62.3688155922039,-62.31884057971015,-62.268865567216395,-62.21889055472264,-62.16891554222889,-62.118940529735134,-62.06896551724138,-62.01899050474763,-61.969015492253874,-61.91904047976012,-61.86906546726637,-61.81909045477261,-61.76911544227886,-61.71914042978511,-61.66916541729135,-61.6191904047976,-61.569215392303846,-61.51924037981009,-61.46926536731634,-61.419290354822586,-61.36931534232883,-61.319340329835086,-61.26936531734133,-61.21939030484758,-61.169415292353825,-61.11944027986007,-61.06946526736632,-61.019490254872565,-60.96951524237881,-60.91954022988506,-60.869565217391305,-60.81959020489755,-60.7696151924038,-60.719640179910044,-60.66966516741629,-60.61969015492254,-60.569715142428784,-60.51974012993503,-60.46976511744128,-60.41979010494752,-60.36981509245377,-60.31984007996002,-60.26986506746627,-60.21989005497252,-60.16991504247876,-60.11994002998501,-60.069965017491256,-60.0199900049975,-59.97001499250375,-59.920039980009996,-59.87006496751624,-59.82008995502249,-59.770114942528735,-59.72013993003498,-59.67016491754123,-59.620189905047475,-59.57021489255372,-59.52023988005997,-59.470264867566215,-59.42028985507246,-59.37031484257871,-59.320339830084954,-59.27036481759121,-59.220389805097454,-59.1704147926037,-59.12043978010995,-59.070464767616194,-59.02048975512244,-58.97051474262869,-58.920539730134934,-58.87056471764118,-58.82058970514743,-58.77061469265367,-58.72063968015992,-58.670664667666166,-58.62068965517241,-58.57071464267866,-58.520739630184906,-58.47076461769115,-58.4207896051974,-58.370814592703645,-58.32083958020989,-58.27086456771614,-58.22088955522239,-58.17091454272864,-58.120939530234885,-58.07096451774113,-58.02098950524738,-57.971014492753625,-57.92103948025987,-57.87106446776612,-57.821089455272364,-57.77111444277861,-57.72113943028486,-57.671164417791104,-57.62118940529735,-57.5712143928036,-57.521239380309844,-57.47126436781609,-57.42128935532234,-57.37131434282858,-57.32133933033483,-57.271364317841076,-57.22138930534732,-57.17141429285358,-57.12143928035982,-57.07146426786607,-57.021489255372316,-56.97151424287856,-56.92153923038481,-56.871564217891056,-56.8215892053973,-56.77161419290355,-56.721639180409795,-56.67166416791604,-56.62168915542229,-56.571714142928535,-56.52173913043478,-56.47176411794103,-56.421789105447274,-56.37181409295352,-56.32183908045977,-56.271864067966014,-56.22188905547226,-56.171914042978514,-56.12193903048476,-56.07196401799101,-56.021989005497254,-55.9720139930035,-55.92203898050975,-55.87206396801599,-55.82208895552224,-55.77211394302849,-55.72213893053473,-55.67216391804098,-55.622188905547226,-55.57221389305347,-55.52223888055972,-55.472263868065966,-55.42228885557221,-55.37231384307846,-55.322338830584705,-55.27236381809095,-55.2223888055972,-55.172413793103445,-55.1224387806097,-55.072463768115945,-55.02248875562219,-54.97251374312844,-54.922538730634685,-54.87256371814093,-54.82258870564718,-54.772613693153424,-54.72263868065967,-54.67266366816592,-54.622688655672164,-54.57271364317841,-54.52273863068466,-54.4727636181909,-54.42278860569715,-54.3728135932034,-54.32283858070964,-54.27286356821589,-54.222888555722136,-54.17291354322838,-54.122938530734636,-54.07296351824088,-54.02298850574713,-53.973013493253376,-53.92303848075962,-53.87306346826587,-53.823088455772115,-53.77311344327836,-53.72313843078461,-53.673163418290855,-53.6231884057971,-53.57321339330335,-53.523238380809595,-53.47326336831584,-53.42328835582209,-53.373313343328334,-53.32333833083458,-53.27336331834083,-53.223388305847074,-53.17341329335332,-53.12343828085957,-53.07346326836582,-53.02348825587207,-52.973513243378314,-52.92353823088456,-52.87356321839081,-52.82358820589705,-52.7736131934033,-52.723638180909546,-52.67366316841579,-52.62368815592204,-52.573713143428286,-52.52373813093453,-52.47376311844078,-52.423788105947025,-52.37381309345327,-52.32383808095952,-52.273863068465765,-52.22388805597201,-52.17391304347826,-52.123938030984505,-52.07396301849075,-52.023988005997005,-51.97401299350325,-51.9240379810095,-51.874062968515744,-51.82408795602199,-51.77411294352824,-51.724137931034484,-51.67416291854073,-51.62418790604698,-51.574212893553224,-51.52423788105947,-51.47426286856572,-51.42428785607196,-51.37431284357821,-51.324337831084456,-51.2743628185907,-51.22438780609695,-51.174412793603196,-51.12443778110944,-51.07446276861569,-51.02448775612194,-50.97451274362819,-50.924537731134436,-50.87456271864068,-50.82458770614693,-50.774612693653175,-50.72463768115942,-50.67466266866567,-50.624687656171915,-50.57471264367816,-50.52473763118441,-50.474762618690654,-50.4247876061969,-50.37481259370315,-50.324837581209394,-50.27486256871564,-50.22488755622189,-50.174912543728134,-50.12493753123438,-50.07496251874063,-50.02498750624687,-49.97501249375313,-49.92503748125937,-49.87506246876562,-49.825087456271866,-49.77511244377811,-49.72513743128436,-49.675162418790606,-49.62518740629685,-49.5752123938031,-49.525237381309346,-49.47526236881559,-49.42528735632184,-49.375312343828085,-49.32533733133433,-49.27536231884058,-49.225387306346825,-49.17541229385307,-49.12543728135932,-49.075462268865564,-49.02548725637181,-48.97551224387806,-48.92553723138431,-48.87556221889056,-48.825587206396804,-48.77561219390305,-48.7256371814093,-48.675662168915544,-48.62568715642179,-48.57571214392804,-48.52573713143428,-48.47576211894053,-48.425787106446776,-48.37581209395302,-48.32583708145927,-48.275862068965516,-48.22588705647176,-48.17591204397801,-48.125937031484256,-48.0759620189905,-48.02598700649675,-47.976011994002995,-47.92603698150925,-47.876061969015495,-47.82608695652174,-47.77611194402799,-47.726136931534235,-47.67616191904048,-47.62618690654673,-47.576211894052975,-47.52623688155922,-47.47626186906547,-47.426286856571714,-47.37631184407796,-47.32633683158421,-47.276361819090454,-47.2263868065967,-47.17641179410295,-47.12643678160919,-47.07646176911544,-47.026486756621686,-46.97651174412793,-46.92653673163418,-46.87656171914043,-46.82658670664668,-46.776611694152926,-46.72663668165917,-46.67666166916542,-46.626686656671666,-46.57671164417791,-46.52673663168416,-46.476761619190405,-46.42678660669665,-46.3768115942029,-46.326836581709145,-46.27686156921539,-46.22688655672164,-46.176911544227885,-46.12693653173413,-46.07696151924038,-46.026986506746624,-45.97701149425287,-45.92703648175912,-45.877061469265364,-45.82708645677162,-45.777111444277864,-45.72713643178411,-45.67716141929036,-45.6271864067966,-45.57721139430285,-45.5272363818091,-45.47726136931534,-45.42728635682159,-45.377311344327836,-45.32733633183408,-45.27736131934033,-45.227386306846576,-45.17741129435282,-45.12743628185907,-45.077461269365315,-45.02748625687156,-44.97751124437781,-44.927536231884055,-44.8775612193903,-44.827586206896555,-44.7776111944028,-44.72763618190905,-44.677661169415295,-44.62768615692154,-44.57771114442779,-44.527736131934034,-44.47776111944028,-44.42778610694653,-44.377811094452774,-44.32783608195902,-44.27786106946527,-44.22788605697151,-44.17791104447776,-44.12793603198401,-44.07796101949025,-44.0279860069965,-43.978010994502746,-43.92803598200899,-43.87806096951524,-43.828085957021486,-43.77811094452774,-43.728135932033986,-43.67816091954023,-43.62818590704648,-43.578210894552726,-43.52823588205897,-43.47826086956522,-43.428285857071465,-43.37831084457771,-43.32833583208396,-43.278360819590205,-43.22838580709645,-43.1784107946027,-43.128435782108944,-43.07846076961519,-43.02848575712144,-42.978510744627684,-42.92853573213393,-42.87856071964018,-42.82858570714642,-42.77861069465268,-42.728635682158924,-42.67866066966517,-42.62868565717142,-42.57871064467766,-42.52873563218391,-42.478760619690156,-42.4287856071964,-42.37881059470265,-42.328835582208896,-42.27886056971514,-42.22888555722139,-42.178910544727636,-42.12893553223388,-42.07896051974013,-42.028985507246375,-41.97901049475262,-41.92903548225887,-41.879060469765115,-41.82908545727136,-41.77911044477761,-41.72913543228386,-41.67916041979011,-41.629185407296355,-41.5792103948026,-41.52923538230885,-41.479260369815094,-41.42928535732134,-41.37931034482759,-41.329335332333834,-41.27936031984008,-41.22938530734633,-41.17941029485257,-41.12943528235882,-41.079460269865066,-41.02948525737131,-40.97951024487756,-40.929535232383806,-40.87956021989005,-40.8295852073963,-40.779610194902546,-40.72963518240879,-40.679660169915046,-40.62968515742129,-40.57971014492754,-40.529735132433785,-40.47976011994003,-40.42978510744628,-40.379810094952525,-40.32983508245877,-40.27986006996502,-40.229885057471265,-40.17991004497751,-40.12993503248376,-40.079960019990004,-40.02998500749625,-39.9800099950025,-39.930034982508744,-39.88005997001499,-39.83008495752124,-39.78010994502748,-39.73013493253373,-39.68015992003998,-39.63018490754623,-39.58020989505248,-39.53023488255872,-39.48025987006497,-39.430284857571216,-39.38030984507746,-39.33033483258371,-39.280359820089956,-39.2303848075962,-39.18040979510245,-39.130434782608695,-39.08045977011494,-39.03048475762119,-38.980509745127435,-38.93053473263368,-38.88055972013993,-38.830584707646175,-38.78060969515242,-38.73063468265867,-38.680659670164914,-38.63068465767117,-38.580709645177414,-38.53073463268366,-38.48075962018991,-38.430784607696154,-38.3808095952024,-38.33083458270865,-38.28085957021489,-38.23088455772114,-38.18090954522739,-38.13093453273363,-38.08095952023988,-38.030984507746126,-37.98100949525237,-37.93103448275862,-37.881059470264866,-37.83108445777111,-37.78110944527736,-37.731134432783605,-37.68115942028985,-37.6311844077961,-37.58120939530235,-37.5312343828086,-37.481259370314845,-37.43128435782109,-37.38130934532734,-37.331334332833585,-37.28135932033983,-37.23138430784608,-37.181409295352324,-37.13143428285857,-37.08145927036482,-37.031484257871064,-36.98150924537731,-36.93153423288356,-36.8815592203898,-36.83158420789605,-36.7816091954023,-36.73163418290854,-36.68165917041479,-36.631684157921036,-36.58170914542729,-36.531734132933536,-36.48175912043978,-36.43178410794603,-36.381809095452276,-36.33183408295852,-36.28185907046477,-36.231884057971016,-36.18190904547726,-36.13193403298351,-36.081959020489755,-36.031984007996,-35.98200899550225,-35.932033983008495,-35.88205897051474,-35.83208395802099,-35.782108945527234,-35.73213393303348,-35.68215892053973,-35.632183908045974,-35.58220889555222,-35.532233883058474,-35.48225887056472,-35.43228385807097,-35.382308845577214,-35.33233383308346,-35.28235882058971,-35.23238380809595,-35.1824087956022,-35.132433783108446,-35.08245877061469,-35.03248375812094,-34.982508745627186,-34.93253373313343,-34.88255872063968,-34.832583708145926,-34.78260869565217,-34.73263368315842,-34.682658670664665,-34.63268365817091,-34.58270864567716,-34.53273363318341,-34.48275862068966,-34.432783608195905,-34.38280859570215,-34.3328335832084,-34.282858570714644,-34.23288355822089,-34.18290854572714,-34.132933533233384,-34.08295852073963,-34.03298350824588,-33.983008495752124,-33.93303348325837,-33.88305847076462,-33.83308345827086,-33.78310844577711,-33.733133433283356,-33.6831584207896,-33.63318340829585,-33.583208395802096,-33.53323338330834,-33.483258370814596,-33.43328335832084,-33.38330834582709,-33.333333333333336,-33.28335832083958,-33.23338330834583,-33.183408295852075,-33.13343328335832,-33.08345827086457,-33.033483258370815,-32.98350824587706,-32.93353323338331,-32.883558220889554,-32.8335832083958,-32.78360819590205,-32.733633183408294,-32.68365817091454,-32.63368315842079,-32.583708145927034,-32.53373313343328,-32.48375812093953,-32.43378310844578,-32.38380809595203,-32.33383308345827,-32.28385807096452,-32.23388305847077,-32.18390804597701,-32.13393303348326,-32.083958020989506,-32.03398300849575,-31.984007996002,-31.934032983508246,-31.884057971014492,-31.83408295852074,-31.784107946026985,-31.734132933533232,-31.684157921039482,-31.63418290854573,-31.584207896051975,-31.53423288355822,-31.484257871064468,-31.434282858570715,-31.38430784607696,-31.334332833583208,-31.284357821089454,-31.2343828085957,-31.18440779610195,-31.134432783608197,-31.084457771114444,-31.03448275862069,-30.984507746126937,-30.934532733633183,-30.88455772113943,-30.834582708645677,-30.784607696151923,-30.73463268365817,-30.684657671164416,-30.634682658670666,-30.584707646176913,-30.53473263368316,-30.484757621189406,-30.434782608695652,-30.3848075962019,-30.334832583708145,-30.284857571214392,-30.23488255872064,-30.184907546226885,-30.134932533733135,-30.08495752123938,-30.034982508745628,-29.985007496251875,-29.93503248375812,-29.885057471264368,-29.835082458770614,-29.78510744627686,-29.735132433783107,-29.685157421289354,-29.635182408795604,-29.58520739630185,-29.535232383808097,-29.485257371314344,-29.43528235882059,-29.385307346326837,-29.335332333833083,-29.28535732133933,-29.235382308845576,-29.185407296351823,-29.13543228385807,-29.08545727136432,-29.035482258870566,-28.985507246376812,-28.93553223388306,-28.885557221389305,-28.835582208895552,-28.7856071964018,-28.735632183908045,-28.68565717141429,-28.635682158920538,-28.58570714642679,-28.535732133933035,-28.48575712143928,-28.435782108945528,-28.385807096451774,-28.33583208395802,-28.285857071464267,-28.235882058970514,-28.18590704647676,-28.135932033983007,-28.085957021489257,-28.035982008995504,-27.98600699650175,-27.936031984007997,-27.886056971514243,-27.83608195902049,-27.786106946526736,-27.736131934032983,-27.68615692153923,-27.636181909045476,-27.586206896551722,-27.536231884057973,-27.48625687156422,-27.436281859070466,-27.386306846576712,-27.33633183408296,-27.286356821589205,-27.23638180909545,-27.1864067966017,-27.136431784107945,-27.08645677161419,-27.03648175912044,-26.986506746626688,-26.936531734132934,-26.88655672163918,-26.836581709145428,-26.786606696651674,-26.73663168415792,-26.686656671664167,-26.636681659170414,-26.58670664667666,-26.53673163418291,-26.486756621689157,-26.436781609195403,-26.38680659670165,-26.336831584207896,-26.286856571714143,-26.23688155922039,-26.186906546726636,-26.136931534232883,-26.08695652173913,-26.036981509245376,-25.987006496751626,-25.937031484257872,-25.88705647176412,-25.837081459270365,-25.787106446776612,-25.73713143428286,-25.687156421789105,-25.63718140929535,-25.587206396801598,-25.537231384307844,-25.487256371814095,-25.43728135932034,-25.387306346826588,-25.337331334332834,-25.28735632183908,-25.237381309345327,-25.187406296851574,-25.13743128435782,-25.087456271864067,-25.037481259370313,-24.987506246876563,-24.93753123438281,-24.887556221889056,-24.837581209395303,-24.78760619690155,-24.737631184407796,-24.687656171914043,-24.63768115942029,-24.587706146926536,-24.537731134432782,-24.48775612193903,-24.43778110944528,-24.387806096951525,-24.337831084457772,-24.28785607196402,-24.237881059470265,-24.18790604697651,-24.137931034482758,-24.087956021989005,-24.03798100949525,-23.988005997001498,-23.938030984507748,-23.888055972013994,-23.83808095952024,-23.788105947026487,-23.738130934532734,-23.68815592203898,-23.638180909545227,-23.588205897051473,-23.53823088455772,-23.488255872063966,-23.438280859570217,-23.388305847076463,-23.33833083458271,-23.288355822088956,-23.238380809595203,-23.18840579710145,-23.138430784607696,-23.088455772113942,-23.03848075962019,-22.988505747126435,-22.938530734632682,-22.888555722138932,-22.83858070964518,-22.788605697151425,-22.73863068465767,-22.688655672163918,-22.638680659670165,-22.58870564717641,-22.538730634682658,-22.488755622188904,-22.43878060969515,-22.3888055972014,-22.338830584707647,-22.288855572213894,-22.23888055972014,-22.188905547226387,-22.138930534732634,-22.08895552223888,-22.038980509745127,-21.989005497251373,-21.93903048475762,-21.88905547226387,-21.839080459770116,-21.789105447276363,-21.73913043478261,-21.689155422288856,-21.639180409795102,-21.58920539730135,-21.539230384807595,-21.489255372313842,-21.43928035982009,-21.38930534732634,-21.339330334832585,-21.28935532233883,-21.239380309845078,-21.189405297351325,-21.13943028485757,-21.089455272363818,-21.039480259870064,-20.98950524737631,-20.939530234882557,-20.889555222388804,-20.839580209895054,-20.7896051974013,-20.739630184907547,-20.689655172413794,-20.63968015992004,-20.589705147426287,-20.539730134932533,-20.48975512243878,-20.439780109945026,-20.389805097451273,-20.339830084957523,-20.28985507246377,-20.239880059970016,-20.189905047476262,-20.13993003498251,-20.089955022488756,-20.039980009995002,-19.99000499750125,-19.940029985007495,-19.89005497251374,-19.84007996001999,-19.79010494752624,-19.740129935032485,-19.69015492253873,-19.640179910044978,-19.590204897551224,-19.54022988505747,-19.490254872563717,-19.440279860069964,-19.39030484757621,-19.340329835082457,-19.290354822588707,-19.240379810094954,-19.1904047976012,-19.140429785107447,-19.090454772613693,-19.04047976011994,-18.990504747626186,-18.940529735132433,-18.89055472263868,-18.840579710144926,-18.790604697651176,-18.740629685157423,-18.69065467266367,-18.640679660169916,-18.590704647676162,-18.54072963518241,-18.490754622688655,-18.4407796101949,-18.39080459770115,-18.340829585207395,-18.290854572713645,-18.24087956021989,-18.190904547726138,-18.140929535232384,-18.09095452273863,-18.040979510244878,-17.991004497751124,-17.94102948525737,-17.891054472763617,-17.841079460269864,-17.79110444777611,-17.74112943528236,-17.691154422788607,-17.641179410294853,-17.5912043978011,-17.541229385307346,-17.491254372813593,-17.44127936031984,-17.391304347826086,-17.341329335332333,-17.29135432283858,-17.24137931034483,-17.191404297851076,-17.141429285357322,-17.09145427286357,-17.041479260369815,-16.991504247876062,-16.94152923538231,-16.891554222888555,-16.8415792103948,-16.791604197901048,-16.741629185407298,-16.691654172913545,-16.64167916041979,-16.591704147926038,-16.541729135432284,-16.49175412293853,-16.441779110444777,-16.391804097951024,-16.34182908545727,-16.291854072963517,-16.241879060469763,-16.191904047976013,-16.14192903548226,-16.091954022988507,-16.041979010494753,-15.992003998001,-15.942028985507246,-15.892053973013493,-15.842078960519741,-15.792103948025987,-15.742128935532234,-15.69215392303848,-15.642178910544727,-15.592203898050975,-15.542228885557222,-15.492253873063468,-15.442278860569715,-15.392303848075962,-15.342328835582208,-15.292353823088456,-15.242378810594703,-15.19240379810095,-15.142428785607196,-15.092453773113442,-15.04247876061969,-14.992503748125937,-14.942528735632184,-14.89255372313843,-14.842578710644677,-14.792603698150925,-14.742628685657172,-14.692653673163418,-14.642678660669665,-14.592703648175911,-14.54272863568216,-14.492753623188406,-14.442778610694653,-14.3928035982009,-14.342828585707146,-14.292853573213394,-14.24287856071964,-14.192903548225887,-14.142928535732134,-14.09295352323838,-14.042978510744629,-13.993003498250875,-13.943028485757122,-13.893053473263368,-13.843078460769615,-13.793103448275861,-13.74312843578211,-13.693153423288356,-13.643178410794603,-13.59320339830085,-13.543228385807096,-13.493253373313344,-13.44327836081959,-13.393303348325837,-13.343328335832084,-13.29335332333833,-13.243378310844578,-13.193403298350825,-13.143428285857071,-13.093453273363318,-13.043478260869565,-12.993503248375813,-12.94352823588206,-12.893553223388306,-12.843578210894552,-12.793603198400799,-12.743628185907047,-12.693653173413294,-12.64367816091954,-12.593703148425787,-12.543728135932033,-12.493753123438282,-12.443778110944528,-12.393803098450775,-12.343828085957021,-12.293853073463268,-12.243878060969514,-12.193903048475763,-12.14392803598201,-12.093953023488256,-12.043978010994502,-11.994002998500749,-11.944027986006997,-11.894052973513244,-11.84407796101949,-11.794102948525737,-11.744127936031983,-11.694152923538232,-11.644177911044478,-11.594202898550725,-11.544227886056971,-11.494252873563218,-11.444277861069466,-11.394302848575713,-11.344327836081959,-11.294352823588206,-11.244377811094452,-11.1944027986007,-11.144427786106947,-11.094452773613193,-11.04447776111944,-10.994502748625687,-10.944527736131935,-10.894552723638181,-10.844577711144428,-10.794602698650674,-10.744627686156921,-10.69465267366317,-10.644677661169416,-10.594702648675662,-10.544727636181909,-10.494752623688155,-10.444777611194402,-10.39480259870065,-10.344827586206897,-10.294852573713143,-10.24487756121939,-10.194902548725636,-10.144927536231885,-10.094952523738131,-10.044977511244378,-9.995002498750624,-9.94502748625687,-9.89505247376312,-9.845077461269366,-9.795102448775612,-9.745127436281859,-9.695152423788105,-9.645177411294354,-9.5952023988006,-9.545227386306847,-9.495252373813093,-9.44527736131934,-9.395302348825588,-9.345327336331835,-9.295352323838081,-9.245377311344328,-9.195402298850574,-9.145427286356822,-9.095452273863069,-9.045477261369316,-8.995502248875562,-8.945527236381809,-8.895552223888055,-8.845577211394303,-8.79560219890055,-8.745627186406796,-8.695652173913043,-8.64567716141929,-8.595702148925538,-8.545727136431784,-8.495752123938031,-8.445777111444277,-8.395802098950524,-8.345827086456772,-8.295852073963019,-8.245877061469265,-8.195902048975512,-8.145927036481758,-8.095952023988007,-8.045977011494253,-7.9960019990005,-7.946026986506746,-7.896051974012994,-7.84607696151924,-7.796101949025488,-7.746126936531734,-7.696151924037981,-7.646176911544228,-7.596201899050475,-7.546226886556721,-7.496251874062969,-7.446276861569215,-7.396301849075463,-7.346326836581709,-7.296351824087956,-7.246376811594203,-7.19640179910045,-7.146426786606697,-7.096451774112944,-7.04647676161919,-6.9965017491254375,-6.946526736631684,-6.896551724137931,-6.846576711644178,-6.796601699150425,-6.746626686656672,-6.6966516741629185,-6.646676661669165,-6.5967016491754125,-6.546726636681659,-6.496751624187906,-6.446776611694153,-6.3968015992003995,-6.346826586706647,-6.296851574212893,-6.246876561719141,-6.196901549225387,-6.146926536731634,-6.096951524237881,-6.046976511744128,-5.997001499250374,-5.947026486756622,-5.897051474262868,-5.847076461769116,-5.797101449275362,-5.747126436781609,-5.697151424287856,-5.647176411794103,-5.59720139930035,-5.547226386806597,-5.497251374312843,-5.447276361819091,-5.397301349325337,-5.347326336831585,-5.297351324337831,-5.247376311844078,-5.197401299350325,-5.147426286856572,-5.097451274362818,-5.047476261869066,-4.997501249375312,-4.94752623688156,-4.897551224387806,-4.847576211894053,-4.7976011994003,-4.747626186906547,-4.697651174412794,-4.6476761619190405,-4.597701149425287,-4.5477261369315345,-4.497751124437781,-4.4477761119440276,-4.397801099450275,-4.3478260869565215,-4.297851074462769,-4.2478760619690155,-4.197901049475262,-4.147926036981509,-4.097951024487756,-4.047976011994003,-3.99800099950025,-3.948025987006497,-3.898050974512744,-3.8480759620189904,-3.7981009495252374,-3.7481259370314843,-3.6981509245377313,-3.648175912043978,-3.598200899550225,-3.548225887056472,-3.4982508745627188,-3.4482758620689653,-3.3983008495752123,-3.3483258370814593,-3.2983508245877062,-3.248375812093953,-3.1984007996001997,-3.1484257871064467,-3.0984507746126937,-3.0484757621189407,-2.998500749625187,-2.948525737131434,-2.898550724637681,-2.848575712143928,-2.798600699650175,-2.7486256871564216,-2.6986506746626686,-2.6486756621689156,-2.5987006496751626,-2.548725637181409,-2.498750624687656,-2.448775612193903,-2.39880059970015,-2.348825587206397,-2.2988505747126435,-2.2488755622188905,-2.1989005497251375,-2.1489255372313845,-2.098950524737631,-2.048975512243878,-1.999000499750125,-1.949025487256372,-1.8990504747626187,-1.8490754622688657,-1.7991004497751124,-1.7491254372813594,-1.6991504247876061,-1.6491754122938531,-1.5992003998000999,-1.5492253873063468,-1.4992503748125936,-1.4492753623188406,-1.3993003498250876,-1.3493253373313343,-1.2993503248375813,-1.249375312343828,-1.199400299850075,-1.1494252873563218,-1.0994502748625687,-1.0494752623688155,-0.9995002498750625,-0.9495252373813093,-0.8995502248875562,-0.8495752123938031,-0.7996001999000499,-0.7496251874062968,-0.6996501749125438,-0.6496751624187906,-0.5997001499250375,-0.5497251374312844,-0.49975012493753124,-0.4497751124437781,-0.39980009995002497,-0.3498250874562719,-0.29985007496251875,-0.24987506246876562,-0.19990004997501248,-0.14992503748125938,-0.09995002498750624,-0.04997501249375312,0.0,0.04997501249375312,0.09995002498750624,0.14992503748125938,0.19990004997501248,0.24987506246876562,0.29985007496251875,0.3498250874562719,0.39980009995002497,0.4497751124437781,0.49975012493753124,0.5497251374312844,0.5997001499250375,0.6496751624187906,0.6996501749125438,0.7496251874062968,0.7996001999000499,0.8495752123938031,0.8995502248875562,0.9495252373813093,0.9995002498750625,1.0494752623688155,1.0994502748625687,1.1494252873563218,1.199400299850075,1.249375312343828,1.2993503248375813,1.3493253373313343,1.3993003498250876,1.4492753623188406,1.4992503748125936,1.5492253873063468,1.5992003998000999,1.6491754122938531,1.6991504247876061,1.7491254372813594,1.7991004497751124,1.8490754622688657,1.8990504747626187,1.949025487256372,1.999000499750125,2.048975512243878,2.098950524737631,2.1489255372313845,2.1989005497251375,2.2488755622188905,2.2988505747126435,2.348825587206397,2.39880059970015,2.448775612193903,2.498750624687656,2.548725637181409,2.5987006496751626,2.6486756621689156,2.6986506746626686,2.7486256871564216,2.798600699650175,2.848575712143928,2.898550724637681,2.948525737131434,2.998500749625187,3.0484757621189407,3.0984507746126937,3.1484257871064467,3.1984007996001997,3.248375812093953,3.2983508245877062,3.3483258370814593,3.3983008495752123,3.4482758620689653,3.4982508745627188,3.548225887056472,3.598200899550225,3.648175912043978,3.6981509245377313,3.7481259370314843,3.7981009495252374,3.8480759620189904,3.898050974512744,3.948025987006497,3.99800099950025,4.047976011994003,4.097951024487756,4.147926036981509,4.197901049475262,4.2478760619690155,4.297851074462769,4.3478260869565215,4.397801099450275,4.4477761119440276,4.497751124437781,4.5477261369315345,4.597701149425287,4.6476761619190405,4.697651174412794,4.747626186906547,4.7976011994003,4.847576211894053,4.897551224387806,4.94752623688156,4.997501249375312,5.047476261869066,5.097451274362818,5.147426286856572,5.197401299350325,5.247376311844078,5.297351324337831,5.347326336831585,5.397301349325337,5.447276361819091,5.497251374312843,5.547226386806597,5.59720139930035,5.647176411794103,5.697151424287856,5.747126436781609,5.797101449275362,5.847076461769116,5.897051474262868,5.947026486756622,5.997001499250374,6.046976511744128,6.096951524237881,6.146926536731634,6.196901549225387,6.246876561719141,6.296851574212893,6.346826586706647,6.3968015992003995,6.446776611694153,6.496751624187906,6.546726636681659,6.5967016491754125,6.646676661669165,6.6966516741629185,6.746626686656672,6.796601699150425,6.846576711644178,6.896551724137931,6.946526736631684,6.9965017491254375,7.04647676161919,7.096451774112944,7.146426786606697,7.19640179910045,7.246376811594203,7.296351824087956,7.346326836581709,7.396301849075463,7.446276861569215,7.496251874062969,7.546226886556721,7.596201899050475,7.646176911544228,7.696151924037981,7.746126936531734,7.796101949025488,7.84607696151924,7.896051974012994,7.946026986506746,7.9960019990005,8.045977011494253,8.095952023988007,8.145927036481758,8.195902048975512,8.245877061469265,8.295852073963019,8.345827086456772,8.395802098950524,8.445777111444277,8.495752123938031,8.545727136431784,8.595702148925538,8.64567716141929,8.695652173913043,8.745627186406796,8.79560219890055,8.845577211394303,8.895552223888055,8.945527236381809,8.995502248875562,9.045477261369316,9.095452273863069,9.145427286356822,9.195402298850574,9.245377311344328,9.295352323838081,9.345327336331835,9.395302348825588,9.44527736131934,9.495252373813093,9.545227386306847,9.5952023988006,9.645177411294354,9.695152423788105,9.745127436281859,9.795102448775612,9.845077461269366,9.89505247376312,9.94502748625687,9.995002498750624,10.044977511244378,10.094952523738131,10.144927536231885,10.194902548725636,10.24487756121939,10.294852573713143,10.344827586206897,10.39480259870065,10.444777611194402,10.494752623688155,10.544727636181909,10.594702648675662,10.644677661169416,10.69465267366317,10.744627686156921,10.794602698650674,10.844577711144428,10.894552723638181,10.944527736131935,10.994502748625687,11.04447776111944,11.094452773613193,11.144427786106947,11.1944027986007,11.244377811094452,11.294352823588206,11.344327836081959,11.394302848575713,11.444277861069466,11.494252873563218,11.544227886056971,11.594202898550725,11.644177911044478,11.694152923538232,11.744127936031983,11.794102948525737,11.84407796101949,11.894052973513244,11.944027986006997,11.994002998500749,12.043978010994502,12.093953023488256,12.14392803598201,12.193903048475763,12.243878060969514,12.293853073463268,12.343828085957021,12.393803098450775,12.443778110944528,12.493753123438282,12.543728135932033,12.593703148425787,12.64367816091954,12.693653173413294,12.743628185907047,12.793603198400799,12.843578210894552,12.893553223388306,12.94352823588206,12.993503248375813,13.043478260869565,13.093453273363318,13.143428285857071,13.193403298350825,13.243378310844578,13.29335332333833,13.343328335832084,13.393303348325837,13.44327836081959,13.493253373313344,13.543228385807096,13.59320339830085,13.643178410794603,13.693153423288356,13.74312843578211,13.793103448275861,13.843078460769615,13.893053473263368,13.943028485757122,13.993003498250875,14.042978510744629,14.09295352323838,14.142928535732134,14.192903548225887,14.24287856071964,14.292853573213394,14.342828585707146,14.3928035982009,14.442778610694653,14.492753623188406,14.54272863568216,14.592703648175911,14.642678660669665,14.692653673163418,14.742628685657172,14.792603698150925,14.842578710644677,14.89255372313843,14.942528735632184,14.992503748125937,15.04247876061969,15.092453773113442,15.142428785607196,15.19240379810095,15.242378810594703,15.292353823088456,15.342328835582208,15.392303848075962,15.442278860569715,15.492253873063468,15.542228885557222,15.592203898050975,15.642178910544727,15.69215392303848,15.742128935532234,15.792103948025987,15.842078960519741,15.892053973013493,15.942028985507246,15.992003998001,16.041979010494753,16.091954022988507,16.14192903548226,16.191904047976013,16.241879060469763,16.291854072963517,16.34182908545727,16.391804097951024,16.441779110444777,16.49175412293853,16.541729135432284,16.591704147926038,16.64167916041979,16.691654172913545,16.741629185407298,16.791604197901048,16.8415792103948,16.891554222888555,16.94152923538231,16.991504247876062,17.041479260369815,17.09145427286357,17.141429285357322,17.191404297851076,17.24137931034483,17.29135432283858,17.341329335332333,17.391304347826086,17.44127936031984,17.491254372813593,17.541229385307346,17.5912043978011,17.641179410294853,17.691154422788607,17.74112943528236,17.79110444777611,17.841079460269864,17.891054472763617,17.94102948525737,17.991004497751124,18.040979510244878,18.09095452273863,18.140929535232384,18.190904547726138,18.24087956021989,18.290854572713645,18.340829585207395,18.39080459770115,18.4407796101949,18.490754622688655,18.54072963518241,18.590704647676162,18.640679660169916,18.69065467266367,18.740629685157423,18.790604697651176,18.840579710144926,18.89055472263868,18.940529735132433,18.990504747626186,19.04047976011994,19.090454772613693,19.140429785107447,19.1904047976012,19.240379810094954,19.290354822588707,19.340329835082457,19.39030484757621,19.440279860069964,19.490254872563717,19.54022988505747,19.590204897551224,19.640179910044978,19.69015492253873,19.740129935032485,19.79010494752624,19.84007996001999,19.89005497251374,19.940029985007495,19.99000499750125,20.039980009995002,20.089955022488756,20.13993003498251,20.189905047476262,20.239880059970016,20.28985507246377,20.339830084957523,20.389805097451273,20.439780109945026,20.48975512243878,20.539730134932533,20.589705147426287,20.63968015992004,20.689655172413794,20.739630184907547,20.7896051974013,20.839580209895054,20.889555222388804,20.939530234882557,20.98950524737631,21.039480259870064,21.089455272363818,21.13943028485757,21.189405297351325,21.239380309845078,21.28935532233883,21.339330334832585,21.38930534732634,21.43928035982009,21.489255372313842,21.539230384807595,21.58920539730135,21.639180409795102,21.689155422288856,21.73913043478261,21.789105447276363,21.839080459770116,21.88905547226387,21.93903048475762,21.989005497251373,22.038980509745127,22.08895552223888,22.138930534732634,22.188905547226387,22.23888055972014,22.288855572213894,22.338830584707647,22.3888055972014,22.43878060969515,22.488755622188904,22.538730634682658,22.58870564717641,22.638680659670165,22.688655672163918,22.73863068465767,22.788605697151425,22.83858070964518,22.888555722138932,22.938530734632682,22.988505747126435,23.03848075962019,23.088455772113942,23.138430784607696,23.18840579710145,23.238380809595203,23.288355822088956,23.33833083458271,23.388305847076463,23.438280859570217,23.488255872063966,23.53823088455772,23.588205897051473,23.638180909545227,23.68815592203898,23.738130934532734,23.788105947026487,23.83808095952024,23.888055972013994,23.938030984507748,23.988005997001498,24.03798100949525,24.087956021989005,24.137931034482758,24.18790604697651,24.237881059470265,24.28785607196402,24.337831084457772,24.387806096951525,24.43778110944528,24.48775612193903,24.537731134432782,24.587706146926536,24.63768115942029,24.687656171914043,24.737631184407796,24.78760619690155,24.837581209395303,24.887556221889056,24.93753123438281,24.987506246876563,25.037481259370313,25.087456271864067,25.13743128435782,25.187406296851574,25.237381309345327,25.28735632183908,25.337331334332834,25.387306346826588,25.43728135932034,25.487256371814095,25.537231384307844,25.587206396801598,25.63718140929535,25.687156421789105,25.73713143428286,25.787106446776612,25.837081459270365,25.88705647176412,25.937031484257872,25.987006496751626,26.036981509245376,26.08695652173913,26.136931534232883,26.186906546726636,26.23688155922039,26.286856571714143,26.336831584207896,26.38680659670165,26.436781609195403,26.486756621689157,26.53673163418291,26.58670664667666,26.636681659170414,26.686656671664167,26.73663168415792,26.786606696651674,26.836581709145428,26.88655672163918,26.936531734132934,26.986506746626688,27.03648175912044,27.08645677161419,27.136431784107945,27.1864067966017,27.23638180909545,27.286356821589205,27.33633183408296,27.386306846576712,27.436281859070466,27.48625687156422,27.536231884057973,27.586206896551722,27.636181909045476,27.68615692153923,27.736131934032983,27.786106946526736,27.83608195902049,27.886056971514243,27.936031984007997,27.98600699650175,28.035982008995504,28.085957021489257,28.135932033983007,28.18590704647676,28.235882058970514,28.285857071464267,28.33583208395802,28.385807096451774,28.435782108945528,28.48575712143928,28.535732133933035,28.58570714642679,28.635682158920538,28.68565717141429,28.735632183908045,28.7856071964018,28.835582208895552,28.885557221389305,28.93553223388306,28.985507246376812,29.035482258870566,29.08545727136432,29.13543228385807,29.185407296351823,29.235382308845576,29.28535732133933,29.335332333833083,29.385307346326837,29.43528235882059,29.485257371314344,29.535232383808097,29.58520739630185,29.635182408795604,29.685157421289354,29.735132433783107,29.78510744627686,29.835082458770614,29.885057471264368,29.93503248375812,29.985007496251875,30.034982508745628,30.08495752123938,30.134932533733135,30.184907546226885,30.23488255872064,30.284857571214392,30.334832583708145,30.3848075962019,30.434782608695652,30.484757621189406,30.53473263368316,30.584707646176913,30.634682658670666,30.684657671164416,30.73463268365817,30.784607696151923,30.834582708645677,30.88455772113943,30.934532733633183,30.984507746126937,31.03448275862069,31.084457771114444,31.134432783608197,31.18440779610195,31.2343828085957,31.284357821089454,31.334332833583208,31.38430784607696,31.434282858570715,31.484257871064468,31.53423288355822,31.584207896051975,31.63418290854573,31.684157921039482,31.734132933533232,31.784107946026985,31.83408295852074,31.884057971014492,31.934032983508246,31.984007996002,32.03398300849575,32.083958020989506,32.13393303348326,32.18390804597701,32.23388305847077,32.28385807096452,32.33383308345827,32.38380809595203,32.43378310844578,32.48375812093953,32.53373313343328,32.583708145927034,32.63368315842079,32.68365817091454,32.733633183408294,32.78360819590205,32.8335832083958,32.883558220889554,32.93353323338331,32.98350824587706,33.033483258370815,33.08345827086457,33.13343328335832,33.183408295852075,33.23338330834583,33.28335832083958,33.333333333333336,33.38330834582709,33.43328335832084,33.483258370814596,33.53323338330834,33.583208395802096,33.63318340829585,33.6831584207896,33.733133433283356,33.78310844577711,33.83308345827086,33.88305847076462,33.93303348325837,33.983008495752124,34.03298350824588,34.08295852073963,34.132933533233384,34.18290854572714,34.23288355822089,34.282858570714644,34.3328335832084,34.38280859570215,34.432783608195905,34.48275862068966,34.53273363318341,34.58270864567716,34.63268365817091,34.682658670664665,34.73263368315842,34.78260869565217,34.832583708145926,34.88255872063968,34.93253373313343,34.982508745627186,35.03248375812094,35.08245877061469,35.132433783108446,35.1824087956022,35.23238380809595,35.28235882058971,35.33233383308346,35.382308845577214,35.43228385807097,35.48225887056472,35.532233883058474,35.58220889555222,35.632183908045974,35.68215892053973,35.73213393303348,35.782108945527234,35.83208395802099,35.88205897051474,35.932033983008495,35.98200899550225,36.031984007996,36.081959020489755,36.13193403298351,36.18190904547726,36.231884057971016,36.28185907046477,36.33183408295852,36.381809095452276,36.43178410794603,36.48175912043978,36.531734132933536,36.58170914542729,36.631684157921036,36.68165917041479,36.73163418290854,36.7816091954023,36.83158420789605,36.8815592203898,36.93153423288356,36.98150924537731,37.031484257871064,37.08145927036482,37.13143428285857,37.181409295352324,37.23138430784608,37.28135932033983,37.331334332833585,37.38130934532734,37.43128435782109,37.481259370314845,37.5312343828086,37.58120939530235,37.6311844077961,37.68115942028985,37.731134432783605,37.78110944527736,37.83108445777111,37.881059470264866,37.93103448275862,37.98100949525237,38.030984507746126,38.08095952023988,38.13093453273363,38.18090954522739,38.23088455772114,38.28085957021489,38.33083458270865,38.3808095952024,38.430784607696154,38.48075962018991,38.53073463268366,38.580709645177414,38.63068465767117,38.680659670164914,38.73063468265867,38.78060969515242,38.830584707646175,38.88055972013993,38.93053473263368,38.980509745127435,39.03048475762119,39.08045977011494,39.130434782608695,39.18040979510245,39.2303848075962,39.280359820089956,39.33033483258371,39.38030984507746,39.430284857571216,39.48025987006497,39.53023488255872,39.58020989505248,39.63018490754623,39.68015992003998,39.73013493253373,39.78010994502748,39.83008495752124,39.88005997001499,39.930034982508744,39.9800099950025,40.02998500749625,40.079960019990004,40.12993503248376,40.17991004497751,40.229885057471265,40.27986006996502,40.32983508245877,40.379810094952525,40.42978510744628,40.47976011994003,40.529735132433785,40.57971014492754,40.62968515742129,40.679660169915046,40.72963518240879,40.779610194902546,40.8295852073963,40.87956021989005,40.929535232383806,40.97951024487756,41.02948525737131,41.079460269865066,41.12943528235882,41.17941029485257,41.22938530734633,41.27936031984008,41.329335332333834,41.37931034482759,41.42928535732134,41.479260369815094,41.52923538230885,41.5792103948026,41.629185407296355,41.67916041979011,41.72913543228386,41.77911044477761,41.82908545727136,41.879060469765115,41.92903548225887,41.97901049475262,42.028985507246375,42.07896051974013,42.12893553223388,42.178910544727636,42.22888555722139,42.27886056971514,42.328835582208896,42.37881059470265,42.4287856071964,42.478760619690156,42.52873563218391,42.57871064467766,42.62868565717142,42.67866066966517,42.728635682158924,42.77861069465268,42.82858570714642,42.87856071964018,42.92853573213393,42.978510744627684,43.02848575712144,43.07846076961519,43.128435782108944,43.1784107946027,43.22838580709645,43.278360819590205,43.32833583208396,43.37831084457771,43.428285857071465,43.47826086956522,43.52823588205897,43.578210894552726,43.62818590704648,43.67816091954023,43.728135932033986,43.77811094452774,43.828085957021486,43.87806096951524,43.92803598200899,43.978010994502746,44.0279860069965,44.07796101949025,44.12793603198401,44.17791104447776,44.22788605697151,44.27786106946527,44.32783608195902,44.377811094452774,44.42778610694653,44.47776111944028,44.527736131934034,44.57771114442779,44.62768615692154,44.677661169415295,44.72763618190905,44.7776111944028,44.827586206896555,44.8775612193903,44.927536231884055,44.97751124437781,45.02748625687156,45.077461269365315,45.12743628185907,45.17741129435282,45.227386306846576,45.27736131934033,45.32733633183408,45.377311344327836,45.42728635682159,45.47726136931534,45.5272363818091,45.57721139430285,45.6271864067966,45.67716141929036,45.72713643178411,45.777111444277864,45.82708645677162,45.877061469265364,45.92703648175912,45.97701149425287,46.026986506746624,46.07696151924038,46.12693653173413,46.176911544227885,46.22688655672164,46.27686156921539,46.326836581709145,46.3768115942029,46.42678660669665,46.476761619190405,46.52673663168416,46.57671164417791,46.626686656671666,46.67666166916542,46.72663668165917,46.776611694152926,46.82658670664668,46.87656171914043,46.92653673163418,46.97651174412793,47.026486756621686,47.07646176911544,47.12643678160919,47.17641179410295,47.2263868065967,47.276361819090454,47.32633683158421,47.37631184407796,47.426286856571714,47.47626186906547,47.52623688155922,47.576211894052975,47.62618690654673,47.67616191904048,47.726136931534235,47.77611194402799,47.82608695652174,47.876061969015495,47.92603698150925,47.976011994002995,48.02598700649675,48.0759620189905,48.125937031484256,48.17591204397801,48.22588705647176,48.275862068965516,48.32583708145927,48.37581209395302,48.425787106446776,48.47576211894053,48.52573713143428,48.57571214392804,48.62568715642179,48.675662168915544,48.7256371814093,48.77561219390305,48.825587206396804,48.87556221889056,48.92553723138431,48.97551224387806,49.02548725637181,49.075462268865564,49.12543728135932,49.17541229385307,49.225387306346825,49.27536231884058,49.32533733133433,49.375312343828085,49.42528735632184,49.47526236881559,49.525237381309346,49.5752123938031,49.62518740629685,49.675162418790606,49.72513743128436,49.77511244377811,49.825087456271866,49.87506246876562,49.92503748125937,49.97501249375313,50.02498750624687,50.07496251874063,50.12493753123438,50.174912543728134,50.22488755622189,50.27486256871564,50.324837581209394,50.37481259370315,50.4247876061969,50.474762618690654,50.52473763118441,50.57471264367816,50.624687656171915,50.67466266866567,50.72463768115942,50.774612693653175,50.82458770614693,50.87456271864068,50.924537731134436,50.97451274362819,51.02448775612194,51.07446276861569,51.12443778110944,51.174412793603196,51.22438780609695,51.2743628185907,51.324337831084456,51.37431284357821,51.42428785607196,51.47426286856572,51.52423788105947,51.574212893553224,51.62418790604698,51.67416291854073,51.724137931034484,51.77411294352824,51.82408795602199,51.874062968515744,51.9240379810095,51.97401299350325,52.023988005997005,52.07396301849075,52.123938030984505,52.17391304347826,52.22388805597201,52.273863068465765,52.32383808095952,52.37381309345327,52.423788105947025,52.47376311844078,52.52373813093453,52.573713143428286,52.62368815592204,52.67366316841579,52.723638180909546,52.7736131934033,52.82358820589705,52.87356321839081,52.92353823088456,52.973513243378314,53.02348825587207,53.07346326836582,53.12343828085957,53.17341329335332,53.223388305847074,53.27336331834083,53.32333833083458,53.373313343328334,53.42328835582209,53.47326336831584,53.523238380809595,53.57321339330335,53.6231884057971,53.673163418290855,53.72313843078461,53.77311344327836,53.823088455772115,53.87306346826587,53.92303848075962,53.973013493253376,54.02298850574713,54.07296351824088,54.122938530734636,54.17291354322838,54.222888555722136,54.27286356821589,54.32283858070964,54.3728135932034,54.42278860569715,54.4727636181909,54.52273863068466,54.57271364317841,54.622688655672164,54.67266366816592,54.72263868065967,54.772613693153424,54.82258870564718,54.87256371814093,54.922538730634685,54.97251374312844,55.02248875562219,55.072463768115945,55.1224387806097,55.172413793103445,55.2223888055972,55.27236381809095,55.322338830584705,55.37231384307846,55.42228885557221,55.472263868065966,55.52223888055972,55.57221389305347,55.622188905547226,55.67216391804098,55.72213893053473,55.77211394302849,55.82208895552224,55.87206396801599,55.92203898050975,55.9720139930035,56.021989005497254,56.07196401799101,56.12193903048476,56.171914042978514,56.22188905547226,56.271864067966014,56.32183908045977,56.37181409295352,56.421789105447274,56.47176411794103,56.52173913043478,56.571714142928535,56.62168915542229,56.67166416791604,56.721639180409795,56.77161419290355,56.8215892053973,56.871564217891056,56.92153923038481,56.97151424287856,57.021489255372316,57.07146426786607,57.12143928035982,57.17141429285358,57.22138930534732,57.271364317841076,57.32133933033483,57.37131434282858,57.42128935532234,57.47126436781609,57.521239380309844,57.5712143928036,57.62118940529735,57.671164417791104,57.72113943028486,57.77111444277861,57.821089455272364,57.87106446776612,57.92103948025987,57.971014492753625,58.02098950524738,58.07096451774113,58.120939530234885,58.17091454272864,58.22088955522239,58.27086456771614,58.32083958020989,58.370814592703645,58.4207896051974,58.47076461769115,58.520739630184906,58.57071464267866,58.62068965517241,58.670664667666166,58.72063968015992,58.77061469265367,58.82058970514743,58.87056471764118,58.920539730134934,58.97051474262869,59.02048975512244,59.070464767616194,59.12043978010995,59.1704147926037,59.220389805097454,59.27036481759121,59.320339830084954,59.37031484257871,59.42028985507246,59.470264867566215,59.52023988005997,59.57021489255372,59.620189905047475,59.67016491754123,59.72013993003498,59.770114942528735,59.82008995502249,59.87006496751624,59.920039980009996,59.97001499250375,60.0199900049975,60.069965017491256,60.11994002998501,60.16991504247876,60.21989005497252,60.26986506746627,60.31984007996002,60.36981509245377,60.41979010494752,60.46976511744128,60.51974012993503,60.569715142428784,60.61969015492254,60.66966516741629,60.719640179910044,60.7696151924038,60.81959020489755,60.869565217391305,60.91954022988506,60.96951524237881,61.019490254872565,61.06946526736632,61.11944027986007,61.169415292353825,61.21939030484758,61.26936531734133,61.319340329835086,61.36931534232883,61.419290354822586,61.46926536731634,61.51924037981009,61.569215392303846,61.6191904047976,61.66916541729135,61.71914042978511,61.76911544227886,61.81909045477261,61.86906546726637,61.91904047976012,61.969015492253874,62.01899050474763,62.06896551724138,62.118940529735134,62.16891554222889,62.21889055472264,62.268865567216395,62.31884057971015,62.3688155922039,62.41879060469765,62.4687656171914,62.518740629685155,62.56871564217891,62.61869065467266,62.668665667166415,62.71864067966017,62.76861569215392,62.818590704647676,62.86856571714143,62.91854072963518,62.968515742128936,63.01849075462269,63.06846576711644,63.1184407796102,63.16841579210395,63.2183908045977,63.26836581709146,63.31834082958521,63.368315842078964,63.41829085457271,63.468265867066464,63.51824087956022,63.56821589205397,63.618190904547724,63.66816591704148,63.71814092953523,63.768115942028984,63.81809095452274,63.86806596701649,63.918040979510245,63.968015992004,64.01799100449774,64.0679660169915,64.11794102948525,64.16791604197901,64.21789105447276,64.26786606696652,64.31784107946027,64.36781609195403,64.41779110444777,64.46776611694153,64.51774112943528,64.56771614192904,64.61769115442279,64.66766616691655,64.7176411794103,64.76761619190405,64.8175912043978,64.86756621689156,64.91754122938531,64.96751624187905,65.01749125437281,65.06746626686656,65.11744127936032,65.16741629185407,65.21739130434783,65.26736631684157,65.31734132933533,65.36731634182908,65.41729135432284,65.46726636681659,65.51724137931035,65.5672163918041,65.61719140429786,65.6671664167916,65.71714142928536,65.76711644177911,65.81709145427287,65.86706646676662,65.91704147926038,65.96701649175412,66.01699150424787,66.06696651674163,66.11694152923538,66.16691654172914,66.21689155422288,66.26686656671664,66.31684157921039,66.36681659170415,66.4167916041979,66.46676661669166,66.5167416291854,66.56671664167916,66.61669165417291,66.66666666666667,66.71664167916042,66.76661669165418,66.81659170414792,66.86656671664169,66.91654172913543,66.96651674162919,67.01649175412294,67.06646676661668,67.11644177911045,67.16641679160419,67.21639180409795,67.2663668165917,67.31634182908546,67.3663168415792,67.41629185407297,67.46626686656671,67.51624187906047,67.56621689155422,67.61619190404798,67.66616691654173,67.71614192903549,67.76611694152923,67.816091954023,67.86606696651674,67.9160419790105,67.96601699150425,68.01599200399801,68.06596701649175,68.1159420289855,68.16591704147926,68.21589205397301,68.26586706646677,68.31584207896051,68.36581709145428,68.41579210394802,68.46576711644178,68.51574212893553,68.56571714142929,68.61569215392304,68.6656671664168,68.71564217891054,68.7656171914043,68.81559220389805,68.86556721639181,68.91554222888556,68.96551724137932,69.01549225387306,69.06546726636682,69.11544227886057,69.16541729135432,69.21539230384808,69.26536731634182,69.31534232883558,69.36531734132933,69.41529235382309,69.46526736631684,69.5152423788106,69.56521739130434,69.6151924037981,69.66516741629185,69.71514242878561,69.76511744127936,69.81509245377312,69.86506746626686,69.91504247876063,69.96501749125437,70.01499250374813,70.06496751624188,70.11494252873563,70.16491754122939,70.21489255372313,70.26486756621689,70.31484257871064,70.3648175912044,70.41479260369815,70.4647676161919,70.51474262868565,70.56471764117941,70.61469265367316,70.66466766616692,70.71464267866067,70.76461769115443,70.81459270364817,70.86456771614193,70.91454272863568,70.96451774112944,71.01449275362319,71.06446776611695,71.1144427786107,71.16441779110444,71.2143928035982,71.26436781609195,71.31434282858571,71.36431784107945,71.41429285357322,71.46426786606696,71.51424287856072,71.56421789105447,71.61419290354823,71.66416791604198,71.71414292853574,71.76411794102948,71.81409295352324,71.86406796601699,71.91404297851075,71.9640179910045,72.01399300349826,72.063968015992,72.11394302848576,72.16391804097951,72.21389305347326,72.26386806596702,72.31384307846076,72.36381809095452,72.41379310344827,72.46376811594203,72.51374312843578,72.56371814092954,72.61369315342328,72.66366816591704,72.71364317841079,72.76361819090455,72.8135932033983,72.86356821589206,72.9135432283858,72.96351824087957,73.01349325337331,73.06346826586707,73.11344327836082,73.16341829085458,73.21339330334833,73.26336831584207,73.31334332833583,73.36331834082958,73.41329335332334,73.46326836581709,73.51324337831085,73.5632183908046,73.61319340329835,73.6631684157921,73.71314342828586,73.7631184407796,73.81309345327337,73.86306846576711,73.91304347826087,73.96301849075462,74.01299350324838,74.06296851574213,74.11294352823589,74.16291854072963,74.2128935532234,74.26286856571714,74.31284357821089,74.36281859070465,74.4127936031984,74.46276861569216,74.5127436281859,74.56271864067966,74.61269365317341,74.66266866566717,74.71264367816092,74.76261869065468,74.81259370314842,74.86256871564218,74.91254372813593,74.96251874062969,75.01249375312344,75.0624687656172,75.11244377811094,75.1624187906047,75.21239380309845,75.2623688155922,75.31234382808596,75.3623188405797,75.41229385307346,75.46226886556721,75.51224387806097,75.56221889055472,75.61219390304848,75.66216891554222,75.71214392803599,75.76211894052973,75.81209395302349,75.86206896551724,75.912043978011,75.96201899050475,76.0119940029985,76.06196901549225,76.11194402798601,76.16191904047976,76.21189405297352,76.26186906546727,76.31184407796101,76.36181909045477,76.41179410294852,76.46176911544228,76.51174412793603,76.56171914042979,76.61169415292353,76.6616691654173,76.71164417791104,76.7616191904048,76.81159420289855,76.86156921539231,76.91154422788605,76.96151924037981,77.01149425287356,77.06146926536732,77.11144427786107,77.16141929035483,77.21139430284857,77.26136931534234,77.31134432783608,77.36131934032983,77.41129435282359,77.46126936531734,77.5112443778111,77.56121939030484,77.6111944027986,77.66116941529235,77.71114442778611,77.76111944027986,77.81109445277362,77.86106946526736,77.91104447776112,77.96101949025487,78.01099450274863,78.06096951524238,78.11094452773614,78.16091954022988,78.21089455272364,78.26086956521739,78.31084457771115,78.3608195902049,78.41079460269864,78.4607696151924,78.51074462768615,78.56071964017991,78.61069465267366,78.66066966516742,78.71064467766116,78.76061969015493,78.81059470264867,78.86056971514243,78.91054472763618,78.96051974012994,79.01049475262369,79.06046976511745,79.11044477761119,79.16041979010495,79.2103948025987,79.26036981509246,79.3103448275862,79.36031984007997,79.41029485257371,79.46026986506746,79.51024487756122,79.56021989005497,79.61019490254873,79.66016991504247,79.71014492753623,79.76011994002998,79.81009495252374,79.86006996501749,79.91004497751125,79.960019990005,80.00999500249875,80.0599700149925,80.10994502748626,80.15992003998001,80.20989505247377,80.25987006496752,80.30984507746128,80.35982008995502,80.40979510244878,80.45977011494253,80.50974512743628,80.55972013993004,80.60969515242378,80.65967016491754,80.70964517741129,80.75962018990505,80.8095952023988,80.85957021489256,80.9095452273863,80.95952023988006,81.00949525237381,81.05947026486757,81.10944527736132,81.15942028985508,81.20939530234882,81.25937031484258,81.30934532733633,81.35932033983009,81.40929535232384,81.45927036481758,81.50924537731134,81.55922038980509,81.60919540229885,81.6591704147926,81.70914542728636,81.7591204397801,81.80909545227387,81.85907046476761,81.90904547726137,81.95902048975512,82.00899550224888,82.05897051474263,82.10894552723639,82.15892053973013,82.2088955522239,82.25887056471764,82.3088455772114,82.35882058970515,82.40879560219891,82.45877061469265,82.5087456271864,82.55872063968016,82.6086956521739,82.65867066466767,82.70864567716141,82.75862068965517,82.80859570214892,82.85857071464268,82.90854572713643,82.95852073963019,83.00849575212393,83.0584707646177,83.10844577711144,83.1584207896052,83.20839580209895,83.25837081459271,83.30834582708646,83.35832083958022,83.40829585207396,83.45827086456772,83.50824587706147,83.55822088955522,83.60819590204898,83.65817091454272,83.70814592703648,83.75812093953023,83.80809595202399,83.85807096451774,83.9080459770115,83.95802098950524,84.007996001999,84.05797101449275,84.10794602698651,84.15792103948026,84.20789605197402,84.25787106446776,84.30784607696152,84.35782108945527,84.40779610194903,84.45777111444278,84.50774612693654,84.55772113943029,84.60769615192403,84.65767116441779,84.70764617691154,84.7576211894053,84.80759620189905,84.8575712143928,84.90754622688655,84.95752123938031,85.00749625187406,85.05747126436782,85.10744627686157,85.15742128935533,85.20739630184907,85.25737131434283,85.30734632683658,85.35732133933034,85.40729635182409,85.45727136431785,85.5072463768116,85.55722138930535,85.6071964017991,85.65717141429285,85.70714642678661,85.75712143928035,85.80709645177411,85.85707146426786,85.90704647676162,85.95702148925537,86.00699650174913,86.05697151424287,86.10694652673664,86.15692153923038,86.20689655172414,86.25687156421789,86.30684657671165,86.3568215892054,86.40679660169916,86.4567716141929,86.50674662668666,86.55672163918041,86.60669665167416,86.65667166416792,86.70664667666166,86.75662168915542,86.80659670164917,86.85657171414293,86.90654672663668,86.95652173913044,87.00649675162418,87.05647176411794,87.10644677661169,87.15642178910545,87.2063968015992,87.25637181409296,87.3063468265867,87.35632183908046,87.40629685157421,87.45627186406797,87.50624687656172,87.55622188905548,87.60619690154923,87.65617191404297,87.70614692653673,87.75612193903048,87.80609695152424,87.85607196401799,87.90604697651175,87.95602198900549,88.00599700149925,88.055972013993,88.10594702648676,88.1559220389805,88.20589705147427,88.25587206396801,88.30584707646177,88.35582208895552,88.40579710144928,88.45577211394303,88.50574712643679,88.55572213893053,88.6056971514243,88.65567216391804,88.70564717641179,88.75562218890555,88.8055972013993,88.85557221389305,88.9055472263868,88.95552223888056,89.00549725137431,89.05547226386807,89.10544727636182,89.15542228885558,89.20539730134932,89.25537231384308,89.30534732633683,89.35532233883059,89.40529735132434,89.4552723638181,89.50524737631184,89.5552223888056,89.60519740129935,89.65517241379311,89.70514742628686,89.7551224387806,89.80509745127436,89.85507246376811,89.90504747626187,89.95502248875562,90.00499750124938,90.05497251374312,90.10494752623688,90.15492253873063,90.20489755122439,90.25487256371814,90.3048475762119,90.35482258870564,90.4047976011994,90.45477261369315,90.50474762618691,90.55472263868066,90.60469765117442,90.65467266366817,90.70464767616193,90.75462268865567,90.80459770114942,90.85457271364318,90.90454772613693,90.95452273863069,91.00449775112443,91.0544727636182,91.10444777611194,91.1544227886057,91.20439780109945,91.2543728135932,91.30434782608695,91.35432283858071,91.40429785107446,91.45427286356822,91.50424787606197,91.55422288855573,91.60419790104947,91.65417291354323,91.70414792603698,91.75412293853073,91.80409795102449,91.85407296351823,91.904047976012,91.95402298850574,92.0039980009995,92.05397301349325,92.10394802598701,92.15392303848076,92.20389805097452,92.25387306346826,92.30384807596202,92.35382308845577,92.40379810094953,92.45377311344328,92.50374812593704,92.55372313843078,92.60369815092454,92.65367316341829,92.70364817591205,92.7536231884058,92.80359820089954,92.8535732133933,92.90354822588705,92.95352323838081,93.00349825087456,93.05347326336832,93.10344827586206,93.15342328835582,93.20339830084957,93.25337331334333,93.30334832583708,93.35332333833084,93.40329835082458,93.45327336331835,93.50324837581209,93.55322338830585,93.6031984007996,93.65317341329336,93.7031484257871,93.75312343828087,93.80309845077461,93.85307346326836,93.90304847576212,93.95302348825587,94.00299850074963,94.05297351324337,94.10294852573713,94.15292353823088,94.20289855072464,94.25287356321839,94.30284857571215,94.3528235882059,94.40279860069965,94.4527736131934,94.50274862568716,94.55272363818091,94.60269865067467,94.65267366316841,94.70264867566218,94.75262368815592,94.80259870064968,94.85257371314343,94.90254872563717,94.95252373813094,95.00249875062468,95.05247376311844,95.10244877561219,95.15242378810595,95.2023988005997,95.25237381309346,95.3023488255872,95.35232383808096,95.40229885057471,95.45227386306847,95.50224887556222,95.55222388805598,95.60219890054972,95.65217391304348,95.70214892553723,95.75212393803099,95.80209895052474,95.8520739630185,95.90204897551224,95.95202398800599,96.00199900049975,96.0519740129935,96.10194902548726,96.151924037981,96.20189905047476,96.25187406296851,96.30184907546227,96.35182408795602,96.40179910044978,96.45177411294353,96.50174912543729,96.55172413793103,96.60169915042479,96.65167416291854,96.7016491754123,96.75162418790605,96.8015992003998,96.85157421289355,96.90154922538731,96.95152423788106,97.0014992503748,97.05147426286857,97.10144927536231,97.15142428785607,97.20139930034982,97.25137431284358,97.30134932533733,97.35132433783109,97.40129935032483,97.4512743628186,97.50124937531234,97.5512243878061,97.60119940029985,97.65117441279361,97.70114942528735,97.75112443778112,97.80109945027486,97.85107446276862,97.90104947526237,97.95102448775611,98.00099950024988,98.05097451274362,98.10094952523738,98.15092453773113,98.20089955022489,98.25087456271864,98.3008495752124,98.35082458770614,98.4007996001999,98.45077461269365,98.50074962518741,98.55072463768116,98.60069965017492,98.65067466266866,98.70064967516242,98.75062468765617,98.80059970014993,98.85057471264368,98.90054972513744,98.95052473763118,99.00049975012493,99.05047476261869,99.10044977511244,99.1504247876062,99.20039980009994,99.2503748125937,99.30034982508745,99.35032483758121,99.40029985007496,99.45027486256872,99.50024987506247,99.55022488755623,99.60019990004997,99.65017491254373,99.70014992503748,99.75012493753124,99.80009995002499,99.85007496251875,99.9000499750125,99.95002498750625,100.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/huge_negative.json b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/huge_negative.json new file mode 100644 index 000000000000..aebb3a0d5143 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/huge_negative.json @@ -0,0 +1 @@ +{"expected":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"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/sincf/test/fixtures/julia/huge_positive.json b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/huge_positive.json new file mode 100644 index 000000000000..4e408fe27645 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/huge_positive.json @@ -0,0 +1 @@ +{"expected":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"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/sincf/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/large_negative.json new file mode 100644 index 000000000000..39715683f2d2 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/large_negative.json @@ -0,0 +1 @@ +{"expected":[-1.7854416e-7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"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/sincf/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/large_positive.json new file mode 100644 index 000000000000..b1d1ff065ca2 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/large_positive.json @@ -0,0 +1 @@ +{"expected":[-1.7854416e-7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"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/sincf/test/fixtures/julia/medium_negative.json b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/medium_negative.json new file mode 100644 index 000000000000..16e4631c1db8 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/medium_negative.json @@ -0,0 +1 @@ +{"expected":[0.00027787028,5.7788002e-5,-0.0001847207,-0.00035601627,-0.000389913,-0.00027325205,-5.0934155e-5,0.00019110956,0.00035947282,0.000389101,0.0002684829,4.4122884e-5,-0.00019738886,-0.00036279505,-0.00038818183,-0.00026367512,-3.7281057e-5,0.00020362373,0.0003660151,0.00038714203,0.00025877487,3.041067e-5,-0.00020981222,-0.0003691316,-0.00038598158,-0.0002537834,-2.3513716e-5,0.00021595233,0.0003721435,0.00038470057,0.00024870198,1.6592214e-5,-0.00022204209,-0.00037504945,-0.00038329902,-0.00024353195,-9.64819e-6,0.00022807952,0.00037784848,0.00038177706,0.00023827459,2.6836792e-6,-0.00023406267,-0.00038053936,-0.00038013494,-0.00023293133,4.299268e-6,0.00023998963,0.00038312105,0.00037837273,0.0002275035,-1.1375432e-5,-0.00024591922,-0.0003856137,-0.0003764642,-0.00022192848,1.838911e-5,0.0002517272,0.00038797257,0.00037446132,0.00021633506,-2.5414995e-5,-0.0002574732,-0.00039021924,-0.00037233921,-0.00021066148,3.245099e-5,0.0002631553,0.0003923526,0.00037009825,0.00020490926,-3.949501e-5,-0.00026877172,-0.00039437177,-0.0003677387,-0.00019907989,4.6544945e-5,0.00027432045,0.00039627592,0.00036526105,0.00019317496,-5.3598684e-5,-0.00027979974,-0.00039806412,-0.0003626657,-0.00018719606,6.0654103e-5,0.00028520776,0.00039973555,0.0003599532,0.0001811448,-6.7709094e-5,-0.00029054264,-0.00040128935,-0.00035712396,-0.0001750228,7.483795e-5,0.00029585592,0.0004027343,0.00035414065,0.00016876098,-8.188551e-5,-0.0003010383,-0.00040404938,-0.00035107858,-0.00016250194,8.892621e-5,0.00030614223,0.00040524462,0.00034790157,0.00015617722,-9.595791e-5,-0.000311166,-0.00040631945,-0.00034461037,-0.00014978863,0.00010297846,0.0003161078,0.00040727312,0.00034120557,0.00014333792,-0.00010998573,-0.000320966,-0.00040810514,-0.000337688,-0.00013682684,0.00011697756,0.0003257389,0.00040881487,0.0003340584,0.00013025725,-0.0001239518,-0.00033042487,-0.00040940178,-0.00033031756,-0.00012363092,0.00013090631,0.00033502217,0.00040986546,0.00032646634,0.00011687436,-0.00013791304,-0.0003395735,-0.0004102026,-0.0003224569,-0.00011013972,0.00014482127,0.00034398775,0.00041041695,0.0003183864,0.00010335399,-0.00015170328,-0.0003483086,-0.00041050673,-0.00031420827,-9.6519114e-5,0.00015855698,0.0003525345,0.00041047164,0.00030992346,8.9637e-5,-0.00016538017,-0.00035666392,-0.0004103113,-0.000305533,-8.270961e-5,0.00017217078,0.0003606954,0.00041002542,0.00030103792,7.573891e-5,-0.00017892662,-0.00036462749,-0.00040961386,-0.00029643934,-6.87269e-5,0.00018564556,0.00036845866,0.0004090763,0.00029173834,6.167558e-5,-0.00019232555,-0.00037218755,-0.00040841266,-0.00028693606,-5.4508084e-5,0.00019903427,0.00037584663,0.0004076075,0.00028197526,4.7383943e-5,-0.0002056293,-0.0003793656,-0.00040668985,-0.00027697303,-4.0226623e-5,0.00021217902,0.00038277815,0.0004056458,0.00027187323,3.3038203e-5,-0.00021868126,-0.00038608297,-0.00040447534,-0.00026667706,-2.5820766e-5,0.00022513402,0.00038927887,0.0004031785,0.00026138593,1.8576407e-5,-0.00023153512,-0.00039236445,-0.0004017553,-0.00025600108,-1.1307243e-5,0.00023788262,0.00039533863,0.00040020584,0.00025052397,4.0153927e-6,-0.00024417436,-0.00039820015,-0.00039853033,-0.000244956,3.297001e-6,0.00025040834,0.00040094779,0.0003967288,0.00023929853,-1.0708289e-5,-0.0002566463,-0.00040360304,-0.000394774,-0.00023348609,1.8055374e-5,0.0002627579,0.0004061184,0.00039271993,0.00022765333,-2.54165e-5,-0.00026880566,-0.00040851667,-0.00039054066,-0.00022173562,3.2789485e-5,0.00027478754,0.0004107968,0.00038823654,0.00021573454,-4.0172145e-5,-0.00028070164,-0.00041295774,-0.00038580789,-0.00020965164,4.756227e-5,0.00028654595,0.00041499862,0.00038325513,0.0002034886,-5.4957658e-5,-0.00029231852,-0.0004169184,-0.00038057868,-0.00019724699,6.2356106e-5,0.00029801752,0.00041871623,0.00037777907,0.00019092852,-6.975538e-5,-0.00030364085,-0.0004203912,-0.00037485675,-0.0001844615,7.72334e-5,0.00030924272,0.00042195272,0.0003717727,0.0001779937,-8.4627485e-5,-0.0003147083,-0.0004233782,-0.0003686054,-0.00017145424,9.201567e-5,0.0003200927,0.0004246784,0.0003653172,0.00016484488,-9.939573e-5,-0.00032539398,-0.0004258527,-0.00036190875,-0.00015816742,0.00010676541,0.00033061038,0.00042690028,0.00035838073,0.0001514237,-0.000114122464,-0.00033574013,-0.00042782055,-0.0003547339,-0.00014461555,0.00012146464,0.00034078135,0.00042861293,0.0003509691,0.00013774486,-0.00012878969,-0.00034573235,-0.00042927676,-0.00034708704,-0.00013081354,0.00013609536,0.00035059146,0.00042981154,0.00034308864,0.00012374452,-0.00014345716,-0.0003554034,-0.00043021402,-0.00033892386,-0.00011669722,0.00015071694,0.0003600723,0.00043048768,0.0003346942,0.00010959511,-0.00015795052,-0.00036464413,-0.00043063087,-0.00033035097,-0.00010244022,0.00016515571,0.00036911725,0.00043064312,0.0003258952,9.523454e-5,-0.00017233023,-0.00037349013,-0.00043052415,-0.00032132785,-8.798012e-5,0.00017947184,0.00037776105,0.00043027356,0.00031665002,8.0679005e-5,-0.00018657831,-0.00038192855,-0.00042989117,-0.00031186285,-7.333325e-5,0.00019364739,0.000385991,0.00042937658,0.0003069674,6.594497e-5,-0.00020067688,-0.000389947,-0.00042872972,-0.00030190483,-5.8433518e-5,0.00020773795,0.00039383073,0.0004279346,0.00029679548,5.0966195e-5,-0.0002146809,-0.00039756796,-0.00042702115,-0.0002915815,-4.346274e-5,0.00022157759,0.00040119432,0.000425975,0.0002862642,3.59253e-5,-0.00022842578,-0.00040470835,-0.00042479608,-0.00028084495,-2.8356064e-5,0.00023522326,0.00040810875,0.00042348434,0.00027532506,2.0757208e-5,-0.00024196785,-0.0004113941,-0.0004220399,-0.00026970595,-1.3130952e-5,0.00024865742,0.00041456317,0.00042046278,0.00026398897,5.4795037e-6,-0.00025528972,-0.00041761468,-0.0004187531,-0.00025817563,2.1948977e-6,0.00026186267,0.00042054732,0.00041691092,0.0002521981,-9.974523e-6,-0.00026844122,-0.00042338378,-0.0004149078,-0.0002461955,1.7688153e-5,0.00027488815,0.00042607376,0.00041279994,0.00024010112,-2.5417938e-5,-0.00028126934,-0.00042864133,-0.00041056034,-0.00023391646,3.3161592e-5,0.00028758257,0.00043108547,0.00040818934,0.00022764319,-4.091683e-5,-0.0002938258,-0.00043340496,-0.00040568723,-0.00022128291,4.8681344e-5,0.00029999702,0.0004355989,0.00040305438,0.0002148373,-5.6452827e-5,-0.00030609407,-0.00043766614,-0.00040029123,-0.00020830808,6.422896e-5,0.00031211498,0.0004396058,0.00039739828,0.00020169694,-7.200741e-5,-0.00031805766,-0.00044141684,-0.00039437605,-0.00019492871,7.9870086e-5,0.00032397915,0.00044310934,0.0003911836,0.00018815834,-8.764602e-5,-0.00032975845,-0.00044465918,-0.000387903,-0.00018131145,9.5417214e-5,0.00033545354,0.00044607773,0.00038449484,0.0001743899,-0.000103181344,-0.00034106252,-0.00044736438,-0.00038095977,-0.00016739553,0.00011093603,0.0003465834,0.0004485182,0.00037729857,0.00016033028,-0.00011867893,-0.00035201432,-0.00044953858,-0.00037351187,-0.00015319603,0.00012640767,0.00035735336,0.00045042488,0.00036960054,0.00014599478,-0.0001341199,-0.00036259863,-0.00045117625,-0.00036556533,-0.00013872846,0.00014181322,0.00036774838,0.00045179232,0.00036135514,0.00013131613,-0.00014956713,-0.00037284984,-0.0004522698,-0.00035707364,-0.0001239252,0.0001572152,0.00037780174,0.00045261174,0.00035267096,0.0001164753,-0.00016483721,-0.00038265268,-0.00045281675,-0.00034814817,-0.00010896852,0.00017243084,0.00038740083,0.0004528842,0.0003435062,0.000101406935,-0.00017999375,-0.00039204455,-0.00045281384,-0.00033874618,-9.379268e-5,0.0001875235,0.00039658207,0.00045260513,0.00033386913,8.6127904e-5,-0.00019501781,-0.00040101178,-0.0004522579,-0.00032887622,-7.841475e-5,0.00020247427,0.00040533196,0.00045177175,0.00032376865,7.06554e-5,-0.00020989057,-0.00040954113,-0.0004511464,-0.00031848453,-6.276507e-5,0.00021734166,0.00041367536,0.00045036545,0.00031315006,5.491963e-5,-0.0002246699,-0.0004176562,-0.00044945968,-0.0003077046,-4.7034675e-5,0.00023195092,0.0004215213,0.00044841427,0.0003021495,3.911246e-5,-0.0002391824,-0.0004252691,-0.00044722907,-0.00029648616,-3.115527e-5,0.00024636197,0.00042889809,0.00044590406,0.00029071586,2.3165383e-5,-0.00025348738,-0.00043240696,-0.00044443927,-0.00028484012,-1.5145114e-5,0.00026055626,0.00043579418,0.00044283463,0.00027886033,7.096782e-6,-0.00026756644,-0.0004390585,-0.00044109032,-0.00027277807,9.772734e-7,0.0002745155,0.00044219842,0.00043917785,0.000266522,-9.163659e-6,-0.00028147208,-0.00044523808,-0.00043715295,-0.00026023824,1.728218e-5,0.0002882914,0.00044812408,0.00043498885,0.00025385676,-2.5419306e-5,-0.00029504288,-0.00045088193,-0.0004326857,-0.000247379,3.3572636e-5,0.0003017243,0.00045351044,0.00043024388,0.00024080677,-4.1739775e-5,-0.0003083334,-0.0004560084,-0.00042766362,-0.00023414165,4.9918315e-5,0.00031486806,0.0004583747,0.00042494538,0.00022738548,-5.8105816e-5,-0.00032132602,-0.00046060825,-0.00042208945,-0.00022053997,6.629986e-5,0.00032770514,0.00046270803,0.00041909638,0.00021360688,-7.4497984e-5,-0.00033400324,-0.00046467286,-0.0004159248,-0.00020650715,8.2786515e-5,0.00034028053,0.00046651365,0.00041265745,0.0001994037,-9.098531e-5,-0.00034640924,-0.00046820438,-0.00040925454,-0.00019221827,9.918079e-5,0.0003524506,0.0004697573,0.00040571677,0.00018495282,-0.00010737049,-0.00035840253,-0.00047117163,-0.00040204465,-0.00017760924,0.00011555191,0.00036426293,0.0004724466,0.00039823903,0.00017018955,-0.00012372261,-0.0003700298,-0.00047358128,-0.0003943005,-0.00016269572,0.00013188005,0.0003757012,0.000474575,0.00039022998,0.0001551298,-0.00014002177,-0.00038127502,-0.00047542693,-0.00038602823,-0.00014749383,0.00014814531,0.0003867494,0.0004761365,0.00038164153,0.00013970256,-0.00015633444,-0.00039217426,-0.00047670063,-0.00037717863,-0.00013193222,0.00016441364,0.00039744255,0.00047712185,0.0003725872,0.00012409817,-0.00017246709,-0.0004026056,-0.00047739895,-0.00036786837,-0.00011620258,0.00018049232,0.0004076615,0.00047753126,0.00036302302,0.000108247645,-0.00018848683,-0.0004126084,-0.0004775184,-0.0003580523,-0.00010023558,0.0001964481,0.00041744448,0.00047735986,0.00035295732,9.216862e-5,-0.00020437367,-0.00042216803,-0.00047705523,-0.0003477392,-8.4049e-5,0.00021226105,0.00042677714,0.00047660433,0.00034239917,7.5879034e-5,-0.00022010774,-0.0004312702,-0.00047599134,-0.00033687212,-6.756929e-5,0.00022799298,0.0004356857,0.0004752451,0.00033129074,5.9305137e-5,-0.0002357502,-0.0004399401,-0.00047435163,-0.00032559127,-5.0997613e-5,0.0002434593,0.00044407343,0.0004733108,0.00031977502,4.2649066e-5,-0.00025111777,-0.000448084,-0.00047212245,-0.00031384345,-3.4261884e-5,0.00025872327,0.00045197023,0.00047078647,0.00030779792,2.583846e-5,-0.00026627321,-0.00045573065,-0.00046930285,-0.00030163993,-1.7381217e-5,0.0002737652,0.00045936368,0.00046767152,0.00029537096,8.892588e-6,-0.00028119687,-0.00046286784,-0.00046589258,-0.00028899257,-3.750238e-7,0.00028856573,0.00046624168,0.00046393625,0.00028242968,-8.262897e-6,-0.0002959443,-0.00046951076,-0.00046186065,-0.00027583615,1.683102e-5,0.00030317955,0.00047261827,0.0004596378,0.00026913805,-2.54206e-5,-0.00031034477,-0.00047559125,-0.00045726792,-0.00026233704,3.4029134e-5,0.00031743763,0.0004784285,0.00045475122,0.00025543492,-4.265409e-5,-0.0003244558,-0.0004811287,-0.000452088,-0.00024843335,5.1292933e-5,0.00033139694,0.0004836906,0.0004492786,0.00024133419,-5.994311e-5,-0.00033825866,-0.00048611301,-0.0004463234,-0.00023413922,6.8602065e-5,0.00034503874,0.00048839475,0.0004432229,0.00022685032,-7.7267236e-5,-0.00035173484,-0.00049053476,-0.00043993344,-0.00021938402,8.602983e-5,0.0003584107,0.00049254455,0.00043654215,0.0002119121,-9.4699506e-5,-0.00036493098,-0.00049439614,-0.00043300705,-0.00020435208,0.000103367594,0.00037136048,0.0004961028,0.0004293288,0.00019670589,-0.000112031485,-0.00037769703,-0.0004976635,-0.00042550798,-0.00018897561,0.00012068857,0.0003839384,0.00049907743,0.00042154532,0.00018116324,-0.00012933624,-0.00039008248,-0.0005003437,-0.00041744162,-0.00017327089,0.00013797185,0.00039612703,0.00050146127,0.00041319762,0.00016530069,-0.00014659279,-0.00040206994,-0.00050242955,-0.00040881408,-0.00015725475,0.00015519642,0.0004079092,0.0005032471,0.00040423448,0.00014904303,-0.00016387146,-0.00041369785,-0.0005039127,-0.00039957324,-0.00014085157,0.00017243215,0.00041932208,0.0005044267,0.00039477527,0.00013259097,-0.00018096759,-0.00042483647,-0.0005047886,-0.00038984156,-0.00012426356,0.00018947513,0.0004302389,0.0005049977,0.00038477322,0.00011587159,-0.00019795215,-0.00043552747,-0.00050505344,-0.00037957128,-0.00010741736,0.000206396,0.00044070015,0.00050495536,0.00037423687,9.890322e-5,-0.00021480402,-0.0004457551,-0.00050470297,-0.0003687712,-9.033152e-5,0.00022317363,0.00045069042,0.00050429587,0.0003631754,8.170466e-5,-0.00023150216,-0.00045550417,-0.00050371775,-0.00035738095,-7.292808e-5,0.00023987352,0.0004602373,0.0005029984,0.0003515276,6.419773e-5,-0.00024811135,-0.00046480107,-0.0005021234,-0.00034554806,-5.5419536e-5,0.00025630018,0.0004692379,0.0005010923,0.00033944377,4.6595967e-5,-0.0002644374,-0.000473546,-0.00049990515,-0.00033321616,-3.7729522e-5,0.00027252047,0.0004777237,0.00049856165,0.00032686666,2.882272e-5,-0.00028054672,-0.00048176933,-0.00049706176,-0.0003203968,-1.9878096e-5,0.00028851358,0.00048568123,0.00049540534,0.00031380812,1.0898208e-5,-0.00029641847,-0.0004894578,-0.00049359247,-0.00030710216,-1.8856313e-6,0.00030425884,0.0004931279,0.0004915918,0.00030019967,-7.2564385e-6,-0.00031211154,-0.0004966275,-0.00048946444,-0.00029326306,1.632672e-5,0.00031981425,0.0004999871,0.00048718075,0.0002862142,-2.5421828e-5,-0.00032744472,-0.00050320535,-0.000484741,-0.00027905492,3.4539124e-5,0.00033500046,0.0005062807,0.00048214538,0.0002717869,-4.3675947e-5,-0.00034247898,-0.00050921185,-0.00047939416,-0.00026441202,5.2829615e-5,0.00034987772,0.0005119973,0.00047648768,0.00025693208,-6.199746e-5,-0.00035719428,-0.0005146359,-0.00047342622,-0.00024934905,7.117678e-5,0.00036442617,0.0005171263,0.00047021022,0.0002416648,-8.036485e-5,-0.0003715709,-0.0005194827,-0.0004667938,-0.000233791,8.965839e-5,0.00037869622,0.0005216713,0.00046326852,0.00022590936,-9.885565e-5,-0.00038565826,-0.0005237081,-0.0004595902,-0.00021793252,0.00010805345,0.00039252595,0.000525592,0.00045575947,0.0002098626,-0.000117249016,-0.00039929687,-0.0005273219,-0.00045177687,-0.00020170168,0.00012643961,0.0004059687,0.00052889675,0.0004476432,0.0001934519,-0.00013562245,-0.00041253906,-0.0005303156,-0.0004433591,-0.00018511542,0.00014479476,0.00041900566,0.0005315775,0.00043892543,0.00017669446,-0.00015395376,-0.00042536628,-0.00053268153,-0.00043434295,-0.00016819125,0.00016309667,0.0004316186,0.0005336265,0.00042955182,0.00015951035,-0.00017231768,-0.0004378192,-0.0005344104,-0.0004246729,-0.00015084879,0.0001814196,0.00044384686,0.00053503405,0.00041964793,0.0001421119,-0.00019049703,-0.00044975957,-0.00053549657,-0.00041447798,-0.00013330205,0.00019954714,0.00045555522,0.0005357974,0.00040916406,0.00012442161,-0.00020856713,-0.0004612316,-0.00053593586,-0.00040370726,-0.000115473005,0.00021755423,0.00046678667,0.0005359113,0.00039810874,0.00010645869,-0.00022650562,-0.00047221835,-0.00053572323,-0.00039236966,-9.738113e-5,0.00023541851,0.00047752453,0.0005353711,0.0003864914,8.824283e-5,-0.0002442901,-0.00048275036,-0.0005348379,-0.00038040106,-7.8943456e-5,0.00025320955,0.00048779807,0.0005341546,0.00037424668,6.969084e-5,-0.00026198945,-0.00049271435,-0.00053330604,-0.00036795696,-6.0385166e-5,0.0002707196,0.00049749727,0.00053229195,0.00036153343,5.102903e-5,-0.0002793973,-0.0005021449,-0.00053111196,-0.00035497747,-4.1625055e-5,0.00028801968,0.0005066555,0.00052976597,0.00034829057,3.2175893e-5,-0.00029658407,-0.00051102706,-0.00052825373,-0.00034147434,-2.268421e-5,0.0003050876,0.000515258,0.00052657514,0.00033453034,1.3152696e-5,-0.00031352762,-0.00051934645,-0.00052473013,-0.00032746023,-3.584064e-6,0.00032190135,0.0005233233,0.00052268564,0.00032017974,-6.1245464e-6,-0.00033029064,-0.00052711996,-0.00052050594,-0.00031286117,1.575935e-5,0.0003385226,0.0005307691,0.0005181599,0.00030542165,-2.5422985e-5,-0.00034668006,-0.00053426914,-0.0005156476,-0.00029786295,3.511267e-5,0.00035476033,0.0005376185,0.0005129692,0.00029018696,-4.4825592e-5,-0.00036276074,-0.00054081564,-0.000510125,-0.0002823955,5.4558943e-5,0.00037067858,0.00054385903,0.0005071152,0.0002744905,-6.430987e-5,-0.0003785112,-0.0005467473,-0.0005039401,-0.00026647397,7.4075535e-5,0.000386256,0.0005494789,0.00050060014,0.00025834792,-8.385306e-5,-0.00039398632,-0.00055206934,-0.00049704674,-0.00025001843,9.3745344e-5,0.00040154636,0.0005544819,0.0004933765,0.00024167841,-0.000103537815,-0.00040901074,-0.000556734,-0.00048954284,-0.00023323511,0.00011333344,0.00041637683,0.0005588242,0.00048554622,0.00022469068,-0.0001231293,-0.0004236421,-0.0005607514,-0.0004813873,-0.00021604731,0.00013292249,0.0004308041,0.0005625145,0.00047706673,0.00020730724,-0.00014271007,-0.00043786017,-0.00056411227,-0.00047258526,-0.00019847273,0.00015248905,0.00044480796,0.0005655437,0.00046794358,0.00018954606,-0.00016225656,-0.0004516449,-0.0005668078,-0.00046314255,-0.00018052958,0.0001720096,0.00045843297,0.00056790345,0.00045811868,0.00017132181,-0.00018184852,-0.0004650396,-0.000568828,-0.00045299993,-0.0001621321,0.00019156327,0.0004715282,0.0005695824,0.00044772457,0.00015285985,-0.0002012546,-0.0004778964,-0.00057016575,-0.00044229365,-0.00014350751,0.00021091958,0.00048414184,0.00057057734,0.00043670816,0.00013407753,-0.00022055519,-0.0004902622,-0.0005708164,-0.0004309692,-0.00012457253,0.00023015843,0.00049625523,0.00057088217,0.00042507797,0.000114995026,-0.00023972636,-0.00050211867,-0.000570774,-0.00041903573,-0.000105347615,0.00024925597,0.0005078503,0.0005704914,0.00041284366,9.563293e-5,-0.0002587443,-0.0005134984,-0.0005700165,-0.0004064245,-8.574409e-5,0.00026828647,0.0005189582,0.0005693814,0.00039993518,7.590236e-5,-0.0002776825,-0.00052427966,-0.0005685703,-0.0003933002,-6.6001434e-5,0.0002870283,0.0005294608,0.0005675827,0.0003865209,5.604404e-5,-0.0002963208,-0.00053449936,-0.00056641846,-0.0003795988,-4.6032943e-5,0.0003055571,0.00053939346,0.0005650772,0.0003725354,3.5970934e-5,-0.00031473424,-0.0005441411,-0.00056355854,-0.0003653323,-2.586082e-5,0.00032384926,0.00054874027,0.0005618624,0.0003579912,1.5705442e-5,-0.00033289922,-0.0005531891,-0.00055998866,-0.00035051364,-5.507665e-6,0.00034197257,0.0005575207,0.00055790227,0.00034281015,-4.842241e-6,-0.00035088256,-0.0005616614,-0.000555671,-0.00033506384,1.511633e-5,0.00035971866,0.00056564616,0.0005532619,0.00032718643,-2.5424071e-5,-0.00036847798,-0.00056947325,-0.0005506751,-0.00031917988,3.576252e-5,0.0003771576,0.00057314086,0.00054791063,0.000311046,-4.612871e-5,-0.0003857546,-0.0005766474,-0.0005449687,-0.00030278682,5.6519653e-5,0.0003942662,0.0005799912,0.00054184947,0.0002944043,-6.693234e-5,-0.00040268945,-0.0005831706,-0.0005385532,-0.0002859005,7.7363766e-5,0.00041102155,0.00058618415,0.0005350804,0.00027727743,-8.781088e-5,-0.000419341,-0.00058904843,-0.0005313792,-0.00026843505,9.838359e-5,0.00042748105,0.0005917236,0.0005275522,0.00025957887,-0.00010885278,-0.00043552154,-0.00059422845,-0.00052354985,-0.00025060997,0.00011932842,0.00044345958,0.0005965614,0.0005193726,0.00024153061,-0.00012980742,-0.00045129252,-0.0005987214,-0.00051502103,-0.00023234305,0.00014028666,0.00045901758,0.00060070684,0.00051049585,0.00022304963,-0.00015076302,-0.00046663207,-0.00060251675,-0.0005057977,-0.00021365273,0.00016123339,0.00047413327,0.0006041497,0.0005009272,0.00020415471,-0.0001716946,-0.00048151857,-0.0006056046,-0.0004958853,-0.00019455807,0.00018214353,0.0004888542,0.0006068807,0.0004906043,0.00018475433,-0.00019268753,-0.0004959982,-0.0006079742,-0.00048522037,-0.00017496702,0.00020310192,0.0005030184,0.0006088864,0.00047966765,0.00016508863,-0.00021349452,-0.0005099122,-0.00060961646,-0.0004739472,-0.00015512177,0.00022386211,0.00051667704,0.0006101634,0.00046806,0.00014506905,-0.00023420152,-0.0005233105,-0.00061052624,-0.0004620073,-0.00013493311,0.00024450955,0.00052981003,0.0006107043,0.0004557901,0.00012471668,-0.00025478302,-0.0005361732,-0.00061069673,-0.00044940977,-0.00011442246,0.00026501878,0.00054239755,0.00061050284,0.00044286746,0.00010405322,-0.00027531947,-0.0005485351,-0.0006101038,-0.00043608065,-9.349462e-5,0.0002854694,0.00055447296,0.0006095331,0.0004292168,8.298321e-5,-0.00029557195,-0.000560265,-0.00060877437,-0.00042219515,-7.240529e-5,0.000305624,0.00056590873,0.000607827,0.0004150171,6.176373e-5,-0.00031562228,-0.0005714021,-0.00060669036,-0.00040768425,-5.1061445e-5,0.00032556363,0.0005767428,0.0006053643,0.00040019813,4.0301384e-5,-0.0003354449,-0.0005819286,-0.0006038482,-0.00039256032,-2.9426634e-5,0.00034531293,0.0005869782,0.0006021255,0.00038472516,1.8559798e-5,-0.00035506397,-0.000591847,-0.00060022774,-0.0003767884,-7.644196e-6,0.0003647454,0.0005965544,0.00059813936,0.00036870514,-3.3171236e-6,-0.00037435407,-0.00060109864,-0.0005958602,-0.00036047725,1.4321084e-5,0.00038388677,0.0006054946,0.0005933696,0.00035205635,-2.542509e-5,-0.0003933879,-0.0006097054,-0.00059070764,-0.00034354406,3.6505076e-5,0.0004027588,0.000613747,0.00058785477,0.00033489292,-4.761832e-5,-0.00041204444,-0.00061761757,-0.00058481115,-0.0003261049,5.876165e-5,0.00042124165,0.0006213152,0.0005815769,0.0003171292,-6.999255e-5,-0.00043039233,-0.0006248503,-0.00057812646,-0.00030807298,8.118646e-5,0.00043940282,0.0006281959,0.00057451054,0.00029888627,-9.240081e-5,-0.0004483157,-0.00063136336,-0.00057070475,-0.00028957115,0.00010363236,0.00045712784,0.00063435105,0.0005667093,0.00028012996,-0.00011487783,-0.00046583632,-0.00063716515,-0.00056249514,-0.0002705091,0.00012619443,0.00047447972,0.0006397874,0.0005581211,0.00026082207,-0.00013745781,-0.00048297102,-0.0006422252,-0.0005535589,-0.00025101594,0.0001487252,0.00049134967,0.00064447697,0.0005488091,0.0002410932,-0.00015999329,-0.00049961265,-0.00064654136,-0.00054387253,-0.00023099821,0.0001713187,0.0005077958,0.0006484195,0.00053871504,0.00022084908,-0.00018257795,-0.000515818,-0.00065010384,-0.0005334059,-0.00021059085,0.00019382781,0.0005237158,0.0006515968,0.00052791217,0.0002002261,-0.00020506495,-0.0005314864,-0.0006528972,-0.00052223465,-0.00018975747,0.00021628589,0.00053916255,0.0006540019,0.00051633583,0.00017912725,-0.00022754622,-0.0005466694,-0.0006549124,-0.0005102927,-0.00016845851,0.00023872442,0.0005540407,0.0006556269,0.00050406886,0.00015769406,-0.00024987626,-0.0005612736,-0.00065614417,-0.0004976653,-0.00014683668,0.00026099832,0.0005683653,0.00065646356,0.000491041,0.00013582726,-0.00027214485,-0.0005753445,-0.00065657665,-0.0004842807,-0.00012479219,0.0002831967,0.0005821452,0.00065649615,0.00047734432,0.000113672824,-0.00029420847,-0.0005887967,-0.000656215,-0.00047023315,-0.000102472106,0.0003051767,0.0005952965,0.00065573247,0.00046294866,9.1193004e-5,-0.00031609804,-0.00060166954,-0.00065503595,-0.00045544552,-7.977502e-5,0.00032702475,0.00060785736,0.0006541475,0.0004478178,6.8347945e-5,-0.00033784143,-0.0006138859,-0.0006530556,-0.0004400211,-5.6851644e-5,0.00034860082,0.0006197527,0.00065175985,0.0004320571,4.5289227e-5,-0.0003592996,-0.0006254553,-0.0006502598,-0.00042387738,-3.3599394e-5,0.00036998815,0.00063101394,0.0006485374,0.0004155829,2.1914006e-5,-0.00038055467,-0.00063638,-0.0006466263,-0.0004071263,-1.0172039e-5,0.00039105027,0.00064157485,0.0006445096,0.00039850926,-1.6232765e-6,-0.00040147142,-0.0006465962,-0.0006421873,-0.00038973373,1.3468674e-5,0.0004118666,0.0006514604,0.0006396371,0.00038074754,-2.5426036e-5,-0.00042212824,-0.000656127,-0.0006369017,-0.00037166005,3.7361795e-5,0.00043230527,0.0006606136,0.0006339602,0.00036241984,-4.9337665e-5,-0.00044239435,-0.0006649179,-0.0006308125,-0.0003530292,6.1350285e-5,0.00045239212,0.00066903804,0.0006274587,0.00034343323,-7.346165e-5,-0.00046234386,-0.00067298504,-0.0006238714,-0.0003337472,8.553756e-5,0.00047214818,0.0006767296,0.0006201046,0.00032391722,-9.763995e-5,-0.00048185122,-0.00068028393,-0.0006161322,-0.00031394552,0.000109765344,0.00049144955,0.00068364624,0.0006119545,0.00030383447,-0.00012191026,-0.00050098577,-0.0006868233,-0.00060753984,-0.00029352622,0.00013413646,0.0005103642,0.00068979495,0.0006029514,0.00028314296,-0.0001463098,-0.00051962805,-0.0006925692,-0.0005981588,-0.0002726276,0.00015849208,0.00052877417,0.0006951443,0.0005931626,0.00026198273,-0.00017067975,-0.00053779926,-0.00069751864,-0.000587927,-0.0002511483,0.00018293397,0.0005467422,0.0006996935,0.0005825243,0.00024025155,-0.00019512148,-0.0005555149,-0.0007016605,-0.00057691976,-0.00022923312,0.00020730354,0.0005641571,0.0007034222,0.0005711143,0.00021809572,-0.00021947657,-0.0005726656,-0.000704977,-0.00056510867,-0.00020684212,0.00023163692,0.0005810759,0.0007063219,0.00055886235,0.00019540996,-0.00024384465,-0.00058930693,-0.00070745783,-0.0005524581,-0.00018393193,0.00025596845,0.000597395,0.00070838304,0.00054585666,0.00017234628,-0.00026806854,-0.0006053371,-0.00070909626,-0.0005390589,-0.0001606559,0.00028014134,0.0006131302,0.00070959626,0.00053202047,0.0001487969,-0.00029224553,-0.0006208054,-0.00070987426,-0.00052483263,-0.0001369057,0.0003042522,0.0006282908,0.0007099435,0.0005174521,0.00012491886,-0.00031622042,-0.0006356184,-0.00070979627,-0.0005098802,-0.0001128395,0.0003281465,0.0006427854,0.00070943194,0.00050211826,0.000100670746,-0.0003400876,-0.00064981874,-0.0007088368,-0.0004941174,-8.8347115e-5,0.00035191784,0.00065665477,0.0007080341,0.0004859788,7.600886e-5,-0.00036369474,-0.00066332176,-0.00070701167,-0.00047765463,-6.3590895e-5,0.00037541467,0.00066981686,0.00070576876,0.00046914647,5.109652e-5,-0.00038707384,-0.00067613745,-0.0007043047,-0.00046040205,-3.845931e-5,0.0003987271,0.0006823054,0.00070260034,0.00045153018,2.5821895e-5,-0.00041025315,-0.0006882678,-0.0007006913,-0.00044247953,-1.3118176e-5,0.0004217073,0.00069404783,0.00069855957,0.00043325187,3.5158484e-7,-0.00043308586,-0.00069964275,-0.0006962048,-0.0004238492,1.2474409e-5,0.0004444414,0.0007050705,0.00069360295,0.00041421503,-2.542691e-5,-0.0004556571,-0.0007102869,-0.00069079985,-0.00040446737,3.8361297e-5,0.00046678606,0.0007153108,0.0006877728,0.00039455068,-5.1344472e-5,-0.00047782465,-0.00072014,-0.0006845217,-0.0003844671,6.437284e-5,0.0004887692,0.0007247721,0.000681018,0.0003741573,-7.7513716e-5,-0.000499669,-0.0007292193,-0.0006773174,-0.0003637458,9.062163e-5,0.0005104138,0.0007334492,0.0006733925,0.0003531742,-0.00010376377,-0.00052105356,-0.00073747523,-0.00066924357,-0.00034244478,0.00011693643,0.00053158466,0.00074129517,0.00066487084,0.00033156,-0.0001302068,-0.0005420535,-0.00074491673,-0.0006602399,-0.0003204571,0.00014342926,0.00055235566,0.00074831734,0.00065541884,0.00030926827,-0.00015667098,-0.0005625385,-0.0007515057,-0.0006503748,-0.00029793163,0.00016992814,0.0005725983,0.0007544801,0.000645108,0.00028644985,-0.00018319694,-0.00058253156,-0.0007572384,-0.0006395801,-0.00027475768,0.00019654392,0.00059238035,0.0007597822,0.00063386845,0.00026299295,-0.00020982425,-0.0006020491,-0.0007621017,-0.00062793586,-0.00025109123,0.00022310462,0.00061158073,0.00076419994,0.00062178297,0.00023905534,-0.00023638109,-0.00062097184,-0.000766075,-0.00061541056,-0.0002268882,0.0002497194,0.00063026097,0.00076772366,0.00060877437,0.00021452199,-0.00026297613,-0.00063935976,-0.0007691464,-0.00060196413,-0.00020210064,0.00027621718,0.0006483076,0.00077034143,0.000594937,0.00018955696,-0.00028943855,-0.00065710145,-0.00077130715,-0.00058769394,-0.00017689409,0.0003026363,0.0006657378,0.0007720353,0.00058018655,0.00016404237,-0.0003158745,-0.0006742504,-0.000772537,-0.00057251373,-0.00015115004,0.0003290127,0.00068256084,0.00077280536,0.00056462846,0.00013814803,-0.00034211524,-0.000690704,-0.0007728392,-0.0005565318,-0.00012503963,0.00035517814,0.00069867645,0.0007726373,0.00054822525,0.00011182813,-0.00036826375,-0.00070650806,-0.00077218516,-0.0005396555,-9.844215e-5,0.0003812348,0.00071412895,0.00077150733,0.0005309322,8.5034255e-5,-0.0003941541,-0.0007215698,-0.00077059056,-0.00052200345,-7.15335e-5,0.0004070176,0.00072882755,0.000769434,0.00051287067,5.794337e-5,-0.00041982124,-0.00073589926,-0.000768018,-0.0005034769,-4.4191424e-5,0.00043262483,0.00074280886,0.000766378,0.0004939402,3.0432935e-5,-0.00044529603,-0.0007494982,-0.000764496,-0.00048420476,-1.6595806e-5,0.00045789525,0.0007559925,0.000762371,0.00047427227,2.6836942e-6,-0.0004704184,-0.00076228887,-0.0007600026,-0.0004641448,1.1376578e-5,0.00048292286,0.0007684067,0.0007573646,0.0004537607,-2.5427718e-5,-0.00049528107,-0.0007742976,-0.0007545064,-0.00044324817,3.9542643e-5,0.000507551,0.00077998213,0.0007514033,0.00043254677,-5.3717547e-5,-0.00051972875,-0.0007854576,-0.000748055,-0.00042165854,6.794859e-5,0.00053181016,0.0007907214,0.00074443035,0.00041051864,-8.230938e-5,-0.0005438492,-0.0007957869,-0.00074058946,-0.00039926273,9.664113e-5,0.00055572524,0.0008006181,0.00073650276,0.00038782696,-0.000111017296,-0.0005674929,-0.00080522994,-0.0007321701,-0.00037621372,0.00012543391,0.0005791482,0.0008096198,0.00072759157,0.00036442545,-0.00013996447,-0.00059074187,-0.00081379607,-0.0007227298,-0.0003523935,0.00015444991,0.0006021597,0.0008177336,0.0007176583,0.00034026208,-0.00016896367,-0.0006134532,-0.00082144194,-0.0007123412,-0.0003279635,0.0001835017,0.00062461855,0.0008249189,0.00070677896,0.00031550037,-0.00019805985,-0.0006356517,-0.00082816766,-0.00070092914,-0.00030280135,0.00021271106,0.000646599,0.000831174,0.00069487613,0.0002900169,-0.0002272969,-0.0006573552,-0.00083394244,-0.00068857905,-0.00027707644,0.00024189036,0.0006679675,0.000836471,0.00068203855,0.00026398295,-0.00025648723,-0.0006784322,-0.0008387575,-0.000675255,-0.00025073942,0.00027115954,0.0006887915,0.0008407984,0.0006681804,0.00023727148,-0.00028575025,-0.0006989482,-0.0008425939,-0.0006609121,-0.00022373651,0.00030033157,0.0007089458,0.00084414176,0.0006534031,0.00021006083,-0.00031489923,-0.0007187805,-0.00084544014,-0.0006456545,-0.00019624768,0.0003294489,0.0007284485,0.0008464801,0.0006376132,0.00018222071,-0.00034405102,-0.0007379871,-0.0008472731,-0.00062938686,-0.00016814207,0.00035855136,0.00074730965,0.0008478118,0.000620924,0.00015393598,-0.00037302065,-0.0007564544,-0.0008480946,-0.00061222573,-0.00013960591,0.00038745455,0.00076541794,0.00084812,0.0006032933,0.00012507374,-0.00040192163,-0.0007742328,-0.00084787206,-0.00059406814,-0.00011050579,0.00041627107,0.00078282173,0.0008473771,0.0005846703,9.582449e-5,-0.00043057185,-0.0007912187,-0.0008466207,-0.00057504245,-8.1033504e-5,0.00044481957,0.0007994202,0.0008456017,0.0005651862,6.61365e-5,-0.00045900984,-0.0008074539,-0.0008442985,-0.00055503874,-5.1053765e-5,0.00047320846,0.0008152528,0.00084274943,0.0005447294,3.595571e-5,-0.00048726986,-0.0008228459,-0.0008409345,-0.0005341967,-2.0763031e-5,0.00050126045,0.0008302299,0.0008388527,0.0005234424,5.4796096e-6,-0.00051517575,-0.0008374014,-0.0008365032,-0.0005124684,9.975161e-6,0.00052907906,0.00084438204,0.00083385746,0.00050120696,-2.5428455e-5,-0.00054282974,-0.0008511178,-0.0008309687,-0.0004897985,4.096056e-5,0.0005564918,0.0008576314,0.00082781014,0.0004781765,-5.6567413e-5,-0.0005700607,-0.00086391973,-0.0008243811,-0.00046634296,7.224492e-5,0.00058353203,0.0008699991,0.0008206471,0.00045422648,-8.807427e-5,-0.00059696543,-0.0008758263,-0.000816674,-0.00044197595,0.00010388071,0.00061022746,0.0008814193,0.00081242895,0.0004295209,-0.000119745244,-0.00062337855,-0.000886775,-0.00080791174,-0.00041686374,0.0001356636,0.0006364143,0.0008918904,0.000803122,0.00040392953,-0.00015171702,-0.00064939086,-0.0008967749,-0.00079801853,-0.00039087495,0.0001677301,0.00066218164,0.00090139994,0.000792682,0.00037762604,-0.00018378402,-0.0006748439,-0.0009057763,-0.00078707264,-0.00036418551,0.00019987434,0.0006873731,0.00090990146,0.0007811907,0.00035055613,-0.00021599664,-0.0006997649,-0.0009137787,-0.00077498925,-0.00033665902,0.00023223156,0.0007120705,0.00091739185,0.00076856086,0.0003226597,-0.00024840422,-0.00072417327,-0.0009207459,-0.0007618602,-0.00030848035,0.00026459532,0.00073612557,0.0009238383,0.00075488794,0.0002941239,-0.00028080033,-0.00074792304,-0.00092666666,-0.0007476443,-0.0002795087,0.000297099,0.0007596126,0.0009292272,0.00074007583,0.00026480676,-0.0003133177,-0.0007710863,-0.0009315191,-0.0007322896,-0.00024993732,0.00032953644,0.00078239234,0.00093354005,0.0007242338,0.0002349036,-0.0003457505,-0.00079352636,-0.0009352879,-0.00071590906,-0.00021970898,0.00036195523,0.0008045309,0.00093675265,0.00070725667,0.0002042688,-0.00037822867,-0.000815307,-0.0009379464,-0.00069839525,-0.0001887621,0.0003944001,0.00082589866,0.0009388609,0.0006892676,0.00017310499,-0.0004105479,-0.0008363015,-0.0009394942,-0.0006798747,-0.00015730101,0.00042666733,0.0008465115,0.00093984435,0.00067021756,0.00014126349,-0.00044283457,-0.00085656496,-0.0009398937,-0.0006602314,-0.00012517638,0.00045888234,0.0008663757,0.00093967066,0.0006500484,0.000108953594,-0.00047488717,-0.0008759812,-0.0009391593,-0.00063960504,-9.259898e-5,0.0004908443,0.0008853777,0.00093835813,0.0006289027,7.611643e-5,-0.00050674874,-0.00089459616,-0.00093724305,-0.0006178718,-5.9417303e-5,0.000522674,0.0009035612,0.00093585585,0.00060665485,4.2690393e-5,-0.000538458,-0.0009123053,-0.0009341743,-0.0005951838,-2.5847574e-5,0.00055417477,0.00092082476,0.00093219697,0.00058346026,8.892957e-6,-0.0005698192,-0.0009291155,-0.0009299229,-0.00057140994,8.263191e-6,0.00058546197,0.00093720166,0.0009273199,0.0005591857,-2.5429123e-5,-0.0006009464,-0.00094502245,-0.00092444685,-0.0005467146,4.269417e-5,0.0006163438,0.00095260335,0.00092127343,0.00053399865,-6.0054015e-5,-0.0006316492,-0.0009599408,-0.00091779884,-0.00052104006,7.75043e-5,0.00064685766,0.00096705265,0.0009139849,0.00050775905,-9.5135525e-5,-0.00066203554,-0.0009738906,-0.00090990355,-0.00049432047,0.000112753485,0.0006770343,0.0009804743,0.0009055186,0.00048064598,-0.00013044843,-0.0006919212,-0.0009868002,-0.0009008292,-0.00046673804,0.00014821583,0.0007066913,0.0009928648,0.00089583494,0.00045251288,-0.00016614632,-0.0007214073,-0.0009986787,-0.0008904897,-0.00043814437,0.00018404471,0.00073592784,0.0010042093,0.00088488235,0.00042355008,-0.00020200155,-0.0007503168,-0.0010094686,-0.0008789688,-0.00040873268,0.0002200121,0.00076456903,0.0010144532,0.0008727487,0.00039369497,-0.00023807157,-0.0007787431,-0.0010191675,-0.00086616975,-0.00037834872,0.0002562702,0.0007927062,0.0010235921,0.00085933437,0.00036287808,-0.00027441283,-0.0008065178,-0.0010277327,-0.00085219205,-0.00034719598,0.0002925898,0.00082017295,0.0010315866,0.0008447428,0.00033130546,-0.0003107961,-0.00083366694,-0.0010351504,-0.00083692843,-0.00031511503,0.0003291211,0.00084705226,0.00103842,0.0008288642,0.0002988164,-0.0003473709,-0.0008602077,-0.0010413936,-0.0008204938,-0.000282319,0.00036563494,0.0008731873,0.0010440688,0.00081181736,0.0002656263,-0.00038390816,-0.00088598614,-0.0010464428,-0.0008028354,-0.00024874165,0.00040218545,0.0008986518,0.0010485043,0.0007934822,0.00023157013,-0.0004205544,-0.00091107324,-0.0010502661,-0.0007838892,-0.00021431157,0.00043882392,0.0009232994,0.001051719,0.00077399256,0.00019687187,-0.00045708191,-0.00093532563,-0.0010528602,-0.000763793,-0.00017925478,0.00047532312,0.0009471471,0.0010536874,0.00075321895,0.00016136284,-0.00049363327,-0.00095880457,-0.0010541809,-0.00074241456,-0.00014340172,0.00051182456,0.0009702009,0.0010543715,0.00073131,0.00012527478,-0.0005299832,-0.0009813784,-0.0010542413,-0.0007199065,-0.00010698599,0.0005481038,0.0009923324,0.0010537881,0.0007082049,8.853944e-5,-0.00056626956,-0.0010030977,-0.001052985,-0.0006961271,-6.9835296e-5,0.00058429723,0.0010135893,0.0010518779,0.0006838324,5.108516e-5,-0.00060227065,-0.0010238435,-0.0010504418,-0.00067124376,-3.2189837e-5,0.0006201843,0.0010338561,0.0010486748,0.0006583628,1.315364e-5,-0.0006380329,-0.0010436221,-0.0010465751,-0.0006451058,6.124641e-6,0.0006558958,0.0010531689,0.0010441069,0.00063164375,-2.5429717e-5,-0.00067359675,-0.0010624274,-0.0010413348,-0.00061789446,4.4862303e-5,0.00069121603,0.0010714261,0.0010382253,0.0006038598,-6.441784e-5,-0.0007087482,-0.001080161,-0.0010347766,-0.00058954157,8.409171e-5,0.00072626903,0.0010886523,0.0010309456,0.00057484984,-0.000103986225,-0.0007436092,-0.0010968443,-0.0010268125,-0.0005599695,0.00012388283,0.0007608454,0.0011047598,0.0010223363,0.0005448121,-0.00014388346,-0.0007779722,-0.0011123942,-0.0010175157,-0.0005293798,0.0001639833,0.00079498405,0.0011197432,0.0010123005,0.00051357783,-0.00018428506,-0.00081195164,-0.0011268189,-0.0010067859,-0.00049760164,0.00020456858,0.00082871557,0.0011335837,0.001000924,0.00048135797,-0.00022493638,-0.0008453476,-0.001140051,-0.0009947137,-0.00046484923,0.00024538333,0.0008618422,0.0011462171,0.0009881542,0.0004480783,-0.00026590435,-0.00087826565,-0.0011520862,-0.0009811864,-0.0004309449,0.00028660183,0.00089446735,0.001157636,0.00097392476,0.00041365667,-0.00030725522,-0.00091051473,-0.0011628729,-0.00096631196,-0.00039611472,0.00032796693,0.0009264022,0.0011677931,0.00095834775,0.0003783221,-0.00034873158,-0.00094212417,-0.0011723926,-0.0009499657,-0.00036017472,0.00036965084,0.0009577406,0.001176667,0.00094129547,0.00034188904,-0.000390505,-0.00097311346,-0.001180613,-0.00093227293,-0.0003233622,0.00041139583,0.000988304,0.0011842276,0.00092289783,0.0003045976,-0.0004323178,-0.0010033065,-0.0011875078,-0.00091317005,-0.0002855986,0.00045337106,0.0010181755,0.0011904401,0.00090301485,0.00026625692,-0.0004743381,-0.001032784,-0.0011930384,-0.0008925803,-0.00024679888,0.0004953193,0.0010471881,0.001195292,0.0008817937,0.0002271172,-0.0005163091,-0.0010613818,-0.0011971972,-0.0008706551,-0.0002072156,0.00053730176,0.0010753599,0.0011987512,0.00085908297,0.00018698296,-0.00055839494,-0.0010891688,-0.0011999311,-0.00084724004,-0.0001666524,0.0005793752,0.0011026973,0.0012007712,0.00083504675,0.0001461137,-0.0006003408,-0.0011159935,-0.0012012508,-0.0008225035,-0.00012537088,0.0006212858,0.001129052,0.0012013669,0.0008096113,0.00010442805,-0.0006423054,-0.0011419128,-0.0012010887,-0.0007962801,-8.317098e-5,0.00066319073,0.0011544778,0.0012004672,0.0007826906,6.184027e-5,-0.0006840374,-0.001166789,-0.001199474,-0.0007687547,-4.032243e-5,0.0007048396,0.0011788406,0.0011980891,0.00075442577,1.8561834e-5,-0.00072564033,-0.0011906466,-0.0011963433,-0.0007397998,3.3171352e-6,0.0007463348,0.0012021624,0.0011942177,0.00072478165,-2.5430243e-5,-0.00076701463,-0.0012134201,-0.0011916897,-0.00070947065,4.765197e-5,0.00078757684,0.0012243788,0.0011887968,0.0006938198,-7.009885e-5,-0.00080811104,-0.001235067,-0.0011854945,-0.0006777786,9.2644375e-5,0.00082851615,0.0012454476,0.0011818246,0.0006614518,-0.00011534443,-0.0008488798,-0.0012555452,-0.0011777389,-0.00064473646,0.00013825552,0.0008691028,0.0012653269,0.0011732837,0.0006277406,-0.00016124987,-0.00088922563,-0.0012748131,-0.0011684063,-0.00061035843,0.0001844454,0.0009092865,0.0012839753,0.0011631576,0.00059270114,-0.00020771369,-0.0009291894,-0.0012928206,-0.001157481,-0.0005746603,0.00023117292,0.0009490166,0.001301352,0.0011514316,0.0005563499,-0.00025469423,-0.000968674,-0.0013095475,-0.0011449796,-0.00053765904,0.0002783959,0.0009882419,0.001317417,0.0011380913,0.00051870476,-0.00030214872,-0.0010076285,-0.0013249427,-0.0011308288,-0.00049943244,0.00032600912,0.0010269112,0.0013321307,0.0011231245,0.00047978494,-0.00035003343,-0.0010460013,-0.0013389672,-0.0011150454,-0.00045988368,0.0003740922,0.0010649336,0.0013454541,0.00110652,0.00043961126,-0.00039830356,-0.0010837406,-0.0013515824,-0.0010976191,-0.00041909196,0.00042253797,0.0011023376,0.0013573496,0.0010882674,0.00039820583,-0.00044691318,-0.0011207948,-0.00136275,-0.0010785405,-0.00037708005,0.0004713,0.0011390306,0.001367781,0.0010683994,0.00035559243,-0.0004958156,-0.0011571118,-0.0013724332,-0.0010578015,-0.00033387245,0.000520331,0.0011749602,0.0013767093,0.001046829,0.00031186055,-0.0005449629,-0.0011926396,-0.0013805957,-0.0010353958,-0.00028949493,0.0005695828,0.0012100746,0.0013840991,0.0010235888,0.00026690864,-0.0005942458,-0.0012273258,-0.0013872016,-0.001011318,-0.00024397457,0.0006190061,0.0012443213,0.0013899151,0.0009986744,0.00022082808,-0.00064373645,-0.001261088,-0.0013922276,-0.0009855642,-0.00019734005,0.000668551,0.0012776483,0.0013941228,0.0009720828,0.00017364812,-0.0006933233,-0.0012939363,-0.0013956199,-0.0009581827,-0.0001496214,0.00071816647,0.0013100031,0.0013966887,0.00094381213,0.00012539949,-0.0007429551,-0.0013257862,-0.0013973541,-0.0009290732,-0.00010091882,0.0007678007,0.0013413336,0.0013975806,0.0009138621,7.6114266e-5,-0.0007925794,-0.0013565861,-0.0013973981,-0.00089828484,-5.1128158e-5,0.0008173434,0.0013715875,0.0013967666,0.00088223367,2.5825937e-5,-0.0008421434,-0.0013862833,-0.0013957208,-0.0008658192,-3.5158484e-7,0.0008668576,0.0014006916,0.001394216,0.0008489296,-2.54307e-5,-0.0008915934,-0.0014148259,-0.001392292,-0.00083167956,5.137541e-5,0.0009162305,0.0014286386,0.0013899239,0.00081395375,-7.761946e-5,-0.0009408747,-0.0014421622,-0.0013870823,-0.0007958707,0.00010401598,0.0009654076,0.0014553533,0.0013838146,0.00077737286,-0.00013070283,-0.0009899322,-0.0014682405,-0.0013800636,-0.00075839873,0.00015753196,0.0010143328,0.0014807843,0.0013758824,0.0007390729,-0.00018456987,-0.001038657,-0.0014930092,-0.0013712087,-0.000719271,0.00021188389,0.0010629504,0.0015048803,0.0013661007,0.0006991217,-0.00023932436,-0.0010870999,-0.001516406,-0.0013604915,-0.0006784967,0.00026703096,0.001111203,0.0015275899,0.0013544442,0.0006575288,-0.0002948532,-0.0011351494,-0.0015384047,-0.0013479233,-0.00063608633,0.00032293113,0.0011590336,0.0015488624,0.0013408879,0.00061430567,-0.00035111367,-0.0011827478,-0.001558941,-0.0013334096,-0.00059212133,0.00037954107,0.0012063837,0.0015686473,0.0013254085,0.0005694647,-0.00040806187,-0.0012298367,-0.0015779645,-0.0013169615,-0.0005464775,0.00043674326,0.001253195,0.0015868946,0.0013079834,0.0005230201,-0.00046565259,-0.0012763571,-0.0015954253,-0.0012985569,-0.0004992375,0.00049463793,0.0012993631,0.0016035541,0.0012885917,0.00047498723,-0.0005238395,-0.0013222495,-0.001611274,-0.0012781753,-0.00045041766,0.0005531052,0.00134492,0.0016185796,0.0012672612,0.0004253832,-0.0005825749,-0.0013674542,-0.0016254607,-0.0012557971,-0.00040003553,0.0006120969,0.0013897589,0.0016319187,0.001243879,0.00037430276,-0.00064181024,-0.0014119105,-0.0016379369,-0.0012314039,-0.00034811016,0.0006715636,0.0014338192,0.0016435229,0.0012184728,0.0003216141,-0.0007014233,-0.0014555575,-0.0016486542,-0.001204978,-0.0002946621,0.0007314548,0.0014770399,0.001653344,0.0011910261,0.00026741344,-0.0007615078,-0.0014982977,-0.0016575647,-0.0011765035,-0.0002397132,0.000791719,0.0015193591,0.0016613343,0.0011615227,0.00021172341,-0.00082193903,-0.0015401442,-0.0016646362,-0.0011459654,-0.00018328674,0.0008523036,0.001560715,0.0016674467,0.0011299485,0.00015456793,-0.00088266376,-0.0015809964,-0.0016697933,-0.001113412,-0.00012540737,0.0009131544,0.0016010455,0.0016716339,0.0010962902,9.5972326e-5,-0.00094362785,-0.0016207919,-0.0016730021,-0.001078708,-6.618443e-5,0.0009742168,0.0016402878,0.0016738498,0.0010605353,3.5963312e-5,-0.0010047754,-0.0016594675,-0.0016742166,-0.0010419021,-5.4796365e-6,0.0010353666,0.001678353,0.0016740484,0.0010226729,-2.5431085e-5,-0.0010660504,-0.0016969605,-0.0016733909,-0.0010029833,5.6596076e-5,0.0010966841,0.0017152317,0.0016722138,0.0009826929,-8.818152e-5,-0.0011273953,-0.0017332069,-0.0016704801,-0.0009619424,0.000120012715,0.0011580425,0.0017508325,0.0016682448,0.0009406604,-0.00015225734,-0.0011887514,-0.001768143,-0.0016654391,-0.00091877085,0.00018473898,0.0012193826,0.0017850909,0.0016621241,0.0008964221,-0.00021753953,-0.0012500596,-0.001801705,-0.0016582239,-0.0008734618,0.00025074228,0.0012806449,0.0018179426,0.001653807,0.0008500428,-0.00028416846,-0.0013111961,-0.0018338278,-0.0016487908,-0.00082600856,0.0003179888,0.001341768,0.0018493233,0.0016432502,0.0008015169,-0.00035202331,-0.0013722273,-0.001864436,-0.0016370964,-0.0007764063,0.0003864436,0.0014026901,0.0018791675,0.0016304107,0.00075083954,-0.0004210684,-0.0014330264,-0.0018934894,-0.0016231452,-0.00072473515,0.00045607027,0.0014633486,0.0019074103,0.0016152457,0.0006980072,-0.000491267,-0.0014935299,-0.0019209083,-0.0016068032,-0.00067082536,0.00052674237,0.0015236796,0.001933986,0.0015977129,0.0006430172,-0.00056258094,-0.0015536741,-0.0019466274,-0.0015880725,-0.0006147568,0.0005985993,0.0015835633,0.001958829,0.0015777703,0.00058586773,-0.00063497113,-0.0016133934,-0.0019705805,-0.0015669112,-0.00055652834,0.0006715127,0.0016430466,0.0019818756,0.0015553767,0.0005265579,-0.0007083974,-0.001672622,-0.001992701,-0.0015432781,-0.00049613934,0.0007454416,0.0017020061,0.0020030567,0.001530553,0.00046508785,-0.00078281836,-0.0017312933,-0.0020129222,-0.001517132,-0.00043359035,0.00082034414,0.0017603742,0.0020223048,0.0015031367,0.00040155408,-0.00085819163,-0.001789339,-0.0020311768,-0.0014884319,-0.00036888247,0.0008961775,0.0018180829,0.0020395527,0.001473146,0.0003357684,-0.0009343852,-0.0018466909,-0.0020473972,-0.0014571373,-0.00030201764,0.0009728977,0.0018750628,0.002054732,0.0014405405,0.0002678269,-0.0010115324,-0.0019032364,-0.0020615344,-0.0014232072,-0.00023299841,0.0010504599,0.0019312442,0.002067775,0.0014052794,0.00019773249,-0.0010894989,-0.001958993,-0.002073485,-0.0013866789,-0.00016182796,0.0011288184,0.0019865558,0.0020786119,0.001367322,0.00012548862,-0.0011682383,-0.0020138442,-0.0020831951,-0.0013473601,-8.8613684e-5,0.0012079264,0.0020409257,0.0020871738,0.0013266279,5.10992e-5,-0.0012477037,-0.0020677177,-0.0020905947,-0.0013052839,-1.3153877e-5,0.0012876509,0.0020942811,0.0020933896,0.0012831562,-2.54314e-5,-0.001327847,-0.00212054,-0.0020956134,-0.0012604096,6.444486e-5,0.0013681154,0.0021465188,0.0020971892,0.0012368656,-0.00010409851,-0.0014086196,-0.0021722366,-0.0020981794,-0.0012126958,0.00014417771,0.0014491846,0.0021976263,0.0020985408,0.0011877147,-0.00018489723,-0.0014899716,-0.0022227324,-0.0020982206,-0.0011621008,0.00022603973,0.0015308083,0.0022474944,0.0020972937,0.0011357577,-0.00026771266,-0.001571853,-0.0022719507,-0.0020956632,-0.0011085822,0.00031002588,0.0016129359,0.002296047,0.0020934115,0.0010807627,-0.0003527584,-0.0016541327,-0.0023198142,-0.002090433,-0.001052097,0.00039613107,0.0016955162,0.0023432053,0.0020868185,0.0010227794,-0.00043992084,-0.0017369208,-0.00236623,-0.0020824536,-0.000992601,0.00048435057,0.0017784971,0.0023888901,0.002077438,0.00096176297,-0.00052919524,-0.0018200832,-0.0024111497,-0.0020717082,-0.0009300494,0.0005746798,0.001861826,0.0024330206,0.002065192,0.0008976679,-0.0006205774,-0.0019035675,-0.0024544746,-0.0020580017,-0.00086450647,0.00066711474,0.0019454502,0.002475515,0.0020500007,0.000830447,-0.0007140635,-0.0019873201,-0.0024961215,-0.0020413098,-0.00079564925,0.0007615947,0.0020292802,0.0025162897,0.0020318185,0.0007600518,-0.00080965064,-0.0020712873,-0.0025360067,-0.0020215493,-0.0007237063,0.0008582313,0.0021133344,0.0025552616,0.0020104917,0.0006864906,-0.00090733636,-0.0021554145,-0.002574044,-0.0019986352,-0.00064845546,0.0009569082,0.0021975215,0.0025923422,0.0019859686,0.0006095941,-0.001007062,-0.0022396476,-0.0026101454,-0.0019724802,-0.00056989957,0.0010577404,0.0022817547,0.0026274421,0.0019581593,0.00052936474,-0.0011089436,-0.0023239001,-0.0026442294,-0.001942994,-0.00048798215,0.0011606716,0.0023660443,0.0026604803,0.0019269724,0.0004457443,-0.001212925,-0.0024081802,-0.0026761906,-0.0019101287,-0.0004026435,0.0012657042,0.0024503013,0.002691348,0.00189236,0.00035867176,-0.00131901,-0.0024924004,-0.0027059407,-0.0018736982,-0.00031388667,0.0013728432,0.0025344703,0.0027199567,0.0018541308,0.00026814872,-0.0014272046,-0.0025765041,-0.002733383,-0.0018336449,-0.00022151435,0.0014820378,0.0026184954,0.0027462079,0.0018122268,0.00017397449,-0.0015374594,-0.0026604112,-0.0027584182,-0.0017898632,-0.00012551981,0.0015934132,0.0027022958,0.002770001,0.0017665401,7.614063e-5,-0.0016499009,-0.0027441168,-0.0027809637,-0.0017422434,-2.5826947e-5,0.0017069245,0.0027858664,0.0027912534,0.0017169581,-2.5431646e-5,-0.0017644857,-0.0028275377,-0.0028008758,-0.0016907274,7.7645906e-5,0.0018225873,0.002869124,0.002809817,0.001663421,-0.00013082703,-0.0018812319,-0.0029106184,-0.0028180627,-0.0016350797,0.00018491407,0.0019404222,0.0029520134,0.0028255987,0.0016056872,-0.00024006359,-0.0020001053,-0.0029933024,-0.0028324102,-0.0015752268,0.00029621625,0.0020603975,0.0030344778,0.0028384824,0.0015436811,-0.00035338514,-0.0021212457,-0.0030755186,-0.0028437998,-0.0015110323,0.00041158387,0.0021826543,0.003116448,0.002848347,0.0014772619,-0.00047082666,-0.0022446278,-0.0031572431,-0.0028521423,-0.001442351,0.0005311285,0.002307172,0.0031978972,0.0028551018,0.0014063498,-0.0005925046,-0.0023702907,-0.0032384028,-0.0028572418,-0.0013690994,0.00065497134,0.0024339906,0.0032787535,0.0028585452,0.0013306473,-0.0007184679,-0.002498278,-0.0033189424,-0.0028589943,-0.0012909719,0.0007831669,0.0025631594,0.0033589618,0.0028585703,0.00125005,-0.00084900967,-0.0026285904,-0.0033988056,-0.0028572553,-0.0012078588,0.0009160155,0.002694683,0.0034384667,0.00285503,0.0011643736,-0.000984205,-0.0027613936,-0.0034779364,-0.0028518746,-0.001119569,0.0010535992,0.0028287305,0.0035172128,0.0028478175,0.0010734185,-0.0011242206,-0.002896704,-0.0035562855,-0.002842741,-0.001025895,0.0011960926,0.0029653248,0.0035951491,0.002836672,0.0009770531,-0.00126924,-0.0030346035,-0.0036337953,-0.0028295862,-0.0009266974,0.0013436886,0.0031045522,0.003672218,0.0028214615,0.00087487913,-0.0014193836,-0.0031751841,-0.0037104106,-0.0028122738,-0.00082156557,0.0014965176,0.0032465132,0.0037483664,0.0028019978,0.00076672266,-0.0015750389,-0.0033185086,-0.0037860784,-0.002790608,-0.0007103149,0.0016549793,0.003391277,0.0038235523,0.0027780773,0.00065230514,-0.0017363726,-0.00346479,-0.0038607595,-0.0027643777,-0.00059265434,0.0018192537,0.0035390651,0.003897703,0.0027495485,0.00053132157,-0.00190366,-0.0036141216,-0.0039343773,-0.002733425,-0.00046826384,0.0019896312,0.0036899804,0.003970775,0.0027160416,0.00040353337,-0.0020772084,-0.0037666631,-0.00400689,-0.0026973658,-0.0003368897,0.0021664358,0.0038441936,0.0040427158,0.0026773626,0.00026837873,-0.002257275,-0.0039225966,-0.0040782467,-0.0026559965,-0.00019794799,0.0023499443,0.0040018638,0.004113476,0.0026332291,0.00012554211,-0.002444412,-0.004082096,-0.004148397,-0.0026090215,-5.1102706e-5,0.0025407323,0.004163287,0.0041830367,0.002583332,-2.5431822e-5,-0.0026389644,-0.0042454703,-0.0042173257,-0.0025561168,0.0001041266,0.0027391696,0.00432868,0.004251289,0.0025274204,-0.00018505046,-0.002841415,-0.004412954,-0.0042849197,-0.002497017,0.0002681659,0.002945769,0.004498333,0.004318212,0.0024649426,-0.00035376943,-0.0030523078,-0.0045848587,-0.0043511605,-0.0024311447,0.000441834,0.0031610231,0.0046725776,0.0043837586,0.0023955654,-0.0005324465,-0.0032721718,-0.004761539,-0.004416001,-0.0023581458,0.00062569935,0.0033857583,0.0048517734,0.0044478816,0.0023188216,-0.00072169054,-0.0035018774,-0.0049433927,-0.004479422,-0.0022775796,0.0008205249,0.0036206327,0.005036405,0.0045105633,0.0022342424,-0.00092231337,-0.0037421326,-0.005130904,-0.0045413263,-0.0021887864,0.0010271136,0.003866494,0.0052269497,0.004571736,0.0021411304,-0.0011351745,-0.0039938004,-0.005324618,-0.004601727,-0.002091189,0.001246571,0.00412427,0.005423988,0.004631323,0.0020389308,-0.0013614482,-0.0042580045,-0.0055251447,-0.004660518,-0.001984137,0.0014799617,0.0043951585,0.00562819,0.0046893083,0.0019267634,-0.0016022129,-0.0045358976,-0.0057332185,-0.004717726,-0.0018666966,0.001728511,0.0046803597,0.0058403406,0.004745691,0.0018038165,-0.0018589841,-0.0048288195,-0.0059496723,-0.004773235,-0.001738062,0.00199384,0.0049814438,0.0060613444,0.004800353,0.0016691582,-0.002133233,-0.005138456,-0.006175492,-0.0048270402,-0.0015970222,0.0022775426,0.005300099,0.006292263,0.0048533403,0.0015214916,-0.0024269617,-0.0054665958,-0.0064118216,-0.004879154,-0.0014424672,0.0025817738,0.00563831,0.0065343427,0.0049045216,0.0013596098,-0.0027422854,-0.0058155134,-0.0066600274,-0.0049294406,-0.0012727876,0.0029087572,0.00599854,0.0067890678,0.004953904,0.001181777,-0.0030816991,-0.006187759,-0.0069216997,-0.004977969,-0.0010863343,0.0032614337,0.00638353,0.007058171,0.0050015138,0.0009862803,-0.0034483953,-0.00658637,-0.007198757,-0.005024591,-0.0008811551,0.0036430561,0.0067967204,0.0073437737,0.005047197,0.00077072455,-0.003845858,-0.0070151067,-0.007493516,-0.005069396,-0.0006546397,0.004057529,0.0072421096,0.0076483646,0.0050910492,0.00053251645,-0.0042786202,-0.007478333,-0.007808719,-0.0051122187,-0.00040402912,0.004509827,0.007724555,0.007975021,0.0051329,0.0002685168,-0.0047519184,-0.007981523,-0.008147794,-0.00515309,-0.00012555548,0.0050056637,0.008250106,0.008327527,0.0051728697,-2.5431927e-5,-0.0052721817,-0.008531274,-0.008514859,-0.0051920693,0.0001850888,0.005552449,0.008826076,0.00871047,0.005210766,-0.00035402243,-0.0058476534,-0.009135791,-0.008915165,-0.0052289576,0.0005332612,0.006159128,0.009461748,0.009129729,0.0052466393,-0.0007236049,-0.0064883307,-0.009805473,-0.009355171,-0.0052638603,0.0009260805,0.0068370057,0.010168734,0.009592591,0.0052805697,-0.0011417896,-0.0072071315,-0.010553497,-0.009843271,-0.0052967095,0.0013721834,0.0076008136,0.010962008,0.010108591,0.005312326,-0.0016186507,-0.008020671,-0.011396883,-0.010390253,-0.0053274794,0.0018830687,0.008469555,0.011861081,0.010690089,0.0053420463,-0.0021673145,-0.00895077,-0.012358079,-0.01101033,-0.00535615,0.002473871,0.00946832,0.0128918765,0.011353575,0.0053696553,-0.002805401,-0.010026662,-0.013467206,-0.011722756,-0.0053826245,0.003165038,0.010631275,0.014089609,0.012121499,0.0053951344,-0.0035567437,-0.011288475,-0.014765671,-0.012553941,-0.0054070274,0.0039848867,0.01200581,0.015503293,0.013025176,0.0054184645,-0.004455092,-0.012792553,-0.016311979,-0.01354137,-0.005429272,0.004973886,0.013659713,0.017203322,0.01410987,0.0054396302,-0.005549267,-0.014621074,-0.018191561,-0.014739981,-0.005449344,0.0061914586,0.015693463,0.019294426,0.01544304,0.005458504,-0.006912873,-0.016898314,-0.020534249,-0.016233617,-0.005467229,0.0077295247,0.01826266,0.02193957,0.01713024,0.0054752836,-0.008662002,-0.019821666,-0.023547443,-0.018157097,-0.005482847,0.009737329,0.021621643,0.025406884,0.01934629,0.005489858,-0.010991689,-0.023724746,-0.02758411,-0.020741351,-0.0054963166,0.012474754,0.026216742,0.030170802,0.022403063,0.005502221,-0.014256201,-0.029219063,-0.033297658,-0.024418442,-0.005507572,0.016437676,0.032909643,0.03715764,0.026917007,0.0055122534,-0.019172845,-0.0375601,-0.042047992,-0.03010022,-0.005516483,0.022705762,0.04360655,0.048451737,0.03429966,0.0055201575,-0.027448876,-0.051796794,-0.0572097,-0.040101793,-0.0055232802,0.034158073,0.063528724,0.06992714,0.048651602,0.0055257403,-0.044385318,-0.08175364,-0.09009782,-0.062525675,-0.005527748,0.06189935,0.11396314,0.1270384,0.08898468,0.0055291154,-0.09884397,-0.18637808,-0.21668482,-0.15949233,-0.005529959,0.22808227,0.5000243,0.7543318,0.93478423,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/sincf/test/fixtures/julia/medium_positive.json b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/medium_positive.json new file mode 100644 index 000000000000..70cb8f6303a7 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/medium_positive.json @@ -0,0 +1 @@ +{"expected":[1.0,0.93478423,0.7543318,0.5000243,0.22808227,-0.005529959,-0.15949233,-0.21668482,-0.18637808,-0.09884397,0.0055291154,0.08898468,0.1270384,0.11396314,0.06189935,-0.005527748,-0.062525675,-0.09009782,-0.08175364,-0.044385318,0.0055257403,0.048651602,0.06992714,0.063528724,0.034158073,-0.0055232802,-0.040101793,-0.0572097,-0.051796794,-0.027448876,0.0055201575,0.03429966,0.048451737,0.04360655,0.022705762,-0.005516483,-0.03010022,-0.042047992,-0.0375601,-0.019172845,0.0055122534,0.026917007,0.03715764,0.032909643,0.016437676,-0.005507572,-0.024418442,-0.033297658,-0.029219063,-0.014256201,0.005502221,0.022403063,0.030170802,0.026216742,0.012474754,-0.0054963166,-0.020741351,-0.02758411,-0.023724746,-0.010991689,0.005489858,0.01934629,0.025406884,0.021621643,0.009737329,-0.005482847,-0.018157097,-0.023547443,-0.019821666,-0.008662002,0.0054752836,0.01713024,0.02193957,0.01826266,0.0077295247,-0.005467229,-0.016233617,-0.020534249,-0.016898314,-0.006912873,0.005458504,0.01544304,0.019294426,0.015693463,0.0061914586,-0.005449344,-0.014739981,-0.018191561,-0.014621074,-0.005549267,0.0054396302,0.01410987,0.017203322,0.013659713,0.004973886,-0.005429272,-0.01354137,-0.016311979,-0.012792553,-0.004455092,0.0054184645,0.013025176,0.015503293,0.01200581,0.0039848867,-0.0054070274,-0.012553941,-0.014765671,-0.011288475,-0.0035567437,0.0053951344,0.012121499,0.014089609,0.010631275,0.003165038,-0.0053826245,-0.011722756,-0.013467206,-0.010026662,-0.002805401,0.0053696553,0.011353575,0.0128918765,0.00946832,0.002473871,-0.00535615,-0.01101033,-0.012358079,-0.00895077,-0.0021673145,0.0053420463,0.010690089,0.011861081,0.008469555,0.0018830687,-0.0053274794,-0.010390253,-0.011396883,-0.008020671,-0.0016186507,0.005312326,0.010108591,0.010962008,0.0076008136,0.0013721834,-0.0052967095,-0.009843271,-0.010553497,-0.0072071315,-0.0011417896,0.0052805697,0.009592591,0.010168734,0.0068370057,0.0009260805,-0.0052638603,-0.009355171,-0.009805473,-0.0064883307,-0.0007236049,0.0052466393,0.009129729,0.009461748,0.006159128,0.0005332612,-0.0052289576,-0.008915165,-0.009135791,-0.0058476534,-0.00035402243,0.005210766,0.00871047,0.008826076,0.005552449,0.0001850888,-0.0051920693,-0.008514859,-0.008531274,-0.0052721817,-2.5431927e-5,0.0051728697,0.008327527,0.008250106,0.0050056637,-0.00012555548,-0.00515309,-0.008147794,-0.007981523,-0.0047519184,0.0002685168,0.0051329,0.007975021,0.007724555,0.004509827,-0.00040402912,-0.0051122187,-0.007808719,-0.007478333,-0.0042786202,0.00053251645,0.0050910492,0.0076483646,0.0072421096,0.004057529,-0.0006546397,-0.005069396,-0.007493516,-0.0070151067,-0.003845858,0.00077072455,0.005047197,0.0073437737,0.0067967204,0.0036430561,-0.0008811551,-0.005024591,-0.007198757,-0.00658637,-0.0034483953,0.0009862803,0.0050015138,0.007058171,0.00638353,0.0032614337,-0.0010863343,-0.004977969,-0.0069216997,-0.006187759,-0.0030816991,0.001181777,0.004953904,0.0067890678,0.00599854,0.0029087572,-0.0012727876,-0.0049294406,-0.0066600274,-0.0058155134,-0.0027422854,0.0013596098,0.0049045216,0.0065343427,0.00563831,0.0025817738,-0.0014424672,-0.004879154,-0.0064118216,-0.0054665958,-0.0024269617,0.0015214916,0.0048533403,0.006292263,0.005300099,0.0022775426,-0.0015970222,-0.0048270402,-0.006175492,-0.005138456,-0.002133233,0.0016691582,0.004800353,0.0060613444,0.0049814438,0.00199384,-0.001738062,-0.004773235,-0.0059496723,-0.0048288195,-0.0018589841,0.0018038165,0.004745691,0.0058403406,0.0046803597,0.001728511,-0.0018666966,-0.004717726,-0.0057332185,-0.0045358976,-0.0016022129,0.0019267634,0.0046893083,0.00562819,0.0043951585,0.0014799617,-0.001984137,-0.004660518,-0.0055251447,-0.0042580045,-0.0013614482,0.0020389308,0.004631323,0.005423988,0.00412427,0.001246571,-0.002091189,-0.004601727,-0.005324618,-0.0039938004,-0.0011351745,0.0021411304,0.004571736,0.0052269497,0.003866494,0.0010271136,-0.0021887864,-0.0045413263,-0.005130904,-0.0037421326,-0.00092231337,0.0022342424,0.0045105633,0.005036405,0.0036206327,0.0008205249,-0.0022775796,-0.004479422,-0.0049433927,-0.0035018774,-0.00072169054,0.0023188216,0.0044478816,0.0048517734,0.0033857583,0.00062569935,-0.0023581458,-0.004416001,-0.004761539,-0.0032721718,-0.0005324465,0.0023955654,0.0043837586,0.0046725776,0.0031610231,0.000441834,-0.0024311447,-0.0043511605,-0.0045848587,-0.0030523078,-0.00035376943,0.0024649426,0.004318212,0.004498333,0.002945769,0.0002681659,-0.002497017,-0.0042849197,-0.004412954,-0.002841415,-0.00018505046,0.0025274204,0.004251289,0.00432868,0.0027391696,0.0001041266,-0.0025561168,-0.0042173257,-0.0042454703,-0.0026389644,-2.5431822e-5,0.002583332,0.0041830367,0.004163287,0.0025407323,-5.1102706e-5,-0.0026090215,-0.004148397,-0.004082096,-0.002444412,0.00012554211,0.0026332291,0.004113476,0.0040018638,0.0023499443,-0.00019794799,-0.0026559965,-0.0040782467,-0.0039225966,-0.002257275,0.00026837873,0.0026773626,0.0040427158,0.0038441936,0.0021664358,-0.0003368897,-0.0026973658,-0.00400689,-0.0037666631,-0.0020772084,0.00040353337,0.0027160416,0.003970775,0.0036899804,0.0019896312,-0.00046826384,-0.002733425,-0.0039343773,-0.0036141216,-0.00190366,0.00053132157,0.0027495485,0.003897703,0.0035390651,0.0018192537,-0.00059265434,-0.0027643777,-0.0038607595,-0.00346479,-0.0017363726,0.00065230514,0.0027780773,0.0038235523,0.003391277,0.0016549793,-0.0007103149,-0.002790608,-0.0037860784,-0.0033185086,-0.0015750389,0.00076672266,0.0028019978,0.0037483664,0.0032465132,0.0014965176,-0.00082156557,-0.0028122738,-0.0037104106,-0.0031751841,-0.0014193836,0.00087487913,0.0028214615,0.003672218,0.0031045522,0.0013436886,-0.0009266974,-0.0028295862,-0.0036337953,-0.0030346035,-0.00126924,0.0009770531,0.002836672,0.0035951491,0.0029653248,0.0011960926,-0.001025895,-0.002842741,-0.0035562855,-0.002896704,-0.0011242206,0.0010734185,0.0028478175,0.0035172128,0.0028287305,0.0010535992,-0.001119569,-0.0028518746,-0.0034779364,-0.0027613936,-0.000984205,0.0011643736,0.00285503,0.0034384667,0.002694683,0.0009160155,-0.0012078588,-0.0028572553,-0.0033988056,-0.0026285904,-0.00084900967,0.00125005,0.0028585703,0.0033589618,0.0025631594,0.0007831669,-0.0012909719,-0.0028589943,-0.0033189424,-0.002498278,-0.0007184679,0.0013306473,0.0028585452,0.0032787535,0.0024339906,0.00065497134,-0.0013690994,-0.0028572418,-0.0032384028,-0.0023702907,-0.0005925046,0.0014063498,0.0028551018,0.0031978972,0.002307172,0.0005311285,-0.001442351,-0.0028521423,-0.0031572431,-0.0022446278,-0.00047082666,0.0014772619,0.002848347,0.003116448,0.0021826543,0.00041158387,-0.0015110323,-0.0028437998,-0.0030755186,-0.0021212457,-0.00035338514,0.0015436811,0.0028384824,0.0030344778,0.0020603975,0.00029621625,-0.0015752268,-0.0028324102,-0.0029933024,-0.0020001053,-0.00024006359,0.0016056872,0.0028255987,0.0029520134,0.0019404222,0.00018491407,-0.0016350797,-0.0028180627,-0.0029106184,-0.0018812319,-0.00013082703,0.001663421,0.002809817,0.002869124,0.0018225873,7.7645906e-5,-0.0016907274,-0.0028008758,-0.0028275377,-0.0017644857,-2.5431646e-5,0.0017169581,0.0027912534,0.0027858664,0.0017069245,-2.5826947e-5,-0.0017422434,-0.0027809637,-0.0027441168,-0.0016499009,7.614063e-5,0.0017665401,0.002770001,0.0027022958,0.0015934132,-0.00012551981,-0.0017898632,-0.0027584182,-0.0026604112,-0.0015374594,0.00017397449,0.0018122268,0.0027462079,0.0026184954,0.0014820378,-0.00022151435,-0.0018336449,-0.002733383,-0.0025765041,-0.0014272046,0.00026814872,0.0018541308,0.0027199567,0.0025344703,0.0013728432,-0.00031388667,-0.0018736982,-0.0027059407,-0.0024924004,-0.00131901,0.00035867176,0.00189236,0.002691348,0.0024503013,0.0012657042,-0.0004026435,-0.0019101287,-0.0026761906,-0.0024081802,-0.001212925,0.0004457443,0.0019269724,0.0026604803,0.0023660443,0.0011606716,-0.00048798215,-0.001942994,-0.0026442294,-0.0023239001,-0.0011089436,0.00052936474,0.0019581593,0.0026274421,0.0022817547,0.0010577404,-0.00056989957,-0.0019724802,-0.0026101454,-0.0022396476,-0.001007062,0.0006095941,0.0019859686,0.0025923422,0.0021975215,0.0009569082,-0.00064845546,-0.0019986352,-0.002574044,-0.0021554145,-0.00090733636,0.0006864906,0.0020104917,0.0025552616,0.0021133344,0.0008582313,-0.0007237063,-0.0020215493,-0.0025360067,-0.0020712873,-0.00080965064,0.0007600518,0.0020318185,0.0025162897,0.0020292802,0.0007615947,-0.00079564925,-0.0020413098,-0.0024961215,-0.0019873201,-0.0007140635,0.000830447,0.0020500007,0.002475515,0.0019454502,0.00066711474,-0.00086450647,-0.0020580017,-0.0024544746,-0.0019035675,-0.0006205774,0.0008976679,0.002065192,0.0024330206,0.001861826,0.0005746798,-0.0009300494,-0.0020717082,-0.0024111497,-0.0018200832,-0.00052919524,0.00096176297,0.002077438,0.0023888901,0.0017784971,0.00048435057,-0.000992601,-0.0020824536,-0.00236623,-0.0017369208,-0.00043992084,0.0010227794,0.0020868185,0.0023432053,0.0016955162,0.00039613107,-0.001052097,-0.002090433,-0.0023198142,-0.0016541327,-0.0003527584,0.0010807627,0.0020934115,0.002296047,0.0016129359,0.00031002588,-0.0011085822,-0.0020956632,-0.0022719507,-0.001571853,-0.00026771266,0.0011357577,0.0020972937,0.0022474944,0.0015308083,0.00022603973,-0.0011621008,-0.0020982206,-0.0022227324,-0.0014899716,-0.00018489723,0.0011877147,0.0020985408,0.0021976263,0.0014491846,0.00014417771,-0.0012126958,-0.0020981794,-0.0021722366,-0.0014086196,-0.00010409851,0.0012368656,0.0020971892,0.0021465188,0.0013681154,6.444486e-5,-0.0012604096,-0.0020956134,-0.00212054,-0.001327847,-2.54314e-5,0.0012831562,0.0020933896,0.0020942811,0.0012876509,-1.3153877e-5,-0.0013052839,-0.0020905947,-0.0020677177,-0.0012477037,5.10992e-5,0.0013266279,0.0020871738,0.0020409257,0.0012079264,-8.8613684e-5,-0.0013473601,-0.0020831951,-0.0020138442,-0.0011682383,0.00012548862,0.001367322,0.0020786119,0.0019865558,0.0011288184,-0.00016182796,-0.0013866789,-0.002073485,-0.001958993,-0.0010894989,0.00019773249,0.0014052794,0.002067775,0.0019312442,0.0010504599,-0.00023299841,-0.0014232072,-0.0020615344,-0.0019032364,-0.0010115324,0.0002678269,0.0014405405,0.002054732,0.0018750628,0.0009728977,-0.00030201764,-0.0014571373,-0.0020473972,-0.0018466909,-0.0009343852,0.0003357684,0.001473146,0.0020395527,0.0018180829,0.0008961775,-0.00036888247,-0.0014884319,-0.0020311768,-0.001789339,-0.00085819163,0.00040155408,0.0015031367,0.0020223048,0.0017603742,0.00082034414,-0.00043359035,-0.001517132,-0.0020129222,-0.0017312933,-0.00078281836,0.00046508785,0.001530553,0.0020030567,0.0017020061,0.0007454416,-0.00049613934,-0.0015432781,-0.001992701,-0.001672622,-0.0007083974,0.0005265579,0.0015553767,0.0019818756,0.0016430466,0.0006715127,-0.00055652834,-0.0015669112,-0.0019705805,-0.0016133934,-0.00063497113,0.00058586773,0.0015777703,0.001958829,0.0015835633,0.0005985993,-0.0006147568,-0.0015880725,-0.0019466274,-0.0015536741,-0.00056258094,0.0006430172,0.0015977129,0.001933986,0.0015236796,0.00052674237,-0.00067082536,-0.0016068032,-0.0019209083,-0.0014935299,-0.000491267,0.0006980072,0.0016152457,0.0019074103,0.0014633486,0.00045607027,-0.00072473515,-0.0016231452,-0.0018934894,-0.0014330264,-0.0004210684,0.00075083954,0.0016304107,0.0018791675,0.0014026901,0.0003864436,-0.0007764063,-0.0016370964,-0.001864436,-0.0013722273,-0.00035202331,0.0008015169,0.0016432502,0.0018493233,0.001341768,0.0003179888,-0.00082600856,-0.0016487908,-0.0018338278,-0.0013111961,-0.00028416846,0.0008500428,0.001653807,0.0018179426,0.0012806449,0.00025074228,-0.0008734618,-0.0016582239,-0.001801705,-0.0012500596,-0.00021753953,0.0008964221,0.0016621241,0.0017850909,0.0012193826,0.00018473898,-0.00091877085,-0.0016654391,-0.001768143,-0.0011887514,-0.00015225734,0.0009406604,0.0016682448,0.0017508325,0.0011580425,0.000120012715,-0.0009619424,-0.0016704801,-0.0017332069,-0.0011273953,-8.818152e-5,0.0009826929,0.0016722138,0.0017152317,0.0010966841,5.6596076e-5,-0.0010029833,-0.0016733909,-0.0016969605,-0.0010660504,-2.5431085e-5,0.0010226729,0.0016740484,0.001678353,0.0010353666,-5.4796365e-6,-0.0010419021,-0.0016742166,-0.0016594675,-0.0010047754,3.5963312e-5,0.0010605353,0.0016738498,0.0016402878,0.0009742168,-6.618443e-5,-0.001078708,-0.0016730021,-0.0016207919,-0.00094362785,9.5972326e-5,0.0010962902,0.0016716339,0.0016010455,0.0009131544,-0.00012540737,-0.001113412,-0.0016697933,-0.0015809964,-0.00088266376,0.00015456793,0.0011299485,0.0016674467,0.001560715,0.0008523036,-0.00018328674,-0.0011459654,-0.0016646362,-0.0015401442,-0.00082193903,0.00021172341,0.0011615227,0.0016613343,0.0015193591,0.000791719,-0.0002397132,-0.0011765035,-0.0016575647,-0.0014982977,-0.0007615078,0.00026741344,0.0011910261,0.001653344,0.0014770399,0.0007314548,-0.0002946621,-0.001204978,-0.0016486542,-0.0014555575,-0.0007014233,0.0003216141,0.0012184728,0.0016435229,0.0014338192,0.0006715636,-0.00034811016,-0.0012314039,-0.0016379369,-0.0014119105,-0.00064181024,0.00037430276,0.001243879,0.0016319187,0.0013897589,0.0006120969,-0.00040003553,-0.0012557971,-0.0016254607,-0.0013674542,-0.0005825749,0.0004253832,0.0012672612,0.0016185796,0.00134492,0.0005531052,-0.00045041766,-0.0012781753,-0.001611274,-0.0013222495,-0.0005238395,0.00047498723,0.0012885917,0.0016035541,0.0012993631,0.00049463793,-0.0004992375,-0.0012985569,-0.0015954253,-0.0012763571,-0.00046565259,0.0005230201,0.0013079834,0.0015868946,0.001253195,0.00043674326,-0.0005464775,-0.0013169615,-0.0015779645,-0.0012298367,-0.00040806187,0.0005694647,0.0013254085,0.0015686473,0.0012063837,0.00037954107,-0.00059212133,-0.0013334096,-0.001558941,-0.0011827478,-0.00035111367,0.00061430567,0.0013408879,0.0015488624,0.0011590336,0.00032293113,-0.00063608633,-0.0013479233,-0.0015384047,-0.0011351494,-0.0002948532,0.0006575288,0.0013544442,0.0015275899,0.001111203,0.00026703096,-0.0006784967,-0.0013604915,-0.001516406,-0.0010870999,-0.00023932436,0.0006991217,0.0013661007,0.0015048803,0.0010629504,0.00021188389,-0.000719271,-0.0013712087,-0.0014930092,-0.001038657,-0.00018456987,0.0007390729,0.0013758824,0.0014807843,0.0010143328,0.00015753196,-0.00075839873,-0.0013800636,-0.0014682405,-0.0009899322,-0.00013070283,0.00077737286,0.0013838146,0.0014553533,0.0009654076,0.00010401598,-0.0007958707,-0.0013870823,-0.0014421622,-0.0009408747,-7.761946e-5,0.00081395375,0.0013899239,0.0014286386,0.0009162305,5.137541e-5,-0.00083167956,-0.001392292,-0.0014148259,-0.0008915934,-2.54307e-5,0.0008489296,0.001394216,0.0014006916,0.0008668576,-3.5158484e-7,-0.0008658192,-0.0013957208,-0.0013862833,-0.0008421434,2.5825937e-5,0.00088223367,0.0013967666,0.0013715875,0.0008173434,-5.1128158e-5,-0.00089828484,-0.0013973981,-0.0013565861,-0.0007925794,7.6114266e-5,0.0009138621,0.0013975806,0.0013413336,0.0007678007,-0.00010091882,-0.0009290732,-0.0013973541,-0.0013257862,-0.0007429551,0.00012539949,0.00094381213,0.0013966887,0.0013100031,0.00071816647,-0.0001496214,-0.0009581827,-0.0013956199,-0.0012939363,-0.0006933233,0.00017364812,0.0009720828,0.0013941228,0.0012776483,0.000668551,-0.00019734005,-0.0009855642,-0.0013922276,-0.001261088,-0.00064373645,0.00022082808,0.0009986744,0.0013899151,0.0012443213,0.0006190061,-0.00024397457,-0.001011318,-0.0013872016,-0.0012273258,-0.0005942458,0.00026690864,0.0010235888,0.0013840991,0.0012100746,0.0005695828,-0.00028949493,-0.0010353958,-0.0013805957,-0.0011926396,-0.0005449629,0.00031186055,0.001046829,0.0013767093,0.0011749602,0.000520331,-0.00033387245,-0.0010578015,-0.0013724332,-0.0011571118,-0.0004958156,0.00035559243,0.0010683994,0.001367781,0.0011390306,0.0004713,-0.00037708005,-0.0010785405,-0.00136275,-0.0011207948,-0.00044691318,0.00039820583,0.0010882674,0.0013573496,0.0011023376,0.00042253797,-0.00041909196,-0.0010976191,-0.0013515824,-0.0010837406,-0.00039830356,0.00043961126,0.00110652,0.0013454541,0.0010649336,0.0003740922,-0.00045988368,-0.0011150454,-0.0013389672,-0.0010460013,-0.00035003343,0.00047978494,0.0011231245,0.0013321307,0.0010269112,0.00032600912,-0.00049943244,-0.0011308288,-0.0013249427,-0.0010076285,-0.00030214872,0.00051870476,0.0011380913,0.001317417,0.0009882419,0.0002783959,-0.00053765904,-0.0011449796,-0.0013095475,-0.000968674,-0.00025469423,0.0005563499,0.0011514316,0.001301352,0.0009490166,0.00023117292,-0.0005746603,-0.001157481,-0.0012928206,-0.0009291894,-0.00020771369,0.00059270114,0.0011631576,0.0012839753,0.0009092865,0.0001844454,-0.00061035843,-0.0011684063,-0.0012748131,-0.00088922563,-0.00016124987,0.0006277406,0.0011732837,0.0012653269,0.0008691028,0.00013825552,-0.00064473646,-0.0011777389,-0.0012555452,-0.0008488798,-0.00011534443,0.0006614518,0.0011818246,0.0012454476,0.00082851615,9.2644375e-5,-0.0006777786,-0.0011854945,-0.001235067,-0.00080811104,-7.009885e-5,0.0006938198,0.0011887968,0.0012243788,0.00078757684,4.765197e-5,-0.00070947065,-0.0011916897,-0.0012134201,-0.00076701463,-2.5430243e-5,0.00072478165,0.0011942177,0.0012021624,0.0007463348,3.3171352e-6,-0.0007397998,-0.0011963433,-0.0011906466,-0.00072564033,1.8561834e-5,0.00075442577,0.0011980891,0.0011788406,0.0007048396,-4.032243e-5,-0.0007687547,-0.001199474,-0.001166789,-0.0006840374,6.184027e-5,0.0007826906,0.0012004672,0.0011544778,0.00066319073,-8.317098e-5,-0.0007962801,-0.0012010887,-0.0011419128,-0.0006423054,0.00010442805,0.0008096113,0.0012013669,0.001129052,0.0006212858,-0.00012537088,-0.0008225035,-0.0012012508,-0.0011159935,-0.0006003408,0.0001461137,0.00083504675,0.0012007712,0.0011026973,0.0005793752,-0.0001666524,-0.00084724004,-0.0011999311,-0.0010891688,-0.00055839494,0.00018698296,0.00085908297,0.0011987512,0.0010753599,0.00053730176,-0.0002072156,-0.0008706551,-0.0011971972,-0.0010613818,-0.0005163091,0.0002271172,0.0008817937,0.001195292,0.0010471881,0.0004953193,-0.00024679888,-0.0008925803,-0.0011930384,-0.001032784,-0.0004743381,0.00026625692,0.00090301485,0.0011904401,0.0010181755,0.00045337106,-0.0002855986,-0.00091317005,-0.0011875078,-0.0010033065,-0.0004323178,0.0003045976,0.00092289783,0.0011842276,0.000988304,0.00041139583,-0.0003233622,-0.00093227293,-0.001180613,-0.00097311346,-0.000390505,0.00034188904,0.00094129547,0.001176667,0.0009577406,0.00036965084,-0.00036017472,-0.0009499657,-0.0011723926,-0.00094212417,-0.00034873158,0.0003783221,0.00095834775,0.0011677931,0.0009264022,0.00032796693,-0.00039611472,-0.00096631196,-0.0011628729,-0.00091051473,-0.00030725522,0.00041365667,0.00097392476,0.001157636,0.00089446735,0.00028660183,-0.0004309449,-0.0009811864,-0.0011520862,-0.00087826565,-0.00026590435,0.0004480783,0.0009881542,0.0011462171,0.0008618422,0.00024538333,-0.00046484923,-0.0009947137,-0.001140051,-0.0008453476,-0.00022493638,0.00048135797,0.001000924,0.0011335837,0.00082871557,0.00020456858,-0.00049760164,-0.0010067859,-0.0011268189,-0.00081195164,-0.00018428506,0.00051357783,0.0010123005,0.0011197432,0.00079498405,0.0001639833,-0.0005293798,-0.0010175157,-0.0011123942,-0.0007779722,-0.00014388346,0.0005448121,0.0010223363,0.0011047598,0.0007608454,0.00012388283,-0.0005599695,-0.0010268125,-0.0010968443,-0.0007436092,-0.000103986225,0.00057484984,0.0010309456,0.0010886523,0.00072626903,8.409171e-5,-0.00058954157,-0.0010347766,-0.001080161,-0.0007087482,-6.441784e-5,0.0006038598,0.0010382253,0.0010714261,0.00069121603,4.4862303e-5,-0.00061789446,-0.0010413348,-0.0010624274,-0.00067359675,-2.5429717e-5,0.00063164375,0.0010441069,0.0010531689,0.0006558958,6.124641e-6,-0.0006451058,-0.0010465751,-0.0010436221,-0.0006380329,1.315364e-5,0.0006583628,0.0010486748,0.0010338561,0.0006201843,-3.2189837e-5,-0.00067124376,-0.0010504418,-0.0010238435,-0.00060227065,5.108516e-5,0.0006838324,0.0010518779,0.0010135893,0.00058429723,-6.9835296e-5,-0.0006961271,-0.001052985,-0.0010030977,-0.00056626956,8.853944e-5,0.0007082049,0.0010537881,0.0009923324,0.0005481038,-0.00010698599,-0.0007199065,-0.0010542413,-0.0009813784,-0.0005299832,0.00012527478,0.00073131,0.0010543715,0.0009702009,0.00051182456,-0.00014340172,-0.00074241456,-0.0010541809,-0.00095880457,-0.00049363327,0.00016136284,0.00075321895,0.0010536874,0.0009471471,0.00047532312,-0.00017925478,-0.000763793,-0.0010528602,-0.00093532563,-0.00045708191,0.00019687187,0.00077399256,0.001051719,0.0009232994,0.00043882392,-0.00021431157,-0.0007838892,-0.0010502661,-0.00091107324,-0.0004205544,0.00023157013,0.0007934822,0.0010485043,0.0008986518,0.00040218545,-0.00024874165,-0.0008028354,-0.0010464428,-0.00088598614,-0.00038390816,0.0002656263,0.00081181736,0.0010440688,0.0008731873,0.00036563494,-0.000282319,-0.0008204938,-0.0010413936,-0.0008602077,-0.0003473709,0.0002988164,0.0008288642,0.00103842,0.00084705226,0.0003291211,-0.00031511503,-0.00083692843,-0.0010351504,-0.00083366694,-0.0003107961,0.00033130546,0.0008447428,0.0010315866,0.00082017295,0.0002925898,-0.00034719598,-0.00085219205,-0.0010277327,-0.0008065178,-0.00027441283,0.00036287808,0.00085933437,0.0010235921,0.0007927062,0.0002562702,-0.00037834872,-0.00086616975,-0.0010191675,-0.0007787431,-0.00023807157,0.00039369497,0.0008727487,0.0010144532,0.00076456903,0.0002200121,-0.00040873268,-0.0008789688,-0.0010094686,-0.0007503168,-0.00020200155,0.00042355008,0.00088488235,0.0010042093,0.00073592784,0.00018404471,-0.00043814437,-0.0008904897,-0.0009986787,-0.0007214073,-0.00016614632,0.00045251288,0.00089583494,0.0009928648,0.0007066913,0.00014821583,-0.00046673804,-0.0009008292,-0.0009868002,-0.0006919212,-0.00013044843,0.00048064598,0.0009055186,0.0009804743,0.0006770343,0.000112753485,-0.00049432047,-0.00090990355,-0.0009738906,-0.00066203554,-9.5135525e-5,0.00050775905,0.0009139849,0.00096705265,0.00064685766,7.75043e-5,-0.00052104006,-0.00091779884,-0.0009599408,-0.0006316492,-6.0054015e-5,0.00053399865,0.00092127343,0.00095260335,0.0006163438,4.269417e-5,-0.0005467146,-0.00092444685,-0.00094502245,-0.0006009464,-2.5429123e-5,0.0005591857,0.0009273199,0.00093720166,0.00058546197,8.263191e-6,-0.00057140994,-0.0009299229,-0.0009291155,-0.0005698192,8.892957e-6,0.00058346026,0.00093219697,0.00092082476,0.00055417477,-2.5847574e-5,-0.0005951838,-0.0009341743,-0.0009123053,-0.000538458,4.2690393e-5,0.00060665485,0.00093585585,0.0009035612,0.000522674,-5.9417303e-5,-0.0006178718,-0.00093724305,-0.00089459616,-0.00050674874,7.611643e-5,0.0006289027,0.00093835813,0.0008853777,0.0004908443,-9.259898e-5,-0.00063960504,-0.0009391593,-0.0008759812,-0.00047488717,0.000108953594,0.0006500484,0.00093967066,0.0008663757,0.00045888234,-0.00012517638,-0.0006602314,-0.0009398937,-0.00085656496,-0.00044283457,0.00014126349,0.00067021756,0.00093984435,0.0008465115,0.00042666733,-0.00015730101,-0.0006798747,-0.0009394942,-0.0008363015,-0.0004105479,0.00017310499,0.0006892676,0.0009388609,0.00082589866,0.0003944001,-0.0001887621,-0.00069839525,-0.0009379464,-0.000815307,-0.00037822867,0.0002042688,0.00070725667,0.00093675265,0.0008045309,0.00036195523,-0.00021970898,-0.00071590906,-0.0009352879,-0.00079352636,-0.0003457505,0.0002349036,0.0007242338,0.00093354005,0.00078239234,0.00032953644,-0.00024993732,-0.0007322896,-0.0009315191,-0.0007710863,-0.0003133177,0.00026480676,0.00074007583,0.0009292272,0.0007596126,0.000297099,-0.0002795087,-0.0007476443,-0.00092666666,-0.00074792304,-0.00028080033,0.0002941239,0.00075488794,0.0009238383,0.00073612557,0.00026459532,-0.00030848035,-0.0007618602,-0.0009207459,-0.00072417327,-0.00024840422,0.0003226597,0.00076856086,0.00091739185,0.0007120705,0.00023223156,-0.00033665902,-0.00077498925,-0.0009137787,-0.0006997649,-0.00021599664,0.00035055613,0.0007811907,0.00090990146,0.0006873731,0.00019987434,-0.00036418551,-0.00078707264,-0.0009057763,-0.0006748439,-0.00018378402,0.00037762604,0.000792682,0.00090139994,0.00066218164,0.0001677301,-0.00039087495,-0.00079801853,-0.0008967749,-0.00064939086,-0.00015171702,0.00040392953,0.000803122,0.0008918904,0.0006364143,0.0001356636,-0.00041686374,-0.00080791174,-0.000886775,-0.00062337855,-0.000119745244,0.0004295209,0.00081242895,0.0008814193,0.00061022746,0.00010388071,-0.00044197595,-0.000816674,-0.0008758263,-0.00059696543,-8.807427e-5,0.00045422648,0.0008206471,0.0008699991,0.00058353203,7.224492e-5,-0.00046634296,-0.0008243811,-0.00086391973,-0.0005700607,-5.6567413e-5,0.0004781765,0.00082781014,0.0008576314,0.0005564918,4.096056e-5,-0.0004897985,-0.0008309687,-0.0008511178,-0.00054282974,-2.5428455e-5,0.00050120696,0.00083385746,0.00084438204,0.00052907906,9.975161e-6,-0.0005124684,-0.0008365032,-0.0008374014,-0.00051517575,5.4796096e-6,0.0005234424,0.0008388527,0.0008302299,0.00050126045,-2.0763031e-5,-0.0005341967,-0.0008409345,-0.0008228459,-0.00048726986,3.595571e-5,0.0005447294,0.00084274943,0.0008152528,0.00047320846,-5.1053765e-5,-0.00055503874,-0.0008442985,-0.0008074539,-0.00045900984,6.61365e-5,0.0005651862,0.0008456017,0.0007994202,0.00044481957,-8.1033504e-5,-0.00057504245,-0.0008466207,-0.0007912187,-0.00043057185,9.582449e-5,0.0005846703,0.0008473771,0.00078282173,0.00041627107,-0.00011050579,-0.00059406814,-0.00084787206,-0.0007742328,-0.00040192163,0.00012507374,0.0006032933,0.00084812,0.00076541794,0.00038745455,-0.00013960591,-0.00061222573,-0.0008480946,-0.0007564544,-0.00037302065,0.00015393598,0.000620924,0.0008478118,0.00074730965,0.00035855136,-0.00016814207,-0.00062938686,-0.0008472731,-0.0007379871,-0.00034405102,0.00018222071,0.0006376132,0.0008464801,0.0007284485,0.0003294489,-0.00019624768,-0.0006456545,-0.00084544014,-0.0007187805,-0.00031489923,0.00021006083,0.0006534031,0.00084414176,0.0007089458,0.00030033157,-0.00022373651,-0.0006609121,-0.0008425939,-0.0006989482,-0.00028575025,0.00023727148,0.0006681804,0.0008407984,0.0006887915,0.00027115954,-0.00025073942,-0.000675255,-0.0008387575,-0.0006784322,-0.00025648723,0.00026398295,0.00068203855,0.000836471,0.0006679675,0.00024189036,-0.00027707644,-0.00068857905,-0.00083394244,-0.0006573552,-0.0002272969,0.0002900169,0.00069487613,0.000831174,0.000646599,0.00021271106,-0.00030280135,-0.00070092914,-0.00082816766,-0.0006356517,-0.00019805985,0.00031550037,0.00070677896,0.0008249189,0.00062461855,0.0001835017,-0.0003279635,-0.0007123412,-0.00082144194,-0.0006134532,-0.00016896367,0.00034026208,0.0007176583,0.0008177336,0.0006021597,0.00015444991,-0.0003523935,-0.0007227298,-0.00081379607,-0.00059074187,-0.00013996447,0.00036442545,0.00072759157,0.0008096198,0.0005791482,0.00012543391,-0.00037621372,-0.0007321701,-0.00080522994,-0.0005674929,-0.000111017296,0.00038782696,0.00073650276,0.0008006181,0.00055572524,9.664113e-5,-0.00039926273,-0.00074058946,-0.0007957869,-0.0005438492,-8.230938e-5,0.00041051864,0.00074443035,0.0007907214,0.00053181016,6.794859e-5,-0.00042165854,-0.000748055,-0.0007854576,-0.00051972875,-5.3717547e-5,0.00043254677,0.0007514033,0.00077998213,0.000507551,3.9542643e-5,-0.00044324817,-0.0007545064,-0.0007742976,-0.00049528107,-2.5427718e-5,0.0004537607,0.0007573646,0.0007684067,0.00048292286,1.1376578e-5,-0.0004641448,-0.0007600026,-0.00076228887,-0.0004704184,2.6836942e-6,0.00047427227,0.000762371,0.0007559925,0.00045789525,-1.6595806e-5,-0.00048420476,-0.000764496,-0.0007494982,-0.00044529603,3.0432935e-5,0.0004939402,0.000766378,0.00074280886,0.00043262483,-4.4191424e-5,-0.0005034769,-0.000768018,-0.00073589926,-0.00041982124,5.794337e-5,0.00051287067,0.000769434,0.00072882755,0.0004070176,-7.15335e-5,-0.00052200345,-0.00077059056,-0.0007215698,-0.0003941541,8.5034255e-5,0.0005309322,0.00077150733,0.00071412895,0.0003812348,-9.844215e-5,-0.0005396555,-0.00077218516,-0.00070650806,-0.00036826375,0.00011182813,0.00054822525,0.0007726373,0.00069867645,0.00035517814,-0.00012503963,-0.0005565318,-0.0007728392,-0.000690704,-0.00034211524,0.00013814803,0.00056462846,0.00077280536,0.00068256084,0.0003290127,-0.00015115004,-0.00057251373,-0.000772537,-0.0006742504,-0.0003158745,0.00016404237,0.00058018655,0.0007720353,0.0006657378,0.0003026363,-0.00017689409,-0.00058769394,-0.00077130715,-0.00065710145,-0.00028943855,0.00018955696,0.000594937,0.00077034143,0.0006483076,0.00027621718,-0.00020210064,-0.00060196413,-0.0007691464,-0.00063935976,-0.00026297613,0.00021452199,0.00060877437,0.00076772366,0.00063026097,0.0002497194,-0.0002268882,-0.00061541056,-0.000766075,-0.00062097184,-0.00023638109,0.00023905534,0.00062178297,0.00076419994,0.00061158073,0.00022310462,-0.00025109123,-0.00062793586,-0.0007621017,-0.0006020491,-0.00020982425,0.00026299295,0.00063386845,0.0007597822,0.00059238035,0.00019654392,-0.00027475768,-0.0006395801,-0.0007572384,-0.00058253156,-0.00018319694,0.00028644985,0.000645108,0.0007544801,0.0005725983,0.00016992814,-0.00029793163,-0.0006503748,-0.0007515057,-0.0005625385,-0.00015667098,0.00030926827,0.00065541884,0.00074831734,0.00055235566,0.00014342926,-0.0003204571,-0.0006602399,-0.00074491673,-0.0005420535,-0.0001302068,0.00033156,0.00066487084,0.00074129517,0.00053158466,0.00011693643,-0.00034244478,-0.00066924357,-0.00073747523,-0.00052105356,-0.00010376377,0.0003531742,0.0006733925,0.0007334492,0.0005104138,9.062163e-5,-0.0003637458,-0.0006773174,-0.0007292193,-0.000499669,-7.7513716e-5,0.0003741573,0.000681018,0.0007247721,0.0004887692,6.437284e-5,-0.0003844671,-0.0006845217,-0.00072014,-0.00047782465,-5.1344472e-5,0.00039455068,0.0006877728,0.0007153108,0.00046678606,3.8361297e-5,-0.00040446737,-0.00069079985,-0.0007102869,-0.0004556571,-2.542691e-5,0.00041421503,0.00069360295,0.0007050705,0.0004444414,1.2474409e-5,-0.0004238492,-0.0006962048,-0.00069964275,-0.00043308586,3.5158484e-7,0.00043325187,0.00069855957,0.00069404783,0.0004217073,-1.3118176e-5,-0.00044247953,-0.0007006913,-0.0006882678,-0.00041025315,2.5821895e-5,0.00045153018,0.00070260034,0.0006823054,0.0003987271,-3.845931e-5,-0.00046040205,-0.0007043047,-0.00067613745,-0.00038707384,5.109652e-5,0.00046914647,0.00070576876,0.00066981686,0.00037541467,-6.3590895e-5,-0.00047765463,-0.00070701167,-0.00066332176,-0.00036369474,7.600886e-5,0.0004859788,0.0007080341,0.00065665477,0.00035191784,-8.8347115e-5,-0.0004941174,-0.0007088368,-0.00064981874,-0.0003400876,0.000100670746,0.00050211826,0.00070943194,0.0006427854,0.0003281465,-0.0001128395,-0.0005098802,-0.00070979627,-0.0006356184,-0.00031622042,0.00012491886,0.0005174521,0.0007099435,0.0006282908,0.0003042522,-0.0001369057,-0.00052483263,-0.00070987426,-0.0006208054,-0.00029224553,0.0001487969,0.00053202047,0.00070959626,0.0006131302,0.00028014134,-0.0001606559,-0.0005390589,-0.00070909626,-0.0006053371,-0.00026806854,0.00017234628,0.00054585666,0.00070838304,0.000597395,0.00025596845,-0.00018393193,-0.0005524581,-0.00070745783,-0.00058930693,-0.00024384465,0.00019540996,0.00055886235,0.0007063219,0.0005810759,0.00023163692,-0.00020684212,-0.00056510867,-0.000704977,-0.0005726656,-0.00021947657,0.00021809572,0.0005711143,0.0007034222,0.0005641571,0.00020730354,-0.00022923312,-0.00057691976,-0.0007016605,-0.0005555149,-0.00019512148,0.00024025155,0.0005825243,0.0006996935,0.0005467422,0.00018293397,-0.0002511483,-0.000587927,-0.00069751864,-0.00053779926,-0.00017067975,0.00026198273,0.0005931626,0.0006951443,0.00052877417,0.00015849208,-0.0002726276,-0.0005981588,-0.0006925692,-0.00051962805,-0.0001463098,0.00028314296,0.0006029514,0.00068979495,0.0005103642,0.00013413646,-0.00029352622,-0.00060753984,-0.0006868233,-0.00050098577,-0.00012191026,0.00030383447,0.0006119545,0.00068364624,0.00049144955,0.000109765344,-0.00031394552,-0.0006161322,-0.00068028393,-0.00048185122,-9.763995e-5,0.00032391722,0.0006201046,0.0006767296,0.00047214818,8.553756e-5,-0.0003337472,-0.0006238714,-0.00067298504,-0.00046234386,-7.346165e-5,0.00034343323,0.0006274587,0.00066903804,0.00045239212,6.1350285e-5,-0.0003530292,-0.0006308125,-0.0006649179,-0.00044239435,-4.9337665e-5,0.00036241984,0.0006339602,0.0006606136,0.00043230527,3.7361795e-5,-0.00037166005,-0.0006369017,-0.000656127,-0.00042212824,-2.5426036e-5,0.00038074754,0.0006396371,0.0006514604,0.0004118666,1.3468674e-5,-0.00038973373,-0.0006421873,-0.0006465962,-0.00040147142,-1.6232765e-6,0.00039850926,0.0006445096,0.00064157485,0.00039105027,-1.0172039e-5,-0.0004071263,-0.0006466263,-0.00063638,-0.00038055467,2.1914006e-5,0.0004155829,0.0006485374,0.00063101394,0.00036998815,-3.3599394e-5,-0.00042387738,-0.0006502598,-0.0006254553,-0.0003592996,4.5289227e-5,0.0004320571,0.00065175985,0.0006197527,0.00034860082,-5.6851644e-5,-0.0004400211,-0.0006530556,-0.0006138859,-0.00033784143,6.8347945e-5,0.0004478178,0.0006541475,0.00060785736,0.00032702475,-7.977502e-5,-0.00045544552,-0.00065503595,-0.00060166954,-0.00031609804,9.1193004e-5,0.00046294866,0.00065573247,0.0005952965,0.0003051767,-0.000102472106,-0.00047023315,-0.000656215,-0.0005887967,-0.00029420847,0.000113672824,0.00047734432,0.00065649615,0.0005821452,0.0002831967,-0.00012479219,-0.0004842807,-0.00065657665,-0.0005753445,-0.00027214485,0.00013582726,0.000491041,0.00065646356,0.0005683653,0.00026099832,-0.00014683668,-0.0004976653,-0.00065614417,-0.0005612736,-0.00024987626,0.00015769406,0.00050406886,0.0006556269,0.0005540407,0.00023872442,-0.00016845851,-0.0005102927,-0.0006549124,-0.0005466694,-0.00022754622,0.00017912725,0.00051633583,0.0006540019,0.00053916255,0.00021628589,-0.00018975747,-0.00052223465,-0.0006528972,-0.0005314864,-0.00020506495,0.0002002261,0.00052791217,0.0006515968,0.0005237158,0.00019382781,-0.00021059085,-0.0005334059,-0.00065010384,-0.000515818,-0.00018257795,0.00022084908,0.00053871504,0.0006484195,0.0005077958,0.0001713187,-0.00023099821,-0.00054387253,-0.00064654136,-0.00049961265,-0.00015999329,0.0002410932,0.0005488091,0.00064447697,0.00049134967,0.0001487252,-0.00025101594,-0.0005535589,-0.0006422252,-0.00048297102,-0.00013745781,0.00026082207,0.0005581211,0.0006397874,0.00047447972,0.00012619443,-0.0002705091,-0.00056249514,-0.00063716515,-0.00046583632,-0.00011487783,0.00028012996,0.0005667093,0.00063435105,0.00045712784,0.00010363236,-0.00028957115,-0.00057070475,-0.00063136336,-0.0004483157,-9.240081e-5,0.00029888627,0.00057451054,0.0006281959,0.00043940282,8.118646e-5,-0.00030807298,-0.00057812646,-0.0006248503,-0.00043039233,-6.999255e-5,0.0003171292,0.0005815769,0.0006213152,0.00042124165,5.876165e-5,-0.0003261049,-0.00058481115,-0.00061761757,-0.00041204444,-4.761832e-5,0.00033489292,0.00058785477,0.000613747,0.0004027588,3.6505076e-5,-0.00034354406,-0.00059070764,-0.0006097054,-0.0003933879,-2.542509e-5,0.00035205635,0.0005933696,0.0006054946,0.00038388677,1.4321084e-5,-0.00036047725,-0.0005958602,-0.00060109864,-0.00037435407,-3.3171236e-6,0.00036870514,0.00059813936,0.0005965544,0.0003647454,-7.644196e-6,-0.0003767884,-0.00060022774,-0.000591847,-0.00035506397,1.8559798e-5,0.00038472516,0.0006021255,0.0005869782,0.00034531293,-2.9426634e-5,-0.00039256032,-0.0006038482,-0.0005819286,-0.0003354449,4.0301384e-5,0.00040019813,0.0006053643,0.0005767428,0.00032556363,-5.1061445e-5,-0.00040768425,-0.00060669036,-0.0005714021,-0.00031562228,6.176373e-5,0.0004150171,0.000607827,0.00056590873,0.000305624,-7.240529e-5,-0.00042219515,-0.00060877437,-0.000560265,-0.00029557195,8.298321e-5,0.0004292168,0.0006095331,0.00055447296,0.0002854694,-9.349462e-5,-0.00043608065,-0.0006101038,-0.0005485351,-0.00027531947,0.00010405322,0.00044286746,0.00061050284,0.00054239755,0.00026501878,-0.00011442246,-0.00044940977,-0.00061069673,-0.0005361732,-0.00025478302,0.00012471668,0.0004557901,0.0006107043,0.00052981003,0.00024450955,-0.00013493311,-0.0004620073,-0.00061052624,-0.0005233105,-0.00023420152,0.00014506905,0.00046806,0.0006101634,0.00051667704,0.00022386211,-0.00015512177,-0.0004739472,-0.00060961646,-0.0005099122,-0.00021349452,0.00016508863,0.00047966765,0.0006088864,0.0005030184,0.00020310192,-0.00017496702,-0.00048522037,-0.0006079742,-0.0004959982,-0.00019268753,0.00018475433,0.0004906043,0.0006068807,0.0004888542,0.00018214353,-0.00019455807,-0.0004958853,-0.0006056046,-0.00048151857,-0.0001716946,0.00020415471,0.0005009272,0.0006041497,0.00047413327,0.00016123339,-0.00021365273,-0.0005057977,-0.00060251675,-0.00046663207,-0.00015076302,0.00022304963,0.00051049585,0.00060070684,0.00045901758,0.00014028666,-0.00023234305,-0.00051502103,-0.0005987214,-0.00045129252,-0.00012980742,0.00024153061,0.0005193726,0.0005965614,0.00044345958,0.00011932842,-0.00025060997,-0.00052354985,-0.00059422845,-0.00043552154,-0.00010885278,0.00025957887,0.0005275522,0.0005917236,0.00042748105,9.838359e-5,-0.00026843505,-0.0005313792,-0.00058904843,-0.000419341,-8.781088e-5,0.00027727743,0.0005350804,0.00058618415,0.00041102155,7.7363766e-5,-0.0002859005,-0.0005385532,-0.0005831706,-0.00040268945,-6.693234e-5,0.0002944043,0.00054184947,0.0005799912,0.0003942662,5.6519653e-5,-0.00030278682,-0.0005449687,-0.0005766474,-0.0003857546,-4.612871e-5,0.000311046,0.00054791063,0.00057314086,0.0003771576,3.576252e-5,-0.00031917988,-0.0005506751,-0.00056947325,-0.00036847798,-2.5424071e-5,0.00032718643,0.0005532619,0.00056564616,0.00035971866,1.511633e-5,-0.00033506384,-0.000555671,-0.0005616614,-0.00035088256,-4.842241e-6,0.00034281015,0.00055790227,0.0005575207,0.00034197257,-5.507665e-6,-0.00035051364,-0.00055998866,-0.0005531891,-0.00033289922,1.5705442e-5,0.0003579912,0.0005618624,0.00054874027,0.00032384926,-2.586082e-5,-0.0003653323,-0.00056355854,-0.0005441411,-0.00031473424,3.5970934e-5,0.0003725354,0.0005650772,0.00053939346,0.0003055571,-4.6032943e-5,-0.0003795988,-0.00056641846,-0.00053449936,-0.0002963208,5.604404e-5,0.0003865209,0.0005675827,0.0005294608,0.0002870283,-6.6001434e-5,-0.0003933002,-0.0005685703,-0.00052427966,-0.0002776825,7.590236e-5,0.00039993518,0.0005693814,0.0005189582,0.00026828647,-8.574409e-5,-0.0004064245,-0.0005700165,-0.0005134984,-0.0002587443,9.563293e-5,0.00041284366,0.0005704914,0.0005078503,0.00024925597,-0.000105347615,-0.00041903573,-0.000570774,-0.00050211867,-0.00023972636,0.000114995026,0.00042507797,0.00057088217,0.00049625523,0.00023015843,-0.00012457253,-0.0004309692,-0.0005708164,-0.0004902622,-0.00022055519,0.00013407753,0.00043670816,0.00057057734,0.00048414184,0.00021091958,-0.00014350751,-0.00044229365,-0.00057016575,-0.0004778964,-0.0002012546,0.00015285985,0.00044772457,0.0005695824,0.0004715282,0.00019156327,-0.0001621321,-0.00045299993,-0.000568828,-0.0004650396,-0.00018184852,0.00017132181,0.00045811868,0.00056790345,0.00045843297,0.0001720096,-0.00018052958,-0.00046314255,-0.0005668078,-0.0004516449,-0.00016225656,0.00018954606,0.00046794358,0.0005655437,0.00044480796,0.00015248905,-0.00019847273,-0.00047258526,-0.00056411227,-0.00043786017,-0.00014271007,0.00020730724,0.00047706673,0.0005625145,0.0004308041,0.00013292249,-0.00021604731,-0.0004813873,-0.0005607514,-0.0004236421,-0.0001231293,0.00022469068,0.00048554622,0.0005588242,0.00041637683,0.00011333344,-0.00023323511,-0.00048954284,-0.000556734,-0.00040901074,-0.000103537815,0.00024167841,0.0004933765,0.0005544819,0.00040154636,9.3745344e-5,-0.00025001843,-0.00049704674,-0.00055206934,-0.00039398632,-8.385306e-5,0.00025834792,0.00050060014,0.0005494789,0.000386256,7.4075535e-5,-0.00026647397,-0.0005039401,-0.0005467473,-0.0003785112,-6.430987e-5,0.0002744905,0.0005071152,0.00054385903,0.00037067858,5.4558943e-5,-0.0002823955,-0.000510125,-0.00054081564,-0.00036276074,-4.4825592e-5,0.00029018696,0.0005129692,0.0005376185,0.00035476033,3.511267e-5,-0.00029786295,-0.0005156476,-0.00053426914,-0.00034668006,-2.5422985e-5,0.00030542165,0.0005181599,0.0005307691,0.0003385226,1.575935e-5,-0.00031286117,-0.00052050594,-0.00052711996,-0.00033029064,-6.1245464e-6,0.00032017974,0.00052268564,0.0005233233,0.00032190135,-3.584064e-6,-0.00032746023,-0.00052473013,-0.00051934645,-0.00031352762,1.3152696e-5,0.00033453034,0.00052657514,0.000515258,0.0003050876,-2.268421e-5,-0.00034147434,-0.00052825373,-0.00051102706,-0.00029658407,3.2175893e-5,0.00034829057,0.00052976597,0.0005066555,0.00028801968,-4.1625055e-5,-0.00035497747,-0.00053111196,-0.0005021449,-0.0002793973,5.102903e-5,0.00036153343,0.00053229195,0.00049749727,0.0002707196,-6.0385166e-5,-0.00036795696,-0.00053330604,-0.00049271435,-0.00026198945,6.969084e-5,0.00037424668,0.0005341546,0.00048779807,0.00025320955,-7.8943456e-5,-0.00038040106,-0.0005348379,-0.00048275036,-0.0002442901,8.824283e-5,0.0003864914,0.0005353711,0.00047752453,0.00023541851,-9.738113e-5,-0.00039236966,-0.00053572323,-0.00047221835,-0.00022650562,0.00010645869,0.00039810874,0.0005359113,0.00046678667,0.00021755423,-0.000115473005,-0.00040370726,-0.00053593586,-0.0004612316,-0.00020856713,0.00012442161,0.00040916406,0.0005357974,0.00045555522,0.00019954714,-0.00013330205,-0.00041447798,-0.00053549657,-0.00044975957,-0.00019049703,0.0001421119,0.00041964793,0.00053503405,0.00044384686,0.0001814196,-0.00015084879,-0.0004246729,-0.0005344104,-0.0004378192,-0.00017231768,0.00015951035,0.00042955182,0.0005336265,0.0004316186,0.00016309667,-0.00016819125,-0.00043434295,-0.00053268153,-0.00042536628,-0.00015395376,0.00017669446,0.00043892543,0.0005315775,0.00041900566,0.00014479476,-0.00018511542,-0.0004433591,-0.0005303156,-0.00041253906,-0.00013562245,0.0001934519,0.0004476432,0.00052889675,0.0004059687,0.00012643961,-0.00020170168,-0.00045177687,-0.0005273219,-0.00039929687,-0.000117249016,0.0002098626,0.00045575947,0.000525592,0.00039252595,0.00010805345,-0.00021793252,-0.0004595902,-0.0005237081,-0.00038565826,-9.885565e-5,0.00022590936,0.00046326852,0.0005216713,0.00037869622,8.965839e-5,-0.000233791,-0.0004667938,-0.0005194827,-0.0003715709,-8.036485e-5,0.0002416648,0.00047021022,0.0005171263,0.00036442617,7.117678e-5,-0.00024934905,-0.00047342622,-0.0005146359,-0.00035719428,-6.199746e-5,0.00025693208,0.00047648768,0.0005119973,0.00034987772,5.2829615e-5,-0.00026441202,-0.00047939416,-0.00050921185,-0.00034247898,-4.3675947e-5,0.0002717869,0.00048214538,0.0005062807,0.00033500046,3.4539124e-5,-0.00027905492,-0.000484741,-0.00050320535,-0.00032744472,-2.5421828e-5,0.0002862142,0.00048718075,0.0004999871,0.00031981425,1.632672e-5,-0.00029326306,-0.00048946444,-0.0004966275,-0.00031211154,-7.2564385e-6,0.00030019967,0.0004915918,0.0004931279,0.00030425884,-1.8856313e-6,-0.00030710216,-0.00049359247,-0.0004894578,-0.00029641847,1.0898208e-5,0.00031380812,0.00049540534,0.00048568123,0.00028851358,-1.9878096e-5,-0.0003203968,-0.00049706176,-0.00048176933,-0.00028054672,2.882272e-5,0.00032686666,0.00049856165,0.0004777237,0.00027252047,-3.7729522e-5,-0.00033321616,-0.00049990515,-0.000473546,-0.0002644374,4.6595967e-5,0.00033944377,0.0005010923,0.0004692379,0.00025630018,-5.5419536e-5,-0.00034554806,-0.0005021234,-0.00046480107,-0.00024811135,6.419773e-5,0.0003515276,0.0005029984,0.0004602373,0.00023987352,-7.292808e-5,-0.00035738095,-0.00050371775,-0.00045550417,-0.00023150216,8.170466e-5,0.0003631754,0.00050429587,0.00045069042,0.00022317363,-9.033152e-5,-0.0003687712,-0.00050470297,-0.0004457551,-0.00021480402,9.890322e-5,0.00037423687,0.00050495536,0.00044070015,0.000206396,-0.00010741736,-0.00037957128,-0.00050505344,-0.00043552747,-0.00019795215,0.00011587159,0.00038477322,0.0005049977,0.0004302389,0.00018947513,-0.00012426356,-0.00038984156,-0.0005047886,-0.00042483647,-0.00018096759,0.00013259097,0.00039477527,0.0005044267,0.00041932208,0.00017243215,-0.00014085157,-0.00039957324,-0.0005039127,-0.00041369785,-0.00016387146,0.00014904303,0.00040423448,0.0005032471,0.0004079092,0.00015519642,-0.00015725475,-0.00040881408,-0.00050242955,-0.00040206994,-0.00014659279,0.00016530069,0.00041319762,0.00050146127,0.00039612703,0.00013797185,-0.00017327089,-0.00041744162,-0.0005003437,-0.00039008248,-0.00012933624,0.00018116324,0.00042154532,0.00049907743,0.0003839384,0.00012068857,-0.00018897561,-0.00042550798,-0.0004976635,-0.00037769703,-0.000112031485,0.00019670589,0.0004293288,0.0004961028,0.00037136048,0.000103367594,-0.00020435208,-0.00043300705,-0.00049439614,-0.00036493098,-9.4699506e-5,0.0002119121,0.00043654215,0.00049254455,0.0003584107,8.602983e-5,-0.00021938402,-0.00043993344,-0.00049053476,-0.00035173484,-7.7267236e-5,0.00022685032,0.0004432229,0.00048839475,0.00034503874,6.8602065e-5,-0.00023413922,-0.0004463234,-0.00048611301,-0.00033825866,-5.994311e-5,0.00024133419,0.0004492786,0.0004836906,0.00033139694,5.1292933e-5,-0.00024843335,-0.000452088,-0.0004811287,-0.0003244558,-4.265409e-5,0.00025543492,0.00045475122,0.0004784285,0.00031743763,3.4029134e-5,-0.00026233704,-0.00045726792,-0.00047559125,-0.00031034477,-2.54206e-5,0.00026913805,0.0004596378,0.00047261827,0.00030317955,1.683102e-5,-0.00027583615,-0.00046186065,-0.00046951076,-0.0002959443,-8.262897e-6,0.00028242968,0.00046393625,0.00046624168,0.00028856573,-3.750238e-7,-0.00028899257,-0.00046589258,-0.00046286784,-0.00028119687,8.892588e-6,0.00029537096,0.00046767152,0.00045936368,0.0002737652,-1.7381217e-5,-0.00030163993,-0.00046930285,-0.00045573065,-0.00026627321,2.583846e-5,0.00030779792,0.00047078647,0.00045197023,0.00025872327,-3.4261884e-5,-0.00031384345,-0.00047212245,-0.000448084,-0.00025111777,4.2649066e-5,0.00031977502,0.0004733108,0.00044407343,0.0002434593,-5.0997613e-5,-0.00032559127,-0.00047435163,-0.0004399401,-0.0002357502,5.9305137e-5,0.00033129074,0.0004752451,0.0004356857,0.00022799298,-6.756929e-5,-0.00033687212,-0.00047599134,-0.0004312702,-0.00022010774,7.5879034e-5,0.00034239917,0.00047660433,0.00042677714,0.00021226105,-8.4049e-5,-0.0003477392,-0.00047705523,-0.00042216803,-0.00020437367,9.216862e-5,0.00035295732,0.00047735986,0.00041744448,0.0001964481,-0.00010023558,-0.0003580523,-0.0004775184,-0.0004126084,-0.00018848683,0.000108247645,0.00036302302,0.00047753126,0.0004076615,0.00018049232,-0.00011620258,-0.00036786837,-0.00047739895,-0.0004026056,-0.00017246709,0.00012409817,0.0003725872,0.00047712185,0.00039744255,0.00016441364,-0.00013193222,-0.00037717863,-0.00047670063,-0.00039217426,-0.00015633444,0.00013970256,0.00038164153,0.0004761365,0.0003867494,0.00014814531,-0.00014749383,-0.00038602823,-0.00047542693,-0.00038127502,-0.00014002177,0.0001551298,0.00039022998,0.000474575,0.0003757012,0.00013188005,-0.00016269572,-0.0003943005,-0.00047358128,-0.0003700298,-0.00012372261,0.00017018955,0.00039823903,0.0004724466,0.00036426293,0.00011555191,-0.00017760924,-0.00040204465,-0.00047117163,-0.00035840253,-0.00010737049,0.00018495282,0.00040571677,0.0004697573,0.0003524506,9.918079e-5,-0.00019221827,-0.00040925454,-0.00046820438,-0.00034640924,-9.098531e-5,0.0001994037,0.00041265745,0.00046651365,0.00034028053,8.2786515e-5,-0.00020650715,-0.0004159248,-0.00046467286,-0.00033400324,-7.4497984e-5,0.00021360688,0.00041909638,0.00046270803,0.00032770514,6.629986e-5,-0.00022053997,-0.00042208945,-0.00046060825,-0.00032132602,-5.8105816e-5,0.00022738548,0.00042494538,0.0004583747,0.00031486806,4.9918315e-5,-0.00023414165,-0.00042766362,-0.0004560084,-0.0003083334,-4.1739775e-5,0.00024080677,0.00043024388,0.00045351044,0.0003017243,3.3572636e-5,-0.000247379,-0.0004326857,-0.00045088193,-0.00029504288,-2.5419306e-5,0.00025385676,0.00043498885,0.00044812408,0.0002882914,1.728218e-5,-0.00026023824,-0.00043715295,-0.00044523808,-0.00028147208,-9.163659e-6,0.000266522,0.00043917785,0.00044219842,0.0002745155,9.772734e-7,-0.00027277807,-0.00044109032,-0.0004390585,-0.00026756644,7.096782e-6,0.00027886033,0.00044283463,0.00043579418,0.00026055626,-1.5145114e-5,-0.00028484012,-0.00044443927,-0.00043240696,-0.00025348738,2.3165383e-5,0.00029071586,0.00044590406,0.00042889809,0.00024636197,-3.115527e-5,-0.00029648616,-0.00044722907,-0.0004252691,-0.0002391824,3.911246e-5,0.0003021495,0.00044841427,0.0004215213,0.00023195092,-4.7034675e-5,-0.0003077046,-0.00044945968,-0.0004176562,-0.0002246699,5.491963e-5,0.00031315006,0.00045036545,0.00041367536,0.00021734166,-6.276507e-5,-0.00031848453,-0.0004511464,-0.00040954113,-0.00020989057,7.06554e-5,0.00032376865,0.00045177175,0.00040533196,0.00020247427,-7.841475e-5,-0.00032887622,-0.0004522579,-0.00040101178,-0.00019501781,8.6127904e-5,0.00033386913,0.00045260513,0.00039658207,0.0001875235,-9.379268e-5,-0.00033874618,-0.00045281384,-0.00039204455,-0.00017999375,0.000101406935,0.0003435062,0.0004528842,0.00038740083,0.00017243084,-0.00010896852,-0.00034814817,-0.00045281675,-0.00038265268,-0.00016483721,0.0001164753,0.00035267096,0.00045261174,0.00037780174,0.0001572152,-0.0001239252,-0.00035707364,-0.0004522698,-0.00037284984,-0.00014956713,0.00013131613,0.00036135514,0.00045179232,0.00036774838,0.00014181322,-0.00013872846,-0.00036556533,-0.00045117625,-0.00036259863,-0.0001341199,0.00014599478,0.00036960054,0.00045042488,0.00035735336,0.00012640767,-0.00015319603,-0.00037351187,-0.00044953858,-0.00035201432,-0.00011867893,0.00016033028,0.00037729857,0.0004485182,0.0003465834,0.00011093603,-0.00016739553,-0.00038095977,-0.00044736438,-0.00034106252,-0.000103181344,0.0001743899,0.00038449484,0.00044607773,0.00033545354,9.5417214e-5,-0.00018131145,-0.000387903,-0.00044465918,-0.00032975845,-8.764602e-5,0.00018815834,0.0003911836,0.00044310934,0.00032397915,7.9870086e-5,-0.00019492871,-0.00039437605,-0.00044141684,-0.00031805766,-7.200741e-5,0.00020169694,0.00039739828,0.0004396058,0.00031211498,6.422896e-5,-0.00020830808,-0.00040029123,-0.00043766614,-0.00030609407,-5.6452827e-5,0.0002148373,0.00040305438,0.0004355989,0.00029999702,4.8681344e-5,-0.00022128291,-0.00040568723,-0.00043340496,-0.0002938258,-4.091683e-5,0.00022764319,0.00040818934,0.00043108547,0.00028758257,3.3161592e-5,-0.00023391646,-0.00041056034,-0.00042864133,-0.00028126934,-2.5417938e-5,0.00024010112,0.00041279994,0.00042607376,0.00027488815,1.7688153e-5,-0.0002461955,-0.0004149078,-0.00042338378,-0.00026844122,-9.974523e-6,0.0002521981,0.00041691092,0.00042054732,0.00026186267,2.1948977e-6,-0.00025817563,-0.0004187531,-0.00041761468,-0.00025528972,5.4795037e-6,0.00026398897,0.00042046278,0.00041456317,0.00024865742,-1.3130952e-5,-0.00026970595,-0.0004220399,-0.0004113941,-0.00024196785,2.0757208e-5,0.00027532506,0.00042348434,0.00040810875,0.00023522326,-2.8356064e-5,-0.00028084495,-0.00042479608,-0.00040470835,-0.00022842578,3.59253e-5,0.0002862642,0.000425975,0.00040119432,0.00022157759,-4.346274e-5,-0.0002915815,-0.00042702115,-0.00039756796,-0.0002146809,5.0966195e-5,0.00029679548,0.0004279346,0.00039383073,0.00020773795,-5.8433518e-5,-0.00030190483,-0.00042872972,-0.000389947,-0.00020067688,6.594497e-5,0.0003069674,0.00042937658,0.000385991,0.00019364739,-7.333325e-5,-0.00031186285,-0.00042989117,-0.00038192855,-0.00018657831,8.0679005e-5,0.00031665002,0.00043027356,0.00037776105,0.00017947184,-8.798012e-5,-0.00032132785,-0.00043052415,-0.00037349013,-0.00017233023,9.523454e-5,0.0003258952,0.00043064312,0.00036911725,0.00016515571,-0.00010244022,-0.00033035097,-0.00043063087,-0.00036464413,-0.00015795052,0.00010959511,0.0003346942,0.00043048768,0.0003600723,0.00015071694,-0.00011669722,-0.00033892386,-0.00043021402,-0.0003554034,-0.00014345716,0.00012374452,0.00034308864,0.00042981154,0.00035059146,0.00013609536,-0.00013081354,-0.00034708704,-0.00042927676,-0.00034573235,-0.00012878969,0.00013774486,0.0003509691,0.00042861293,0.00034078135,0.00012146464,-0.00014461555,-0.0003547339,-0.00042782055,-0.00033574013,-0.000114122464,0.0001514237,0.00035838073,0.00042690028,0.00033061038,0.00010676541,-0.00015816742,-0.00036190875,-0.0004258527,-0.00032539398,-9.939573e-5,0.00016484488,0.0003653172,0.0004246784,0.0003200927,9.201567e-5,-0.00017145424,-0.0003686054,-0.0004233782,-0.0003147083,-8.4627485e-5,0.0001779937,0.0003717727,0.00042195272,0.00030924272,7.72334e-5,-0.0001844615,-0.00037485675,-0.0004203912,-0.00030364085,-6.975538e-5,0.00019092852,0.00037777907,0.00041871623,0.00029801752,6.2356106e-5,-0.00019724699,-0.00038057868,-0.0004169184,-0.00029231852,-5.4957658e-5,0.0002034886,0.00038325513,0.00041499862,0.00028654595,4.756227e-5,-0.00020965164,-0.00038580789,-0.00041295774,-0.00028070164,-4.0172145e-5,0.00021573454,0.00038823654,0.0004107968,0.00027478754,3.2789485e-5,-0.00022173562,-0.00039054066,-0.00040851667,-0.00026880566,-2.54165e-5,0.00022765333,0.00039271993,0.0004061184,0.0002627579,1.8055374e-5,-0.00023348609,-0.000394774,-0.00040360304,-0.0002566463,-1.0708289e-5,0.00023929853,0.0003967288,0.00040094779,0.00025040834,3.297001e-6,-0.000244956,-0.00039853033,-0.00039820015,-0.00024417436,4.0153927e-6,0.00025052397,0.00040020584,0.00039533863,0.00023788262,-1.1307243e-5,-0.00025600108,-0.0004017553,-0.00039236445,-0.00023153512,1.8576407e-5,0.00026138593,0.0004031785,0.00038927887,0.00022513402,-2.5820766e-5,-0.00026667706,-0.00040447534,-0.00038608297,-0.00021868126,3.3038203e-5,0.00027187323,0.0004056458,0.00038277815,0.00021217902,-4.0226623e-5,-0.00027697303,-0.00040668985,-0.0003793656,-0.0002056293,4.7383943e-5,0.00028197526,0.0004076075,0.00037584663,0.00019903427,-5.4508084e-5,-0.00028693606,-0.00040841266,-0.00037218755,-0.00019232555,6.167558e-5,0.00029173834,0.0004090763,0.00036845866,0.00018564556,-6.87269e-5,-0.00029643934,-0.00040961386,-0.00036462749,-0.00017892662,7.573891e-5,0.00030103792,0.00041002542,0.0003606954,0.00017217078,-8.270961e-5,-0.000305533,-0.0004103113,-0.00035666392,-0.00016538017,8.9637e-5,0.00030992346,0.00041047164,0.0003525345,0.00015855698,-9.6519114e-5,-0.00031420827,-0.00041050673,-0.0003483086,-0.00015170328,0.00010335399,0.0003183864,0.00041041695,0.00034398775,0.00014482127,-0.00011013972,-0.0003224569,-0.0004102026,-0.0003395735,-0.00013791304,0.00011687436,0.00032646634,0.00040986546,0.00033502217,0.00013090631,-0.00012363092,-0.00033031756,-0.00040940178,-0.00033042487,-0.0001239518,0.00013025725,0.0003340584,0.00040881487,0.0003257389,0.00011697756,-0.00013682684,-0.000337688,-0.00040810514,-0.000320966,-0.00010998573,0.00014333792,0.00034120557,0.00040727312,0.0003161078,0.00010297846,-0.00014978863,-0.00034461037,-0.00040631945,-0.000311166,-9.595791e-5,0.00015617722,0.00034790157,0.00040524462,0.00030614223,8.892621e-5,-0.00016250194,-0.00035107858,-0.00040404938,-0.0003010383,-8.188551e-5,0.00016876098,0.00035414065,0.0004027343,0.00029585592,7.483795e-5,-0.0001750228,-0.00035712396,-0.00040128935,-0.00029054264,-6.7709094e-5,0.0001811448,0.0003599532,0.00039973555,0.00028520776,6.0654103e-5,-0.00018719606,-0.0003626657,-0.00039806412,-0.00027979974,-5.3598684e-5,0.00019317496,0.00036526105,0.00039627592,0.00027432045,4.6544945e-5,-0.00019907989,-0.0003677387,-0.00039437177,-0.00026877172,-3.949501e-5,0.00020490926,0.00037009825,0.0003923526,0.0002631553,3.245099e-5,-0.00021066148,-0.00037233921,-0.00039021924,-0.0002574732,-2.5414995e-5,0.00021633506,0.00037446132,0.00038797257,0.0002517272,1.838911e-5,-0.00022192848,-0.0003764642,-0.0003856137,-0.00024591922,-1.1375432e-5,0.0002275035,0.00037837273,0.00038312105,0.00023998963,4.299268e-6,-0.00023293133,-0.00038013494,-0.00038053936,-0.00023406267,2.6836792e-6,0.00023827459,0.00038177706,0.00037784848,0.00022807952,-9.64819e-6,-0.00024353195,-0.00038329902,-0.00037504945,-0.00022204209,1.6592214e-5,0.00024870198,0.00038470057,0.0003721435,0.00021595233,-2.3513716e-5,-0.0002537834,-0.00038598158,-0.0003691316,-0.00020981222,3.041067e-5,0.00025877487,0.00038714203,0.0003660151,0.00020362373,-3.7281057e-5,-0.00026367512,-0.00038818183,-0.00036279505,-0.00019738886,4.4122884e-5,0.0002684829,0.000389101,0.00035947282,0.00019110956,-5.0934155e-5,-0.00027325205,-0.000389913,-0.00035601627,-0.0001847207,5.7788002e-5,0.00027787028],"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/sincf/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/runner.jl new file mode 100755 index 000000000000..eefc2502fca7 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/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( -708, stop = 709, length = 2001 ); +julia> gen( x, \"data.json\" ); +``` +""" +function gen( domain, name ) + x = collect( domain ); + y = sinc.( x ); + + # 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/sincf/test/fixtures/julia/tiny_negative.json b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/tiny_negative.json new file mode 100644 index 000000000000..84a5bd4850bb --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/tiny_negative.json @@ -0,0 +1 @@ +{"expected":[1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0],"x":[-1.0e-200,-9.980079681474104e-201,-9.960159362948207e-201,-9.94023904442231e-201,-9.920318725896413e-201,-9.900398407370517e-201,-9.880478088844622e-201,-9.860557770318725e-201,-9.840637451792829e-201,-9.820717133266931e-201,-9.800796814741036e-201,-9.780876496215138e-201,-9.760956177689244e-201,-9.741035859163346e-201,-9.721115540637451e-201,-9.701195222111553e-201,-9.681274903585657e-201,-9.66135458505976e-201,-9.641434266533866e-201,-9.621513948007968e-201,-9.601593629482072e-201,-9.581673310956175e-201,-9.561752992430278e-201,-9.541832673904382e-201,-9.521912355378486e-201,-9.50199203685259e-201,-9.482071718326692e-201,-9.462151399800797e-201,-9.4422310812749e-201,-9.422310762749003e-201,-9.402390444223107e-201,-9.382470125697212e-201,-9.362549807171315e-201,-9.342629488645418e-201,-9.32270917011952e-201,-9.302788851593624e-201,-9.28286853306773e-201,-9.262948214541833e-201,-9.243027896015936e-201,-9.22310757749004e-201,-9.203187258964143e-201,-9.183266940438247e-201,-9.163346621912351e-201,-9.143426303386455e-201,-9.123505984860558e-201,-9.103585666334662e-201,-9.083665347808764e-201,-9.063745029282868e-201,-9.043824710756973e-201,-9.023904392231076e-201,-9.00398407370518e-201,-8.984063755179282e-201,-8.964143436653386e-201,-8.94422311812749e-201,-8.924302799601593e-201,-8.904382481075697e-201,-8.8844621625498e-201,-8.864541844023904e-201,-8.844621525498008e-201,-8.82470120697211e-201,-8.804780888446214e-201,-8.78486056992032e-201,-8.764940251394423e-201,-8.745019932868526e-201,-8.72509961434263e-201,-8.705179295816732e-201,-8.685258977290837e-201,-8.66533865876494e-201,-8.645418340239044e-201,-8.625498021713147e-201,-8.605577703187252e-201,-8.585657384661354e-201,-8.565737066135457e-201,-8.545816747609562e-201,-8.525896429083666e-201,-8.50597611055777e-201,-8.486055792031872e-201,-8.466135473505975e-201,-8.446215154980078e-201,-8.426294836454184e-201,-8.406374517928287e-201,-8.38645419940239e-201,-8.366533880876493e-201,-8.346613562350598e-201,-8.3266932438247e-201,-8.306772925298806e-201,-8.286852606772908e-201,-8.266932288247013e-201,-8.247011969721115e-201,-8.227091651195219e-201,-8.207171332669321e-201,-8.187251014143427e-201,-8.16733069561753e-201,-8.147410377091634e-201,-8.127490058565737e-201,-8.10756974003984e-201,-8.087649421513944e-201,-8.067729102988048e-201,-8.047808784462152e-201,-8.027888465936254e-201,-8.007968147410359e-201,-7.988047828884461e-201,-7.968127510358565e-201,-7.948207191832669e-201,-7.928286873306773e-201,-7.908366554780877e-201,-7.88844623625498e-201,-7.868525917729083e-201,-7.848605599203186e-201,-7.828685280677292e-201,-7.808764962151395e-201,-7.788844643625498e-201,-7.768924325099601e-201,-7.749004006573705e-201,-7.729083688047809e-201,-7.709163369521913e-201,-7.689243050996017e-201,-7.669322732470119e-201,-7.649402413944224e-201,-7.629482095418326e-201,-7.609561776892429e-201,-7.589641458366532e-201,-7.569721139840638e-201,-7.549800821314741e-201,-7.529880502788844e-201,-7.509960184262948e-201,-7.490039865737051e-201,-7.470119547211155e-201,-7.450199228685259e-201,-7.430278910159363e-201,-7.410358591633466e-201,-7.39043827310757e-201,-7.370517954581672e-201,-7.350597636055776e-201,-7.33067731752988e-201,-7.310756999003985e-201,-7.290836680478088e-201,-7.270916361952191e-201,-7.250996043426294e-201,-7.231075724900399e-201,-7.211155406374503e-201,-7.191235087848606e-201,-7.171314769322709e-201,-7.151394450796814e-201,-7.131474132270916e-201,-7.111553813745019e-201,-7.091633495219124e-201,-7.071713176693226e-201,-7.051792858167331e-201,-7.031872539641434e-201,-7.011952221115537e-201,-6.99203190258964e-201,-6.972111584063746e-201,-6.952191265537849e-201,-6.932270947011952e-201,-6.912350628486055e-201,-6.89243030996016e-201,-6.872509991434262e-201,-6.852589672908367e-201,-6.83266935438247e-201,-6.812749035856574e-201,-6.792828717330677e-201,-6.772908398804781e-201,-6.752988080278883e-201,-6.733067761752989e-201,-6.713147443227092e-201,-6.693227124701196e-201,-6.673306806175298e-201,-6.653386487649402e-201,-6.633466169123506e-201,-6.61354585059761e-201,-6.593625532071714e-201,-6.573705213545817e-201,-6.55378489501992e-201,-6.533864576494023e-201,-6.513944257968128e-201,-6.494023939442231e-201,-6.474103620916335e-201,-6.4541833023904385e-201,-6.434262983864542e-201,-6.4143426653386446e-201,-6.394422346812749e-201,-6.374502028286852e-201,-6.354581709760956e-201,-6.3346613912350596e-201,-6.3147410727091634e-201,-6.2948207541832664e-201,-6.27490043565737e-201,-6.254980117131474e-201,-6.235059798605577e-201,-6.2151394800796815e-201,-6.1952191615537845e-201,-6.175298843027888e-201,-6.155378524501992e-201,-6.135458205976096e-201,-6.115537887450199e-201,-6.0956175689243034e-201,-6.0756972503984064e-201,-6.05577693187251e-201,-6.035856613346614e-201,-6.015936294820718e-201,-5.996015976294821e-201,-5.9760956577689245e-201,-5.956175339243028e-201,-5.9362550207171306e-201,-5.916334702191235e-201,-5.896414383665338e-201,-5.876494065139442e-201,-5.856573746613546e-201,-5.8366534280876495e-201,-5.8167331095617525e-201,-5.796812791035857e-201,-5.77689247250996e-201,-5.756972153984064e-201,-5.7370518354581676e-201,-5.7171315169322706e-201,-5.6972111984063744e-201,-5.6772908798804774e-201,-5.657370561354582e-201,-5.637450242828685e-201,-5.617529924302789e-201,-5.5976096057768925e-201,-5.577689287250996e-201,-5.557768968725099e-201,-5.537848650199204e-201,-5.517928331673307e-201,-5.4980080131474106e-201,-5.4780876946215144e-201,-5.458167376095617e-201,-5.4382470575697204e-201,-5.418326739043824e-201,-5.398406420517928e-201,-5.378486101992031e-201,-5.3585657834661355e-201,-5.3386454649402386e-201,-5.318725146414342e-201,-5.298804827888446e-201,-5.27888450936255e-201,-5.258964190836653e-201,-5.2390438723107574e-201,-5.2191235537848604e-201,-5.199203235258964e-201,-5.179282916733068e-201,-5.159362598207171e-201,-5.139442279681275e-201,-5.1195219611553785e-201,-5.099601642629482e-201,-5.079681324103585e-201,-5.05976100557769e-201,-5.039840687051793e-201,-5.019920368525897e-201,-5.00000005e-201,-4.9800797314741035e-201,-4.9601594129482065e-201,-4.940239094422311e-201,-4.920318775896414e-201,-4.900398457370517e-201,-4.8804781388446216e-201,-4.8605578203187246e-201,-4.8406375017928284e-201,-4.820717183266932e-201,-4.800796864741036e-201,-4.780876546215139e-201,-4.7609562276892435e-201,-4.7410359091633465e-201,-4.72111559063745e-201,-4.701195272111554e-201,-4.681274953585658e-201,-4.661354635059761e-201,-4.641434316533865e-201,-4.6215139980079684e-201,-4.6015936794820714e-201,-4.581673360956176e-201,-4.561753042430279e-201,-4.541832723904383e-201,-4.521912405378486e-201,-4.5019920868525895e-201,-4.4820717683266926e-201,-4.462151449800796e-201,-4.4422311312749e-201,-4.422310812749004e-201,-4.402390494223107e-201,-4.3824701756972114e-201,-4.3625498571713144e-201,-4.3426295386454175e-201,-4.322709220119522e-201,-4.302788901593625e-201,-4.282868583067729e-201,-4.2629482645418326e-201,-4.243027946015936e-201,-4.2231076274900394e-201,-4.203187308964144e-201,-4.183266990438247e-201,-4.163346671912351e-201,-4.1434263533864544e-201,-4.123506034860558e-201,-4.103585716334661e-201,-4.083665397808766e-201,-4.063745079282869e-201,-4.043824760756971e-201,-4.0239044422310756e-201,-4.0039841237051786e-201,-3.9840638051792824e-201,-3.964143486653386e-201,-3.94422316812749e-201,-3.924302849601593e-201,-3.9043825310756975e-201,-3.8844622125498005e-201,-3.864541894023904e-201,-3.844621575498008e-201,-3.824701256972112e-201,-3.804780938446215e-201,-3.7848606199203186e-201,-3.7649403013944224e-201,-3.7450199828685254e-201,-3.72509966434263e-201,-3.705179345816733e-201,-3.685259027290837e-201,-3.6653387087649405e-201,-3.645418390239044e-201,-3.625498071713147e-201,-3.605577753187252e-201,-3.585657434661355e-201,-3.565737116135458e-201,-3.545816797609562e-201,-3.525896479083665e-201,-3.5059761605577685e-201,-3.486055842031872e-201,-3.466135523505976e-201,-3.446215204980079e-201,-3.4262948864541835e-201,-3.4063745679282866e-201,-3.38645424940239e-201,-3.366533930876494e-201,-3.346613612350598e-201,-3.326693293824701e-201,-3.306772975298805e-201,-3.2868526567729085e-201,-3.266932338247012e-201,-3.2470120197211156e-201,-3.2270917011952194e-201,-3.2071713826693224e-201,-3.1872510641434262e-201,-3.16733074561753e-201,-3.1474104270916334e-201,-3.127490108565737e-201,-3.1075697900398405e-201,-3.087649471513944e-201,-3.0677291529880477e-201,-3.0478088344621515e-201,-3.027888515936255e-201,-3.0079681974103587e-201,-2.9880478788844624e-201,-2.9681275603585655e-201,-2.9482072418326692e-201,-2.928286923306773e-201,-2.9083666047808764e-201,-2.88844628625498e-201,-2.868525967729084e-201,-2.848605649203187e-201,-2.8286853306772907e-201,-2.808765012151394e-201,-2.788844693625498e-201,-2.7689243750996017e-201,-2.749004056573705e-201,-2.7290837380478085e-201,-2.7091634195219123e-201,-2.6892431009960157e-201,-2.6693227824701194e-201,-2.6494024639442232e-201,-2.6294821454183266e-201,-2.6095618268924304e-201,-2.589641508366534e-201,-2.569721189840637e-201,-2.549800871314741e-201,-2.5298805527888447e-201,-2.509960234262948e-201,-2.4900399157370515e-201,-2.4701195972111553e-201,-2.4501992786852587e-201,-2.4302789601593625e-201,-2.4103586416334662e-201,-2.3904383231075696e-201,-2.3705180045816734e-201,-2.350597686055777e-201,-2.3306773675298806e-201,-2.3107570490039843e-201,-2.2908367304780877e-201,-2.270916411952191e-201,-2.2509960934262946e-201,-2.231075774900398e-201,-2.2111554563745017e-201,-2.1912351378486055e-201,-2.171314819322709e-201,-2.1513945007968127e-201,-2.1314741822709164e-201,-2.11155386374502e-201,-2.0916335452191236e-201,-2.0717132266932274e-201,-2.0517929081673308e-201,-2.0318725896414345e-201,-2.0119522711155376e-201,-1.992031952589641e-201,-1.9721116340637448e-201,-1.9521913155378485e-201,-1.932270997011952e-201,-1.9123506784860557e-201,-1.8924303599601595e-201,-1.872510041434263e-201,-1.8525897229083666e-201,-1.8326694043824704e-201,-1.8127490858565738e-201,-1.7928287673306776e-201,-1.772908448804781e-201,-1.7529881302788844e-201,-1.7330678117529878e-201,-1.7131474932270916e-201,-1.693227174701195e-201,-1.6733068561752987e-201,-1.6533865376494025e-201,-1.633466219123506e-201,-1.6135459005976097e-201,-1.593625582071713e-201,-1.5737052635458167e-201,-1.5537849450199204e-201,-1.5338646264940238e-201,-1.5139443079681274e-201,-1.4940239894422312e-201,-1.4741036709163346e-201,-1.4541833523904382e-201,-1.434263033864542e-201,-1.4143427153386455e-201,-1.394422396812749e-201,-1.3745020782868525e-201,-1.3545817597609561e-201,-1.3346614412350597e-201,-1.3147411227091633e-201,-1.294820804183267e-201,-1.2749004856573706e-201,-1.254980167131474e-201,-1.2350598486055776e-201,-1.2151395300796812e-201,-1.1952192115537848e-201,-1.1752988930278886e-201,-1.1553785745019921e-201,-1.1354582559760957e-201,-1.115537937450199e-201,-1.0956176189243027e-201,-1.0756973003984063e-201,-1.0557769818725099e-201,-1.0358566633466137e-201,-1.0159363448207172e-201,-9.960160262948206e-202,-9.760957077689242e-202,-9.561753892430278e-202,-9.362550707171314e-202,-9.163347521912352e-202,-8.964144336653388e-202,-8.764941151394422e-202,-8.56573796613546e-202,-8.366534780876493e-202,-8.16733159561753e-202,-7.968128410358565e-202,-7.768925225099602e-202,-7.569722039840638e-202,-7.370518854581673e-202,-7.171315669322709e-202,-6.972112484063745e-202,-6.77290929880478e-202,-6.573706113545816e-202,-6.374502928286853e-202,-6.175299743027889e-202,-5.976096557768924e-202,-5.77689337250996e-202,-5.577690187250995e-202,-5.378487001992031e-202,-5.179283816733068e-202,-4.980080631474103e-202,-4.78087744621514e-202,-4.581674260956176e-202,-4.3824710756972105e-202,-4.183267890438247e-202,-3.9840647051792827e-202,-3.7848615199203186e-202,-3.585658334661355e-202,-3.3864551494023903e-202,-3.1872519641434266e-202,-2.988048778884462e-202,-2.7888455936254974e-202,-2.589642408366534e-202,-2.3904392231075696e-202,-2.1912360378486054e-202,-1.9920328525896413e-202,-1.7928296673306774e-202,-1.5936264820717132e-202,-1.3944232968127489e-202,-1.195220111553785e-202,-9.960169262948207e-203,-7.968137410358565e-203,-5.976105557768924e-203,-3.984073705179283e-203,-1.9920418525896415e-203,-1.0e-208]} diff --git a/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/tiny_positive.json b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/tiny_positive.json new file mode 100644 index 000000000000..b843705f1547 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/test/fixtures/julia/tiny_positive.json @@ -0,0 +1 @@ +{"expected":[1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002],"x":[1.0e-300,9.980079681474106e-301,9.960159362948207e-301,9.94023904442231e-301,9.920318725896415e-301,9.900398407370519e-301,9.880478088844623e-301,9.860557770318725e-301,9.840637451792829e-301,9.820717133266933e-301,9.800796814741037e-301,9.780876496215141e-301,9.760956177689242e-301,9.741035859163347e-301,9.721115540637451e-301,9.701195222111553e-301,9.681274903585657e-301,9.661354585059761e-301,9.641434266533864e-301,9.621513948007968e-301,9.601593629482072e-301,9.581673310956176e-301,9.56175299243028e-301,9.541832673904382e-301,9.521912355378486e-301,9.501992036852588e-301,9.482071718326694e-301,9.462151399800798e-301,9.442231081274899e-301,9.422310762749004e-301,9.402390444223108e-301,9.38247012569721e-301,9.362549807171316e-301,9.342629488645419e-301,9.322709170119521e-301,9.302788851593627e-301,9.282868533067729e-301,9.262948214541833e-301,9.243027896015937e-301,9.22310757749004e-301,9.203187258964143e-301,9.183266940438247e-301,9.163346621912351e-301,9.143426303386455e-301,9.123505984860558e-301,9.103585666334662e-301,9.083665347808764e-301,9.06374502928287e-301,9.043824710756974e-301,9.023904392231074e-301,9.00398407370518e-301,8.984063755179282e-301,8.964143436653386e-301,8.944223118127492e-301,8.924302799601594e-301,8.904382481075697e-301,8.884462162549802e-301,8.864541844023905e-301,8.844621525498009e-301,8.824701206972113e-301,8.804780888446215e-301,8.784860569920319e-301,8.764940251394421e-301,8.745019932868527e-301,8.72509961434263e-301,8.705179295816731e-301,8.685258977290837e-301,8.66533865876494e-301,8.645418340239043e-301,8.625498021713149e-301,8.605577703187251e-301,8.585657384661354e-301,8.565737066135458e-301,8.545816747609562e-301,8.525896429083666e-301,8.50597611055777e-301,8.486055792031872e-301,8.466135473505976e-301,8.44621515498008e-301,8.426294836454184e-301,8.406374517928286e-301,8.38645419940239e-301,8.366533880876494e-301,8.346613562350597e-301,8.326693243824702e-301,8.306772925298805e-301,8.286852606772909e-301,8.266932288247013e-301,8.247011969721115e-301,8.227091651195219e-301,8.207171332669325e-301,8.187251014143427e-301,8.16733069561753e-301,8.147410377091633e-301,8.127490058565737e-301,8.107569740039841e-301,8.087649421513945e-301,8.067729102988048e-301,8.04780878446215e-301,8.027888465936256e-301,8.00796814741036e-301,7.988047828884462e-301,7.968127510358568e-301,7.94820719183267e-301,7.928286873306772e-301,7.908366554780878e-301,7.88844623625498e-301,7.868525917729084e-301,7.848605599203187e-301,7.82868528067729e-301,7.808764962151395e-301,7.788844643625499e-301,7.768924325099603e-301,7.749004006573705e-301,7.729083688047807e-301,7.709163369521913e-301,7.689243050996017e-301,7.669322732470119e-301,7.649402413944225e-301,7.629482095418325e-301,7.609561776892431e-301,7.589641458366533e-301,7.569721139840637e-301,7.549800821314741e-301,7.529880502788844e-301,7.509960184262948e-301,7.490039865737053e-301,7.470119547211156e-301,7.450199228685259e-301,7.430278910159363e-301,7.410358591633465e-301,7.39043827310757e-301,7.370517954581674e-301,7.350597636055776e-301,7.33067731752988e-301,7.310756999003985e-301,7.2908366804780875e-301,7.2709163619521915e-301,7.250996043426295e-301,7.231075724900399e-301,7.211155406374503e-301,7.191235087848606e-301,7.171314769322709e-301,7.151394450796814e-301,7.131474132270916e-301,7.11155381374502e-301,7.091633495219123e-301,7.0717131766932264e-301,7.051792858167331e-301,7.0318725396414344e-301,7.011952221115538e-301,6.9920319025896416e-301,6.9721115840637456e-301,6.952191265537849e-301,6.932270947011952e-301,6.912350628486056e-301,6.89243030996016e-301,6.872509991434263e-301,6.852589672908367e-301,6.83266935438247e-301,6.812749035856574e-301,6.792828717330678e-301,6.7729083988047805e-301,6.7529880802788845e-301,6.7330677617529885e-301,6.713147443227092e-301,6.693227124701196e-301,6.673306806175299e-301,6.653386487649402e-301,6.633466169123507e-301,6.613545850597609e-301,6.593625532071713e-301,6.573705213545817e-301,6.55378489501992e-301,6.533864576494024e-301,6.513944257968128e-301,6.4940239394422306e-301,6.474103620916335e-301,6.4541833023904386e-301,6.434262983864542e-301,6.414342665338646e-301,6.394422346812749e-301,6.374502028286853e-301,6.354581709760957e-301,6.33466139123506e-301,6.314741072709163e-301,6.294820754183267e-301,6.274900435657371e-301,6.254980117131474e-301,6.2350597986055775e-301,6.2151394800796815e-301,6.1952191615537855e-301,6.175298843027889e-301,6.155378524501992e-301,6.135458205976096e-301,6.1155378874502e-301,6.095617568924303e-301,6.075697250398406e-301,6.05577693187251e-301,6.035856613346614e-301,6.015936294820717e-301,5.996015976294821e-301,5.9760956577689236e-301,5.956175339243028e-301,5.936255020717132e-301,5.916334702191235e-301,5.896414383665339e-301,5.8764940651394435e-301,5.856573746613546e-301,5.83665342808765e-301,5.816733109561753e-301,5.796812791035856e-301,5.776892472509961e-301,5.756972153984063e-301,5.737051835458167e-301,5.7171315169322705e-301,5.6972111984063745e-301,5.6772908798804785e-301,5.657370561354582e-301,5.637450242828685e-301,5.61752992430279e-301,5.597609605776893e-301,5.577689287250996e-301,5.557768968725099e-301,5.537848650199204e-301,5.517928331673307e-301,5.49800801314741e-301,5.478087694621514e-301,5.458167376095617e-301,5.438247057569721e-301,5.418326739043825e-301,5.398406420517928e-301,5.378486101992032e-301,5.3585657834661365e-301,5.338645464940239e-301,5.318725146414343e-301,5.298804827888446e-301,5.27888450936255e-301,5.258964190836654e-301,5.239043872310756e-301,5.21912355378486e-301,5.199203235258965e-301,5.1792829167330675e-301,5.1593625982071715e-301,5.1394422796812755e-301,5.119521961155378e-301,5.099601642629483e-301,5.079681324103586e-301,5.059761005577689e-301,5.039840687051793e-301,5.019920368525897e-301,5.00000005e-301,4.980079731474104e-301,4.960159412948207e-301,4.940239094422311e-301,4.920318775896414e-301,4.900398457370518e-301,4.8804781388446215e-301,4.8605578203187255e-301,4.840637501792829e-301,4.820717183266933e-301,4.800796864741036e-301,4.780876546215139e-301,4.760956227689243e-301,4.741035909163347e-301,4.72111559063745e-301,4.701195272111553e-301,4.681274953585658e-301,4.661354635059761e-301,4.6414343165338645e-301,4.6215139980079685e-301,4.601593679482072e-301,4.581673360956176e-301,4.56175304243028e-301,4.541832723904382e-301,4.521912405378487e-301,4.501992086852591e-301,4.482071768326693e-301,4.462151449800797e-301,4.4422311312749e-301,4.422310812749004e-301,4.402390494223108e-301,4.3824701756972105e-301,4.3625498571713145e-301,4.3426295386454185e-301,4.322709220119522e-301,4.302788901593626e-301,4.282868583067729e-301,4.262948264541833e-301,4.243027946015937e-301,4.22310762749004e-301,4.203187308964143e-301,4.183266990438246e-301,4.163346671912351e-301,4.143426353386454e-301,4.1235060348605575e-301,4.1035857163346615e-301,4.0836653978087654e-301,4.063745079282869e-301,4.043824760756973e-301,4.023904442231075e-301,4.00398412370518e-301,3.984063805179284e-301,3.964143486653386e-301,3.94422316812749e-301,3.924302849601594e-301,3.904382531075697e-301,3.884462212549801e-301,3.8645418940239035e-301,3.8446215754980075e-301,3.824701256972112e-301,3.8047809384462155e-301,3.784860619920319e-301,3.764940301394423e-301,3.745019982868526e-301,3.72509966434263e-301,3.705179345816733e-301,3.685259027290837e-301,3.66533870876494e-301,3.645418390239044e-301,3.6254980717131477e-301,3.6055777531872513e-301,3.5856574346613544e-301,3.5657371161354584e-301,3.545816797609562e-301,3.525896479083665e-301,3.5059761605577688e-301,3.4860558420318727e-301,3.4661355235059763e-301,3.4462152049800795e-301,3.4262948864541835e-301,3.406374567928287e-301,3.3864542494023906e-301,3.366533930876494e-301,3.3466136123505978e-301,3.3266932938247014e-301,3.306772975298805e-301,3.2868526567729085e-301,3.266932338247012e-301,3.2470120197211157e-301,3.2270917011952197e-301,3.207171382669323e-301,3.187251064143426e-301,3.1673307456175304e-301,3.1474104270916335e-301,3.127490108565737e-301,3.1075697900398403e-301,3.0876494715139443e-301,3.067729152988048e-301,3.0478088344621514e-301,3.027888515936255e-301,3.0079681974103586e-301,2.988047878884462e-301,2.968127560358566e-301,2.9482072418326693e-301,2.928286923306773e-301,2.908366604780877e-301,2.88844628625498e-301,2.8685259677290836e-301,2.8486056492031868e-301,2.828685330677291e-301,2.8087650121513944e-301,2.788844693625498e-301,2.7689243750996015e-301,2.7490040565737055e-301,2.7290837380478087e-301,2.7091634195219127e-301,2.689243100996016e-301,2.66932278247012e-301,2.649402463944223e-301,2.629482145418327e-301,2.60956182689243e-301,2.589641508366534e-301,2.5697211898406377e-301,2.549800871314741e-301,2.5298805527888444e-301,2.5099602342629484e-301,2.490039915737052e-301,2.470119597211155e-301,2.450199278685259e-301,2.4302789601593627e-301,2.4103586416334663e-301,2.3904383231075695e-301,2.3705180045816735e-301,2.350597686055777e-301,2.3306773675298806e-301,2.310757049003984e-301,2.2908367304780878e-301,2.2709164119521913e-301,2.250996093426295e-301,2.2310757749003985e-301,2.2111554563745017e-301,2.1912351378486056e-301,2.1713148193227092e-301,2.151394500796813e-301,2.131474182270916e-301,2.1115538637450204e-301,2.0916335452191235e-301,2.071713226693227e-301,2.0517929081673307e-301,2.0318725896414347e-301,2.011952271115538e-301,1.992031952589642e-301,1.972111634063745e-301,1.952191315537849e-301,1.932270997011952e-301,1.9123506784860557e-301,1.8924303599601593e-301,1.8725100414342633e-301,1.8525897229083667e-301,1.8326694043824702e-301,1.812749085856574e-301,1.7928287673306774e-301,1.7729084488047812e-301,1.7529881302788843e-301,1.733067811752988e-301,1.7131474932270917e-301,1.693227174701195e-301,1.6733068561752988e-301,1.6533865376494022e-301,1.633466219123506e-301,1.6135459005976096e-301,1.5936255820717132e-301,1.5737052635458167e-301,1.5537849450199203e-301,1.5338646264940239e-301,1.5139443079681277e-301,1.494023989442231e-301,1.4741036709163348e-301,1.4541833523904384e-301,1.4342630338645418e-301,1.4143427153386453e-301,1.394422396812749e-301,1.3745020782868525e-301,1.3545817597609563e-301,1.3346614412350597e-301,1.3147411227091634e-301,1.2948208041832668e-301,1.2749004856573706e-301,1.2549801671314742e-301,1.2350598486055777e-301,1.2151395300796813e-301,1.195219211553785e-301,1.1752988930278885e-301,1.1553785745019923e-301,1.1354582559760956e-301,1.1155379374501992e-301,1.0956176189243026e-301,1.0756973003984064e-301,1.05577698187251e-301,1.0358566633466135e-301,1.015936344820717e-301,9.960160262948209e-302,9.760957077689242e-302,9.56175389243028e-302,9.362550707171316e-302,9.163347521912351e-302,8.964144336653387e-302,8.764941151394421e-302,8.565737966135458e-302,8.366534780876494e-302,8.16733159561753e-302,7.968128410358565e-302,7.768925225099601e-302,7.569722039840638e-302,7.370518854581674e-302,7.171315669322708e-302,6.972112484063744e-302,6.772909298804781e-302,6.573706113545817e-302,6.374502928286853e-302,6.175299743027888e-302,5.976096557768924e-302,5.776893372509961e-302,5.577690187250996e-302,5.378487001992031e-302,5.179283816733067e-302,4.980080631474104e-302,4.78087744621514e-302,4.5816742609561755e-302,4.382471075697211e-302,4.183267890438247e-302,3.984064705179283e-302,3.784861519920319e-302,3.585658334661355e-302,3.3864551494023906e-302,3.1872519641434264e-302,2.988048778884462e-302,2.7888455936254984e-302,2.5896424083665337e-302,2.39043922310757e-302,2.1912360378486057e-302,1.9920328525896415e-302,1.7928296673306775e-302,1.5936264820717133e-302,1.394423296812749e-302,1.1952201115537848e-302,9.960169262948207e-303,7.968137410358566e-303,5.976105557768924e-303,3.9840737051792834e-303,1.9920418525896414e-303,1.0e-308]} diff --git a/lib/node_modules/@stdlib/math/base/special/sincf/test/test.js b/lib/node_modules/@stdlib/math/base/special/sincf/test/test.js new file mode 100644 index 000000000000..98992ab8e52b --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/test/test.js @@ -0,0 +1,177 @@ +/** +* @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 ulpdiff = require( '@stdlib/number/float32/base/ulp-difference' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var sincf = 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 sincf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function computes the cardinal sine (medium negative values)', 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 = sincf( x[ i ] ); + t.strictEqual( ulpdiff( y, expected[ i ] ) <= 1, true, 'returns expected value within 1 ulp' ); + } + t.end(); +}); + +tape( 'the function computes the cardinal sine (medium positive values)', 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 = sincf( x[ i ] ); + t.strictEqual( ulpdiff( y, expected[ i ] ) <= 1, true, 'returns expected value within 1 ulp' ); + } + t.end(); +}); + +tape( 'the function computes the cardinal sine (large negative values)', 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 = sincf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the cardinal sine (large positive values)', 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 = sincf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the cardinal sine (huge negative values)', 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 = sincf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the cardinal sine (huge positive values)', 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 = sincf( 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 = sincf( NaN ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `1.0` if provided `0.0`', function test( t ) { + var v = sincf( f32( 0.0 ) ); + t.strictEqual( v, f32( 1.0 ), 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `0.0` if provided positive or negative infinity', function test( t ) { + var v = sincf( PINF ); + t.strictEqual( v, f32( 0.0 ), 'returns expected value' ); + + v = sincf( NINF ); + t.strictEqual( v, f32( 0.0 ), 'returns expected value' ); + t.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/sincf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/sincf/test/test.native.js new file mode 100644 index 000000000000..c70af6a1e510 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sincf/test/test.native.js @@ -0,0 +1,186 @@ +/** +* @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 ulpdiff = require( '@stdlib/number/float32/base/ulp-difference' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var tryRequire = require( '@stdlib/utils/try-require' ); + + +// 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' ); + + +// VARIABLES // + +var sincf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( sincf instanceof Error ) +}; + + +// TESTS // + +tape( 'main export is a function', opts, function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof sincf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function computes the cardinal sine (medium negative values)', 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 = sincf( x[ i ] ); + t.strictEqual( ulpdiff( y, expected[ i ] ) <= 1, true, 'returns expected value within 1 ulp' ); + } + t.end(); +}); + +tape( 'the function computes the cardinal sine (medium positive values)', 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 = sincf( x[ i ] ); + t.strictEqual( ulpdiff( y, expected[ i ] ) <= 1, true, 'returns expected value within 1 ulp' ); + } + t.end(); +}); + +tape( 'the function computes the cardinal sine (large negative values)', 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 = sincf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the cardinal sine (large positive values)', 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 = sincf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the cardinal sine (huge negative values)', 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 = sincf( x[ i ] ); + t.strictEqual( y, expected[ i ], 'returns expected value' ); + } + t.end(); +}); + +tape( 'the function computes the cardinal sine (huge positive values)', 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 = sincf( 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 = sincf( NaN ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `1.0` if provided `0.0`', opts, function test( t ) { + var v = sincf( f32( 0.0 ) ); + t.strictEqual( v, f32( 1.0 ), 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `0.0` if provided positive or negative infinity', opts, function test( t ) { + var v = sincf( PINF ); + t.strictEqual( v, f32( 0.0 ), 'returns expected value' ); + + v = sincf( NINF ); + t.strictEqual( v, f32( 0.0 ), 'returns expected value' ); + t.end(); +});