From cb213f6308c473f325c35f9e52c6d97b0b35884d Mon Sep 17 00:00:00 2001 From: Vivek Maurya Date: Sat, 7 Dec 2024 00:42:26 +0530 Subject: [PATCH] feat(math): add math/base/special/sqrtpif --- .../math/base/special/sqrtpif/README.md | 201 ++++++++++++ .../special/sqrtpif/benchmark/benchmark.js | 51 ++++ .../sqrtpif/benchmark/benchmark.native.js | 60 ++++ .../sqrtpif/benchmark/c/native/Makefile | 146 +++++++++ .../sqrtpif/benchmark/c/native/benchmark.c | 123 ++++++++ .../math/base/special/sqrtpif/binding.gyp | 170 +++++++++++ .../math/base/special/sqrtpif/docs/repl.txt | 32 ++ .../special/sqrtpif/docs/types/index.d.ts | 56 ++++ .../base/special/sqrtpif/docs/types/test.ts | 44 +++ .../base/special/sqrtpif/examples/c/Makefile | 146 +++++++++ .../base/special/sqrtpif/examples/c/example.c | 33 ++ .../base/special/sqrtpif/examples/index.js | 30 ++ .../math/base/special/sqrtpif/include.gypi | 53 ++++ .../stdlib/math/base/special/sqrtpif.h | 38 +++ .../math/base/special/sqrtpif/lib/index.js | 52 ++++ .../math/base/special/sqrtpif/lib/main.js | 58 ++++ .../math/base/special/sqrtpif/lib/native.js | 58 ++++ .../math/base/special/sqrtpif/manifest.json | 76 +++++ .../math/base/special/sqrtpif/package.json | 68 +++++ .../math/base/special/sqrtpif/src/Makefile | 70 +++++ .../math/base/special/sqrtpif/src/addon.c | 23 ++ .../math/base/special/sqrtpif/src/main.c | 35 +++ .../sqrtpif/test/fixtures/julia/REQUIRE | 2 + .../test/fixtures/julia/huge_positive.json | 1 + .../test/fixtures/julia/large_positive.json | 1 + .../test/fixtures/julia/medium_positive.json | 1 + .../sqrtpif/test/fixtures/julia/runner.jl | 96 ++++++ .../test/fixtures/julia/small_positive.json | 1 + .../sqrtpif/test/fixtures/julia/smaller.json | 1 + .../test/fixtures/julia/subnormal.json | 1 + .../test/fixtures/julia/tiny_positive.json | 1 + .../fixtures/julia/very_large_positive.json | 1 + .../math/base/special/sqrtpif/test/test.js | 278 +++++++++++++++++ .../base/special/sqrtpif/test/test.native.js | 287 ++++++++++++++++++ 34 files changed, 2294 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/README.md create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/benchmark/benchmark.js create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/benchmark/benchmark.native.js create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/benchmark/c/native/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/benchmark/c/native/benchmark.c create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/binding.gyp create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/docs/repl.txt create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/docs/types/index.d.ts create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/docs/types/test.ts create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/examples/c/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/examples/c/example.c create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/examples/index.js create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/include.gypi create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/include/stdlib/math/base/special/sqrtpif.h create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/lib/index.js create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/lib/main.js create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/lib/native.js create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/manifest.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/package.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/src/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/src/addon.c create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/src/main.c create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/REQUIRE create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/huge_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/large_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/medium_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/runner.jl create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/small_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/smaller.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/subnormal.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/tiny_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/very_large_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/test/test.js create mode 100644 lib/node_modules/@stdlib/math/base/special/sqrtpif/test/test.native.js diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/README.md b/lib/node_modules/@stdlib/math/base/special/sqrtpif/README.md new file mode 100644 index 00000000000..a8ced4ae085 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/README.md @@ -0,0 +1,201 @@ + + +# sqrtpif + +> Compute the principal [square root][@stdlib/math/base/special/sqrtf] of the product of π and a positive number. + +
+ +## Usage + +```javascript +var sqrtpif = require( '@stdlib/math/base/special/sqrtpif' ); +``` + +#### sqrtpif( x ) + +Computes the principal [square root][@stdlib/math/base/special/sqrtf] of the product of π and a positive single-precision floating-point number. + +```javascript +var v = sqrtpif( 4.0 ); +// returns ~3.5449 + +v = sqrtpif( 10.0 ); +// returns ~5.60499 + +v = sqrtpif( 0.0 ); +// returns 0.0 + +v = sqrtpif( NaN ); +// returns NaN +``` + +For negative numbers, the principal [square root][@stdlib/math/base/special/sqrtf] is **not** defined. + +```javascript +var v = sqrtpif( -4.0 ); +// returns NaN +``` + +
+ + + +
+ +## Examples + + + +```javascript +var discreteUniform = require( '@stdlib/random/base/discrete-uniform' ); +var sqrtpif = require( '@stdlib/math/base/special/sqrtpif' ); + +var x; +var i; + +for ( i = 0; i < 100; i++ ) { + x = discreteUniform( 0, 100 ); + console.log( 'sqrtpif(%f) = %f', x, sqrtpif( x ) ); +} +``` + +
+ + + + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/math/base/special/sqrtpif.h" +``` + +#### stdlib_base_sqrtpif( x ) + +Computes the principal [square root][@stdlib/math/base/special/sqrtf] of the product of π and a positive single-precision floating-point number. + +```c +float x = stdlib_base_sqrtpif( 4.0 ); +// returns ~3.5449 + +x = stdlib_base_sqrtpif( 10.0 ); +// returns ~5.60499 +``` + +The function accepts the following arguments: + +- **x**: `[in] float` input value. + +```c +float stdlib_base_sqrtpif( const float x ); +``` + +
+ + + + + +
+ +
+ + + + + +
+ +### Examples + +```c +#include "stdlib/math/base/special/sqrtpif.h" +#include +#include + +int main( void ) { + float x; + float v; + int i; + + for ( i = 0; i < 100; i++ ) { + x = ( (float)rand() / (float)RAND_MAX ) * 100.0; + v = stdlib_base_sqrtpif( x ); + printf( "sqrtpif(%lf) = %lf\n", x, v ); + } +} +``` + +
+ + + +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/sqrtpif/benchmark/benchmark.js new file mode 100644 index 00000000000..9541301401e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/benchmark/benchmark.js @@ -0,0 +1,51 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2022 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 randu = require( '@stdlib/random/base/randu' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var pkg = require( './../package.json' ).name; +var sqrtpif = require( './../lib' ); + + +// MAIN // + +bench( pkg, function benchmark( b ) { + var x; + var y; + var i; + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + x = ( randu()*100000.0 ) - 0.0; + y = sqrtpif( x ); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/sqrtpif/benchmark/benchmark.native.js new file mode 100644 index 00000000000..6a799dddadd --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/benchmark/benchmark.native.js @@ -0,0 +1,60 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2022 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 randu = require( '@stdlib/random/base/randu' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var tryRequire = require( '@stdlib/utils/try-require' ); +var pkg = require( './../package.json' ).name; + + +// VARIABLES // + +var sqrtpif = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( sqrtpif instanceof Error ) +}; + + +// MAIN // + +bench( pkg+'::native', opts, function benchmark( b ) { + var x; + var y; + var i; + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + x = ( randu()*100000.0 ) - 0.0; + y = sqrtpif( x ); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/sqrtpif/benchmark/c/native/Makefile new file mode 100644 index 00000000000..d6b58c7f5d3 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/benchmark/c/native/Makefile @@ -0,0 +1,146 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2022 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/sqrtpif/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/sqrtpif/benchmark/c/native/benchmark.c new file mode 100644 index 00000000000..1dceccbb102 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/benchmark/c/native/benchmark.c @@ -0,0 +1,123 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2022 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/sqrtpif.h" +#include +#include +#include +#include +#include + +#define NAME "sqrtpif" +#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; +} + +/** +* Runs a benchmark. +* +* @return elapsed time in seconds +*/ +static double benchmark( void ) { + double elapsed; + float x; + float y; + double t; + int i; + + t = tic(); + for ( i = 0; i < ITERATIONS; i++ ) { + x = ( (float)rand() * 100000.0 ) - 0.0; + y = stdlib_base_sqrtpif( x ); + if ( y != y ) { + printf( "should not return NaN\n" ); + break; + } + } + elapsed = tic() - t; + if ( y != y ) { + printf( "should not return NaN\n" ); + } + return elapsed; +} + +/** +* Main execution sequence. +*/ +int main( void ) { + double elapsed; + int i; + + // Use the current time to seed the random number generator: + srand( time( NULL ) ); + + print_version(); + for ( i = 0; i < REPEATS; i++ ) { + printf( "# c::%s\n", NAME ); + elapsed = benchmark(); + print_results( elapsed ); + printf( "ok %d benchmark finished\n", i+1 ); + } + print_summary( REPEATS, REPEATS ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/binding.gyp b/lib/node_modules/@stdlib/math/base/special/sqrtpif/binding.gyp new file mode 100644 index 00000000000..1058b57bab1 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/binding.gyp @@ -0,0 +1,170 @@ +# @license Apache-2.0 +# +# Copyright (c) 2022 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/sqrtpif/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/sqrtpif/docs/repl.txt new file mode 100644 index 00000000000..492eeb748c2 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/docs/repl.txt @@ -0,0 +1,32 @@ + +{{alias}}( x ) + Computes the principal square root of the product of π and a positive + single-precision floating-point number. + + For `x < 0`, the square root is not defined. + + Parameters + ---------- + x: number + Input value. + + Returns + ------- + y: number + Principal square root of the product of π and the input value. + + Examples + -------- + > var y = {{alias}}( 4.0 ) + ~3.5449 + > y = {{alias}}( 10.0 ) + ~5.60499 + > y = {{alias}}( 0.0 ) + 0.0 + > y = {{alias}}( -4.0 ) + NaN + > y = {{alias}}( NaN ) + NaN + + See Also + -------- diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/sqrtpif/docs/types/index.d.ts new file mode 100644 index 00000000000..8c31b6fbadd --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/docs/types/index.d.ts @@ -0,0 +1,56 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2022 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 principal square root of the product of π and a positive single-precision floating-point number. +* +* ## Notes +* +* - For `x < 0`, the principal square root is not defined. +* +* @param x - input value +* @returns result +* +* @example +* var v = sqrtpif( 4.0 ); +* // returns ~3.5449 +* +* @example +* var v = sqrtpif( 10.0 ); +* // returns ~5.60499 +* +* @example +* var v = sqrtpif( 0.0 ); +* // returns 0.0 +* +* @example +* var v = sqrtpif( -4.0 ); +* // returns NaN +* +* @example +* var v = sqrtpif( NaN ); +* // returns NaN +*/ +declare function sqrtpif( x: number ): number; + + +// EXPORTS // + +export = sqrtpif; diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/sqrtpif/docs/types/test.ts new file mode 100644 index 00000000000..4136e7ec9cf --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/docs/types/test.ts @@ -0,0 +1,44 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2022 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 sqrtpif = require( './index' ); + + +// TESTS // + +// The function returns a number... +{ + sqrtpif( 2 ); // $ExpectType number +} + +// The compiler throws an error if the function is provided a value other than a number... +{ + sqrtpif( true ); // $ExpectError + sqrtpif( false ); // $ExpectError + sqrtpif( null ); // $ExpectError + sqrtpif( undefined ); // $ExpectError + sqrtpif( '5' ); // $ExpectError + sqrtpif( [] ); // $ExpectError + sqrtpif( {} ); // $ExpectError + sqrtpif( ( x: number ): number => x ); // $ExpectError +} + +// The compiler throws an error if the function is provided insufficient arguments... +{ + sqrtpif(); // $ExpectError +} diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/sqrtpif/examples/c/Makefile new file mode 100644 index 00000000000..91d364d19fc --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/examples/c/Makefile @@ -0,0 +1,146 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2022 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/sqrtpif/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/sqrtpif/examples/c/example.c new file mode 100644 index 00000000000..a1e340915cd --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/examples/c/example.c @@ -0,0 +1,33 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2022 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/sqrtpif.h" +#include +#include + +int main( void ) { + float x; + float v; + int i; + + for ( i = 0; i < 100; i++ ) { + x = ( (float)rand() / (float)RAND_MAX ) * 100.0; + v = stdlib_base_sqrtpif( x ); + printf( "sqrtpif(%lf) = %lf\n", x, v ); + } +} diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/examples/index.js b/lib/node_modules/@stdlib/math/base/special/sqrtpif/examples/index.js new file mode 100644 index 00000000000..24ff70bb604 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/examples/index.js @@ -0,0 +1,30 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2022 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 discreteUniform = require( '@stdlib/random/base/discrete-uniform' ); +var sqrtpif = require( './../lib' ); + +var x; +var i; + +for ( i = 0; i < 100; i++ ) { + x = discreteUniform( 0, 100 ); + console.log( 'sqrtpif(%d) = %d', x, sqrtpif( x ) ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/include.gypi b/lib/node_modules/@stdlib/math/base/special/sqrtpif/include.gypi new file mode 100644 index 00000000000..3b437d52479 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/include.gypi @@ -0,0 +1,53 @@ +# @license Apache-2.0 +# +# Copyright (c) 2022 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", + "math.sqrt", + "sqrtpif", + "principal", + "square", + "root", + "power", + "number", + "pi" + ] +} diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/src/Makefile b/lib/node_modules/@stdlib/math/base/special/sqrtpif/src/Makefile new file mode 100644 index 00000000000..f79b8723871 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/src/Makefile @@ -0,0 +1,70 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2022 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/sqrtpif/src/addon.c b/lib/node_modules/@stdlib/math/base/special/sqrtpif/src/addon.c new file mode 100644 index 00000000000..7d36e365550 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/src/addon.c @@ -0,0 +1,23 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2022 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/sqrtpif.h" +#include "stdlib/math/base/napi/unary.h" + +// cppcheck-suppress shadowFunction +STDLIB_MATH_BASE_NAPI_MODULE_F_F( stdlib_base_sqrtpif ) diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/src/main.c b/lib/node_modules/@stdlib/math/base/special/sqrtpif/src/main.c new file mode 100644 index 00000000000..edaa1854fc2 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/src/main.c @@ -0,0 +1,35 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2022 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/sqrtpif.h" +#include "stdlib/math/base/special/sqrtf.h" +#include "stdlib/constants/float32/pi.h" + +/** +* Compute the principal square root of the product of π and a positive single-precision floating-point number. +* +* @param x input value +* @return output value +* +* @example +* float out = stdlib_base_sqrtpif( 4.0 ); +* // returns 3.5449 +*/ +float stdlib_base_sqrtpif( const float x ) { + return stdlib_base_sqrtf( x * STDLIB_CONSTANT_FLOAT32_PI ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/REQUIRE new file mode 100644 index 00000000000..308c3be89c8 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 1.5 +JSON 0.21 diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/huge_positive.json b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/huge_positive.json new file mode 100644 index 00000000000..4091557a935 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/huge_positive.json @@ -0,0 +1 @@ +{"expected":[1.7724538e15,2.5061897e17,3.544243e17,4.3407757e17,5.0122856e17,5.6038984e17,6.138758e17,6.6306124e17,7.08842e17,7.518402e17,7.9250895e17,8.3119025e17,8.681497e17,9.035987e17,9.377086e17,9.706205e17,1.0024524e18,1.0333042e18,1.06326114e18,1.0923969e18,1.1207755e18,1.1484531e18,1.1754791e18,1.2018976e18,1.2277478e18,1.2530647e18,1.2778803e18,1.3022231e18,1.326119e18,1.3495918e18,1.3726634e18,1.3953536e18,1.4176806e18,1.4396615e18,1.4613117e18,1.4826458e18,1.5036773e18,1.5244186e18,1.5448815e18,1.5650769e18,1.5850149e18,1.6047053e18,1.624157e18,1.6433783e18,1.6623776e18,1.6811621e18,1.699739e18,1.7181151e18,1.7362967e18,1.7542899e18,1.7721003e18,1.7897336e18,1.8071948e18,1.8244889e18,1.8416207e18,1.8585944e18,1.8754146e18,1.8920852e18,1.9086103e18,1.9249936e18,1.9412385e18,1.9573487e18,1.9733272e18,1.9891775e18,2.0049024e18,2.020505e18,2.0359881e18,2.0513542e18,2.066606e18,2.0817463e18,2.096777e18,2.111701e18,2.1265201e18,2.1412366e18,2.1558527e18,2.1703704e18,2.1847917e18,2.1991184e18,2.2133522e18,2.2274952e18,2.2415489e18,2.255515e18,2.2693953e18,2.2831911e18,2.2969041e18,2.3105357e18,2.3240872e18,2.3375603e18,2.3509562e18,2.3642763e18,2.3775215e18,2.3906934e18,2.4037933e18,2.4168222e18,2.429781e18,2.4426712e18,2.4554937e18,2.4682497e18,2.48094e18,2.4935657e18,2.5061278e18,2.518627e18,2.531065e18,2.5434417e18,2.5557587e18,2.5680166e18,2.5802162e18,2.5923587e18,2.6044443e18,2.616474e18,2.6284488e18,2.6403694e18,2.6522362e18,2.6640502e18,2.6758122e18,2.6875225e18,2.699182e18,2.7107915e18,2.7223515e18,2.7338625e18,2.7453252e18,2.7567404e18,2.7681085e18,2.77943e18,2.7907056e18,2.8019358e18,2.813121e18,2.8242625e18,2.8353596e18,2.8464138e18,2.857425e18,2.868394e18,2.8793213e18,2.8902073e18,2.9010524e18,2.911857e18,2.9226218e18,2.9333472e18,2.9440334e18,2.9546808e18,2.96529e18,2.9758615e18,2.9863956e18,2.9968927e18,3.0073531e18,3.017777e18,3.0281655e18,3.0385183e18,3.0488358e18,3.0591184e18,3.0693667e18,3.0795812e18,3.0897615e18,3.0999084e18,3.1100225e18,3.1201037e18,3.130152e18,3.1401687e18,3.1501533e18,3.1601066e18,3.1700284e18,3.1799193e18,3.1897794e18,3.1996093e18,3.209409e18,3.219179e18,3.2289193e18,3.2386305e18,3.2483125e18,3.2579657e18,3.2675905e18,3.2771868e18,3.2867553e18,3.296296e18,3.3058093e18,3.315295e18,3.3247538e18,3.3341857e18,3.343591e18,3.35297e18,3.3623228e18,3.3716497e18,3.3809507e18,3.3902265e18,3.3994766e18,3.4087018e18,3.417902e18,3.4270777e18,3.436229e18,3.4453557e18,3.4544583e18,3.463537e18,3.472592e18,3.4816234e18,3.4906317e18,3.4996166e18,3.5085784e18,3.5175175e18,3.526434e18,3.5353276e18,3.5441993e18,3.5530487e18,3.5618762e18,3.570682e18,3.579466e18,3.5882284e18,3.5969696e18,3.6056895e18,3.6143883e18,3.6230665e18,3.6317237e18,3.6403604e18,3.6489765e18,3.6575724e18,3.6661483e18,3.6747042e18,3.68324e18,3.6917563e18,3.7002527e18,3.70873e18,3.7171877e18,3.7256262e18,3.7340457e18,3.7424462e18,3.750828e18,3.759191e18,3.7675354e18,3.7758615e18,3.7841694e18,3.792459e18,3.8007302e18,3.8089837e18,3.8172196e18,3.8254373e18,3.8336378e18,3.8418206e18,3.849986e18,3.858134e18,3.866265e18,3.8743788e18,3.882476e18,3.890556e18,3.8986192e18,3.906666e18,3.914696e18,3.9227098e18,3.930707e18,3.9386884e18,3.9466533e18,3.9546022e18,3.9625352e18,3.9704525e18,3.9783539e18,3.9862395e18,3.9941099e18,4.0019645e18,4.0098037e18,4.0176279e18,4.0254366e18,4.0332302e18,4.041009e18,4.0487726e18,4.0565214e18,4.0642557e18,4.0719748e18,4.0796796e18,4.08737e18,4.0950458e18,4.1027072e18,4.1103543e18,4.1179874e18,4.1256062e18,4.133211e18,4.140802e18,4.1483788e18,4.155942e18,4.1634913e18,4.171027e18,4.1785494e18,4.186058e18,4.193553e18,4.201035e18,4.2085034e18,4.2159586e18,4.223401e18,4.2308298e18,4.238246e18,4.245649e18,4.253039e18,4.2604165e18,4.267781e18,4.275133e18,4.2824722e18,4.289799e18,4.2971133e18,4.304415e18,4.3117043e18,4.3189815e18,4.3262465e18,4.333499e18,4.3407397e18,4.3479684e18,4.3551848e18,4.3623896e18,4.3695824e18,4.3767633e18,4.3839324e18,4.3910896e18,4.3982356e18,4.4053698e18,4.4124924e18,4.4196035e18,4.4267034e18,4.433792e18,4.440869e18,4.4479347e18,4.4549894e18,4.462033e18,4.469065e18,4.4760865e18,4.4830968e18,4.4900963e18,4.4970847e18,4.5040622e18,4.511029e18,4.517985e18,4.5249307e18,4.5318653e18,4.5387895e18,4.5457032e18,4.5526062e18,4.559499e18,4.5663812e18,4.5732531e18,4.5801146e18,4.586966e18,4.593807e18,4.600638e18,4.607459e18,4.61427e18,4.6210704e18,4.627861e18,4.6346416e18,4.6414124e18,4.648174e18,4.654925e18,4.661666e18,4.668398e18,4.6751196e18,4.681832e18,4.688535e18,4.695228e18,4.7019114e18,4.7085854e18,4.71525e18,4.7219055e18,4.7285515e18,4.735188e18,4.7418154e18,4.7484334e18,4.755042e18,4.761642e18,4.7682323e18,4.774814e18,4.7813863e18,4.7879493e18,4.794504e18,4.8010494e18,4.8075855e18,4.814113e18,4.820632e18,4.827142e18,4.8336433e18,4.840136e18,4.846619e18,4.853095e18,4.859561e18,4.866019e18,4.872468e18,4.878909e18,4.885341e18,4.891765e18,4.898181e18,4.9045877e18,4.9109863e18,4.9173766e18,4.923759e18,4.9301326e18,4.936498e18,4.9428556e18,4.949205e18,4.9555456e18,4.961879e18,4.968204e18,4.9745205e18,4.9808295e18,4.98713e18,4.993423e18,4.999708e18,5.005985e18,5.0122546e18,5.018516e18,5.024769e18,5.0310156e18,5.0372536e18,5.043484e18,5.0497067e18,5.0559217e18,5.062129e18,5.0683286e18,5.074521e18,5.080706e18,5.086883e18,5.093052e18,5.0992144e18,5.1053695e18,5.111517e18,5.1176565e18,5.123789e18,5.1299144e18,5.1360327e18,5.142143e18,5.1482466e18,5.154343e18,5.160432e18,5.166514e18,5.172588e18,5.178656e18,5.1847163e18,5.1907697e18,5.196816e18,5.2028555e18,5.2088874e18,5.214913e18,5.2209315e18,5.2269425e18,5.2329475e18,5.238945e18,5.244936e18,5.2509195e18,5.256897e18,5.2628674e18,5.2688306e18,5.274788e18,5.280738e18,5.286681e18,5.292618e18,5.298548e18,5.304471e18,5.310388e18,5.3162987e18,5.3222025e18,5.3281e18,5.3339904e18,5.3398744e18,5.345752e18,5.351623e18,5.357488e18,5.363346e18,5.3691984e18,5.375044e18,5.3808835e18,5.3867164e18,5.3925427e18,5.3983635e18,5.404177e18,5.4099853e18,5.415787e18,5.421582e18,5.4273714e18,5.433154e18,5.438931e18,5.444702e18,5.4504666e18,5.4562253e18,5.4619774e18,5.467724e18,5.4734645e18,5.479199e18,5.4849275e18,5.49065e18,5.496366e18,5.5020766e18,5.5077814e18,5.5134796e18,5.519173e18,5.5248596e18,5.530541e18,5.536216e18,5.5418855e18,5.547549e18,5.553207e18,5.558859e18,5.564505e18,5.570146e18,5.575781e18,5.58141e18,5.5870336e18,5.5926516e18,5.598264e18,5.603871e18,5.609472e18,5.6150673e18,5.620657e18,5.6262417e18,5.6318206e18,5.637394e18,5.6429614e18,5.648524e18,5.654081e18,5.659632e18,5.665178e18,5.6707186e18,5.6762535e18,5.6817835e18,5.6873075e18,5.6928265e18,5.6983405e18,5.7038485e18,5.7093516e18,5.714849e18,5.720342e18,5.725829e18,5.731311e18,5.736787e18,5.742259e18,5.747725e18,5.753186e18,5.758642e18,5.7640924e18,5.7695383e18,5.7749787e18,5.7804136e18,5.785844e18,5.791269e18,5.796689e18,5.802104e18,5.807514e18,5.812919e18,5.8183187e18,5.8237134e18,5.829103e18,5.834488e18,5.839868e18,5.845243e18,5.850613e18,5.855978e18,5.861338e18,5.8666933e18,5.8720436e18,5.8773894e18,5.8827297e18,5.8880656e18,5.8933966e18,5.8987227e18,5.9040443e18,5.909361e18,5.9146727e18,5.9199795e18,5.925282e18,5.9305794e18,5.9358724e18,5.9411605e18,5.9464437e18,5.9517224e18,5.956996e18,5.9622656e18,5.9675306e18,5.9727907e18,5.978046e18,5.9832965e18,5.988543e18,5.993784e18,5.999022e18,6.004254e18,6.009482e18,6.014705e18,6.019924e18,6.0251385e18,6.0303485e18,6.0355536e18,6.040754e18,6.0459506e18,6.0511425e18,6.05633e18,6.061513e18,6.066692e18,6.0718655e18,6.0770354e18,6.082201e18,6.087362e18,6.092518e18,6.0976705e18,6.1028184e18,6.107962e18,6.113101e18,6.1182363e18,6.1233666e18,6.128493e18,6.133615e18,6.138733e18,6.143846e18,6.1489556e18,6.1540606e18,6.159161e18,6.164258e18,6.1693504e18,6.1744384e18,6.179522e18,6.1846017e18,6.1896776e18,6.194749e18,6.199816e18,6.2048795e18,6.2099383e18,6.2149933e18,6.220044e18,6.2250907e18,6.2301336e18,6.235172e18,6.240206e18,6.245237e18,6.250263e18,6.2552855e18,6.2603036e18,6.265318e18,6.2703284e18,6.2753345e18,6.280337e18,6.285335e18,6.290329e18,6.29532e18,6.300306e18,6.3052885e18,6.310267e18,6.315242e18,6.320212e18,6.325179e18,6.330142e18,6.3351007e18,6.340056e18,6.3450073e18,6.3499545e18,6.354898e18,6.359838e18,6.364774e18,6.3697056e18,6.374634e18,6.3795583e18,6.3844786e18,6.3893957e18,6.394309e18,6.399218e18,6.4041236e18,6.409025e18,6.413923e18,6.4188175e18,6.423708e18,6.428595e18,6.433478e18,6.4383575e18,6.443233e18,6.448105e18,6.452973e18,6.457838e18,6.462699e18,6.467556e18,6.47241e18,6.4772604e18,6.4821065e18,6.4869493e18,6.491789e18,6.4966244e18,6.501456e18,6.506285e18,6.5111094e18,6.515931e18,6.520748e18,6.5255625e18,6.530373e18,6.53518e18,6.5399837e18,6.5447836e18,6.54958e18,6.554373e18,6.5591625e18,6.5639486e18,6.568731e18,6.57351e18,6.5782857e18,6.5830576e18,6.587826e18,6.5925915e18,6.597353e18,6.602111e18,6.6068664e18,6.6116174e18,6.6163656e18,6.62111e18,6.6258517e18,6.6305895e18,6.635324e18,6.6400546e18,6.6447825e18,6.6495066e18,6.654228e18,6.6589453e18,6.6636595e18,6.668371e18,6.6730785e18,6.6777827e18,6.6824837e18,6.6871813e18,6.6918757e18,6.696567e18,6.7012545e18,6.705939e18,6.710621e18,6.7152986e18,6.719973e18,6.724645e18,6.729313e18,6.733978e18,6.73864e18,6.743299e18,6.747954e18,6.752606e18,6.757255e18,6.761901e18,6.7665435e18,6.771183e18,6.775819e18,6.780452e18,6.785082e18,6.7897086e18,6.794332e18,6.798953e18,6.8035696e18,6.808184e18,6.812795e18,6.817403e18,6.822008e18,6.8266093e18,6.831208e18,6.8358034e18,6.840396e18,6.8449854e18,6.8495715e18,6.854155e18,6.858735e18,6.863312e18,6.867886e18,6.872457e18,6.8770247e18,6.88159e18,6.8861517e18,6.8907103e18,6.895266e18,6.899819e18,6.904369e18,6.908916e18,6.91346e18,6.9180007e18,6.9225384e18,6.9270733e18,6.9316055e18,6.9361344e18,6.94066e18,6.9451834e18,6.9497035e18,6.954221e18,6.958735e18,6.963246e18,6.9677547e18,6.97226e18,6.976763e18,6.981262e18,6.985759e18,6.990253e18,6.994744e18,6.999232e18,7.0037175e18,7.0081997e18,7.0126797e18,7.0171563e18,7.0216297e18,7.026101e18,7.0305687e18,7.0350344e18,7.039497e18,7.0439564e18,7.048413e18,7.052867e18,7.057318e18,7.061766e18,7.066212e18,7.0706547e18,7.075095e18,7.079532e18,7.0839665e18,7.088398e18,7.092827e18,7.097253e18,7.1016763e18,7.106097e18,7.110515e18,7.11493e18,7.119342e18,7.123752e18,7.1281586e18,7.1325627e18,7.1369646e18,7.141363e18,7.145759e18,7.1501527e18,7.154543e18,7.158931e18,7.1633166e18,7.1676987e18,7.1720786e18,7.1764563e18,7.180831e18,7.1852024e18,7.189572e18,7.1939386e18,7.1983025e18,7.202664e18,7.207022e18,7.2113785e18,7.2157314e18,7.220082e18,7.22443e18,7.228776e18,7.233119e18,7.2374594e18,7.241797e18,7.246132e18,7.2504644e18,7.2547943e18,7.259122e18,7.2634464e18,7.2677686e18,7.2720885e18,7.276405e18,7.2807197e18,7.285032e18,7.2893415e18,7.2936483e18,7.2979524e18,7.302254e18,7.3065533e18,7.31085e18,7.3151443e18,7.319436e18,7.323725e18,7.328012e18,7.332296e18,7.3365776e18,7.340857e18,7.3451335e18,7.3494073e18,7.3536795e18,7.3579483e18,7.362215e18,7.3664794e18,7.370741e18,7.3750006e18,7.3792574e18,7.3835114e18,7.387764e18,7.3920134e18,7.39626e18,7.400505e18,7.404747e18,7.4089865e18,7.413224e18,7.417459e18,7.4216914e18,7.425922e18,7.4301494e18,7.434375e18,7.4385975e18,7.442818e18,7.447036e18,7.451252e18,7.455465e18,7.459676e18,7.4638846e18,7.468091e18,7.472295e18,7.476496e18,7.480695e18,7.484892e18,7.4890865e18,7.4932784e18,7.497468e18,7.5016556e18,7.5058403e18,7.510023e18,7.514203e18,7.5183813e18,7.5225573e18,7.5267305e18,7.5309015e18,7.5350703e18,7.539237e18,7.5434013e18,7.547563e18,7.5517224e18,7.5558796e18,7.5600347e18,7.5641876e18,7.568338e18,7.572486e18,7.5766324e18,7.580776e18,7.584917e18,7.5890563e18,7.593193e18,7.597328e18,7.60146e18,7.60559e18,7.609718e18,7.6138437e18,7.617967e18,7.6220884e18,7.626207e18,7.6303237e18,7.634438e18,7.638551e18,7.642661e18,7.6467686e18,7.650874e18,7.6549775e18,7.6590787e18,7.6631777e18,7.667275e18,7.6713696e18,7.675462e18,7.679552e18,7.68364e18,7.6877265e18,7.69181e18,7.6958915e18,7.699971e18,7.704049e18,7.7081235e18,7.7121967e18,7.7162676e18,7.7203363e18,7.724403e18,7.728467e18,7.7325294e18,7.7365893e18,7.7406476e18,7.744703e18,7.748757e18,7.752809e18,7.756858e18,7.7609056e18,7.764951e18,7.768994e18,7.7730354e18,7.7770744e18,7.7811113e18,7.785146e18,7.7891784e18,7.793209e18,7.797238e18,7.801264e18,7.8052885e18,7.809311e18,7.8133314e18,7.8173496e18,7.8213655e18,7.8253793e18,7.8293914e18,7.8334013e18,7.8374096e18,7.841415e18,7.845419e18,7.8494207e18,7.85342e18,7.857418e18,7.8614136e18,7.8654076e18,7.869399e18,7.8733884e18,7.877376e18,7.8813615e18,7.885345e18,7.8893263e18,7.893306e18,7.8972835e18,7.901259e18,7.9052324e18,7.909204e18,7.913173e18,7.9171407e18,7.9211066e18,7.92507e18,7.9290313e18,7.932991e18,7.9369484e18,7.9409044e18,7.9448577e18,7.9488094e18,7.9527594e18,7.956707e18,7.960653e18,7.9645967e18,7.9685384e18,7.9724785e18,7.9764164e18,7.9803527e18,7.984287e18,7.9882186e18,7.9921494e18,7.9960774e18,8.0000037e18,8.0039284e18,8.007851e18,8.011771e18,8.01569e18,8.019607e18,8.023522e18,8.027435e18,8.031346e18,8.035255e18,8.0391623e18,8.043068e18,8.046971e18,8.0508726e18,8.054772e18,8.05867e18,8.062566e18,8.06646e18,8.070352e18,8.074242e18,8.0781306e18,8.0820174e18,8.085902e18,8.089785e18,8.0936656e18,8.0975447e18,8.1014216e18,8.1052974e18,8.109171e18,8.1130423e18,8.116912e18,8.12078e18,8.124646e18,8.12851e18,8.132373e18,8.136234e18,8.1400925e18,8.143949e18,8.1478045e18,8.1516577e18,8.1555093e18,8.1593587e18,8.1632064e18,8.1670525e18,8.170897e18,8.174739e18,8.17858e18,8.182419e18,8.186256e18,8.190091e18,8.1939246e18,8.197756e18,8.201586e18,8.205414e18,8.20924e18,8.213065e18,8.2168873e18,8.220708e18,8.2245273e18,8.228345e18,8.2321607e18,8.2359743e18,8.2397863e18,8.2435967e18,8.2474054e18,8.251212e18,8.255017e18,8.25882e18,8.2626215e18,8.2664214e18,8.2702197e18,8.274016e18,8.27781e18,8.2816035e18,8.285394e18,8.2891835e18,8.2929713e18,8.296757e18,8.3005415e18,8.304324e18,8.3081045e18,8.3118835e18,8.315661e18,8.319436e18,8.32321e18,8.326982e18,8.330753e18,8.3345213e18,8.338288e18,8.3420535e18,8.345817e18,8.349579e18,8.3533395e18,8.357098e18,8.3608546e18,8.36461e18,8.368363e18,8.3721153e18,8.375865e18,8.379614e18,8.3833605e18,8.3871055e18,8.390849e18,8.394591e18,8.398331e18,8.4020693e18,8.405806e18,8.409541e18,8.4132744e18,8.417006e18,8.420736e18,8.4244647e18,8.4281915e18,8.4319166e18,8.43564e18,8.439362e18,8.4430827e18,8.446801e18,8.450518e18,8.4542334e18,8.457947e18,8.461659e18,8.46537e18,8.4690785e18,8.4727855e18,8.4764914e18,8.480195e18,8.4838977e18,8.487598e18,8.4912974e18,8.4949945e18,8.4986905e18,8.502385e18,8.5060776e18,8.5097686e18,8.513458e18,8.517146e18,8.5208325e18,8.524517e18,8.5282003e18,8.5318815e18,8.5355615e18,8.53924e18,8.542917e18,8.546592e18,8.5502653e18,8.553937e18,8.557608e18,8.5612764e18,8.564944e18,8.5686096e18,8.5722737e18,8.575936e18,8.5795975e18,8.5832567e18,8.586915e18,8.590571e18,8.594226e18,8.597879e18,8.6015306e18,8.605181e18,8.6088297e18,8.612476e18,8.616122e18,8.619766e18,8.623408e18,8.627049e18,8.6306885e18,8.634326e18,8.6379624e18,8.6415973e18,8.6452307e18,8.6488624e18,8.6524924e18,8.656121e18,8.659748e18,8.6633737e18,8.6669977e18,8.6706206e18,8.6742413e18,8.677861e18,8.681479e18,8.6850957e18,8.688711e18,8.6923244e18,8.6959363e18,8.6995466e18,8.7031557e18,8.706763e18,8.710369e18,8.713974e18,8.717577e18,8.7211783e18,8.7247787e18,8.728377e18,8.7319745e18,8.73557e18,8.739164e18,8.742757e18,8.746348e18,8.7499377e18,8.753526e18,8.7571126e18,8.760698e18,8.764282e18,8.767864e18,8.7714447e18,8.775024e18,8.7786025e18,8.7821787e18,8.785754e18,8.789328e18,8.7929e18,8.7964707e18,8.8000397e18,8.8036076e18,8.807174e18,8.810739e18,8.8143026e18,8.8178645e18,8.821425e18,8.8249843e18,8.828542e18,8.832098e18,8.8356535e18,8.8392065e18,8.8427585e18,8.8463094e18,8.8498586e18,8.853406e18,8.8569526e18,8.8604975e18,8.864041e18,8.867583e18,8.8711237e18,8.874663e18,8.8782007e18,8.8817373e18,8.885272e18,8.888806e18,8.892338e18,8.895869e18,8.899398e18,8.9029265e18,8.9064527e18,8.909978e18,8.913502e18,8.9170245e18,8.9205456e18,8.924065e18,8.927583e18,8.9311004e18,8.9346155e18,8.9381296e18,8.9416425e18,8.945154e18,8.948664e18,8.9521725e18,8.9556794e18,8.959185e18,8.96269e18,8.966193e18,8.969695e18,8.973195e18,8.976694e18,8.980192e18,8.983688e18,8.987183e18,8.9906763e18,8.994169e18,8.9976593e18,9.001149e18,9.0046374e18,9.008124e18,9.0116094e18,9.015094e18,9.0185765e18,9.0220575e18,9.025538e18,9.0290163e18,9.032494e18,9.0359696e18,9.0394446e18,9.042918e18,9.04639e18,9.049861e18,9.05333e18,9.056798e18,9.060265e18,9.06373e18,9.067194e18,9.070657e18,9.0741183e18,9.0775784e18,9.0810375e18,9.084495e18,9.087951e18,9.091406e18,9.0948595e18,9.0983114e18,9.101762e18,9.105212e18,9.1086605e18,9.1121075e18,9.115553e18,9.1189976e18,9.1224407e18,9.125882e18,9.1293226e18,9.132762e18,9.1362e18,9.1396365e18,9.143072e18,9.146506e18,9.1499384e18,9.15337e18,9.1568e18,9.160229e18,9.1636565e18,9.167083e18,9.170508e18,9.1739314e18,9.177354e18,9.1807753e18,9.1841953e18,9.1876137e18,9.191031e18,9.194447e18,9.197862e18,9.2012757e18,9.204688e18,9.208099e18,9.211509e18,9.2149173e18,9.218325e18,9.2217305e18,9.225136e18,9.228539e18,9.23194e18,9.235342e18,9.238742e18,9.242141e18,9.245537e18,9.248933e18,9.252328e18,9.255722e18,9.259114e18,9.262505e18,9.265895e18,9.269283e18,9.272671e18,9.276056e18,9.279442e18,9.282825e18,9.286207e18,9.289588e18,9.292968e18,9.296347e18,9.299724e18,9.303101e18,9.306475e18,9.309849e18,9.313222e18,9.316593e18,9.319963e18,9.323332e18,9.3267e18,9.330066e18,9.333431e18,9.336795e18,9.340158e18,9.34352e18,9.34688e18,9.350239e18,9.353597e18,9.356954e18,9.36031e18,9.363664e18,9.367017e18,9.370369e18,9.373719e18,9.37707e18,9.380417e18,9.383764e18,9.38711e18,9.390455e18,9.393799e18,9.397141e18,9.400482e18,9.403823e18,9.407161e18,9.410499e18,9.413836e18,9.417171e18,9.420505e18,9.423838e18,9.42717e18,9.4305e18,9.43383e18,9.437158e18,9.440485e18,9.443811e18,9.447136e18,9.450459e18,9.453781e18,9.457103e18,9.460422e18,9.463742e18,9.467059e18,9.470375e18,9.473691e18,9.477005e18,9.480318e18,9.48363e18,9.48694e18,9.490251e18,9.493559e18,9.496866e18,9.500172e18,9.503477e18,9.506781e18,9.510084e18,9.513386e18,9.516685e18,9.519985e18,9.523284e18,9.52658e18,9.529876e18,9.53317e18,9.536465e18,9.539757e18,9.543047e18,9.546338e18,9.549627e18,9.552914e18,9.556202e18,9.559487e18,9.562771e18,9.566055e18,9.569338e18,9.572619e18,9.575899e18,9.579177e18,9.582455e18,9.585731e18,9.589007e18,9.592281e18,9.595555e18,9.598827e18,9.602098e18,9.605368e18,9.608637e18,9.611904e18,9.615171e18,9.618436e18,9.621701e18,9.624964e18,9.628227e18,9.631487e18,9.634747e18,9.638006e18,9.641263e18,9.64452e18,9.647776e18,9.65103e18,9.654284e18,9.657536e18,9.660787e18,9.664037e18,9.667286e18,9.670534e18,9.67378e18,9.677026e18,9.680271e18,9.683514e18,9.686757e18,9.689998e18,9.693238e18,9.696478e18,9.699716e18,9.702953e18,9.706188e18,9.709423e18,9.712657e18,9.71589e18,9.719122e18,9.722352e18,9.725582e18,9.72881e18,9.732037e18,9.735264e18,9.738489e18,9.741713e18,9.744936e18,9.748158e18,9.75138e18,9.754599e18,9.757817e18,9.761035e18,9.764253e18,9.767468e18,9.770683e18,9.773895e18,9.777108e18,9.78032e18,9.78353e18,9.78674e18,9.789947e18,9.793154e18,9.79636e18,9.799566e18,9.80277e18,9.805972e18,9.809175e18,9.812376e18,9.815576e18,9.818774e18,9.821973e18,9.825169e18,9.828365e18,9.831559e18,9.834753e18,9.837945e18,9.841137e18,9.844328e18,9.847518e18,9.850706e18,9.853892e18,9.857079e18,9.860265e18,9.863449e18,9.866633e18,9.869815e18,9.872995e18,9.876176e18,9.879355e18,9.882534e18,9.88571e18,9.888887e18,9.892062e18,9.895236e18,9.89841e18,9.901582e18,9.904753e18,9.907922e18,9.911091e18,9.914259e18,9.917427e18,9.920592e18,9.923758e18,9.926921e18,9.930084e18,9.933246e18,9.936406e18,9.939566e18,9.942725e18,9.945884e18,9.949041e18,9.952197e18,9.955351e18,9.958506e18,9.961658e18,9.96481e18,9.967961e18,9.971111e18,9.97426e18,9.977408e18,9.980555e18,9.983701e18,9.986845e18,9.98999e18,9.993132e18,9.996275e18,9.999416e18,1.0002556e19,1.0005694e19,1.0008833e19,1.001197e19,1.0015106e19,1.0018241e19,1.0021376e19,1.0024508e19,1.0027641e19,1.0030772e19,1.0033902e19,1.0037032e19,1.004016e19,1.0043287e19,1.0046414e19,1.0049538e19,1.0052663e19,1.0055786e19,1.0058909e19,1.006203e19,1.006515e19,1.006827e19,1.0071389e19,1.0074506e19,1.0077623e19,1.0080738e19,1.0083853e19,1.0086967e19,1.009008e19,1.0093191e19,1.0096303e19,1.0099412e19,1.0102522e19,1.0105629e19,1.0108736e19,1.0111842e19,1.0114947e19,1.0118052e19,1.0121155e19,1.0124257e19,1.0127359e19,1.0130459e19,1.0133559e19,1.0136657e19,1.0139755e19,1.0142851e19,1.0145947e19,1.0149041e19,1.0152135e19,1.0155228e19,1.015832e19,1.016141e19,1.01645e19,1.016759e19,1.0170678e19,1.0173765e19,1.0176851e19,1.0179936e19,1.0183021e19,1.0186104e19,1.0189186e19,1.0192268e19,1.0195349e19,1.0198429e19,1.0201507e19,1.0204585e19,1.0207663e19,1.0210738e19,1.0213813e19,1.0216887e19,1.0219961e19,1.0223033e19,1.0226105e19,1.0229174e19,1.0232244e19,1.0235313e19,1.0238381e19,1.0241447e19,1.0244513e19,1.0247578e19,1.0250642e19,1.0253705e19,1.0256768e19,1.0259829e19,1.0262889e19,1.0265949e19,1.0269006e19,1.0272064e19,1.0275121e19,1.0278178e19,1.0281232e19,1.0284286e19,1.0287339e19,1.0290391e19,1.0293442e19,1.0296493e19,1.0299542e19,1.0302591e19,1.0305639e19,1.0308686e19,1.0311731e19,1.0314776e19,1.031782e19,1.0320863e19,1.0323905e19,1.0326946e19,1.0329988e19,1.0333027e19,1.0336066e19,1.0339104e19,1.034214e19,1.0345176e19,1.0348211e19,1.0351246e19,1.0354279e19,1.0357312e19,1.0360343e19,1.0363373e19,1.0366403e19,1.0369433e19,1.0372461e19,1.0375488e19,1.0378513e19,1.0381539e19,1.0384563e19,1.0387587e19,1.039061e19,1.0393632e19,1.0396652e19,1.0399672e19,1.0402692e19,1.040571e19,1.0408728e19,1.0411744e19,1.041476e19,1.0417775e19,1.0420789e19,1.0423802e19,1.0426814e19,1.0429825e19,1.0432836e19,1.0435845e19,1.0438855e19,1.0441862e19,1.0444869e19,1.0447875e19,1.0450881e19,1.0453885e19,1.0456889e19,1.0459892e19,1.0462893e19,1.0465894e19,1.0468894e19,1.0471894e19,1.0474892e19,1.047789e19,1.0480886e19,1.0483882e19,1.0486877e19,1.0489871e19,1.0492864e19,1.0495857e19,1.0498848e19,1.0501839e19,1.0504829e19,1.0507818e19,1.0510806e19,1.0513793e19,1.0516779e19,1.0519766e19,1.052275e19,1.0525734e19,1.0528717e19,1.05317e19,1.053468e19,1.0537661e19,1.0540641e19,1.0543619e19,1.0546598e19,1.0549574e19,1.0552551e19,1.0555527e19,1.0558501e19,1.0561475e19,1.0564447e19,1.056742e19,1.0570391e19,1.0573362e19,1.0576331e19,1.0579301e19,1.0582268e19,1.0585236e19,1.0588201e19,1.0591167e19,1.0594132e19,1.0597095e19,1.0600058e19,1.060302e19,1.0605983e19,1.0608943e19,1.0611902e19,1.0614861e19,1.0617819e19,1.0620777e19,1.0623733e19,1.0626689e19,1.0629643e19,1.0632597e19,1.063555e19,1.0638502e19,1.0641454e19,1.0644404e19,1.0647354e19,1.0650303e19,1.0653252e19,1.0656198e19,1.0659145e19,1.0662091e19,1.0665036e19,1.066798e19,1.0670923e19,1.0673865e19,1.0676808e19,1.0679749e19,1.0682688e19,1.0685628e19,1.0688566e19,1.0691504e19,1.069444e19,1.0697376e19,1.0700312e19,1.0703247e19,1.070618e19,1.0709112e19,1.0712045e19,1.0714976e19,1.0717906e19,1.0720835e19,1.0723765e19,1.0726693e19,1.0729619e19,1.0732546e19,1.0735472e19,1.0738397e19,1.074132e19,1.0744244e19,1.0747167e19,1.0750088e19,1.0753008e19,1.0755929e19,1.0758848e19,1.0761766e19,1.0764684e19,1.0767601e19,1.0770517e19,1.0773432e19,1.0776346e19,1.077926e19,1.0782173e19,1.0785085e19,1.0787997e19,1.0790907e19,1.0793817e19,1.0796726e19,1.0799634e19,1.0802541e19,1.0805448e19,1.0808354e19,1.0811259e19,1.0814163e19,1.0817067e19,1.081997e19,1.0822872e19,1.0825773e19,1.0828673e19,1.0831573e19,1.0834472e19,1.083737e19,1.0840268e19,1.0843164e19,1.084606e19,1.0848955e19,1.0851849e19,1.0854743e19,1.0857634e19,1.0860527e19,1.0863418e19,1.0866308e19,1.0869198e19,1.0872086e19,1.0874975e19,1.0877862e19,1.0880748e19,1.0883635e19,1.088652e19,1.0889404e19,1.0892287e19,1.089517e19,1.0898051e19,1.0900933e19,1.0903813e19,1.0906692e19,1.0909572e19,1.091245e19,1.0915327e19,1.0918204e19,1.092108e19,1.0923955e19,1.0926829e19,1.0929703e19,1.0932576e19,1.0935448e19,1.0938319e19,1.094119e19,1.0944059e19,1.0946928e19,1.0949797e19,1.0952664e19,1.0955532e19,1.0958397e19,1.0961262e19,1.0964128e19,1.0966991e19,1.0969854e19,1.0972716e19,1.0975578e19,1.0978439e19,1.0981299e19,1.0984159e19,1.0987017e19,1.0989875e19,1.0992731e19,1.0995588e19,1.0998443e19,1.1001299e19,1.1004153e19,1.1007006e19,1.1009859e19,1.1012711e19,1.1015562e19,1.1018413e19,1.1021262e19,1.1024111e19,1.1026959e19,1.1029807e19,1.1032654e19,1.1035499e19,1.1038345e19,1.1041189e19,1.1044034e19,1.1046877e19,1.1049719e19,1.105256e19,1.1055401e19,1.1058241e19,1.1061081e19,1.1063919e19,1.1066758e19,1.1069595e19,1.1072432e19,1.1075267e19,1.1078102e19,1.1080936e19,1.108377e19,1.1086603e19,1.1089436e19,1.1092267e19,1.1095098e19,1.1097927e19,1.1100757e19,1.1103585e19,1.1106413e19,1.110924e19,1.1112067e19,1.1114893e19,1.1117717e19,1.1120542e19,1.1123366e19,1.1126188e19,1.112901e19,1.1131832e19,1.1134653e19,1.1137472e19,1.1140291e19,1.114311e19,1.1145929e19,1.1148746e19,1.1151561e19,1.1154377e19,1.1157192e19,1.1160007e19,1.116282e19,1.1165633e19,1.1168445e19,1.1171257e19,1.1174067e19,1.1176878e19,1.1179687e19,1.1182495e19,1.1185303e19,1.118811e19,1.1190917e19,1.1193723e19,1.1196528e19,1.1199332e19,1.1202136e19,1.1204939e19,1.1207741e19,1.1210542e19,1.1213344e19,1.1216143e19,1.1218944e19,1.1221742e19,1.122454e19,1.1227338e19,1.1230135e19,1.1232931e19,1.1235726e19,1.1238521e19,1.1241315e19,1.1244107e19,1.12469e19,1.1249692e19,1.1252483e19,1.1255273e19,1.1258063e19,1.1260852e19,1.126364e19,1.1266428e19,1.1269215e19,1.1272002e19,1.1274787e19,1.1277572e19,1.1280356e19,1.128314e19,1.1285923e19,1.1288705e19,1.1291486e19,1.1294267e19,1.1297048e19,1.1299827e19,1.1302606e19,1.1305383e19,1.1308162e19,1.1310938e19,1.1313714e19,1.1316489e19,1.1319263e19,1.1322037e19,1.1324811e19,1.1327583e19,1.1330355e19,1.1333127e19,1.1335898e19,1.1338667e19,1.1341437e19,1.1344206e19,1.1346973e19,1.1349741e19,1.1352507e19,1.1355272e19,1.1358038e19,1.1360803e19,1.1363566e19,1.1366329e19,1.1369092e19,1.1371854e19,1.1374615e19,1.1377376e19,1.1380136e19,1.1382894e19,1.1385653e19,1.138841e19,1.1391168e19,1.1393925e19,1.139668e19,1.1399435e19,1.140219e19,1.1404944e19,1.1407697e19,1.1410449e19,1.1413201e19,1.1415952e19,1.1418703e19,1.1421453e19,1.1424202e19,1.1426951e19,1.1429698e19,1.1432446e19,1.1435191e19,1.1437938e19,1.1440683e19,1.1443428e19,1.1446171e19,1.1448914e19,1.1451658e19,1.1454399e19,1.1457141e19,1.1459881e19,1.1462621e19,1.1465361e19,1.1468099e19,1.1470836e19,1.1473574e19,1.1476311e19,1.1479048e19,1.1481782e19,1.1484518e19,1.1487251e19,1.1489984e19,1.1492718e19,1.149545e19,1.1498181e19,1.1500911e19,1.1503643e19,1.1506372e19,1.1509101e19,1.1511828e19,1.1514556e19,1.1517283e19,1.152001e19,1.1522736e19,1.152546e19,1.1528185e19,1.1530908e19,1.1533632e19,1.1536354e19,1.1539075e19,1.1541797e19,1.1544517e19,1.1547237e19,1.1549956e19,1.1552675e19,1.1555393e19,1.155811e19,1.1560827e19,1.1563543e19,1.1566259e19,1.1568973e19,1.1571687e19,1.1574401e19,1.1577114e19,1.1579826e19,1.1582538e19,1.1585248e19,1.1587959e19,1.1590669e19,1.1593378e19,1.1596086e19,1.1598794e19,1.1601501e19,1.1604207e19,1.1606913e19,1.1609619e19,1.1612323e19,1.1615028e19,1.161773e19,1.1620434e19,1.1623135e19,1.1625837e19,1.1628538e19,1.1631238e19,1.1633938e19,1.1636636e19,1.1639336e19,1.1642033e19,1.164473e19,1.1647427e19,1.1650122e19,1.1652818e19,1.1655512e19,1.1658206e19,1.1660899e19,1.1663592e19,1.1666285e19,1.1668976e19,1.1671667e19,1.1674357e19,1.1677047e19,1.1679736e19,1.1682424e19,1.1685112e19,1.1687799e19,1.1690485e19,1.1693171e19,1.1695857e19,1.1698541e19,1.1701225e19,1.1703909e19,1.1706592e19,1.1709274e19,1.1711955e19,1.1714637e19,1.1717317e19,1.1719997e19,1.1722676e19,1.1725355e19,1.1728032e19,1.1730709e19,1.1733387e19,1.1736063e19,1.1738738e19,1.1741413e19,1.1744087e19,1.1746761e19,1.1749434e19,1.1752106e19,1.1754778e19,1.175745e19,1.176012e19,1.176279e19,1.1765459e19,1.1768128e19,1.1770796e19,1.1773464e19,1.1776131e19,1.1778798e19,1.1781463e19,1.1784128e19,1.1786793e19,1.1789457e19,1.179212e19,1.1794783e19,1.1797445e19,1.1800107e19,1.1802768e19,1.1805428e19,1.1808089e19,1.1810747e19,1.1813406e19,1.1816063e19,1.1818721e19,1.1821378e19,1.1824034e19,1.182669e19,1.1829344e19,1.1832e19,1.1834653e19,1.1837306e19,1.1839959e19,1.1842611e19,1.1845262e19,1.1847913e19,1.1850564e19,1.1853213e19,1.1855862e19,1.185851e19,1.1861159e19,1.1863805e19,1.1866453e19,1.1869098e19,1.1871744e19,1.1874389e19,1.1877033e19,1.1879677e19,1.188232e19,1.1884963e19,1.1887604e19,1.1890246e19,1.1892887e19,1.1895527e19,1.1898167e19,1.1900806e19,1.1903444e19,1.1906083e19,1.1908719e19,1.1911356e19,1.1913992e19,1.1916628e19,1.1919262e19,1.1921897e19,1.1924531e19,1.1927165e19,1.1929797e19,1.1932429e19,1.193506e19,1.1937691e19,1.1940321e19,1.1942951e19,1.194558e19,1.1948209e19,1.1950837e19,1.1953465e19,1.1956092e19,1.1958717e19,1.1961343e19,1.1963969e19,1.1966593e19,1.1969217e19,1.197184e19,1.1974463e19,1.1977086e19,1.1979707e19,1.1982328e19,1.1984948e19,1.1987568e19,1.1990187e19,1.1992807e19,1.1995424e19,1.1998042e19,1.2000659e19,1.2003276e19,1.2005892e19,1.2008508e19,1.2011122e19,1.2013737e19,1.201635e19,1.2018964e19,1.2021576e19,1.2024188e19,1.2026799e19,1.202941e19,1.2032021e19,1.203463e19,1.2037239e19,1.2039848e19,1.2042456e19,1.2045063e19,1.204767e19,1.2050277e19,1.2052882e19,1.2055487e19,1.2058092e19,1.2060696e19,1.20633e19,1.2065902e19,1.2068505e19,1.2071107e19,1.2073707e19,1.2076309e19,1.2078909e19,1.2081509e19,1.2084108e19,1.2086706e19,1.2089304e19,1.2091901e19,1.2094498e19,1.2097094e19,1.209969e19,1.2102285e19,1.210488e19,1.2107473e19,1.2110067e19,1.211266e19,1.2115251e19,1.2117844e19,1.2120435e19,1.2123026e19,1.2125615e19,1.2128205e19,1.2130794e19,1.2133382e19,1.2135971e19,1.2138558e19,1.2141145e19,1.2143731e19,1.2146317e19,1.2148902e19,1.2151487e19,1.2154071e19,1.2156654e19,1.2159237e19,1.2161819e19,1.2164402e19,1.2166982e19,1.2169563e19,1.2172143e19,1.2174723e19,1.2177302e19,1.2179881e19,1.2182459e19,1.2185036e19,1.2187614e19,1.219019e19,1.2192766e19,1.2195341e19,1.2197916e19,1.220049e19,1.2203064e19,1.2205637e19,1.220821e19,1.2210781e19,1.2213353e19,1.2215924e19,1.2218494e19,1.2221064e19,1.2223634e19,1.2226202e19,1.222877e19,1.2231338e19,1.2233905e19,1.2236472e19,1.2239038e19,1.2241604e19,1.2244169e19,1.2246733e19,1.2249297e19,1.225186e19,1.2254423e19,1.2256986e19,1.2259548e19,1.2262109e19,1.226467e19,1.226723e19,1.226979e19,1.2272349e19,1.2274907e19,1.2277466e19,1.2280023e19,1.228258e19,1.2285136e19,1.2287692e19,1.2290248e19,1.2292803e19,1.2295357e19,1.2297911e19,1.2300464e19,1.2303017e19,1.2305569e19,1.2308121e19,1.2310672e19,1.2313223e19,1.2315773e19,1.2318322e19,1.2320871e19,1.232342e19,1.2325967e19,1.2328515e19,1.2331062e19,1.2333609e19,1.2336154e19,1.23387e19,1.2341245e19,1.2343789e19,1.2346333e19,1.2348876e19,1.2351419e19,1.2353961e19,1.2356503e19,1.2359044e19,1.2361585e19,1.2364125e19,1.2366665e19,1.2369203e19,1.2371742e19,1.237428e19,1.2376818e19,1.2379355e19,1.2381891e19,1.2384427e19,1.2386963e19,1.2389497e19,1.2392032e19,1.2394566e19,1.2397099e19,1.2399632e19,1.2402165e19,1.2404697e19,1.2407228e19,1.2409759e19,1.2412289e19,1.2414819e19,1.2417348e19,1.2419877e19,1.2422404e19,1.2424932e19,1.242746e19,1.2429987e19,1.2432512e19,1.2435038e19,1.2437563e19,1.2440088e19,1.2442612e19,1.2445136e19,1.2447659e19,1.2450181e19,1.2452704e19,1.2455225e19,1.2457746e19,1.2460266e19,1.2462786e19,1.2465306e19,1.2467825e19,1.2470343e19,1.2472861e19,1.2475379e19,1.2477896e19,1.2480412e19,1.2482928e19,1.2485444e19,1.2487958e19,1.2490473e19,1.2492988e19,1.2495501e19,1.2498013e19,1.2500526e19,1.2503038e19,1.250555e19,1.250806e19,1.2510571e19,1.251308e19,1.251559e19,1.2518098e19,1.2520607e19,1.2523115e19,1.2525622e19,1.2528129e19,1.2530636e19,1.2533142e19,1.2535646e19,1.2538152e19,1.2540656e19,1.254316e19,1.2545663e19,1.2548167e19,1.2550669e19,1.255317e19,1.2555672e19,1.2558173e19,1.2560674e19,1.2563173e19,1.2565672e19,1.2568171e19,1.2570669e19,1.2573167e19,1.2575665e19,1.2578162e19,1.2580658e19,1.2583154e19,1.258565e19,1.2588145e19,1.2590638e19,1.2593133e19,1.2595626e19,1.259812e19,1.2600612e19,1.2603104e19,1.2605595e19,1.2608087e19,1.2610577e19,1.2613066e19,1.2615556e19,1.2618045e19,1.2620533e19,1.2623021e19,1.262551e19,1.2627997e19,1.2630483e19,1.2632969e19,1.2635455e19,1.263794e19,1.2640424e19,1.2642908e19,1.2645392e19,1.2647875e19,1.2650357e19,1.265284e19,1.2655322e19,1.2657803e19,1.2660284e19,1.2662763e19,1.2665244e19,1.2667723e19,1.2670201e19,1.267268e19,1.2675158e19,1.2677635e19,1.2680111e19,1.2682588e19,1.2685063e19,1.268754e19,1.2690015e19,1.2692488e19,1.2694962e19,1.2697436e19,1.2699909e19,1.2702382e19,1.2704854e19,1.2707325e19,1.2709796e19,1.2712266e19,1.2714737e19,1.2717207e19,1.2719675e19,1.2722143e19,1.2724612e19,1.272708e19,1.2729547e19,1.2732014e19,1.273448e19,1.2736946e19,1.2739411e19,1.2741876e19,1.274434e19,1.2746804e19,1.2749267e19,1.275173e19,1.2754193e19,1.2756655e19,1.2759117e19,1.2761577e19,1.2764038e19,1.2766498e19,1.2768957e19,1.2771417e19,1.2773875e19,1.2776333e19,1.2778791e19,1.2781249e19,1.2783705e19,1.2786161e19,1.2788617e19,1.2791073e19,1.2793527e19,1.2795982e19,1.2798435e19,1.2800889e19,1.2803342e19,1.2805794e19,1.2808246e19,1.2810698e19,1.2813149e19,1.28156e19,1.281805e19,1.28205e19,1.2822949e19,1.2825397e19,1.2827846e19,1.2830294e19,1.2832741e19,1.2835189e19,1.2837635e19,1.284008e19,1.2842526e19,1.2844971e19,1.2847415e19,1.2849859e19,1.2852304e19,1.2854747e19,1.285719e19,1.2859632e19,1.2862074e19,1.2864515e19,1.2866956e19,1.2869395e19,1.2871835e19,1.2874275e19,1.2876714e19,1.2879153e19,1.2881591e19,1.2884029e19,1.2886465e19,1.2888902e19,1.2891338e19,1.2893774e19,1.2896209e19,1.2898645e19,1.2901079e19,1.2903513e19,1.2905947e19,1.290838e19,1.2910812e19,1.2913244e19,1.2915676e19,1.2918107e19,1.2920537e19,1.2922968e19,1.2925398e19,1.2927827e19,1.2930256e19,1.2932684e19,1.2935112e19,1.293754e19,1.2939967e19,1.2942393e19,1.294482e19,1.2947245e19,1.2949671e19,1.2952095e19,1.295452e19,1.2956944e19,1.2959367e19,1.2961791e19,1.2964213e19,1.2966635e19,1.2969056e19,1.2971477e19,1.2973899e19,1.2976319e19,1.2978739e19,1.2981158e19,1.2983576e19,1.2985995e19,1.2988413e19,1.2990831e19,1.2993248e19,1.2995664e19,1.2998081e19,1.3000497e19,1.3002912e19,1.3005327e19,1.3007742e19,1.3010155e19,1.3012568e19,1.3014982e19,1.3017394e19,1.3019806e19,1.3022219e19,1.302463e19,1.302704e19,1.3029451e19,1.3031862e19,1.303427e19,1.303668e19,1.3039089e19,1.3041497e19,1.3043904e19,1.3046311e19,1.3048718e19,1.3051125e19,1.3053531e19,1.3055936e19,1.3058341e19,1.3060746e19,1.306315e19,1.3065554e19,1.3067957e19,1.307036e19,1.3072762e19,1.3075165e19,1.3077566e19,1.3079967e19,1.3082368e19,1.3084768e19,1.3087168e19,1.3089567e19,1.3091966e19,1.3094364e19,1.3096762e19,1.3099159e19,1.3101557e19,1.3103953e19,1.310635e19,1.3108746e19,1.3111141e19,1.3113537e19,1.311593e19,1.3118325e19,1.3120719e19,1.3123111e19,1.3125505e19,1.3127896e19,1.3130289e19,1.313268e19,1.313507e19,1.3137462e19,1.3139852e19,1.3142241e19,1.3144631e19,1.314702e19,1.3149408e19,1.3151796e19,1.3154183e19,1.315657e19,1.3158957e19,1.3161343e19,1.3163729e19,1.3166115e19,1.31685e19,1.3170884e19,1.3173269e19,1.3175652e19,1.3178035e19,1.3180418e19,1.31828e19,1.3185182e19,1.3187563e19,1.3189945e19,1.3192325e19,1.3194706e19,1.3197085e19,1.3199464e19,1.3201844e19,1.3204222e19,1.32066e19,1.3208977e19,1.3211356e19,1.3213732e19,1.3216108e19,1.3218484e19,1.322086e19,1.3223235e19,1.322561e19,1.3227984e19,1.3230357e19,1.3232731e19,1.3235104e19,1.3237477e19,1.3239848e19,1.324222e19,1.3244592e19,1.3246962e19,1.3249333e19,1.3251702e19,1.3254072e19,1.3256441e19,1.325881e19,1.3261178e19,1.3263546e19,1.3265913e19,1.3268281e19,1.3270647e19,1.3273013e19,1.3275379e19,1.3277744e19,1.3280109e19,1.3282473e19,1.3284838e19,1.3287201e19,1.3289565e19,1.3291928e19,1.329429e19,1.3296651e19,1.3299013e19,1.3301375e19,1.3303736e19,1.3306095e19,1.3308456e19,1.3310814e19,1.3313174e19,1.3315532e19,1.3317891e19,1.3320248e19,1.3322605e19,1.3324963e19,1.3327319e19,1.3329675e19,1.333203e19,1.3334387e19,1.3336741e19,1.3339096e19,1.334145e19,1.3343803e19,1.3346156e19,1.3348509e19,1.3350862e19,1.3353214e19,1.3355565e19,1.3357916e19,1.3360267e19,1.3362617e19,1.3364967e19,1.3367316e19,1.3369666e19,1.3372014e19,1.3374363e19,1.337671e19,1.3379058e19,1.3381405e19,1.3383751e19,1.3386098e19,1.3388443e19,1.3390788e19,1.3393134e19,1.3395478e19,1.3397822e19,1.3400166e19,1.3402509e19,1.3404852e19,1.3407194e19,1.3409536e19,1.3411878e19,1.341422e19,1.3416561e19,1.3418901e19,1.342124e19,1.342358e19,1.342592e19,1.3428259e19,1.3430597e19,1.3432935e19,1.3435272e19,1.343761e19,1.3439946e19,1.3442283e19,1.3444618e19,1.3446955e19,1.3449289e19,1.3451624e19,1.3453959e19,1.3456293e19,1.3458626e19,1.3460959e19,1.3463292e19,1.3465624e19,1.3467956e19,1.3470287e19,1.3472618e19,1.3474949e19,1.3477279e19,1.3479609e19,1.3481939e19,1.3484268e19,1.3486596e19,1.3488925e19,1.3491253e19,1.349358e19,1.3495907e19,1.3498234e19,1.350056e19,1.3502887e19,1.3505212e19,1.3507537e19,1.3509862e19,1.3512185e19,1.351451e19,1.3516833e19,1.3519156e19,1.3521478e19,1.3523802e19,1.3526123e19,1.3528445e19,1.3530766e19,1.3533086e19,1.3535407e19,1.3537727e19,1.3540046e19,1.3542365e19,1.3544684e19,1.3547003e19,1.354932e19,1.3551638e19,1.3553955e19,1.3556271e19,1.3558588e19,1.3560904e19,1.3563219e19,1.3565535e19,1.3567849e19,1.3570164e19,1.3572477e19,1.357479e19,1.3577104e19,1.3579417e19,1.358173e19,1.3584041e19,1.3586353e19,1.3588664e19,1.3590975e19,1.3593285e19,1.3595595e19,1.3597904e19,1.3600214e19,1.3602522e19,1.3604831e19,1.3607139e19,1.3609447e19,1.3611754e19,1.3614062e19,1.3616367e19,1.3618674e19,1.362098e19,1.3623284e19,1.362559e19,1.3627895e19,1.3630198e19,1.3632503e19,1.3634805e19,1.3637109e19,1.3639411e19,1.3641713e19,1.3644016e19,1.3646317e19,1.3648617e19,1.3650918e19,1.3653219e19,1.3655519e19,1.3657818e19,1.3660117e19,1.3662416e19,1.3664714e19,1.3667012e19,1.366931e19,1.3671607e19,1.3673904e19,1.36762e19,1.3678496e19,1.3680791e19,1.3683087e19,1.3685382e19,1.3687676e19,1.368997e19,1.3692263e19,1.3694557e19,1.369685e19,1.3699143e19,1.3701434e19,1.3703727e19,1.3706018e19,1.370831e19,1.37106e19,1.371289e19,1.3715179e19,1.371747e19,1.3719759e19,1.3722047e19,1.3724335e19,1.3726623e19,1.3728911e19,1.3731198e19,1.3733485e19,1.3735771e19,1.3738058e19,1.3740343e19,1.3742629e19,1.3744913e19,1.3747198e19,1.3749482e19,1.3751766e19,1.3754049e19,1.3756332e19,1.3758615e19,1.3760897e19,1.376318e19,1.3765461e19,1.3767742e19,1.3770023e19,1.3772303e19,1.3774583e19,1.3776862e19,1.3779141e19,1.3781421e19,1.3783699e19,1.3785977e19,1.3788255e19,1.3790532e19,1.3792809e19,1.3795086e19,1.3797362e19,1.3799638e19,1.3801913e19,1.3804188e19,1.3806463e19,1.3808738e19,1.3811012e19,1.3813286e19,1.3815558e19,1.3817831e19,1.3820104e19,1.3822376e19,1.3824648e19,1.382692e19,1.382919e19,1.383146e19,1.3833731e19,1.3836e19,1.383827e19,1.3840539e19,1.3842809e19,1.3845077e19,1.3847344e19,1.3849612e19,1.385188e19,1.3854147e19,1.3856413e19,1.3858679e19,1.3860945e19,1.386321e19,1.3865475e19,1.386774e19,1.3870004e19,1.3872268e19,1.3874532e19,1.3876794e19,1.3879057e19,1.388132e19,1.3883583e19,1.3885844e19,1.3888105e19,1.3890367e19,1.3892627e19,1.3894887e19,1.3897147e19,1.3899407e19,1.3901665e19,1.3903925e19,1.3906183e19,1.3908441e19,1.3910699e19,1.3912956e19,1.3915212e19,1.391747e19,1.3919726e19,1.3921981e19,1.3924237e19,1.3926492e19,1.3928747e19,1.3931001e19,1.3933255e19,1.3935509e19,1.3937762e19,1.3940015e19,1.3942268e19,1.394452e19,1.3946772e19,1.3949024e19,1.3951274e19,1.3953525e19,1.3955776e19,1.3958025e19,1.3960275e19,1.3962524e19,1.3964774e19,1.3967023e19,1.396927e19,1.3971518e19,1.3973766e19,1.3976013e19,1.397826e19,1.3980506e19,1.3982752e19,1.3984997e19,1.3987243e19,1.3989488e19,1.3991733e19,1.3993977e19,1.3996221e19,1.3998464e19,1.4000707e19,1.400295e19,1.4005192e19,1.4007435e19,1.4009676e19,1.4011918e19,1.4014159e19,1.4016399e19,1.401864e19,1.402088e19,1.402312e19,1.4025358e19,1.4027597e19,1.4029835e19,1.4032074e19,1.4034312e19,1.4036549e19,1.4038787e19,1.4041023e19,1.4043259e19,1.4045496e19,1.4047731e19,1.4049966e19,1.4052202e19,1.4054436e19,1.405667e19,1.4058904e19,1.4061137e19,1.406337e19,1.4065604e19,1.4067836e19,1.4070068e19,1.40723e19,1.4074532e19,1.4076763e19,1.4078992e19,1.4081223e19,1.4083453e19,1.4085683e19,1.4087912e19,1.4090141e19,1.409237e19,1.4094598e19,1.4096825e19,1.4099053e19,1.4101281e19,1.4103507e19,1.4105734e19,1.410796e19,1.4110186e19,1.4112411e19,1.4114636e19,1.4116861e19,1.4119085e19,1.4121309e19,1.4123533e19,1.4125756e19,1.4127979e19,1.4130201e19,1.4132424e19,1.4134645e19,1.4136867e19,1.4139088e19,1.4141309e19,1.4143529e19,1.414575e19,1.414797e19,1.4150189e19,1.4152408e19,1.4154627e19,1.4156846e19,1.4159063e19,1.4161281e19,1.4163499e19,1.4165715e19,1.4167933e19,1.4170149e19,1.4172365e19,1.4174581e19,1.4176796e19,1.4179011e19,1.4181225e19,1.4183439e19,1.4185654e19,1.4187867e19,1.419008e19,1.4192293e19,1.4194506e19,1.4196718e19,1.4198929e19,1.4201142e19,1.4203353e19,1.4205563e19,1.4207774e19,1.4209984e19,1.4212194e19,1.4214403e19,1.4216612e19,1.4218821e19,1.422103e19,1.4223237e19,1.4225445e19,1.4227652e19,1.422986e19,1.4232066e19,1.4234272e19,1.4236479e19,1.4238684e19,1.424089e19,1.4243095e19,1.4245299e19,1.4247504e19,1.4249707e19,1.4251912e19,1.4254114e19,1.4256317e19,1.425852e19,1.4260722e19,1.4262924e19,1.4265125e19,1.4267327e19,1.4269528e19,1.4271728e19,1.4273928e19,1.4276128e19,1.4278328e19,1.4280527e19,1.4282726e19,1.4284924e19,1.4287122e19,1.428932e19,1.4291518e19,1.4293715e19,1.4295912e19,1.4298109e19,1.4300304e19,1.43025e19,1.4304696e19,1.4306891e19,1.4309086e19,1.4311281e19,1.4313474e19,1.4315669e19,1.4317862e19,1.4320055e19,1.4322248e19,1.4324441e19,1.4326632e19,1.4328825e19,1.4331016e19,1.4333207e19,1.4335397e19,1.4337588e19,1.4339778e19,1.4341968e19,1.4344157e19,1.4346346e19,1.4348535e19,1.4350724e19,1.4352912e19,1.43551e19,1.4357286e19,1.4359475e19,1.436166e19,1.4363847e19,1.4366033e19,1.4368219e19,1.4370405e19,1.437259e19,1.4374774e19,1.4376959e19,1.4379144e19,1.4381327e19,1.438351e19,1.4385693e19,1.4387876e19,1.4390059e19,1.4392241e19,1.4394423e19,1.4396604e19,1.4398785e19,1.4400966e19,1.4403147e19,1.4405326e19,1.4407507e19,1.4409686e19,1.4411865e19,1.4414044e19,1.4416223e19,1.4418401e19,1.4420579e19,1.4422756e19,1.4424933e19,1.442711e19,1.4429287e19,1.4431463e19,1.4433639e19,1.4435815e19,1.443799e19,1.4440164e19,1.4442339e19,1.4444513e19,1.4446687e19,1.444886e19,1.4451034e19,1.4453207e19,1.4455379e19,1.4457552e19,1.4459724e19,1.4461895e19,1.4464067e19,1.4466237e19,1.4468409e19,1.4470578e19,1.4472748e19,1.4474918e19,1.4477087e19,1.4479256e19,1.4481425e19,1.4483594e19,1.4485761e19,1.4487929e19,1.4490097e19,1.4492264e19,1.4494431e19,1.4496597e19,1.4498763e19,1.4500929e19,1.4503094e19,1.4505259e19,1.4507424e19,1.4509589e19,1.4511752e19,1.4513916e19,1.451608e19,1.4518243e19,1.4520406e19,1.4522568e19,1.4524731e19,1.4526893e19,1.4529054e19,1.4531216e19,1.4533377e19,1.4535537e19,1.4537698e19,1.4539857e19,1.4542018e19,1.4544176e19,1.4546335e19,1.4548494e19,1.4550652e19,1.455281e19,1.4554969e19,1.4557126e19,1.4559283e19,1.4561439e19,1.4563596e19,1.4565752e19,1.4567908e19,1.4570064e19,1.4572219e19,1.4574373e19,1.4576528e19,1.4578682e19,1.4580836e19,1.458299e19,1.4585143e19,1.4587296e19,1.4589448e19,1.4591601e19,1.4593753e19,1.4595905e19,1.4598056e19,1.4600207e19,1.4602358e19,1.4604508e19,1.4606658e19,1.4608807e19,1.4610957e19,1.4613107e19,1.4615255e19,1.4617403e19,1.4619552e19,1.46217e19,1.4623848e19,1.4625995e19,1.4628141e19,1.4630289e19,1.4632435e19,1.4634581e19,1.4636726e19,1.4638871e19,1.4641017e19,1.4643162e19,1.4645306e19,1.464745e19,1.4649594e19,1.4651737e19,1.4653881e19,1.4656024e19,1.4658166e19,1.4660309e19,1.466245e19,1.4664591e19,1.4666733e19,1.4668874e19,1.4671015e19,1.4673155e19,1.4675295e19,1.4677435e19,1.4679574e19,1.4681713e19,1.4683851e19,1.468599e19,1.4688128e19,1.4690266e19,1.4692404e19,1.4694541e19,1.4696678e19,1.4698815e19,1.4700951e19,1.4703087e19,1.4705223e19,1.4707358e19,1.4709493e19,1.4711628e19,1.4713762e19,1.4715897e19,1.4718031e19,1.4720164e19,1.4722297e19,1.472443e19,1.4726563e19,1.4728695e19,1.4730827e19,1.4732959e19,1.473509e19,1.473722e19,1.4739351e19,1.4741482e19,1.4743612e19,1.4745742e19,1.4747872e19,1.475e19,1.475213e19,1.4754257e19,1.4756386e19,1.4758514e19,1.4760642e19,1.4762769e19,1.4764896e19,1.4767023e19,1.4769149e19,1.4771276e19,1.4773401e19,1.4775526e19,1.4777652e19,1.4779777e19,1.4781901e19,1.4784026e19,1.478615e19,1.4788273e19,1.4790397e19,1.479252e19,1.4794643e19,1.4796766e19,1.4798888e19,1.480101e19,1.4803131e19,1.4805252e19,1.4807373e19,1.4809494e19,1.4811613e19,1.4813734e19,1.4815854e19,1.4817973e19,1.4820092e19,1.4822212e19,1.4824329e19,1.4826448e19,1.4828566e19,1.4830683e19,1.4832801e19,1.4834918e19,1.4837034e19,1.4839151e19,1.4841267e19,1.4843383e19,1.4845498e19,1.4847614e19,1.4849728e19,1.4851842e19,1.4853957e19,1.4856071e19,1.4858184e19,1.4860299e19,1.4862411e19,1.4864524e19,1.4866636e19,1.4868749e19,1.4870861e19,1.4872973e19,1.4875084e19,1.4877195e19,1.4879305e19,1.4881416e19,1.4883526e19,1.4885636e19,1.4887745e19,1.4889855e19,1.4891964e19,1.4894071e19,1.489618e19,1.4898288e19,1.4900396e19,1.4902504e19,1.490461e19,1.4906717e19,1.4908824e19,1.491093e19,1.4913036e19,1.4915141e19,1.4917247e19,1.4919351e19,1.4921457e19,1.492356e19,1.4925665e19,1.4927769e19,1.4929873e19,1.4931976e19,1.4934078e19,1.4936182e19,1.4938284e19,1.4940386e19,1.4942487e19,1.4944588e19,1.494669e19,1.4948791e19,1.4950892e19,1.4952992e19,1.4955092e19,1.4957191e19,1.4959291e19,1.496139e19,1.4963489e19,1.4965587e19,1.4967686e19,1.4969784e19,1.497188e19,1.4973978e19,1.4976075e19,1.4978172e19,1.4980269e19,1.4982364e19,1.4984461e19,1.4986557e19,1.4988651e19,1.4990747e19,1.4992842e19,1.4994936e19,1.499703e19,1.4999123e19,1.5001218e19,1.500331e19,1.5005404e19,1.5007496e19,1.5009588e19,1.5011681e19,1.5013772e19,1.5015863e19,1.5017954e19,1.5020046e19,1.5022136e19,1.5024227e19,1.5026317e19,1.5028406e19,1.5030495e19,1.5032586e19,1.5034674e19,1.5036763e19,1.5038851e19,1.5040939e19,1.5043027e19,1.5045115e19,1.5047201e19,1.5049288e19,1.5051374e19,1.5053461e19,1.5055547e19,1.5057633e19,1.5059718e19,1.5061803e19,1.5063888e19,1.5065972e19,1.5068057e19,1.5070141e19,1.5072224e19,1.5074308e19,1.5076391e19,1.5078474e19,1.5080556e19,1.5082639e19,1.508472e19,1.5086801e19,1.5088883e19,1.5090964e19,1.5093046e19,1.5095126e19,1.5097206e19,1.5099285e19,1.5101366e19,1.5103445e19,1.5105524e19,1.5107603e19,1.5109681e19,1.5111759e19,1.5113837e19,1.5115915e19,1.5117992e19,1.5120069e19,1.5122146e19,1.5124222e19,1.5126299e19,1.5128375e19,1.5130451e19,1.5132526e19,1.51346e19,1.5136675e19,1.513875e19,1.5140825e19,1.5142899e19,1.5144972e19,1.5147046e19,1.5149118e19,1.5151191e19,1.5153264e19,1.5155336e19,1.5157408e19,1.515948e19,1.5161551e19,1.5163622e19,1.5165694e19,1.5167764e19,1.5169834e19,1.5171904e19,1.5173974e19,1.5176043e19,1.5178113e19,1.5180181e19,1.518225e19,1.5184318e19,1.5186385e19,1.5188454e19,1.5190521e19,1.5192588e19,1.5194655e19,1.5196722e19,1.5198788e19,1.5200854e19,1.520292e19,1.5204985e19,1.5207051e19,1.5209116e19,1.521118e19,1.5213244e19,1.5215308e19,1.5217372e19,1.5219436e19,1.5221499e19,1.5223562e19,1.5225625e19,1.5227687e19,1.5229749e19,1.5231811e19,1.5233872e19,1.5235934e19,1.5237994e19,1.5240056e19,1.5242116e19,1.5244176e19,1.5246236e19,1.5248296e19,1.5250355e19,1.5252414e19,1.5254473e19,1.5256531e19,1.5258589e19,1.5260647e19,1.5262705e19,1.5264763e19,1.5266819e19,1.5268876e19,1.5270933e19,1.527299e19,1.5275046e19,1.52771e19,1.5279157e19,1.5281212e19,1.5283267e19,1.528532e19,1.5287375e19,1.5289429e19,1.5291483e19,1.5293537e19,1.529559e19,1.5297643e19,1.5299696e19,1.5301748e19,1.53038e19,1.5305852e19,1.5307903e19,1.5309955e19,1.5312006e19,1.5314056e19,1.5316107e19,1.5318157e19,1.5320207e19,1.5322257e19,1.5324306e19,1.5326355e19,1.5328405e19,1.5330453e19,1.5332502e19,1.5334549e19,1.5336597e19,1.5338645e19,1.5340692e19,1.5342738e19,1.5344785e19,1.5346832e19,1.5348878e19,1.5350924e19,1.5352969e19,1.5355014e19,1.5357059e19,1.5359104e19,1.5361148e19,1.5363192e19,1.5365236e19,1.536728e19,1.5369324e19,1.5371367e19,1.537341e19,1.5375452e19,1.5377495e19,1.5379537e19,1.5381578e19,1.538362e19,1.5385661e19,1.5387702e19,1.5389742e19,1.5391783e19,1.5393824e19,1.5395863e19,1.5397903e19,1.5399942e19,1.5401981e19,1.5404019e19,1.5406058e19,1.5408096e19,1.5410135e19,1.5412172e19,1.541421e19,1.5416247e19,1.5418283e19,1.5420321e19,1.5422357e19,1.5424393e19,1.5426429e19,1.5428464e19,1.54305e19,1.5432534e19,1.5434569e19,1.5436603e19,1.5438637e19,1.5440672e19,1.5442706e19,1.5444739e19,1.5446772e19,1.5448805e19,1.5450838e19,1.545287e19,1.5454903e19,1.5456933e19,1.5458965e19,1.5460997e19,1.5463028e19,1.5465059e19,1.5467088e19,1.5469119e19,1.5471149e19,1.5473179e19,1.5475208e19,1.5477237e19,1.5479266e19,1.5481294e19,1.5483323e19,1.5485351e19,1.5487379e19,1.5489406e19,1.5491434e19,1.549346e19,1.5495488e19,1.5497514e19,1.549954e19,1.5501566e19,1.5503592e19,1.5505618e19,1.5507643e19,1.5509667e19,1.5511692e19,1.5513717e19,1.5515741e19,1.5517764e19,1.5519788e19,1.5521811e19,1.5523834e19,1.5525857e19,1.5527879e19,1.5529901e19,1.5531923e19,1.5533945e19,1.5535967e19,1.5537988e19,1.5540009e19,1.554203e19,1.554405e19,1.554607e19,1.5548091e19,1.5550109e19,1.5552129e19,1.5554148e19,1.5556166e19,1.5558185e19,1.5560204e19,1.5562221e19,1.556424e19,1.5566258e19,1.5568274e19,1.5570292e19,1.5572308e19,1.5574325e19,1.5576341e19,1.5578357e19,1.5580372e19,1.5582388e19,1.5584403e19,1.5586418e19,1.5588433e19,1.5590447e19,1.5592461e19,1.5594476e19,1.5596489e19,1.5598502e19,1.5600515e19,1.5602528e19,1.5604541e19,1.5606553e19,1.5608565e19,1.5610577e19,1.5612589e19,1.56146e19,1.5616611e19,1.5618622e19,1.5620632e19,1.5622642e19,1.5624653e19,1.5626662e19,1.5628672e19,1.563068e19,1.5632689e19,1.5634698e19,1.5636707e19,1.5638715e19,1.5640723e19,1.5642731e19,1.5644738e19,1.5646745e19,1.5648752e19,1.5650759e19,1.5652765e19,1.5654772e19,1.5656777e19,1.5658783e19,1.5660788e19,1.5662793e19,1.5664798e19,1.5666803e19,1.5668807e19,1.5670811e19,1.5672815e19,1.5674818e19,1.5676821e19,1.5678825e19,1.5680828e19,1.568283e19,1.5684832e19,1.5686835e19,1.5688836e19,1.5690838e19,1.5692839e19,1.569484e19,1.569684e19,1.5698841e19,1.5700841e19,1.5702841e19,1.5704841e19,1.570684e19,1.5708839e19,1.5710839e19,1.5712837e19,1.5714836e19,1.5716834e19,1.5718832e19,1.5720829e19,1.5722827e19,1.5724824e19,1.5726822e19,1.5728818e19,1.5730814e19,1.5732811e19,1.5734806e19,1.5736802e19,1.5738798e19,1.5740792e19,1.5742788e19,1.5744782e19,1.5746777e19,1.5748771e19,1.5750765e19,1.5752758e19,1.5754751e19,1.5756745e19,1.5758737e19,1.5760731e19,1.5762723e19,1.5764715e19,1.5766706e19,1.5768699e19,1.577069e19,1.5772681e19,1.5774671e19,1.5776663e19,1.5778653e19,1.5780643e19,1.5782633e19,1.5784622e19,1.5786612e19,1.5788601e19,1.579059e19,1.5792578e19,1.5794567e19,1.5796555e19,1.5798543e19,1.580053e19,1.5802518e19,1.5804504e19,1.5806491e19,1.5808478e19,1.5810465e19,1.5812451e19,1.5814436e19,1.5816422e19,1.5818408e19,1.5820392e19,1.5822377e19,1.5824362e19,1.5826346e19,1.5828331e19,1.5830314e19,1.5832298e19,1.5834281e19,1.5836265e19,1.5838247e19,1.584023e19,1.5842212e19,1.5844195e19,1.5846177e19,1.5848158e19,1.585014e19,1.5852121e19,1.5854101e19,1.5856082e19,1.5858063e19,1.5860043e19,1.5862023e19,1.5864002e19,1.5865981e19,1.586796e19,1.586994e19,1.5871919e19,1.5873897e19,1.5875875e19,1.5877853e19,1.5879831e19,1.5881808e19,1.5883786e19,1.5885763e19,1.5887739e19,1.5889715e19,1.5891691e19,1.5893667e19,1.5895643e19,1.5897619e19,1.5899595e19,1.5901569e19,1.5903544e19,1.5905519e19,1.5907492e19,1.5909466e19,1.5911441e19,1.5913414e19,1.5915387e19,1.591736e19,1.5919333e19,1.5921306e19,1.5923278e19,1.592525e19,1.5927222e19,1.5929193e19,1.5931165e19,1.5933135e19,1.5935107e19,1.5937077e19,1.5939047e19,1.5941018e19,1.5942987e19,1.5944957e19,1.5946926e19,1.5948896e19,1.5950864e19,1.5952833e19,1.5954801e19,1.5956769e19,1.5958737e19,1.5960704e19,1.5962672e19,1.596464e19,1.5966606e19,1.5968574e19,1.5970539e19,1.5972505e19,1.5974471e19,1.5976437e19,1.5978403e19,1.5980368e19,1.5982333e19,1.5984298e19,1.5986262e19,1.5988226e19,1.5990191e19,1.5992155e19,1.5994118e19,1.5996081e19,1.5998045e19,1.6000007e19,1.600197e19,1.6003933e19,1.6005894e19,1.6007856e19,1.6009818e19,1.6011779e19,1.601374e19,1.6015701e19,1.6017662e19,1.6019623e19,1.6021582e19,1.6023542e19,1.6025502e19,1.6027461e19,1.602942e19,1.603138e19,1.6033339e19,1.6035297e19,1.6037256e19,1.6039214e19,1.6041171e19,1.6043129e19,1.6045086e19,1.6047043e19,1.6049e19,1.6050957e19,1.6052913e19,1.6054869e19,1.6056825e19,1.6058781e19,1.6060736e19,1.6062692e19,1.6064647e19,1.60666e19,1.6068555e19,1.6070509e19,1.6072463e19,1.6074417e19,1.6076371e19,1.6078323e19,1.6080277e19,1.608223e19,1.6084183e19,1.6086134e19,1.6088087e19,1.6090039e19,1.609199e19,1.6093942e19,1.6095893e19,1.6097844e19,1.6099795e19,1.6101745e19,1.6103695e19,1.6105645e19,1.6107595e19,1.6109544e19,1.6111494e19,1.6113442e19,1.6115391e19,1.611734e19,1.6119288e19,1.6121236e19,1.6123184e19,1.6125132e19,1.6127079e19,1.6129026e19,1.6130972e19,1.613292e19,1.6134866e19,1.6136812e19,1.6138758e19,1.6140704e19,1.6142649e19,1.6144594e19,1.6146539e19,1.6148484e19,1.6150428e19,1.6152373e19,1.6154317e19,1.6156261e19,1.6158205e19,1.6160148e19,1.6162091e19,1.6164034e19,1.6165977e19,1.6167919e19,1.6169861e19,1.6171804e19,1.6173746e19,1.6175686e19,1.6177628e19,1.6179569e19,1.6181509e19,1.618345e19,1.6185391e19,1.6187331e19,1.6189271e19,1.619121e19,1.619315e19,1.6195089e19,1.6197028e19,1.6198966e19,1.6200905e19,1.6202843e19,1.6204782e19,1.6206719e19,1.6208656e19,1.6210594e19,1.6212531e19,1.6214468e19,1.6216405e19,1.6218341e19,1.6220277e19,1.6222213e19,1.6224148e19,1.6226085e19,1.622802e19,1.6229955e19,1.6231889e19,1.6233824e19,1.6235758e19,1.6237692e19,1.6239626e19,1.624156e19,1.6243493e19,1.6245426e19,1.6247359e19,1.6249292e19,1.6251225e19,1.6253157e19,1.6255089e19,1.625702e19,1.6258952e19,1.6260883e19,1.6262815e19,1.6264746e19,1.6266676e19,1.6268607e19,1.6270537e19,1.6272466e19,1.6274396e19,1.6276326e19,1.6278255e19,1.6280184e19,1.6282114e19,1.6284042e19,1.6285971e19,1.6287898e19,1.6289827e19,1.6291754e19,1.6293682e19,1.6295609e19,1.6297535e19,1.6299463e19,1.6301389e19,1.6303315e19,1.6305241e19,1.6307167e19,1.6309092e19,1.6311019e19,1.6312943e19,1.6314868e19,1.6316793e19,1.6318717e19,1.6320642e19,1.6322566e19,1.632449e19,1.6326413e19,1.6328336e19,1.633026e19,1.6332182e19,1.6334105e19,1.6336028e19,1.633795e19,1.6339872e19,1.6341794e19,1.6343715e19,1.6345637e19,1.6347558e19,1.6349478e19,1.6351399e19,1.6353319e19,1.635524e19,1.635716e19,1.6359079e19,1.6360999e19,1.6362918e19,1.6364837e19,1.6366756e19,1.6368675e19,1.6370593e19,1.6372511e19,1.637443e19,1.6376347e19,1.6378265e19,1.6380181e19,1.6382099e19,1.6384015e19,1.6385932e19,1.6387848e19,1.6389765e19,1.6391681e19,1.6393596e19,1.6395512e19,1.6397427e19,1.6399342e19,1.6401257e19,1.6403172e19,1.6405086e19,1.6407e19,1.6408914e19,1.6410828e19,1.6412741e19,1.6414654e19,1.6416567e19,1.641848e19,1.6420393e19,1.6422305e19,1.6424217e19,1.6426129e19,1.6428041e19,1.6429952e19,1.6431864e19,1.6433775e19,1.6435686e19,1.6437595e19,1.6439506e19,1.6441416e19,1.6443326e19,1.6445236e19,1.6447146e19,1.6449055e19,1.6450963e19,1.6452872e19,1.6454781e19,1.645669e19,1.6458597e19,1.6460505e19,1.6462413e19,1.646432e19,1.6466228e19,1.6468134e19,1.6470042e19,1.6471949e19,1.6473854e19,1.6475761e19,1.6477666e19,1.6479573e19,1.6481478e19,1.6483384e19,1.6485288e19,1.6487193e19,1.6489098e19,1.6491002e19,1.6492906e19,1.649481e19,1.6496714e19,1.6498617e19,1.650052e19,1.6502424e19,1.6504326e19,1.6506229e19,1.6508131e19,1.6510034e19,1.6511936e19,1.6513838e19,1.6515739e19,1.651764e19,1.6519541e19,1.6521442e19,1.6523343e19,1.6525243e19,1.6527143e19,1.6529043e19,1.6530943e19,1.6532843e19,1.6534742e19,1.6536642e19,1.653854e19,1.6540439e19,1.6542337e19,1.6544236e19,1.6546134e19,1.6548032e19,1.6549929e19,1.6551826e19,1.6553724e19,1.655562e19,1.6557517e19,1.6559414e19,1.656131e19,1.6563206e19,1.6565103e19,1.6566998e19,1.6568893e19,1.6570788e19,1.6572684e19,1.6574578e19,1.6576473e19,1.6578367e19,1.6580262e19,1.6582155e19,1.6584048e19,1.6585943e19,1.6587835e19,1.6589728e19,1.6591622e19,1.6593514e19,1.6595406e19,1.6597298e19,1.6599191e19,1.6601082e19,1.6602974e19,1.6604865e19,1.6606756e19,1.6608648e19,1.6610538e19,1.6612429e19,1.6614319e19,1.6616209e19,1.6618098e19,1.6619988e19,1.6621877e19,1.6623767e19,1.6625656e19,1.6627544e19,1.6629433e19,1.6631321e19,1.663321e19,1.6635097e19,1.6636984e19,1.6638872e19,1.664076e19,1.6642647e19,1.6644533e19,1.664642e19,1.6648306e19,1.6650193e19,1.6652078e19,1.6653964e19,1.665585e19,1.6657735e19,1.665962e19,1.6661506e19,1.666339e19,1.6665275e19,1.6667158e19,1.6669043e19,1.6670926e19,1.667281e19,1.6674693e19,1.6676577e19,1.6678459e19,1.6680342e19,1.6682225e19,1.6684107e19,1.668599e19,1.6687871e19,1.6689753e19,1.6691634e19,1.6693516e19,1.6695397e19,1.6697277e19,1.6699158e19,1.6701038e19,1.6702919e19,1.6704799e19,1.6706679e19,1.6708558e19,1.6710437e19,1.6712317e19,1.6714195e19,1.6716074e19,1.6717953e19,1.6719831e19,1.6721709e19,1.6723587e19,1.6725465e19,1.6727342e19,1.672922e19,1.6731097e19,1.6732974e19,1.6734851e19,1.6736726e19,1.6738603e19,1.6740479e19,1.6742355e19,1.6744231e19,1.6746105e19,1.6747981e19,1.6749856e19,1.675173e19,1.6753605e19,1.675548e19,1.6757353e19,1.6759227e19,1.6761101e19,1.6762974e19,1.6764848e19,1.6766721e19,1.6768594e19,1.6770466e19,1.6772338e19,1.6774211e19,1.6776083e19,1.6777955e19,1.6779826e19,1.6781698e19,1.6783569e19,1.678544e19,1.678731e19,1.6789181e19,1.6791051e19,1.6792921e19,1.6794792e19,1.6796662e19,1.6798531e19,1.68004e19,1.6802269e19,1.6804139e19,1.6806007e19,1.6807876e19,1.6809744e19,1.6811612e19,1.681348e19,1.6815347e19,1.6817215e19,1.6819082e19,1.6820949e19,1.6822816e19,1.6824682e19,1.6826549e19,1.6828415e19,1.6830281e19,1.6832146e19,1.6834012e19,1.6835877e19,1.6837743e19,1.6839608e19,1.6841472e19,1.6843337e19,1.6845201e19,1.6847066e19,1.6848929e19,1.6850793e19,1.6852657e19,1.685452e19,1.6856383e19,1.6858246e19,1.6860108e19,1.6861971e19,1.6863833e19,1.6865696e19,1.6867557e19,1.6869419e19,1.687128e19,1.6873142e19,1.6875003e19,1.6876864e19,1.6878724e19,1.6880584e19,1.6882445e19,1.6884305e19,1.6886164e19,1.6888025e19,1.6889884e19,1.6891743e19,1.6893601e19,1.6895461e19,1.6897319e19,1.6899177e19,1.6901035e19,1.6902893e19,1.6904752e19,1.6906609e19,1.6908467e19,1.6910324e19,1.6912181e19,1.6914037e19,1.6915894e19,1.691775e19,1.6919606e19,1.6921462e19,1.6923318e19,1.6925174e19,1.6927029e19,1.6928884e19,1.6930739e19,1.6932593e19,1.6934448e19,1.6936302e19,1.6938157e19,1.6940011e19,1.6941864e19,1.6943717e19,1.6945571e19,1.6947424e19,1.6949276e19,1.6951129e19,1.6952982e19,1.6954834e19,1.6956686e19,1.6958539e19,1.696039e19,1.6962242e19,1.6964092e19,1.6965944e19,1.6967794e19,1.6969645e19,1.6971495e19,1.6973346e19,1.6975196e19,1.6977046e19,1.6978896e19,1.6980745e19,1.6982594e19,1.6984443e19,1.6986292e19,1.6988141e19,1.6989989e19,1.6991837e19,1.6993686e19,1.6995534e19,1.6997381e19,1.6999228e19,1.7001075e19,1.7002923e19,1.700477e19,1.7006616e19,1.7008463e19,1.7010309e19,1.7012155e19,1.7014001e19,1.7015846e19,1.7017692e19,1.7019537e19,1.7021382e19,1.7023227e19,1.7025071e19,1.7026916e19,1.702876e19,1.7030604e19,1.7032448e19,1.7034292e19,1.7036136e19,1.7037978e19,1.7039821e19,1.7041664e19,1.7043507e19,1.7045349e19,1.7047191e19,1.7049034e19,1.7050876e19,1.7052717e19,1.7054559e19,1.70564e19,1.7058241e19,1.7060082e19,1.7061922e19,1.7063763e19,1.7065604e19,1.7067443e19,1.7069283e19,1.7071123e19,1.7072963e19,1.7074801e19,1.707664e19,1.7078479e19,1.7080318e19,1.7082157e19,1.7083995e19,1.7085832e19,1.7087671e19,1.7089508e19,1.7091346e19,1.7093184e19,1.709502e19,1.7096857e19,1.7098693e19,1.7100531e19,1.7102367e19,1.7104203e19,1.7106038e19,1.7107874e19,1.7109709e19,1.7111546e19,1.7113381e19,1.7115216e19,1.711705e19,1.7118885e19,1.7120719e19,1.7122553e19,1.7124387e19,1.7126221e19,1.7128054e19,1.7129888e19,1.713172e19,1.7133553e19,1.7135386e19,1.7137219e19,1.7139051e19,1.7140884e19,1.7142716e19,1.7144547e19,1.7146379e19,1.714821e19,1.7150042e19,1.7151872e19,1.7153703e19,1.7155534e19,1.7157364e19,1.7159194e19,1.7161025e19,1.7162854e19,1.7164684e19,1.7166513e19,1.7168343e19,1.7170171e19,1.7172e19,1.717383e19,1.7175658e19,1.7177485e19,1.7179314e19,1.7181141e19,1.718297e19,1.7184797e19,1.7186625e19,1.7188451e19,1.7190278e19,1.7192105e19,1.7193932e19,1.7195758e19,1.7197583e19,1.719941e19,1.7201236e19,1.7203061e19,1.7204886e19,1.7206712e19,1.7208537e19,1.7210362e19,1.7212186e19,1.721401e19,1.7215834e19,1.7217658e19,1.7219482e19,1.7221306e19,1.722313e19,1.7224952e19,1.7226775e19,1.7228598e19,1.7230421e19,1.7232243e19,1.7234066e19,1.7235888e19,1.723771e19,1.7239532e19,1.7241353e19,1.7243175e19,1.7244995e19,1.7246816e19,1.7248637e19,1.7250458e19,1.7252278e19,1.7254098e19,1.7255918e19,1.7257738e19,1.7259557e19,1.7261377e19,1.7263196e19,1.7265015e19,1.7266834e19,1.7268653e19,1.7270471e19,1.7272289e19,1.7274107e19,1.7275925e19,1.7277742e19,1.727956e19,1.7281377e19,1.7283195e19,1.7285011e19,1.7286829e19,1.7288645e19,1.7290461e19,1.7292277e19,1.7294093e19,1.7295908e19,1.7297725e19,1.729954e19,1.7301355e19,1.730317e19,1.7304985e19,1.7306799e19,1.7308613e19,1.7310427e19,1.7312242e19,1.7314056e19,1.7315869e19,1.7317683e19,1.7319496e19,1.7321309e19,1.7323122e19,1.7324934e19,1.7326747e19,1.7328559e19,1.7330371e19,1.7332183e19,1.7333995e19,1.7335807e19,1.7337618e19,1.7339429e19,1.734124e19,1.7343051e19,1.7344862e19,1.7346673e19,1.7348483e19,1.7350292e19,1.7352102e19,1.7353912e19,1.7355722e19,1.7357532e19,1.735934e19,1.7361149e19,1.7362958e19,1.7364766e19,1.7366575e19,1.7368383e19,1.7370191e19,1.7371999e19,1.7373807e19,1.7375614e19,1.7377421e19,1.7379228e19,1.7381035e19,1.7382841e19,1.7384648e19,1.7386454e19,1.7388261e19,1.7390066e19,1.7391872e19,1.7393678e19,1.7395483e19,1.7397288e19,1.7399093e19,1.7400897e19,1.7402703e19,1.7404507e19,1.7406311e19,1.7408116e19,1.7409919e19,1.7411723e19,1.7413526e19,1.741533e19,1.7417133e19,1.7418936e19,1.7420738e19,1.7422541e19,1.7424343e19,1.7426145e19,1.7427948e19,1.7429749e19,1.7431551e19,1.7433352e19,1.7435154e19,1.7436955e19,1.7438756e19,1.7440556e19,1.7442357e19,1.7444157e19,1.7445956e19,1.7447756e19,1.7449556e19,1.7451356e19,1.7453156e19,1.7454955e19,1.7456754e19,1.7458553e19,1.7460351e19,1.746215e19,1.7463948e19,1.7465747e19,1.7467544e19,1.7469342e19,1.747114e19,1.7472936e19,1.7474734e19,1.7476531e19,1.7478327e19,1.7480124e19,1.748192e19,1.7483717e19,1.7485513e19,1.7487309e19,1.7489105e19,1.74909e19,1.7492696e19,1.749449e19,1.7496286e19,1.749808e19,1.7499874e19,1.7501669e19,1.7503463e19,1.7505258e19,1.7507051e19,1.7508845e19,1.7510639e19,1.7512432e19,1.7514225e19,1.7516017e19,1.7517811e19,1.7519603e19,1.7521395e19,1.7523187e19,1.752498e19,1.7526772e19,1.7528563e19,1.7530355e19,1.7532146e19,1.7533937e19,1.7535728e19,1.7537518e19,1.7539309e19,1.7541099e19,1.7542889e19,1.7544679e19,1.754647e19,1.754826e19,1.7550048e19,1.7551838e19,1.7553627e19,1.7555416e19,1.7557205e19,1.7558993e19,1.7560782e19,1.756257e19,1.7564357e19,1.7566145e19,1.7567933e19,1.7569721e19,1.7571508e19,1.7573295e19,1.7575082e19,1.7576869e19,1.7578655e19,1.7580441e19,1.7582228e19,1.7584013e19,1.7585799e19,1.7587585e19,1.758937e19,1.7591156e19,1.759294e19,1.7594726e19,1.759651e19,1.7598295e19,1.7600079e19,1.7601864e19,1.7603647e19,1.7605432e19,1.7607215e19,1.7608999e19,1.7610782e19,1.7612564e19,1.7614348e19,1.761613e19,1.7617914e19,1.7619696e19,1.7621478e19,1.7623259e19,1.7625042e19,1.7626823e19,1.7628605e19,1.7630386e19,1.7632168e19,1.7633948e19,1.7635729e19,1.7637509e19,1.763929e19,1.764107e19,1.764285e19,1.764463e19,1.764641e19,1.7648189e19,1.7649969e19,1.7651748e19,1.7653527e19,1.7655306e19,1.7657084e19,1.7658863e19,1.766064e19,1.7662418e19,1.7664196e19,1.7665974e19,1.7667752e19,1.7669529e19,1.7671306e19,1.7673084e19,1.767486e19,1.7676636e19,1.7678413e19,1.768019e19,1.7681966e19,1.7683741e19,1.7685517e19,1.7687293e19,1.7689068e19,1.7690843e19,1.7692619e19,1.7694393e19,1.7696168e19,1.7697943e19,1.7699717e19,1.7701491e19,1.7703265e19,1.7705039e19,1.7706812e19,1.7708586e19,1.7710359e19,1.7712132e19,1.7713905e19,1.7715678e19,1.771745e19,1.7719223e19,1.7720995e19,1.7722766e19,1.7724539e19],"x":[1.0e30,1.999300299880048e34,3.998500599760096e34,5.9977008996401435e34,7.9969011995201915e34,9.99610149940024e34,1.1995301799280288e35,1.3994502099160336e35,1.5993702399040384e35,1.799290269892043e35,1.999210299880048e35,2.1991303298680528e35,2.3990503598560576e35,2.5989703898440624e35,2.798890419832067e35,2.998810449820072e35,3.1987304798080768e35,3.398650509796081e35,3.598570539784086e35,3.798490569772091e35,3.998410599760096e35,4.1983306297481004e35,4.3982506597361056e35,4.59817068972411e35,4.798090719712115e35,4.9980107497001196e35,5.197930779688125e35,5.397850809676129e35,5.5977708396641344e35,5.797690869652139e35,5.997610899640144e35,6.1975309296281484e35,6.3974509596161536e35,6.597370989604158e35,6.797291019592162e35,6.997211049580168e35,7.197131079568173e35,7.397051109556177e35,7.596971139544182e35,7.796891169532188e35,7.996811199520192e35,8.196731229508196e35,8.396651259496201e35,8.596571289484207e35,8.796491319472211e35,8.996411349460216e35,9.19633137944822e35,9.396251409436226e35,9.59617143942423e35,9.796091469412235e35,9.996011499400239e35,1.0195931529388245e36,1.039585155937625e36,1.0595771589364254e36,1.0795691619352258e36,1.0995611649340264e36,1.1195531679328269e36,1.1395451709316273e36,1.1595371739304278e36,1.1795291769292282e36,1.1995211799280288e36,1.2195131829268292e36,1.2395051859256297e36,1.2594971889244301e36,1.2794891919232307e36,1.2994811949220312e36,1.3194731979208316e36,1.339465200919632e36,1.3594572039184325e36,1.379449206917233e36,1.3994412099160337e36,1.419433212914834e36,1.4394252159136346e36,1.459417218912435e36,1.4794092219112354e36,1.499401224910036e36,1.5193932279088363e36,1.5393852309076368e36,1.5593772339064375e36,1.579369236905238e36,1.5993612399040384e36,1.6193532429028388e36,1.6393452459016393e36,1.6593372489004397e36,1.6793292518992402e36,1.6993212548980406e36,1.7193132578968414e36,1.7393052608956418e36,1.7592972638944422e36,1.7792892668932427e36,1.799281269892043e36,1.8192732728908436e36,1.839265275889644e36,1.8592572788884445e36,1.8792492818872452e36,1.8992412848860456e36,1.919233287884846e36,1.9392252908836465e36,1.959217293882447e36,1.9792092968812474e36,1.999201299880048e36,2.0191933028788483e36,2.039185305877649e36,2.0591773088764495e36,2.07916931187525e36,2.0991613148740504e36,2.1191533178728508e36,2.1391453208716513e36,2.1591373238704517e36,2.179129326869252e36,2.1991213298680526e36,2.2191133328668533e36,2.2391053358656538e36,2.2590973388644542e36,2.2790893418632547e36,2.299081344862055e36,2.3190733478608555e36,2.339065350859656e36,2.3590573538584564e36,2.3790493568572572e36,2.3990413598560576e36,2.419033362854858e36,2.4390253658536585e36,2.459017368852459e36,2.4790093718512594e36,2.4990013748500598e36,2.5189933778488603e36,2.538985380847661e36,2.5589773838464614e36,2.578969386845262e36,2.5989613898440623e36,2.6189533928428628e36,2.6389453958416632e36,2.6589373988404637e36,2.6789294018392644e36,2.6989214048380645e36,2.718913407836865e36,2.7389054108356654e36,2.758897413834466e36,2.778889416833267e36,2.798881419832067e36,2.818873422830868e36,2.838865425829668e36,2.8588574288284687e36,2.878849431827269e36,2.8988414348260696e36,2.91883343782487e36,2.9388254408236705e36,2.958817443822471e36,2.9788094468212713e36,2.998801449820072e36,3.018793452818872e36,3.038785455817673e36,3.058777458816473e36,3.078769461815274e36,3.0987614648140746e36,3.118753467812875e36,3.1387454708116755e36,3.1587374738104756e36,3.1787294768092764e36,3.1987214798080765e36,3.218713482806877e36,3.2387054858056774e36,3.258697488804478e36,3.278689491803279e36,3.298681494802079e36,3.31867349780088e36,3.33866550079968e36,3.3586575037984806e36,3.378649506797281e36,3.3986415097960815e36,3.4186335127948817e36,3.4386255157936824e36,3.458617518792483e36,3.4786095217912833e36,3.498601524790084e36,3.518593527788884e36,3.538585530787685e36,3.558577533786485e36,3.578569536785286e36,3.5985615397840866e36,3.618553542782887e36,3.6385455457816874e36,3.6585375487804876e36,3.6785295517792883e36,3.6985215547780885e36,3.718513557776889e36,3.7385055607756894e36,3.75849756377449e36,3.778489566773291e36,3.798481569772091e36,3.818473572770892e36,3.838465575769692e36,3.8584575787684926e36,3.878449581767293e36,3.8984415847660935e36,3.918433587764894e36,3.9384255907636944e36,3.958417593762495e36,3.978409596761295e36,3.998401599760096e36,4.018393602758896e36,4.038385605757697e36,4.058377608756497e36,4.078369611755298e36,4.0983616147540985e36,4.1183536177528987e36,4.1383456207516994e36,4.1583376237504996e36,4.1783296267493e36,4.1983216297481004e36,4.218313632746901e36,4.2383056357457013e36,4.258297638744502e36,4.278289641743303e36,4.298281644742103e36,4.3182736477409037e36,4.338265650739704e36,4.3582576537385046e36,4.378249656737305e36,4.3982416597361055e36,4.418233662734906e36,4.4382256657337064e36,4.458217668732507e36,4.478209671731307e36,4.498201674730108e36,4.518193677728908e36,4.538185680727709e36,4.558177683726509e36,4.57816968672531e36,4.5981616897241105e36,4.6181536927229106e36,4.6381456957217114e36,4.6581376987205115e36,4.678129701719312e36,4.6981217047181124e36,4.718113707716913e36,4.738105710715714e36,4.758097713714514e36,4.778089716713315e36,4.798081719712115e36,4.8180737227109157e36,4.838065725709716e36,4.8580577287085165e36,4.8780497317073167e36,4.8980417347061174e36,4.918033737704918e36,4.9380257407037183e36,4.958017743702519e36,4.978009746701319e36,4.99800174970012e36,5.01799375269892e36,5.037985755697721e36,5.0579777586965216e36,5.077969761695322e36,5.0979617646941225e36,5.1179537676929226e36,5.1379457706917233e36,5.1579377736905235e36,5.177929776689324e36,5.1979217796881244e36,5.217913782686925e36,5.237905785685726e36,5.257897788684526e36,5.277889791683327e36,5.297881794682127e36,5.317873797680928e36,5.337865800679728e36,5.357857803678528e36,5.377849806677329e36,5.397841809676129e36,5.41783381267493e36,5.437825815673731e36,5.45781781867253e36,5.477809821671331e36,5.497801824670132e36,5.517793827668933e36,5.537785830667732e36,5.557777833666533e36,5.577769836665334e36,5.597761839664134e36,5.617753842662935e36,5.637745845661735e36,5.657737848660535e36,5.677729851659336e36,5.697721854658137e36,5.717713857656938e36,5.737705860655737e36,5.757697863654538e36,5.777689866653339e36,5.79768186965214e36,5.817673872650939e36,5.83766587564974e36,5.85765787864854e36,5.877649881647341e36,5.897641884646142e36,5.917633887644942e36,5.937625890643742e36,5.957617893642543e36,5.977609896641344e36,5.997601899640143e36,6.017593902638944e36,6.037585905637745e36,6.057577908636545e36,6.077569911635346e36,6.097561914634146e36,6.117553917632947e36,6.137545920631747e36,6.157537923630548e36,6.177529926629348e36,6.197521929628148e36,6.217513932626949e36,6.23750593562575e36,6.25749793862455e36,6.27748994162335e36,6.297481944622151e36,6.317473947620952e36,6.337465950619752e36,6.357457953618552e36,6.377449956617353e36,6.397441959616153e36,6.417433962614954e36,6.437425965613755e36,6.457417968612554e36,6.477409971611355e36,6.497401974610156e36,6.517393977608957e36,6.537385980607757e36,6.557377983606557e36,6.577369986605358e36,6.597361989604158e36,6.617353992602959e36,6.637345995601759e36,6.657337998600559e36,6.67733000159936e36,6.697322004598161e36,6.717314007596962e36,6.737306010595761e36,6.757298013594562e36,6.777290016593363e36,6.797282019592163e36,6.817274022590963e36,6.837266025589764e36,6.857258028588564e36,6.877250031587365e36,6.897242034586166e36,6.917234037584965e36,6.937226040583766e36,6.957218043582567e36,6.977210046581368e36,6.997202049580167e36,7.017194052578968e36,7.037186055577769e36,7.05717805857657e36,7.07717006157537e36,7.09716206457417e36,7.11715406757297e36,7.137146070571771e36,7.157138073570572e36,7.177130076569373e36,7.197122079568172e36,7.217114082566973e36,7.237106085565774e36,7.257098088564574e36,7.277090091563374e36,7.297082094562175e36,7.317074097560975e36,7.337066100559776e36,7.357058103558577e36,7.377050106557377e36,7.397042109556177e36,7.417034112554978e36,7.437026115553779e36,7.457018118552578e36,7.477010121551379e36,7.49700212455018e36,7.51699412754898e36,7.536986130547781e36,7.556978133546581e36,7.576970136545382e36,7.596962139544182e36,7.616954142542983e36,7.636946145541783e36,7.656938148540583e36,7.676930151539384e36,7.696922154538185e36,7.716914157536986e36,7.736906160535785e36,7.756898163534586e36,7.776890166533387e36,7.796882169532187e36,7.816874172530987e36,7.836866175529788e36,7.856858178528588e36,7.876850181527389e36,7.89684218452619e36,7.916834187524989e36,7.93682619052379e36,7.956818193522591e36,7.976810196521392e36,7.996802199520192e36,8.016794202518992e36,8.036786205517793e36,8.056778208516593e36,8.076770211515394e36,8.096762214514194e36,8.116754217512994e36,8.136746220511795e36,8.156738223510596e36,8.176730226509397e36,8.196722229508196e36,8.216714232506997e36,8.236706235505798e36,8.256698238504598e36,8.276690241503398e36,8.296682244502199e36,8.316674247501e36,8.3366662504998e36,8.356658253498601e36,8.3766502564974e36,8.396642259496201e36,8.416634262495002e36,8.436626265493803e36,8.456618268492602e36,8.476610271491403e36,8.496602274490204e36,8.516594277489004e36,8.536586280487805e36,8.556578283486605e36,8.576570286485405e36,8.596562289484206e36,8.616554292483007e36,8.636546295481807e36,8.656538298480607e36,8.676530301479408e36,8.696522304478209e36,8.71651430747701e36,8.736506310475809e36,8.75649831347461e36,8.77649031647341e36,8.796482319472211e36,8.816474322471012e36,8.836466325469812e36,8.856458328468612e36,8.876450331467413e36,8.896442334466214e36,8.916434337465013e36,8.936426340463814e36,8.956418343462615e36,8.976410346461416e36,8.996402349460216e36,9.016394352459016e36,9.036386355457817e36,9.056378358456617e36,9.076370361455418e36,9.096362364454218e36,9.116354367453018e36,9.136346370451819e36,9.15633837345062e36,9.17633037644942e36,9.19632237944822e36,9.216314382447021e36,9.236306385445822e36,9.256298388444622e36,9.276290391443422e36,9.296282394442223e36,9.316274397441023e36,9.336266400439824e36,9.356258403438625e36,9.376250406437424e36,9.396242409436225e36,9.416234412435026e36,9.436226415433827e36,9.456218418432626e36,9.476210421431427e36,9.496202424430228e36,9.516194427429028e36,9.536186430427829e36,9.556178433426629e36,9.576170436425429e36,9.59616243942423e36,9.616154442423031e36,9.636146445421832e36,9.656138448420631e36,9.676130451419432e36,9.696122454418233e36,9.716114457417033e36,9.736106460415833e36,9.756098463414634e36,9.776090466413434e36,9.796082469412235e36,9.816074472411036e36,9.836066475409835e36,9.856058478408636e36,9.876050481407437e36,9.896042484406238e36,9.916034487405037e36,9.936026490403838e36,9.956018493402639e36,9.97601049640144e36,9.99600249940024e36,1.001599450239904e37,1.003598650539784e37,1.0055978508396641e37,1.0075970511395442e37,1.0095962514394242e37,1.0115954517393042e37,1.0135946520391843e37,1.0155938523390644e37,1.0175930526389444e37,1.0195922529388244e37,1.0215914532387045e37,1.0235906535385846e37,1.0255898538384646e37,1.0275890541383447e37,1.0295882544382247e37,1.0315874547381047e37,1.0335866550379848e37,1.0355858553378649e37,1.0375850556377448e37,1.0395842559376249e37,1.041583456237505e37,1.043582656537385e37,1.0455818568372651e37,1.0475810571371451e37,1.0495802574370252e37,1.0515794577369052e37,1.0535786580367853e37,1.0555778583366653e37,1.0575770586365453e37,1.0595762589364254e37,1.0615754592363055e37,1.0635746595361854e37,1.0655738598360656e37,1.0675730601359456e37,1.0695722604358255e37,1.0715714607357057e37,1.0735706610355857e37,1.0755698613354659e37,1.0775690616353458e37,1.0795682619352258e37,1.081567462235106e37,1.083566662534986e37,1.0855658628348661e37,1.087565063134746e37,1.089564263434626e37,1.0915634637345062e37,1.0935626640343862e37,1.0955618643342664e37,1.0975610646341463e37,1.0995602649340263e37,1.1015594652339065e37,1.1035586655337864e37,1.1055578658336664e37,1.1075570661335466e37,1.1095562664334265e37,1.1115554667333067e37,1.1135546670331867e37,1.1155538673330666e37,1.1175530676329468e37,1.1195522679328268e37,1.121551468232707e37,1.123550668532587e37,1.125549868832467e37,1.127549069132347e37,1.129548269432227e37,1.1315474697321072e37,1.1335466700319872e37,1.1355458703318672e37,1.1375450706317473e37,1.1395442709316273e37,1.1415434712315073e37,1.1435426715313874e37,1.1455418718312674e37,1.1475410721311476e37,1.1495402724310275e37,1.1515394727309075e37,1.1535386730307877e37,1.1555378733306677e37,1.1575370736305478e37,1.1595362739304278e37,1.1615354742303078e37,1.163534674530188e37,1.165533874830068e37,1.167533075129948e37,1.169532275429828e37,1.171531475729708e37,1.1735306760295882e37,1.1755298763294682e37,1.1775290766293483e37,1.1795282769292283e37,1.1815274772291083e37,1.1835266775289884e37,1.1855258778288684e37,1.1875250781287484e37,1.1895242784286286e37,1.1915234787285085e37,1.1935226790283887e37,1.1955218793282687e37,1.1975210796281486e37,1.1995202799280288e37,1.2015194802279088e37,1.203518680527789e37,1.205517880827669e37,1.2075170811275489e37,1.209516281427429e37,1.211515481727309e37,1.2135146820271892e37,1.2155138823270692e37,1.217513082626949e37,1.2195122829268293e37,1.2215114832267093e37,1.2235106835265895e37,1.2255098838264694e37,1.2275090841263494e37,1.2295082844262296e37,1.2315074847261095e37,1.2335066850259895e37,1.2355058853258697e37,1.2375050856257496e37,1.2395042859256298e37,1.2415034862255098e37,1.2435026865253897e37,1.24550188682527e37,1.2475010871251499e37,1.24950028742503e37,1.25149948772491e37,1.25349868802479e37,1.2554978883246702e37,1.2574970886245501e37,1.2594962889244303e37,1.2614954892243103e37,1.2634946895241902e37,1.2654938898240704e37,1.2674930901239504e37,1.2694922904238303e37,1.2714914907237105e37,1.2734906910235905e37,1.2754898913234707e37,1.2774890916233506e37,1.2794882919232306e37,1.2814874922231108e37,1.2834866925229907e37,1.285485892822871e37,1.2874850931227509e37,1.2894842934226308e37,1.291483493722511e37,1.293482694022391e37,1.2954818943222712e37,1.2974810946221511e37,1.299480294922031e37,1.3014794952219113e37,1.3034786955217912e37,1.3054778958216714e37,1.3074770961215514e37,1.3094762964214313e37,1.3114754967213115e37,1.3134746970211915e37,1.3154738973210714e37,1.3174730976209516e37,1.3194722979208316e37,1.3214714982207118e37,1.3234706985205917e37,1.3254698988204717e37,1.3274690991203519e37,1.3294682994202318e37,1.331467499720112e37,1.333466700019992e37,1.335465900319872e37,1.3374651006197521e37,1.339464300919632e37,1.3414635012195123e37,1.3434627015193922e37,1.3454619018192722e37,1.3474611021191524e37,1.3494603024190323e37,1.3514595027189123e37,1.3534587030187925e37,1.3554579033186724e37,1.3574571036185526e37,1.3594563039184326e37,1.3614555042183125e37,1.3634547045181927e37,1.3654539048180727e37,1.3674531051179529e37,1.3694523054178328e37,1.3714515057177128e37,1.373450706017593e37,1.375449906317473e37,1.3774491066173531e37,1.379448306917233e37,1.381447507217113e37,1.3834467075169932e37,1.3854459078168732e37,1.3874451081167534e37,1.3894443084166333e37,1.3914435087165133e37,1.3934427090163935e37,1.3954419093162734e37,1.3974411096161534e37,1.3994403099160336e37,1.4014395102159135e37,1.4034387105157937e37,1.4054379108156737e37,1.4074371111155536e37,1.4094363114154338e37,1.4114355117153138e37,1.413434712015194e37,1.415433912315074e37,1.417433112614954e37,1.419432312914834e37,1.421431513214714e37,1.4234307135145942e37,1.4254299138144742e37,1.4274291141143542e37,1.4294283144142343e37,1.4314275147141143e37,1.4334267150139943e37,1.4354259153138744e37,1.4374251156137544e37,1.4394243159136346e37,1.4414235162135146e37,1.4434227165133945e37,1.4454219168132747e37,1.4474211171131547e37,1.4494203174130348e37,1.4514195177129148e37,1.4534187180127948e37,1.455417918312675e37,1.457417118612555e37,1.459416318912435e37,1.461415519212315e37,1.463414719512195e37,1.4654139198120752e37,1.4674131201119552e37,1.4694123204118353e37,1.4714115207117153e37,1.4734107210115953e37,1.4754099213114755e37,1.4774091216113554e37,1.4794083219112354e37,1.4814075222111156e37,1.4834067225109955e37,1.4854059228108757e37,1.4874051231107557e37,1.4894043234106356e37,1.4914035237105158e37,1.4934027240103958e37,1.495401924310276e37,1.497401124610156e37,1.4994003249100359e37,1.501399525209916e37,1.503398725509796e37,1.5053979258096762e37,1.5073971261095562e37,1.509396326409436e37,1.5113955267093163e37,1.5133947270091963e37,1.5153939273090762e37,1.5173931276089564e37,1.5193923279088364e37,1.5213915282087166e37,1.5233907285085965e37,1.5253899288084765e37,1.5273891291083567e37,1.5293883294082366e37,1.5313875297081168e37,1.5333867300079968e37,1.5353859303078767e37,1.537385130607757e37,1.5393843309076369e37,1.541383531207517e37,1.543382731507397e37,1.545381931807277e37,1.5473811321071572e37,1.5493803324070371e37,1.5513795327069173e37,1.5533787330067973e37,1.5553779333066772e37,1.5573771336065574e37,1.5593763339064374e37,1.5613755342063173e37,1.5633747345061975e37,1.5653739348060775e37,1.5673731351059577e37,1.5693723354058376e37,1.5713715357057176e37,1.5733707360055978e37,1.5753699363054777e37,1.577369136605358e37,1.5793683369052379e37,1.5813675372051178e37,1.583366737504998e37,1.585365937804878e37,1.5873651381047582e37,1.5893643384046381e37,1.591363538704518e37,1.5933627390043983e37,1.5953619393042782e37,1.5973611396041582e37,1.5993603399040384e37,1.6013595402039183e37,1.6033587405037985e37,1.6053579408036785e37,1.6073571411035584e37,1.6093563414034386e37,1.6113555417033186e37,1.6133547420031988e37,1.6153539423030787e37,1.6173531426029587e37,1.6193523429028389e37,1.6213515432027188e37,1.623350743502599e37,1.625349943802479e37,1.627349144102359e37,1.6293483444022391e37,1.631347544702119e37,1.6333467450019993e37,1.6353459453018792e37,1.6373451456017592e37,1.6393443459016394e37,1.6413435462015193e37,1.6433427465013993e37,1.6453419468012795e37,1.6473411471011594e37,1.6493403474010396e37,1.6513395477009196e37,1.6533387480007995e37,1.6553379483006797e37,1.6573371486005597e37,1.65933634890044e37,1.6613355492003198e37,1.6633347495001998e37,1.66533394980008e37,1.66733315009996e37,1.6693323503998401e37,1.67133155069972e37,1.6733307509996e37,1.6753299512994802e37,1.6773291515993602e37,1.6793283518992401e37,1.6813275521991203e37,1.6833267524990003e37,1.6853259527988805e37,1.6873251530987604e37,1.6893243533986404e37,1.6913235536985206e37,1.6933227539984005e37,1.6953219542982807e37,1.6973211545981607e37,1.6993203548980407e37,1.7013195551979208e37,1.7033187554978008e37,1.705317955797681e37,1.707317156097561e37,1.709316356397441e37,1.711315556697321e37,1.713314756997201e37,1.7153139572970812e37,1.7173131575969612e37,1.7193123578968412e37,1.7213115581967213e37,1.7233107584966013e37,1.7253099587964813e37,1.7273091590963614e37,1.7293083593962414e37,1.7313075596961216e37,1.7333067599960016e37,1.7353059602958815e37,1.7373051605957617e37,1.7393043608956417e37,1.7413035611955218e37,1.7433027614954018e37,1.7453019617952818e37,1.747301162095162e37,1.749300362395042e37,1.751299562694922e37,1.753298762994802e37,1.755297963294682e37,1.7572971635945622e37,1.7592963638944422e37,1.761295564194322e37,1.7632947644942023e37,1.7652939647940823e37,1.7672931650939625e37,1.7692923653938424e37,1.7712915656937224e37,1.7732907659936026e37,1.7752899662934825e37,1.7772891665933627e37,1.7792883668932427e37,1.7812875671931226e37,1.7832867674930028e37,1.7852859677928828e37,1.787285168092763e37,1.789284368392643e37,1.7912835686925229e37,1.793282768992403e37,1.795281969292283e37,1.7972811695921632e37,1.7992803698920432e37,1.8012795701919231e37,1.8032787704918033e37,1.8052779707916833e37,1.8072771710915632e37,1.8092763713914434e37,1.8112755716913234e37,1.8132747719912036e37,1.8152739722910835e37,1.8172731725909635e37,1.8192723728908437e37,1.8212715731907236e37,1.8232707734906038e37,1.8252699737904838e37,1.8272691740903637e37,1.829268374390244e37,1.8312675746901239e37,1.833266774990004e37,1.835265975289884e37,1.837265175589764e37,1.8392643758896442e37,1.8412635761895241e37,1.8432627764894043e37,1.8452619767892843e37,1.8472611770891642e37,1.8492603773890444e37,1.8512595776889244e37,1.8532587779888043e37,1.8552579782886845e37,1.8572571785885645e37,1.8592563788884447e37,1.8612555791883246e37,1.8632547794882046e37,1.8652539797880848e37,1.8672531800879647e37,1.869252380387845e37,1.8712515806877249e37,1.8732507809876048e37,1.875249981287485e37,1.877249181587365e37,1.8792483818872452e37,1.8812475821871251e37,1.883246782487005e37,1.8852459827868853e37,1.8872451830867652e37,1.8892443833866452e37,1.8912435836865254e37,1.8932427839864053e37,1.8952419842862855e37,1.8972411845861655e37,1.8992403848860454e37,1.9012395851859256e37,1.9032387854858056e37,1.9052379857856858e37,1.9072371860855657e37,1.9092363863854457e37,1.9112355866853259e37,1.9132347869852058e37,1.915233987285086e37,1.917233187584966e37,1.919232387884846e37,1.9212315881847261e37,1.923230788484606e37,1.9252299887844863e37,1.9272291890843662e37,1.9292283893842462e37,1.9312275896841264e37,1.9332267899840063e37,1.9352259902838863e37,1.9372251905837665e37,1.9392243908836464e37,1.9412235911835266e37,1.9432227914834066e37,1.9452219917832865e37,1.9472211920831667e37,1.9492203923830467e37,1.951219592682927e37,1.9532187929828068e37,1.9552179932826868e37,1.957217193582567e37,1.959216393882447e37,1.9612155941823271e37,1.963214794482207e37,1.965213994782087e37,1.9672131950819672e37,1.9692123953818472e37,1.9712115956817272e37,1.9732107959816073e37,1.9752099962814873e37,1.9772091965813675e37,1.9792083968812474e37,1.9812075971811274e37,1.9832067974810076e37,1.9852059977808875e37,1.9872051980807677e37,1.9892043983806477e37,1.9912035986805277e37,1.9932027989804078e37,1.9952019992802878e37,1.997201199580168e37,1.999200399880048e37,2.001199600179928e37,2.003198800479808e37,2.005198000779688e37,2.0071972010795682e37,2.0091964013794482e37,2.0111956016793282e37,2.0131948019792083e37,2.0151940022790883e37,2.0171932025789683e37,2.0191924028788485e37,2.0211916031787284e37,2.0231908034786086e37,2.0251900037784886e37,2.0271892040783685e37,2.0291884043782487e37,2.0311876046781287e37,2.0331868049780088e37,2.0351860052778888e37,2.0371852055777688e37,2.039184405877649e37,2.041183606177529e37,2.043182806477409e37,2.045182006777289e37,2.047181207077169e37,2.0491804073770492e37,2.0511796076769292e37,2.053178807976809e37,2.0551780082766893e37,2.0571772085765693e37,2.0591764088764495e37,2.0611756091763294e37,2.0631748094762094e37,2.0651740097760896e37,2.0671732100759695e37,2.0691724103758497e37,2.0711716106757297e37,2.0731708109756096e37,2.0751700112754898e37,2.0771692115753698e37,2.07916841187525e37,2.08116761217513e37,2.0831668124750099e37,2.08516601277489e37,2.08716521307477e37,2.0891644133746502e37,2.0911636136745302e37,2.0931628139744101e37,2.0951620142742903e37,2.0971612145741703e37,2.0991604148740502e37,2.1011596151739304e37,2.1031588154738104e37,2.1051580157736906e37,2.1071572160735705e37,2.1091564163734505e37,2.1111556166733307e37,2.1131548169732106e37,2.1151540172730908e37,2.1171532175729708e37,2.1191524178728507e37,2.121151618172731e37,2.1231508184726109e37,2.125150018772491e37,2.127149219072371e37,2.129148419372251e37,2.131147619672131e37,2.1331468199720114e37,2.135146020271891e37,2.1371452205717713e37,2.1391444208716515e37,2.141143621171531e37,2.1431428214714114e37,2.1451420217712916e37,2.1471412220711713e37,2.1491404223710515e37,2.1511396226709317e37,2.153138822970812e37,2.1551380232706916e37,2.157137223570572e37,2.159136423870452e37,2.1611356241703317e37,2.163134824470212e37,2.165134024770092e37,2.167133225069972e37,2.169132425369852e37,2.171131625669732e37,2.173130825969612e37,2.175130026269492e37,2.1771292265693723e37,2.1791284268692525e37,2.181127627169132e37,2.1831268274690124e37,2.1851260277688926e37,2.1871252280687723e37,2.1891244283686525e37,2.1911236286685327e37,2.1931228289684124e37,2.1951220292682926e37,2.197121229568173e37,2.1991204298680525e37,2.2011196301679327e37,2.203118830467813e37,2.205118030767693e37,2.207117231067573e37,2.209116431367453e37,2.211115631667333e37,2.213114831967213e37,2.215114032267093e37,2.2171132325669733e37,2.219112432866853e37,2.221111633166733e37,2.2231108334666134e37,2.2251100337664936e37,2.2271092340663733e37,2.2291084343662535e37,2.2311076346661337e37,2.2331068349660134e37,2.2351060352658936e37,2.237105235565774e37,2.2391044358656535e37,2.2411036361655337e37,2.243102836465414e37,2.2451020367652936e37,2.247101237065174e37,2.249100437365054e37,2.251099637664934e37,2.253098837964814e37,2.255098038264694e37,2.2570972385645743e37,2.259096438864454e37,2.261095639164334e37,2.2630948394642144e37,2.265094039764094e37,2.2670932400639743e37,2.2690924403638545e37,2.2710916406637347e37,2.2730908409636144e37,2.2750900412634946e37,2.277089241563375e37,2.2790884418632545e37,2.2810876421631347e37,2.283086842463015e37,2.2850860427628946e37,2.287085243062775e37,2.289084443362655e37,2.2910836436625347e37,2.293082843962415e37,2.295082044262295e37,2.2970812445621753e37,2.299080444862055e37,2.301079645161935e37,2.3030788454618154e37,2.305078045761695e37,2.3070772460615753e37,2.3090764463614555e37,2.311075646661335e37,2.3130748469612154e37,2.3150740472610956e37,2.317073247560976e37,2.3190724478608555e37,2.3210716481607357e37,2.323070848460616e37,2.3250700487604956e37,2.327069249060376e37,2.329068449360256e37,2.3310676496601357e37,2.333066849960016e37,2.335066050259896e37,2.337065250559776e37,2.339064450859656e37,2.341063651159536e37,2.3430628514594164e37,2.345062051759296e37,2.3470612520591763e37,2.3490604523590565e37,2.351059652658936e37,2.3530588529588164e37,2.3550580532586966e37,2.3570572535585763e37,2.3590564538584565e37,2.3610556541583367e37,2.3630548544582164e37,2.3650540547580966e37,2.367053255057977e37,2.369052455357857e37,2.3710516556577367e37,2.373050855957617e37,2.375050056257497e37,2.377049256557377e37,2.379048456857257e37,2.381047657157137e37,2.383046857457017e37,2.385046057756897e37,2.3870452580567773e37,2.3890444583566575e37,2.391043658656537e37,2.3930428589564174e37,2.3950420592562976e37,2.3970412595561773e37,2.3990404598560575e37,2.4010396601559377e37,2.4030388604558174e37,2.4050380607556976e37,2.407037261055578e37,2.4090364613554575e37,2.4110356616553377e37,2.413034861955218e37,2.415034062255098e37,2.417033262554978e37,2.419032462854858e37,2.421031663154738e37,2.423030863454618e37,2.425030063754498e37,2.4270292640543783e37,2.429028464354258e37,2.431027664654138e37,2.4330268649540184e37,2.4350260652538986e37,2.4370252655537783e37,2.4390244658536585e37,2.4410236661535387e37,2.4430228664534184e37,2.4450220667532986e37,2.447021267053179e37,2.4490204673530585e37,2.4510196676529387e37,2.453018867952819e37,2.4550180682526986e37,2.457017268552579e37,2.459016468852459e37,2.461015669152339e37,2.463014869452219e37,2.465014069752099e37,2.4670132700519793e37,2.469012470351859e37,2.471011670651739e37,2.4730108709516194e37,2.475010071251499e37,2.4770092715513793e37,2.4790084718512595e37,2.4810076721511397e37,2.4830068724510194e37,2.4850060727508996e37,2.48700527305078e37,2.4890044733506595e37,2.4910036736505397e37,2.49300287395042e37,2.4950020742502996e37,2.49700127455018e37,2.49900047485006e37,2.5009996751499398e37,2.50299887544982e37,2.5049980757497e37,2.5069972760495803e37,2.50899647634946e37,2.5109956766493402e37,2.5129948769492204e37,2.5149940772491e37,2.5169932775489803e37,2.5189924778488605e37,2.5209916781487403e37,2.5229908784486204e37,2.5249900787485006e37,2.5269892790483804e37,2.5289884793482605e37,2.5309876796481407e37,2.532986879948021e37,2.5349860802479007e37,2.536985280547781e37,2.538984480847661e37,2.5409836811475408e37,2.542982881447421e37,2.544982081747301e37,2.546981282047181e37,2.548980482347061e37,2.5509796826469412e37,2.5529788829468214e37,2.554978083246701e37,2.5569772835465813e37,2.5589764838464615e37,2.5609756841463413e37,2.5629748844462215e37,2.5649740847461016e37,2.5669732850459814e37,2.5689724853458616e37,2.5709716856457417e37,2.5729708859456215e37,2.5749700862455017e37,2.576969286545382e37,2.578968486845262e37,2.5809676871451418e37,2.582966887445022e37,2.584966087744902e37,2.586965288044782e37,2.588964488344662e37,2.5909636886445422e37,2.592962888944422e37,2.594962089244302e37,2.5969612895441824e37,2.5989604898440625e37,2.6009596901439423e37,2.6029588904438225e37,2.6049580907437026e37,2.6069572910435824e37,2.6089564913434626e37,2.6109556916433427e37,2.6129548919432225e37,2.6149540922431027e37,2.616953292542983e37,2.6189524928428626e37,2.620951693142743e37,2.622950893442623e37,2.624950093742503e37,2.626949294042383e37,2.628948494342263e37,2.6309476946421433e37,2.632946894942023e37,2.634946095241903e37,2.6369452955417834e37,2.638944495841663e37,2.6409436961415433e37,2.6429428964414235e37,2.6449420967413037e37,2.6469412970411834e37,2.6489404973410636e37,2.6509396976409438e37,2.6529388979408235e37,2.6549380982407037e37,2.656937298540584e37,2.6589364988404636e37,2.660935699140344e37,2.662934899440224e37,2.6649340997401037e37,2.666933300039984e37,2.668932500339864e37,2.6709317006397443e37,2.672930900939624e37,2.674930101239504e37,2.6769293015393844e37,2.678928501839264e37,2.6809277021391443e37,2.6829269024390245e37,2.684926102738904e37,2.6869253030387844e37,2.6889245033386646e37,2.6909237036385443e37,2.6929229039384245e37,2.6949221042383047e37,2.696921304538185e37,2.6989205048380646e37,2.700919705137945e37,2.702918905437825e37,2.7049181057377047e37,2.706917306037585e37,2.708916506337465e37,2.710915706637345e37,2.712914906937225e37,2.714914107237105e37,2.7169133075369854e37,2.718912507836865e37,2.7209117081367453e37,2.7229109084366255e37,2.724910108736505e37,2.7269093090363854e37,2.7289085093362656e37,2.7309077096361453e37,2.7329069099360255e37,2.7349061102359057e37,2.7369053105357854e37,2.7389045108356656e37,2.740903711135546e37,2.742902911435426e37,2.7449021117353057e37,2.746901312035186e37,2.748900512335066e37,2.750899712634946e37,2.752898912934826e37,2.754898113234706e37,2.756897313534586e37,2.758896513834466e37,2.7608957141343463e37,2.7628949144342265e37,2.764894114734106e37,2.7668933150339864e37,2.7688925153338666e37,2.7708917156337463e37,2.7728909159336265e37,2.7748901162335067e37,2.7768893165333864e37,2.7788885168332666e37,2.780887717133147e37,2.7828869174330265e37,2.7848861177329067e37,2.786885318032787e37,2.788884518332667e37,2.790883718632547e37,2.792882918932427e37,2.794882119232307e37,2.796881319532187e37,2.798880519832067e37,2.8008797201319473e37,2.802878920431827e37,2.804878120731707e37,2.8068773210315874e37,2.8088765213314676e37,2.8108757216313473e37,2.8128749219312275e37,2.8148741222311077e37,2.8168733225309874e37,2.8188725228308676e37,2.820871723130748e37,2.8228709234306275e37,2.8248701237305077e37,2.826869324030388e37,2.8288685243302676e37,2.830867724630148e37,2.832866924930028e37,2.834866125229908e37,2.836865325529788e37,2.838864525829668e37,2.8408637261295483e37,2.842862926429428e37,2.844862126729308e37,2.8468613270291884e37,2.848860527329068e37,2.8508597276289483e37,2.8528589279288285e37,2.8548581282287087e37,2.8568573285285884e37,2.8588565288284686e37,2.860855729128349e37,2.8628549294282285e37,2.8648541297281087e37,2.866853330027989e37,2.8688525303278686e37,2.870851730627749e37,2.872850930927629e37,2.8748501312275087e37,2.876849331527389e37,2.878848531827269e37,2.8808477321271493e37,2.882846932427029e37,2.884846132726909e37,2.8868453330267894e37,2.888844533326669e37,2.8908437336265493e37,2.8928429339264295e37,2.894842134226309e37,2.8968413345261894e37,2.8988405348260696e37,2.9008397351259493e37,2.9028389354258295e37,2.9048381357257097e37,2.90683733602559e37,2.9088365363254696e37,2.91083573662535e37,2.91283493692523e37,2.9148341372251097e37,2.91683333752499e37,2.91883253782487e37,2.92083173812475e37,2.92283093842463e37,2.92483013872451e37,2.9268293390243904e37,2.92882853932427e37,2.9308277396241503e37,2.9328269399240305e37,2.93482614022391e37,2.9368253405237904e37,2.9388245408236706e37,2.9408237411235503e37,2.9428229414234305e37,2.9448221417233107e37,2.9468213420231904e37,2.9488205423230706e37,2.950819742622951e37,2.952818942922831e37,2.9548181432227107e37,2.956817343522591e37,2.958816543822471e37,2.960815744122351e37,2.962814944422231e37,2.964814144722111e37,2.966813345021991e37,2.968812545321871e37,2.9708117456217513e37,2.9728109459216315e37,2.974810146221511e37,2.9768093465213914e37,2.9788085468212716e37,2.9808077471211513e37,2.9828069474210315e37,2.9848061477209117e37,2.9868053480207914e37,2.9888045483206716e37,2.990803748620552e37,2.9928029489204315e37,2.9948021492203117e37,2.996801349520192e37,2.998800549820072e37,3.000799750119952e37,3.002798950419832e37,3.004798150719712e37,3.006797351019592e37,3.008796551319472e37,3.0107957516193523e37,3.012794951919232e37,3.014794152219112e37,3.0167933525189924e37,3.0187925528188726e37,3.0207917531187523e37,3.0227909534186325e37,3.0247901537185127e37,3.0267893540183924e37,3.0287885543182726e37,3.030787754618153e37,3.0327869549180325e37,3.0347861552179127e37,3.036785355517793e37,3.0387845558176726e37,3.040783756117553e37,3.042782956417433e37,3.044782156717313e37,3.046781357017193e37,3.048780557317073e37,3.0507797576169533e37,3.052778957916833e37,3.0547781582167132e37,3.0567773585165934e37,3.058776558816473e37,3.0607757591163533e37,3.0627749594162335e37,3.0647741597161133e37,3.0667733600159934e37,3.0687725603158736e37,3.070771760615754e37,3.0727709609156335e37,3.0747701612155137e37,3.076769361515394e37,3.0787685618152737e37,3.080767762115154e37,3.082766962415034e37,3.0847661627149138e37,3.086765363014794e37,3.088764563314674e37,3.0907637636145543e37,3.092762963914434e37,3.0947621642143142e37,3.0967613645141944e37,3.098760564814074e37,3.1007597651139543e37,3.1027589654138345e37,3.1047581657137143e37,3.1067573660135944e37,3.1087565663134746e37,3.1107557666133544e37,3.1127549669132346e37,3.1147541672131147e37,3.116753367512995e37,3.1187525678128747e37,3.120751768112755e37,3.122750968412635e37,3.1247501687125148e37,3.126749369012395e37,3.128748569312275e37,3.130747769612155e37,3.132746969912035e37,3.1347461702119152e37,3.1367453705117954e37,3.138744570811675e37,3.1407437711115554e37,3.1427429714114355e37,3.1447421717113153e37,3.1467413720111955e37,3.1487405723110756e37,3.1507397726109554e37,3.1527389729108356e37,3.1547381732107157e37,3.1567373735105955e37,3.1587365738104757e37,3.160735774110356e37,3.162734974410236e37,3.164734174710116e37,3.166733375009996e37,3.168732575309876e37,3.170731775609756e37,3.172730975909636e37,3.1747301762095163e37,3.176729376509396e37,3.178728576809276e37,3.1807277771091564e37,3.1827269774090365e37,3.1847261777089163e37,3.1867253780087965e37,3.1887245783086767e37,3.1907237786085564e37,3.1927229789084366e37,3.1947221792083168e37,3.1967213795081965e37,3.1987205798080767e37,3.200719780107957e37,3.2027189804078366e37,3.204718180707717e37,3.206717381007597e37,3.208716581307477e37,3.210715781607357e37,3.212714981907237e37,3.2147141822071173e37,3.216713382506997e37,3.218712582806877e37,3.2207117831067574e37,3.222710983406637e37,3.2247101837065173e37,3.2267093840063975e37,3.228708584306277e37,3.2307077846061574e37,3.2327069849060376e37,3.2347061852059178e37,3.2367053855057975e37,3.2387045858056777e37,3.240703786105558e37,3.2427029864054376e37,3.244702186705318e37,3.246701387005198e37,3.2487005873050777e37,3.250699787604958e37,3.252698987904838e37,3.2546981882047183e37,3.256697388504598e37,3.258696588804478e37,3.2606957891043584e37,3.262694989404238e37,3.2646941897041183e37,3.2666933900039985e37,3.268692590303878e37,3.2706917906037584e37,3.2726909909036386e37,3.2746901912035183e37,3.2766893915033985e37,3.2786885918032787e37,3.280687792103159e37,3.2826869924030386e37,3.284686192702919e37,3.286685393002799e37,3.2886845933026787e37,3.290683793602559e37,3.292682993902439e37,3.294682194202319e37,3.296681394502199e37,3.298680594802079e37,3.3006797951019594e37,3.302678995401839e37,3.3046781957017193e37,3.3066773960015995e37,3.308676596301479e37,3.3106757966013594e37,3.3126749969012396e37,3.3146741972011193e37,3.3166733975009995e37,3.3186725978008797e37,3.3206717981007594e37,3.3226709984006396e37,3.32467019870052e37,3.3266693990004e37,3.3286685993002797e37,3.33066779960016e37,3.33266699990004e37,3.33466620019992e37,3.3366654004998e37,3.33866460079968e37,3.34066380109956e37,3.34266300139944e37,3.3446622016993203e37,3.3466614019992005e37,3.34866060229908e37,3.3506598025989604e37,3.3526590028988406e37,3.3546582031987203e37,3.3566574034986005e37,3.3586566037984807e37,3.3606558040983604e37,3.3626550043982406e37,3.364654204698121e37,3.3666534049980005e37,3.3686526052978807e37,3.370651805597761e37,3.372651005897641e37,3.374650206197521e37,3.376649406497401e37,3.378648606797281e37,3.380647807097161e37,3.382647007397041e37,3.3846462076969213e37,3.386645407996801e37,3.388644608296681e37,3.3906438085965614e37,3.392643008896441e37,3.3946422091963213e37,3.3966414094962015e37,3.3986406097960817e37,3.4006398100959614e37,3.4026390103958416e37,3.404638210695722e37,3.4066374109956015e37,3.4086366112954817e37,3.410635811595362e37,3.4126350118952416e37,3.414634212195122e37,3.416633412495002e37,3.418632612794882e37,3.420631813094762e37,3.422631013394642e37,3.4246302136945223e37,3.426629413994402e37,3.428628614294282e37,3.4306278145941624e37,3.432627014894042e37,3.4346262151939223e37,3.4366254154938025e37,3.438624615793682e37,3.4406238160935624e37,3.4426230163934426e37,3.444622216693323e37,3.4466214169932025e37,3.4486206172930827e37,3.450619817592963e37,3.4526190178928426e37,3.454618218192723e37,3.456617418492603e37,3.4586166187924827e37,3.460615819092363e37,3.462615019392243e37,3.4646142196921233e37,3.466613419992003e37,3.468612620291883e37,3.4706118205917634e37,3.472611020891643e37,3.4746102211915233e37,3.4766094214914035e37,3.478608621791283e37,3.4806078220911634e37,3.4826070223910436e37,3.4846062226909233e37,3.4866054229908035e37,3.4886046232906837e37,3.490603823590564e37,3.4926030238904436e37,3.494602224190324e37,3.496601424490204e37,3.4986006247900837e37,3.500599825089964e37,3.502599025389844e37,3.504598225689724e37,3.506597425989604e37,3.508596626289484e37,3.5105958265893644e37,3.512595026889244e37,3.5145942271891243e37,3.5165934274890045e37,3.518592627788884e37,3.5205918280887644e37,3.5225910283886446e37,3.5245902286885243e37,3.5265894289884045e37,3.5285886292882847e37,3.5305878295881644e37,3.5325870298880446e37,3.534586230187925e37,3.536585430487805e37,3.5385846307876847e37,3.540583831087565e37,3.542583031387445e37,3.544582231687325e37,3.546581431987205e37,3.548580632287085e37,3.550579832586965e37,3.552579032886845e37,3.5545782331867253e37,3.5565774334866055e37,3.558576633786485e37,3.5605758340863654e37,3.5625750343862456e37,3.5645742346861253e37,3.5665734349860055e37,3.5685726352858857e37,3.5705718355857654e37,3.5725710358856456e37,3.574570236185526e37,3.5765694364854055e37,3.5785686367852857e37,3.580567837085166e37,3.582567037385046e37,3.584566237684926e37,3.586565437984806e37,3.588564638284686e37,3.590563838584566e37,3.592563038884446e37,3.5945622391843263e37,3.596561439484206e37,3.5985606397840862e37,3.6005598400839664e37,3.602559040383846e37,3.6045582406837263e37,3.6065574409836065e37,3.6085566412834867e37,3.6105558415833664e37,3.6125550418832466e37,3.614554242183127e37,3.6165534424830065e37,3.6185526427828867e37,3.620551843082767e37,3.6225510433826467e37,3.624550243682527e37,3.626549443982407e37,3.628548644282287e37,3.630547844582167e37,3.632547044882047e37,3.6345462451819273e37,3.636545445481807e37,3.6385446457816872e37,3.6405438460815674e37,3.642543046381447e37,3.6445422466813273e37,3.6465414469812075e37,3.6485406472810873e37,3.6505398475809674e37,3.6525390478808476e37,3.654538248180728e37,3.6565374484806076e37,3.6585366487804877e37,3.660535849080368e37,3.6625350493802477e37,3.664534249680128e37,3.666533449980008e37,3.6685326502798878e37,3.670531850579768e37,3.672531050879648e37,3.6745302511795283e37,3.676529451479408e37,3.6785286517792882e37,3.6805278520791684e37,3.682527052379048e37,3.6845262526789283e37,3.6865254529788085e37,3.6885246532786883e37,3.6905238535785685e37,3.6925230538784486e37,3.6945222541783284e37,3.6965214544782086e37,3.6985206547780887e37,3.700519855077969e37,3.7025190553778487e37,3.704518255677729e37,3.706517455977609e37,3.7085166562774888e37,3.710515856577369e37,3.712515056877249e37,3.714514257177129e37,3.716513457477009e37,3.7185126577768893e37,3.7205118580767694e37,3.722511058376649e37,3.7245102586765294e37,3.7265094589764095e37,3.7285086592762893e37,3.7305078595761695e37,3.7325070598760496e37,3.7345062601759294e37,3.7365054604758096e37,3.7385046607756898e37,3.7405038610755695e37,3.7425030613754497e37,3.74450226167533e37,3.74650146197521e37,3.74850066227509e37,3.75049986257497e37,3.75249906287485e37,3.75449826317473e37,3.75649746347461e37,3.7584966637744903e37,3.76049586407437e37,3.76249506437425e37,3.7644942646741304e37,3.76649346497401e37,3.7684926652738903e37,3.7704918655737705e37,3.7724910658736507e37,3.7744902661735304e37,3.7764894664734106e37,3.7784886667732908e37,3.7804878670731705e37,3.7824870673730507e37,3.784486267672931e37,3.7864854679728106e37,3.788484668272691e37,3.790483868572571e37,3.792483068872451e37,3.794482269172331e37,3.796481469472211e37,3.7984806697720913e37,3.800479870071971e37,3.802479070371851e37,3.8044782706717314e37,3.806477470971611e37,3.8084766712714913e37,3.8104758715713715e37,3.812475071871251e37,3.8144742721711314e37,3.8164734724710116e37,3.8184726727708918e37,3.8204718730707715e37,3.8224710733706517e37,3.824470273670532e37,3.8264694739704116e37,3.828468674270292e37,3.830467874570172e37,3.8324670748700517e37,3.834466275169932e37,3.836465475469812e37,3.8384646757696923e37,3.840463876069572e37,3.842463076369452e37,3.8444622766693324e37,3.846461476969212e37,3.8484606772690923e37,3.8504598775689725e37,3.852459077868852e37,3.8544582781687324e37,3.8564574784686126e37,3.8584566787684923e37,3.8604558790683725e37,3.8624550793682527e37,3.864454279668133e37,3.8664534799680126e37,3.868452680267893e37,3.870451880567773e37,3.8724510808676527e37,3.874450281167533e37,3.876449481467413e37,3.878448681767293e37,3.880447882067173e37,3.882447082367053e37,3.8844462826669334e37,3.886445482966813e37,3.8884446832666933e37,3.8904438835665735e37,3.892443083866453e37,3.8944422841663334e37,3.8964414844662136e37,3.8984406847660933e37,3.9004398850659735e37,3.9024390853658537e37,3.9044382856657334e37,3.9064374859656136e37,3.908436686265494e37,3.910435886565374e37,3.9124350868652537e37,3.914434287165134e37,3.916433487465014e37,3.918432687764894e37,3.920431888064774e37,3.922431088364654e37,3.924430288664534e37,3.926429488964414e37,3.9284286892642943e37,3.930427889564174e37,3.932427089864054e37,3.9344262901639344e37,3.9364254904638146e37,3.9384246907636943e37,3.9404238910635745e37,3.9424230913634547e37,3.9444222916633344e37,3.9464214919632146e37,3.948420692263095e37,3.9504198925629745e37,3.9524190928628547e37,3.954418293162735e37,3.956417493462615e37,3.958416693762495e37,3.960415894062375e37,3.962415094362255e37,3.964414294662135e37,3.966413494962015e37,3.9684126952618953e37,3.970411895561775e37,3.972411095861655e37,3.9744102961615354e37,3.976409496461415e37,3.9784086967612953e37,3.9804078970611755e37,3.9824070973610557e37,3.9844062976609354e37,3.9864054979608156e37,3.988404698260696e37,3.9904038985605755e37,3.9924030988604557e37,3.994402299160336e37,3.9964014994602156e37,3.998400699760096e37,4.000399900059976e37,4.002399100359856e37,4.004398300659736e37,4.006397500959616e37,4.0083967012594963e37,4.010395901559376e37,4.012395101859256e37,4.0143943021591364e37,4.016393502459016e37,4.0183927027588963e37,4.0203919030587765e37,4.022391103358656e37,4.0243903036585364e37,4.0263895039584166e37,4.028388704258297e37,4.0303879045581765e37,4.0323871048580567e37,4.034386305157937e37,4.0363855054578166e37,4.038384705757697e37,4.040383906057577e37,4.0423831063574567e37,4.044382306657337e37,4.046381506957217e37,4.0483807072570973e37,4.050379907556977e37,4.052379107856857e37,4.0543783081567374e37,4.056377508456617e37,4.0583767087564973e37,4.0603759090563775e37,4.062375109356257e37,4.0643743096561374e37,4.0663735099560176e37,4.0683727102558973e37,4.0703719105557775e37,4.0723711108556577e37,4.074370311155538e37,4.0763695114554176e37,4.078368711755298e37,4.080367912055178e37,4.0823671123550577e37,4.084366312654938e37,4.086365512954818e37,4.088364713254698e37,4.090363913554578e37,4.092363113854458e37,4.094362314154338e37,4.096361514454218e37,4.0983607147540983e37,4.1003599150539785e37,4.102359115353858e37,4.1043583156537384e37,4.1063575159536186e37,4.1083567162534983e37,4.1103559165533785e37,4.1123551168532587e37,4.1143543171531384e37,4.1163535174530186e37,4.118352717752899e37,4.120351918052779e37,4.1223511183526587e37,4.124350318652539e37,4.126349518952419e37,4.128348719252299e37,4.130347919552179e37,4.132347119852059e37,4.134346320151939e37,4.136345520451819e37,4.1383447207516993e37,4.140343921051579e37,4.1423431213514592e37,4.1443423216513394e37,4.1463415219512196e37,4.1483407222510993e37,4.1503399225509795e37,4.1523391228508597e37,4.1543383231507394e37,4.1563375234506196e37,4.1583367237505e37,4.1603359240503795e37,4.1623351243502597e37,4.16433432465014e37,4.16633352495002e37,4.1683327252499e37,4.17033192554978e37,4.17233112584966e37,4.17433032614954e37,4.17632952644942e37,4.1783287267493003e37,4.18032792704918e37,4.1823271273490602e37,4.1843263276489404e37,4.18632552794882e37,4.1883247282487003e37,4.1903239285485805e37,4.1923231288484607e37,4.1943223291483404e37,4.1963215294482206e37,4.198320729748101e37,4.2003199300479806e37,4.2023191303478607e37,4.204318330647741e37,4.2063175309476207e37,4.208316731247501e37,4.210315931547381e37,4.212315131847261e37,4.214314332147141e37,4.216313532447021e37,4.2183127327469013e37,4.220311933046781e37,4.2223111333466612e37,4.2243103336465414e37,4.226309533946421e37,4.2283087342463013e37,4.2303079345461815e37,4.2323071348460613e37,4.2343063351459415e37,4.2363055354458216e37,4.238304735745702e37,4.2403039360455816e37,4.2423031363454617e37,4.244302336645342e37,4.2463015369452217e37,4.248300737245102e37,4.250299937544982e37,4.2522991378448618e37,4.254298338144742e37,4.256297538444622e37,4.258296738744502e37,4.260295939044383e37,4.262295139344262e37,4.264294339644142e37,4.266293539944022e37,4.268292740243902e37,4.270291940543783e37,4.272291140843663e37,4.274290341143543e37,4.276289541443422e37,4.278288741743302e37,4.280287942043183e37,4.282287142343063e37,4.284286342642943e37,4.286285542942823e37,4.288284743242702e37,4.290283943542583e37,4.292283143842463e37,4.294282344142343e37,4.296281544442223e37,4.298280744742103e37,4.300279945041984e37,4.302279145341863e37,4.304278345641743e37,4.306277545941623e37,4.308276746241503e37,4.310275946541384e37,4.312275146841264e37,4.314274347141143e37,4.316273547441023e37,4.318272747740903e37,4.320271948040784e37,4.322271148340664e37,4.324270348640544e37,4.326269548940424e37,4.328268749240303e37,4.330267949540184e37,4.332267149840064e37,4.334266350139944e37,4.336265550439824e37,4.338264750739704e37,4.340263951039585e37,4.342263151339464e37,4.344262351639344e37,4.346261551939224e37,4.348260752239104e37,4.350259952538985e37,4.352259152838865e37,4.354258353138744e37,4.356257553438624e37,4.358256753738504e37,4.360255954038385e37,4.362255154338265e37,4.364254354638145e37,4.366253554938025e37,4.368252755237904e37,4.370251955537785e37,4.372251155837665e37,4.374250356137545e37,4.376249556437425e37,4.378248756737305e37,4.380247957037185e37,4.382247157337065e37,4.384246357636945e37,4.386245557936825e37,4.388244758236705e37,4.390243958536586e37,4.392243158836466e37,4.394242359136345e37,4.396241559436225e37,4.398240759736105e37,4.400239960035986e37,4.402239160335866e37,4.404238360635746e37,4.406237560935625e37,4.408236761235505e37,4.410235961535386e37,4.412235161835266e37,4.414234362135146e37,4.416233562435026e37,4.418232762734906e37,4.420231963034786e37,4.422231163334666e37,4.424230363634546e37,4.426229563934426e37,4.428228764234306e37,4.430227964534187e37,4.432227164834066e37,4.434226365133946e37,4.436225565433826e37,4.438224765733706e37,4.440223966033587e37,4.442223166333467e37,4.444222366633347e37,4.446221566933226e37,4.448220767233106e37,4.450219967532987e37,4.452219167832867e37,4.454218368132747e37,4.456217568432627e37,4.458216768732507e37,4.460215969032387e37,4.462215169332267e37,4.464214369632147e37,4.466213569932027e37,4.468212770231907e37,4.470211970531788e37,4.472211170831667e37,4.474210371131547e37,4.476209571431427e37,4.478208771731307e37,4.480207972031188e37,4.482207172331068e37,4.484206372630948e37,4.486205572930827e37,4.488204773230707e37,4.490203973530588e37,4.492203173830468e37,4.494202374130348e37,4.496201574430228e37,4.498200774730107e37,4.500199975029988e37,4.502199175329868e37,4.504198375629748e37,4.506197575929628e37,4.508196776229508e37,4.510195976529389e37,4.512195176829268e37,4.514194377129148e37,4.516193577429028e37,4.518192777728908e37,4.520191978028789e37,4.522191178328669e37,4.524190378628548e37,4.526189578928428e37,4.528188779228308e37,4.530187979528189e37,4.532187179828069e37,4.534186380127949e37,4.536185580427829e37,4.538184780727708e37,4.540183981027589e37,4.542183181327469e37,4.544182381627349e37,4.546181581927229e37,4.548180782227109e37,4.550179982526989e37,4.552179182826869e37,4.554178383126749e37,4.556177583426629e37,4.558176783726509e37,4.56017598402639e37,4.56217518432627e37,4.564174384626149e37,4.566173584926029e37,4.568172785225909e37,4.57017198552579e37,4.57217118582567e37,4.57417038612555e37,4.57616958642543e37,4.578168786725309e37,4.58016798702519e37,4.58216718732507e37,4.58416638762495e37,4.58616558792483e37,4.58816478822471e37,4.59016398852459e37,4.59216318882447e37,4.59416238912435e37,4.59616158942423e37,4.59816078972411e37,4.600159990023991e37,4.602159190323871e37,4.60415839062375e37,4.60615759092363e37,4.60815679122351e37,4.610155991523391e37,4.612155191823271e37,4.614154392123151e37,4.61615359242303e37,4.61815279272291e37,4.620151993022791e37,4.622151193322671e37,4.624150393622551e37,4.626149593922431e37,4.628148794222311e37,4.630147994522191e37,4.632147194822071e37,4.634146395121951e37,4.636145595421831e37,4.638144795721711e37,4.640143996021592e37,4.642143196321471e37,4.644142396621351e37,4.646141596921231e37,4.648140797221111e37,4.650139997520992e37,4.652139197820872e37,4.654138398120752e37,4.656137598420631e37,4.658136798720511e37,4.660135999020392e37,4.662135199320272e37,4.664134399620152e37,4.666133599920032e37,4.668132800219912e37,4.670132000519792e37,4.672131200819672e37,4.674130401119552e37,4.676129601419432e37,4.678128801719312e37,4.680128002019193e37,4.682127202319072e37,4.684126402618952e37,4.686125602918832e37,4.688124803218712e37,4.690124003518593e37,4.692123203818473e37,4.694122404118353e37,4.696121604418232e37,4.698120804718112e37,4.700120005017993e37,4.702119205317873e37,4.704118405617753e37,4.706117605917633e37,4.708116806217512e37,4.710116006517393e37,4.712115206817273e37,4.714114407117153e37,4.716113607417033e37,4.718112807716913e37,4.720112008016794e37,4.722111208316673e37,4.724110408616553e37,4.726109608916433e37,4.728108809216313e37,4.730108009516194e37,4.732107209816074e37,4.734106410115953e37,4.736105610415833e37,4.738104810715713e37,4.740104011015594e37,4.742103211315474e37,4.744102411615354e37,4.746101611915234e37,4.748100812215113e37,4.750100012514994e37,4.752099212814874e37,4.754098413114754e37,4.756097613414634e37,4.758096813714514e37,4.760096014014394e37,4.762095214314274e37,4.764094414614154e37,4.766093614914034e37,4.768092815213914e37,4.770092015513795e37,4.772091215813675e37,4.774090416113554e37,4.776089616413434e37,4.778088816713314e37,4.780088017013195e37,4.782087217313075e37,4.784086417612955e37,4.786085617912835e37,4.788084818212714e37,4.790084018512595e37,4.792083218812475e37,4.794082419112355e37,4.796081619412235e37,4.798080819712115e37,4.800080020011995e37,4.802079220311875e37,4.804078420611755e37,4.806077620911635e37,4.808076821211515e37,4.810076021511396e37,4.812075221811276e37,4.814074422111155e37,4.816073622411035e37,4.818072822710915e37,4.820072023010796e37,4.822071223310676e37,4.824070423610556e37,4.826069623910435e37,4.828068824210315e37,4.830068024510196e37,4.832067224810076e37,4.834066425109956e37,4.836065625409836e37,4.838064825709716e37,4.840064026009596e37,4.842063226309476e37,4.844062426609356e37,4.846061626909236e37,4.848060827209116e37,4.850060027508997e37,4.852059227808876e37,4.854058428108756e37,4.856057628408636e37,4.858056828708516e37,4.860056029008397e37,4.862055229308277e37,4.864054429608157e37,4.866053629908036e37,4.8680528302079165e37,4.870052030507797e37,4.872051230807677e37,4.874050431107557e37,4.876049631407437e37,4.878048831707317e37,4.880048032007197e37,4.882047232307077e37,4.884046432606957e37,4.886045632906837e37,4.888044833206717e37,4.890044033506598e37,4.892043233806477e37,4.894042434106357e37,4.896041634406237e37,4.898040834706117e37,4.900040035005998e37,4.902039235305878e37,4.904038435605758e37,4.906037635905637e37,4.9080368362055175e37,4.910036036505398e37,4.912035236805278e37,4.914034437105158e37,4.916033637405038e37,4.9180328377049175e37,4.920032038004798e37,4.922031238304678e37,4.924030438604558e37,4.926029638904438e37,4.928028839204318e37,4.930028039504199e37,4.932027239804078e37,4.934026440103958e37,4.936025640403838e37,4.938024840703718e37,4.940024041003599e37,4.942023241303479e37,4.944022441603358e37,4.946021641903238e37,4.9480208422031185e37,4.950020042502999e37,4.952019242802879e37,4.954018443102759e37,4.956017643402639e37,4.9580168437025185e37,4.960016044002399e37,4.962015244302279e37,4.964014444602159e37,4.966013644902039e37,4.968012845201919e37,4.970012045501799e37,4.972011245801679e37,4.974010446101559e37,4.976009646401439e37,4.9780088467013195e37,4.9800080470012e37,4.98200724730108e37,4.984006447600959e37,4.986005647900839e37,4.9880048482007195e37,4.9900040485006e37,4.99200324880048e37,4.99400244910036e37,4.99600164940024e37,4.9980008497001195e37,5.00000005e37,5.00199925029988e37,5.00399845059976e37,5.00599765089964e37,5.00799685119952e37,5.0099960514994e37,5.01199525179928e37,5.01399445209916e37,5.01599365239904e37,5.0179928526989205e37,5.019992052998801e37,5.021991253298681e37,5.02399045359856e37,5.02598965389844e37,5.0279888541983205e37,5.029988054498201e37,5.031987254798081e37,5.033986455097961e37,5.03598565539784e37,5.0379848556977205e37,5.039984055997601e37,5.041983256297481e37,5.043982456597361e37,5.045981656897241e37,5.047980857197121e37,5.049980057497001e37,5.051979257796881e37,5.053978458096761e37,5.055977658396641e37,5.0579768586965215e37,5.059976058996402e37,5.061975259296281e37,5.063974459596161e37,5.065973659896041e37,5.0679728601959215e37,5.069972060495802e37,5.071971260795682e37,5.073970461095562e37,5.075969661395441e37,5.0779688616953215e37,5.079968061995202e37,5.081967262295082e37,5.083966462594962e37,5.085965662894842e37,5.0879648631947215e37,5.089964063494602e37,5.091963263794482e37,5.093962464094362e37,5.095961664394242e37,5.0979608646941225e37,5.099960064994003e37,5.101959265293882e37,5.103958465593762e37,5.105957665893642e37,5.1079568661935225e37,5.109956066493403e37,5.111955266793283e37,5.113954467093163e37,5.115953667393042e37,5.1179528676929225e37,5.119952067992803e37,5.121951268292683e37,5.123950468592563e37,5.125949668892443e37,5.127948869192323e37,5.129948069492203e37,5.131947269792083e37,5.133946470091963e37,5.135945670391843e37,5.1379448706917235e37,5.139944070991604e37,5.141943271291483e37,5.143942471591363e37,5.145941671891243e37,5.1479408721911235e37,5.149940072491004e37,5.151939272790884e37,5.153938473090763e37,5.155937673390643e37,5.1579368736905235e37,5.159936073990404e37,5.161935274290284e37,5.163934474590164e37,5.165933674890044e37,5.167932875189924e37,5.169932075489804e37,5.171931275789684e37,5.173930476089564e37,5.175929676389444e37,5.1779288766893245e37,5.179928076989204e37,5.181927277289084e37,5.183926477588964e37,5.185925677888844e37,5.1879248781887245e37,5.189924078488605e37,5.191923278788485e37,5.193922479088364e37,5.195921679388244e37,5.1979208796881245e37,5.199920079988005e37,5.201919280287885e37,5.203918480587765e37,5.205917680887645e37,5.207916881187525e37,5.209916081487405e37,5.211915281787285e37,5.213914482087165e37,5.215913682387045e37,5.2179128826869255e37,5.219912082986805e37,5.221911283286685e37,5.223910483586565e37,5.225909683886445e37,5.2279088841863255e37,5.229908084486206e37,5.231907284786086e37,5.233906485085965e37,5.235905685385845e37,5.237904885685726e37,5.239904085985606e37,5.241903286285486e37,5.243902486585366e37,5.245901686885245e37,5.247900887185126e37,5.249900087485006e37,5.251899287784886e37,5.253898488084766e37,5.255897688384646e37,5.2578968886845265e37,5.259896088984406e37,5.261895289284286e37,5.263894489584166e37,5.265893689884046e37,5.2678928901839265e37,5.269892090483807e37,5.271891290783686e37,5.273890491083566e37,5.275889691383446e37,5.277888891683327e37,5.279888091983207e37,5.281887292283087e37,5.283886492582967e37,5.285885692882846e37,5.287884893182727e37,5.289884093482607e37,5.291883293782487e37,5.293882494082367e37,5.295881694382247e37,5.297880894682127e37,5.299880094982007e37,5.301879295281887e37,5.303878495581767e37,5.305877695881647e37,5.3078768961815275e37,5.309876096481408e37,5.311875296781287e37,5.313874497081167e37,5.315873697381047e37,5.317872897680928e37,5.319872097980808e37,5.321871298280688e37,5.323870498580568e37,5.325869698880447e37,5.327868899180328e37,5.329868099480208e37,5.331867299780088e37,5.333866500079968e37,5.335865700379848e37,5.337864900679728e37,5.339864100979608e37,5.341863301279488e37,5.343862501579368e37,5.345861701879248e37,5.347860902179129e37,5.349860102479009e37,5.351859302778888e37,5.353858503078768e37,5.355857703378648e37,5.357856903678529e37,5.359856103978409e37,5.361855304278289e37,5.363854504578168e37,5.365853704878048e37,5.367852905177929e37,5.369852105477809e37,5.371851305777689e37,5.373850506077569e37,5.375849706377449e37,5.377848906677329e37,5.379848106977209e37,5.381847307277089e37,5.383846507576969e37,5.385845707876849e37,5.38784490817673e37,5.389844108476609e37,5.391843308776489e37,5.393842509076369e37,5.395841709376249e37,5.39784090967613e37,5.39984010997601e37,5.40183931027589e37,5.403838510575769e37,5.405837710875649e37,5.40783691117553e37,5.40983611147541e37,5.41183531177529e37,5.41383451207517e37,5.415833712375049e37,5.41783291267493e37,5.41983211297481e37,5.42183131327469e37,5.42383051357457e37,5.42582971387445e37,5.427828914174331e37,5.42982811447421e37,5.43182731477409e37,5.43382651507397e37,5.43582571537385e37,5.437824915673731e37,5.439824115973611e37,5.441823316273491e37,5.44382251657337e37,5.44582171687325e37,5.447820917173131e37,5.449820117473011e37,5.451819317772891e37,5.453818518072771e37,5.45581771837265e37,5.457816918672531e37,5.459816118972411e37,5.461815319272291e37,5.463814519572171e37,5.465813719872051e37,5.467812920171932e37,5.469812120471811e37,5.471811320771691e37,5.473810521071571e37,5.475809721371451e37,5.477808921671332e37,5.479808121971212e37,5.481807322271091e37,5.483806522570971e37,5.485805722870851e37,5.487804923170732e37,5.489804123470612e37,5.491803323770492e37,5.493802524070372e37,5.495801724370251e37,5.497800924670132e37,5.499800124970012e37,5.501799325269892e37,5.503798525569772e37,5.505797725869652e37,5.507796926169532e37,5.509796126469412e37,5.511795326769292e37,5.513794527069172e37,5.515793727369052e37,5.517792927668933e37,5.519792127968813e37,5.521791328268692e37,5.523790528568572e37,5.525789728868452e37,5.527788929168333e37,5.529788129468213e37,5.531787329768093e37,5.533786530067973e37,5.535785730367852e37,5.537784930667733e37,5.539784130967613e37,5.541783331267493e37,5.543782531567373e37,5.545781731867253e37,5.547780932167133e37,5.549780132467013e37,5.551779332766893e37,5.553778533066773e37,5.555777733366653e37,5.557776933666534e37,5.559776133966414e37,5.561775334266293e37,5.563774534566173e37,5.565773734866053e37,5.567772935165934e37,5.569772135465814e37,5.571771335765694e37,5.573770536065573e37,5.575769736365453e37,5.577768936665334e37,5.579768136965214e37,5.581767337265094e37,5.583766537564974e37,5.585765737864854e37,5.587764938164734e37,5.589764138464614e37,5.591763338764494e37,5.593762539064374e37,5.595761739364254e37,5.597760939664135e37,5.599760139964014e37,5.601759340263894e37,5.603758540563774e37,5.605757740863654e37,5.607756941163535e37,5.609756141463415e37,5.611755341763295e37,5.613754542063174e37,5.615753742363054e37,5.617752942662935e37,5.619752142962815e37,5.621751343262695e37,5.623750543562575e37,5.625749743862454e37,5.627748944162335e37,5.629748144462215e37,5.631747344762095e37,5.633746545061975e37,5.635745745361855e37,5.637744945661736e37,5.639744145961615e37,5.641743346261495e37,5.643742546561375e37,5.645741746861255e37,5.647740947161136e37,5.649740147461016e37,5.651739347760896e37,5.653738548060775e37,5.655737748360655e37,5.657736948660536e37,5.659736148960416e37,5.661735349260296e37,5.663734549560176e37,5.665733749860055e37,5.667732950159936e37,5.669732150459816e37,5.671731350759696e37,5.673730551059576e37,5.675729751359456e37,5.677728951659337e37,5.679728151959216e37,5.681727352259096e37,5.683726552558976e37,5.685725752858856e37,5.687724953158737e37,5.689724153458617e37,5.691723353758496e37,5.693722554058376e37,5.695721754358256e37,5.697720954658137e37,5.699720154958017e37,5.701719355257897e37,5.703718555557777e37,5.705717755857656e37,5.707716956157537e37,5.709716156457417e37,5.711715356757297e37,5.713714557057177e37,5.715713757357057e37,5.717712957656937e37,5.719712157956817e37,5.721711358256697e37,5.723710558556577e37,5.725709758856457e37,5.727708959156338e37,5.729708159456218e37,5.731707359756097e37,5.733706560055977e37,5.735705760355857e37,5.737704960655738e37,5.739704160955618e37,5.741703361255498e37,5.743702561555378e37,5.745701761855257e37,5.747700962155138e37,5.749700162455018e37,5.751699362754898e37,5.753698563054778e37,5.755697763354658e37,5.757696963654538e37,5.759696163954418e37,5.761695364254298e37,5.763694564554178e37,5.765693764854058e37,5.767692965153939e37,5.769692165453819e37,5.771691365753698e37,5.773690566053578e37,5.775689766353458e37,5.777688966653339e37,5.779688166953219e37,5.781687367253099e37,5.783686567552978e37,5.785685767852858e37,5.787684968152739e37,5.789684168452619e37,5.791683368752499e37,5.793682569052379e37,5.795681769352259e37,5.797680969652139e37,5.799680169952019e37,5.801679370251899e37,5.803678570551779e37,5.805677770851659e37,5.80767697115154e37,5.809676171451419e37,5.811675371751299e37,5.813674572051179e37,5.815673772351059e37,5.81767297265094e37,5.81967217295082e37,5.8216713732507e37,5.823670573550579e37,5.825669773850459e37,5.82766897415034e37,5.82966817445022e37,5.8316673747501e37,5.83366657504998e37,5.835665775349859e37,5.83766497564974e37,5.83966417594962e37,5.8416633762495e37,5.84366257654938e37,5.84566177684926e37,5.847660977149141e37,5.84966017744902e37,5.8516593777489e37,5.85365857804878e37,5.85565777834866e37,5.857656978648541e37,5.859656178948421e37,5.861655379248301e37,5.86365457954818e37,5.86565377984806e37,5.867652980147941e37,5.869652180447821e37,5.871651380747701e37,5.873650581047581e37,5.87564978134746e37,5.877648981647341e37,5.879648181947221e37,5.881647382247101e37,5.883646582546981e37,5.885645782846861e37,5.887644983146742e37,5.889644183446621e37,5.891643383746501e37,5.893642584046381e37,5.895641784346261e37,5.897640984646142e37,5.899640184946022e37,5.901639385245901e37,5.903638585545781e37,5.905637785845661e37,5.907636986145542e37,5.909636186445422e37,5.911635386745302e37,5.913634587045182e37,5.915633787345061e37,5.917632987644942e37,5.919632187944822e37,5.921631388244702e37,5.923630588544582e37,5.925629788844462e37,5.927628989144342e37,5.929628189444222e37,5.931627389744102e37,5.933626590043982e37,5.935625790343862e37,5.937624990643743e37,5.939624190943623e37,5.941623391243502e37,5.943622591543382e37,5.945621791843262e37,5.947620992143143e37,5.949620192443023e37,5.951619392742903e37,5.953618593042782e37,5.9556177933426625e37,5.957616993642543e37,5.959616193942423e37,5.961615394242303e37,5.963614594542183e37,5.965613794842063e37,5.967612995141943e37,5.969612195441823e37,5.971611395741703e37,5.973610596041583e37,5.975609796341463e37,5.977608996641344e37,5.979608196941224e37,5.981607397241103e37,5.983606597540983e37,5.985605797840863e37,5.987604998140744e37,5.989604198440624e37,5.991603398740504e37,5.993602599040383e37,5.9956017993402635e37,5.997600999640144e37,5.999600199940024e37,6.001599400239904e37,6.003598600539784e37,6.005597800839664e37,6.007597001139544e37,6.009596201439424e37,6.011595401739304e37,6.013594602039184e37,6.015593802339064e37,6.017593002638945e37,6.019592202938824e37,6.021591403238704e37,6.023590603538584e37,6.025589803838464e37,6.027589004138345e37,6.029588204438225e37,6.031587404738105e37,6.033586605037984e37,6.0355858053378645e37,6.037585005637745e37,6.039584205937625e37,6.041583406237505e37,6.043582606537385e37,6.0455818068372645e37,6.047581007137145e37,6.049580207437025e37,6.051579407736905e37,6.053578608036785e37,6.055577808336665e37,6.057577008636546e37,6.059576208936425e37,6.061575409236305e37,6.063574609536185e37,6.065573809836065e37,6.067573010135946e37,6.069572210435826e37,6.071571410735706e37,6.073570611035585e37,6.0755698113354655e37,6.077569011635346e37,6.079568211935226e37,6.081567412235106e37,6.083566612534986e37,6.0855658128348655e37,6.087565013134746e37,6.089564213434626e37,6.091563413734506e37,6.093562614034386e37,6.095561814334266e37,6.097561014634147e37,6.099560214934026e37,6.101559415233906e37,6.103558615533786e37,6.1055578158336665e37,6.107557016133547e37,6.109556216433427e37,6.111555416733306e37,6.113554617033186e37,6.1155538173330665e37,6.117553017632947e37,6.119552217932827e37,6.121551418232707e37,6.123550618532587e37,6.1255498188324665e37,6.127549019132347e37,6.129548219432227e37,6.131547419732107e37,6.133546620031987e37,6.135545820331867e37,6.137545020631747e37,6.139544220931627e37,6.141543421231507e37,6.143542621531387e37,6.1455418218312675e37,6.147541022131148e37,6.149540222431028e37,6.151539422730907e37,6.153538623030787e37,6.1555378233306675e37,6.157537023630548e37,6.159536223930428e37,6.161535424230308e37,6.163534624530187e37,6.1655338248300675e37,6.167533025129948e37,6.169532225429828e37,6.171531425729708e37,6.173530626029588e37,6.175529826329468e37,6.177529026629348e37,6.179528226929228e37,6.181527427229108e37,6.183526627528988e37,6.1855258278288685e37,6.187525028128749e37,6.189524228428629e37,6.191523428728508e37,6.193522629028388e37,6.1955218293282685e37,6.197521029628149e37,6.199520229928029e37,6.201519430227909e37,6.203518630527788e37,6.2055178308276685e37,6.207517031127549e37,6.209516231427429e37,6.211515431727309e37,6.213514632027189e37,6.2155138323270695e37,6.217513032626949e37,6.219512232926829e37,6.221511433226709e37,6.223510633526589e37,6.2255098338264695e37,6.22750903412635e37,6.229508234426229e37,6.231507434726109e37,6.233506635025989e37,6.2355058353258695e37,6.23750503562575e37,6.23950423592563e37,6.24150343622551e37,6.243502636525389e37,6.2455018368252695e37,6.24750103712515e37,6.24950023742503e37,6.25149943772491e37,6.25349863802479e37,6.25549783832467e37,6.25749703862455e37,6.25949623892443e37,6.26149543922431e37,6.26349463952419e37,6.2654938398240705e37,6.267493040123951e37,6.26949224042383e37,6.27149144072371e37,6.27349064102359e37,6.2754898413234705e37,6.277489041623351e37,6.279488241923231e37,6.281487442223111e37,6.28348664252299e37,6.2854858428228705e37,6.287485043122751e37,6.289484243422631e37,6.291483443722511e37,6.293482644022391e37,6.295481844322271e37,6.297481044622151e37,6.299480244922031e37,6.301479445221911e37,6.303478645521791e37,6.3054778458216715e37,6.307477046121552e37,6.309476246421431e37,6.311475446721311e37,6.313474647021191e37,6.3154738473210715e37,6.317473047620952e37,6.319472247920832e37,6.321471448220711e37,6.323470648520591e37,6.325469848820472e37,6.327469049120352e37,6.329468249420232e37,6.331467449720112e37,6.333466650019992e37,6.335465850319872e37,6.337465050619752e37,6.339464250919632e37,6.341463451219512e37,6.343462651519392e37,6.3454618518192725e37,6.347461052119152e37,6.349460252419032e37,6.351459452718912e37,6.353458653018792e37,6.3554578533186725e37,6.357457053618553e37,6.359456253918433e37,6.361455454218312e37,6.363454654518192e37,6.365453854818073e37,6.367453055117953e37,6.369452255417833e37,6.371451455717713e37,6.373450656017592e37,6.375449856317473e37,6.377449056617353e37,6.379448256917233e37,6.381447457217113e37,6.383446657516993e37,6.3854458578168735e37,6.387445058116753e37,6.389444258416633e37,6.391443458716513e37,6.393442659016393e37,6.3954418593162735e37,6.397441059616154e37,6.399440259916034e37,6.401439460215913e37,6.403438660515793e37,6.405437860815674e37,6.407437061115554e37,6.409436261415434e37,6.411435461715314e37,6.413434662015193e37,6.415433862315074e37,6.417433062614954e37,6.419432262914834e37,6.421431463214714e37,6.423430663514594e37,6.4254298638144745e37,6.427429064114354e37,6.429428264414234e37,6.431427464714114e37,6.433426665013994e37,6.4354258653138745e37,6.437425065613755e37,6.439424265913634e37,6.441423466213514e37,6.443422666513394e37,6.445421866813275e37,6.447421067113155e37,6.449420267413035e37,6.451419467712915e37,6.453418668012794e37,6.455417868312675e37,6.457417068612555e37,6.459416268912435e37,6.461415469212315e37,6.463414669512195e37,6.465413869812075e37,6.467413070111955e37,6.469412270411835e37,6.471411470711715e37,6.473410671011595e37,6.475409871311476e37,6.477409071611356e37,6.479408271911235e37,6.481407472211115e37,6.483406672510995e37,6.485405872810876e37,6.487405073110756e37,6.489404273410636e37,6.491403473710515e37,6.493402674010395e37,6.495401874310276e37,6.497401074610156e37,6.499400274910036e37,6.501399475209916e37,6.503398675509796e37,6.505397875809676e37,6.507397076109556e37,6.509396276409436e37,6.511395476709316e37,6.513394677009196e37,6.515393877309077e37,6.517393077608957e37,6.519392277908836e37,6.521391478208716e37,6.523390678508596e37,6.525389878808477e37,6.527389079108357e37,6.529388279408237e37,6.531387479708116e37,6.533386680007996e37,6.535385880307877e37,6.537385080607757e37,6.539384280907637e37,6.541383481207517e37,6.543382681507397e37,6.545381881807277e37,6.547381082107157e37,6.549380282407037e37,6.551379482706917e37,6.553378683006797e37,6.555377883306678e37,6.557377083606557e37,6.559376283906437e37,6.561375484206317e37,6.563374684506197e37,6.565373884806078e37,6.567373085105958e37,6.569372285405838e37,6.571371485705717e37,6.573370686005597e37,6.575369886305478e37,6.577369086605358e37,6.579368286905238e37,6.581367487205118e37,6.583366687504997e37,6.585365887804878e37,6.587365088104758e37,6.589364288404638e37,6.591363488704518e37,6.593362689004398e37,6.595361889304279e37,6.597361089604158e37,6.599360289904038e37,6.601359490203918e37,6.603358690503798e37,6.605357890803679e37,6.607357091103559e37,6.609356291403439e37,6.611355491703318e37,6.613354692003198e37,6.615353892303079e37,6.617353092602959e37,6.619352292902839e37,6.621351493202719e37,6.623350693502598e37,6.625349893802479e37,6.627349094102359e37,6.629348294402239e37,6.631347494702119e37,6.633346695001999e37,6.63534589530188e37,6.637345095601759e37,6.639344295901639e37,6.641343496201519e37,6.643342696501399e37,6.64534189680128e37,6.64734109710116e37,6.649340297401039e37,6.651339497700919e37,6.653338698000799e37,6.65533789830068e37,6.65733709860056e37,6.65933629890044e37,6.66133549920032e37,6.663334699500199e37,6.66533389980008e37,6.66733310009996e37,6.66933230039984e37,6.67133150069972e37,6.6733307009996e37,6.67532990129948e37,6.67732910159936e37,6.67932830189924e37,6.68132750219912e37,6.683326702499e37,6.685325902798881e37,6.687325103098761e37,6.68932430339864e37,6.69132350369852e37,6.6933227039984e37,6.695321904298281e37,6.697321104598161e37,6.699320304898041e37,6.70131950519792e37,6.7033187054978e37,6.705317905797681e37,6.707317106097561e37,6.709316306397441e37,6.711315506697321e37,6.713314706997201e37,6.715313907297081e37,6.717313107596961e37,6.719312307896841e37,6.721311508196721e37,6.723310708496601e37,6.725309908796482e37,6.727309109096362e37,6.729308309396241e37,6.731307509696121e37,6.733306709996001e37,6.735305910295882e37,6.737305110595762e37,6.739304310895642e37,6.741303511195521e37,6.743302711495401e37,6.745301911795282e37,6.747301112095162e37,6.749300312395042e37,6.751299512694922e37,6.753298712994802e37,6.755297913294682e37,6.757297113594562e37,6.759296313894442e37,6.761295514194322e37,6.763294714494202e37,6.765293914794083e37,6.767293115093962e37,6.769292315393842e37,6.771291515693722e37,6.773290715993602e37,6.775289916293483e37,6.777289116593363e37,6.779288316893243e37,6.781287517193122e37,6.783286717493002e37,6.785285917792883e37,6.787285118092763e37,6.789284318392643e37,6.791283518692523e37,6.793282718992402e37,6.795281919292283e37,6.797281119592163e37,6.799280319892043e37,6.801279520191923e37,6.803278720491803e37,6.805277920791684e37,6.807277121091563e37,6.809276321391443e37,6.811275521691323e37,6.813274721991203e37,6.815273922291084e37,6.817273122590964e37,6.819272322890844e37,6.821271523190723e37,6.823270723490603e37,6.825269923790484e37,6.827269124090364e37,6.829268324390244e37,6.831267524690124e37,6.833266724990003e37,6.835265925289884e37,6.837265125589764e37,6.839264325889644e37,6.841263526189524e37,6.843262726489404e37,6.845261926789285e37,6.847261127089164e37,6.849260327389044e37,6.851259527688924e37,6.853258727988804e37,6.855257928288685e37,6.857257128588565e37,6.859256328888444e37,6.861255529188324e37,6.863254729488204e37,6.865253929788085e37,6.867253130087965e37,6.869252330387845e37,6.871251530687725e37,6.873250730987604e37,6.875249931287485e37,6.877249131587365e37,6.879248331887245e37,6.881247532187125e37,6.883246732487005e37,6.885245932786885e37,6.887245133086765e37,6.889244333386645e37,6.891243533686525e37,6.893242733986405e37,6.895241934286286e37,6.897241134586166e37,6.899240334886045e37,6.901239535185925e37,6.903238735485805e37,6.905237935785686e37,6.907237136085566e37,6.909236336385446e37,6.911235536685325e37,6.913234736985205e37,6.915233937285086e37,6.917233137584966e37,6.919232337884846e37,6.921231538184726e37,6.923230738484606e37,6.925229938784486e37,6.927229139084366e37,6.929228339384246e37,6.931227539684126e37,6.933226739984006e37,6.935225940283887e37,6.937225140583767e37,6.939224340883646e37,6.941223541183526e37,6.943222741483406e37,6.945221941783287e37,6.947221142083167e37,6.949220342383047e37,6.951219542682926e37,6.953218742982806e37,6.955217943282687e37,6.957217143582567e37,6.959216343882447e37,6.961215544182327e37,6.963214744482207e37,6.965213944782087e37,6.967213145081967e37,6.969212345381847e37,6.971211545681727e37,6.973210745981607e37,6.975209946281488e37,6.977209146581367e37,6.979208346881247e37,6.981207547181127e37,6.983206747481007e37,6.985205947780888e37,6.987205148080768e37,6.989204348380648e37,6.991203548680527e37,6.993202748980407e37,6.995201949280288e37,6.997201149580168e37,6.999200349880048e37,7.001199550179928e37,7.003198750479807e37,7.005197950779688e37,7.007197151079568e37,7.009196351379448e37,7.011195551679328e37,7.013194751979208e37,7.015193952279089e37,7.017193152578968e37,7.019192352878848e37,7.021191553178728e37,7.023190753478608e37,7.025189953778489e37,7.027189154078369e37,7.029188354378248e37,7.031187554678128e37,7.033186754978008e37,7.035185955277889e37,7.037185155577769e37,7.039184355877649e37,7.041183556177529e37,7.043182756477408e37,7.045181956777289e37,7.047181157077169e37,7.049180357377049e37,7.051179557676929e37,7.053178757976809e37,7.05517795827669e37,7.057177158576569e37,7.059176358876449e37,7.061175559176329e37,7.063174759476209e37,7.06517395977609e37,7.06717316007597e37,7.069172360375849e37,7.071171560675729e37,7.073170760975609e37,7.07516996127549e37,7.07716916157537e37,7.07916836187525e37,7.08116756217513e37,7.0831667624750095e37,7.08516596277489e37,7.08716516307477e37,7.08916436337465e37,7.09116356367453e37,7.09316276397441e37,7.09516196427429e37,7.09716116457417e37,7.09916036487405e37,7.10115956517393e37,7.10315876547381e37,7.105157965773691e37,7.107157166073571e37,7.10915636637345e37,7.11115556667333e37,7.11315476697321e37,7.115153967273091e37,7.117153167572971e37,7.119152367872851e37,7.12115156817273e37,7.1231507684726105e37,7.125149968772491e37,7.127149169072371e37,7.129148369372251e37,7.131147569672131e37,7.133146769972011e37,7.135145970271891e37,7.137145170571771e37,7.139144370871651e37,7.141143571171531e37,7.143142771471411e37,7.145141971771292e37,7.147141172071172e37,7.149140372371051e37,7.151139572670931e37,7.153138772970811e37,7.155137973270692e37,7.157137173570572e37,7.159136373870452e37,7.161135574170331e37,7.1631347744702115e37,7.165133974770092e37,7.167133175069972e37,7.169132375369852e37,7.171131575669732e37,7.173130775969612e37,7.175129976269492e37,7.177129176569372e37,7.179128376869252e37,7.181127577169132e37,7.183126777469012e37,7.185125977768893e37,7.187125178068772e37,7.189124378368652e37,7.191123578668532e37,7.1931227789684125e37,7.195121979268293e37,7.197121179568173e37,7.199120379868053e37,7.201119580167932e37,7.2031187804678125e37,7.205117980767693e37,7.207117181067573e37,7.209116381367453e37,7.211115581667333e37,7.2131147819672125e37,7.215113982267093e37,7.217113182566973e37,7.219112382866853e37,7.221111583166733e37,7.223110783466613e37,7.225109983766494e37,7.227109184066373e37,7.229108384366253e37,7.231107584666133e37,7.2331067849660135e37,7.235105985265894e37,7.237105185565774e37,7.239104385865653e37,7.241103586165533e37,7.2431027864654135e37,7.245101986765294e37,7.247101187065174e37,7.249100387365054e37,7.251099587664934e37,7.2530987879648135e37,7.255097988264694e37,7.257097188564574e37,7.259096388864454e37,7.261095589164334e37,7.263094789464214e37,7.265093989764095e37,7.267093190063974e37,7.269092390363854e37,7.271091590663734e37,7.2730907909636145e37,7.275089991263495e37,7.277089191563375e37,7.279088391863254e37,7.281087592163134e37,7.2830867924630145e37,7.285085992762895e37,7.287085193062775e37,7.289084393362655e37,7.291083593662535e37,7.2930827939624145e37,7.295081994262295e37,7.297081194562175e37,7.299080394862055e37,7.301079595161935e37,7.3030787954618155e37,7.305077995761695e37,7.307077196061575e37,7.309076396361455e37,7.311075596661335e37,7.3130747969612155e37,7.315073997261096e37,7.317073197560976e37,7.319072397860855e37,7.321071598160735e37,7.3230707984606155e37,7.325069998760496e37,7.327069199060376e37,7.329068399360256e37,7.331067599660135e37,7.3330667999600155e37,7.335066000259896e37,7.337065200559776e37,7.339064400859656e37,7.341063601159536e37,7.3430628014594165e37,7.345062001759296e37,7.347061202059176e37,7.349060402359056e37,7.351059602658936e37,7.3530588029588165e37,7.355058003258697e37,7.357057203558576e37,7.359056403858456e37,7.361055604158336e37,7.3630548044582165e37,7.365054004758097e37,7.367053205057977e37,7.369052405357857e37,7.371051605657736e37,7.3730508059576165e37,7.375050006257497e37,7.377049206557377e37,7.379048406857257e37,7.381047607157137e37,7.3830468074570175e37,7.385046007756897e37,7.387045208056777e37,7.389044408356657e37,7.391043608656537e37,7.3930428089564175e37,7.395042009256298e37,7.397041209556177e37,7.399040409856057e37,7.401039610155937e37,7.4030388104558175e37,7.405038010755698e37,7.407037211055578e37,7.409036411355458e37,7.411035611655337e37,7.4130348119552175e37,7.415034012255098e37,7.417033212554978e37,7.419032412854858e37,7.421031613154738e37,7.423030813454618e37,7.425030013754498e37,7.427029214054378e37,7.429028414354258e37,7.431027614654138e37,7.4330268149540185e37,7.435026015253899e37,7.437025215553778e37,7.439024415853658e37,7.441023616153538e37,7.4430228164534185e37,7.445022016753299e37,7.447021217053179e37,7.449020417353058e37,7.451019617652938e37,7.453018817952819e37,7.455018018252699e37,7.457017218552579e37,7.459016418852459e37,7.461015619152339e37,7.463014819452219e37,7.465014019752099e37,7.467013220051979e37,7.469012420351859e37,7.471011620651739e37,7.4730108209516195e37,7.4750100212515e37,7.477009221551379e37,7.479008421851259e37,7.481007622151139e37,7.4830068224510195e37,7.4850060227509e37,7.48700522305078e37,7.489004423350659e37,7.491003623650539e37,7.49300282395042e37,7.4950020242503e37,7.49700122455018e37,7.49900042485006e37,7.50099962514994e37,7.50299882544982e37,7.5049980257497e37,7.50699722604958e37,7.50899642634946e37,7.51099562664934e37,7.5129948269492205e37,7.5149940272491e37,7.51699322754898e37,7.51899242784886e37,7.52099162814874e37,7.5229908284486205e37,7.524990028748501e37,7.526989229048381e37,7.52898842934826e37,7.53098762964814e37,7.532986829948021e37,7.534986030247901e37,7.536985230547781e37,7.538984430847661e37,7.54098363114754e37,7.542982831447421e37,7.544982031747301e37,7.546981232047181e37,7.548980432347061e37,7.550979632646941e37,7.5529788329468215e37,7.554978033246701e37,7.556977233546581e37,7.558976433846461e37,7.560975634146341e37,7.562974834446222e37,7.564974034746102e37,7.566973235045981e37,7.568972435345861e37,7.570971635645741e37,7.572970835945622e37,7.574970036245502e37,7.576969236545382e37,7.578968436845262e37,7.580967637145141e37,7.582966837445022e37,7.584966037744902e37,7.586965238044782e37,7.588964438344662e37,7.590963638644542e37,7.5929628389444225e37,7.594962039244302e37,7.596961239544182e37,7.598960439844062e37,7.600959640143942e37,7.602958840443823e37,7.604958040743703e37,7.606957241043582e37,7.608956441343462e37,7.610955641643342e37,7.612954841943223e37,7.614954042243103e37,7.616953242542983e37,7.618952442842863e37,7.620951643142742e37,7.622950843442623e37,7.624950043742503e37,7.626949244042383e37,7.628948444342263e37,7.630947644642143e37,7.632946844942023e37,7.634946045241903e37,7.636945245541783e37,7.638944445841663e37,7.640943646141543e37,7.642942846441424e37,7.644942046741304e37,7.646941247041183e37,7.648940447341063e37,7.650939647640943e37,7.652938847940824e37,7.654938048240704e37,7.656937248540584e37,7.658936448840463e37,7.660935649140343e37,7.662934849440224e37,7.664934049740104e37,7.666933250039984e37,7.668932450339864e37,7.670931650639744e37,7.672930850939624e37,7.674930051239504e37,7.676929251539384e37,7.678928451839264e37,7.680927652139144e37,7.682926852439025e37,7.684926052738905e37,7.686925253038784e37,7.688924453338664e37,7.690923653638544e37,7.692922853938425e37,7.694922054238305e37,7.696921254538185e37,7.698920454838064e37,7.700919655137944e37,7.702918855437825e37,7.704918055737705e37,7.706917256037585e37,7.708916456337465e37,7.710915656637345e37,7.712914856937225e37,7.714914057237105e37,7.716913257536985e37,7.718912457836865e37,7.720911658136745e37,7.722910858436626e37,7.724910058736505e37,7.726909259036385e37,7.728908459336265e37,7.730907659636145e37,7.732906859936026e37,7.734906060235906e37,7.736905260535786e37,7.738904460835665e37,7.740903661135545e37,7.742902861435426e37,7.744902061735306e37,7.746901262035186e37,7.748900462335066e37,7.750899662634945e37,7.752898862934826e37,7.754898063234706e37,7.756897263534586e37,7.758896463834466e37,7.760895664134346e37,7.762894864434227e37,7.764894064734106e37,7.766893265033986e37,7.768892465333866e37,7.770891665633746e37,7.772890865933627e37,7.774890066233507e37,7.776889266533386e37,7.778888466833266e37,7.780887667133146e37,7.782886867433027e37,7.784886067732907e37,7.786885268032787e37,7.788884468332667e37,7.790883668632546e37,7.792882868932427e37,7.794882069232307e37,7.796881269532187e37,7.798880469832067e37,7.800879670131947e37,7.802878870431828e37,7.804878070731707e37,7.806877271031587e37,7.808876471331467e37,7.810875671631347e37,7.812874871931228e37,7.814874072231108e37,7.816873272530987e37,7.818872472830867e37,7.820871673130747e37,7.822870873430628e37,7.824870073730508e37,7.826869274030388e37,7.828868474330268e37,7.830867674630147e37,7.832866874930028e37,7.834866075229908e37,7.836865275529788e37,7.838864475829668e37,7.840863676129548e37,7.842862876429428e37,7.844862076729308e37,7.846861277029188e37,7.848860477329068e37,7.850859677628948e37,7.852858877928829e37,7.854858078228709e37,7.856857278528588e37,7.858856478828468e37,7.860855679128348e37,7.862854879428229e37,7.864854079728109e37,7.866853280027989e37,7.868852480327868e37,7.870851680627748e37,7.872850880927629e37,7.874850081227509e37,7.876849281527389e37,7.878848481827269e37,7.880847682127149e37,7.882846882427029e37,7.884846082726909e37,7.886845283026789e37,7.888844483326669e37,7.890843683626549e37,7.89284288392643e37,7.894842084226309e37,7.896841284526189e37,7.898840484826069e37,7.900839685125949e37,7.90283888542583e37,7.90483808572571e37,7.90683728602559e37,7.908836486325469e37,7.910835686625349e37,7.91283488692523e37,7.91483408722511e37,7.91683328752499e37,7.91883248782487e37,7.92083168812475e37,7.92283088842463e37,7.92483008872451e37,7.92682928902439e37,7.92882848932427e37,7.93082768962415e37,7.932826889924031e37,7.93482609022391e37,7.93682529052379e37,7.93882449082367e37,7.94082369112355e37,7.942822891423431e37,7.944822091723311e37,7.946821292023191e37,7.94882049232307e37,7.95081969262295e37,7.952818892922831e37,7.954818093222711e37,7.956817293522591e37,7.958816493822471e37,7.96081569412235e37,7.962814894422231e37,7.964814094722111e37,7.966813295021991e37,7.968812495321871e37,7.970811695621751e37,7.972810895921632e37,7.974810096221511e37,7.976809296521391e37,7.978808496821271e37,7.980807697121151e37,7.982806897421032e37,7.984806097720912e37,7.986805298020791e37,7.988804498320671e37,7.990803698620551e37,7.992802898920432e37,7.994802099220312e37,7.996801299520192e37,7.998800499820072e37,8.000799700119951e37,8.002798900419832e37,8.004798100719712e37,8.006797301019592e37,8.008796501319472e37,8.010795701619352e37,8.012794901919233e37,8.014794102219112e37,8.016793302518992e37,8.018792502818872e37,8.020791703118752e37,8.022790903418633e37,8.024790103718513e37,8.026789304018392e37,8.028788504318272e37,8.030787704618152e37,8.032786904918033e37,8.034786105217913e37,8.036785305517793e37,8.038784505817673e37,8.040783706117552e37,8.042782906417433e37,8.044782106717313e37,8.046781307017193e37,8.048780507317073e37,8.050779707616953e37,8.052778907916833e37,8.054778108216713e37,8.056777308516593e37,8.058776508816473e37,8.060775709116353e37,8.062774909416234e37,8.064774109716114e37,8.066773310015993e37,8.068772510315873e37,8.070771710615753e37,8.072770910915634e37,8.074770111215514e37,8.076769311515394e37,8.078768511815273e37,8.080767712115153e37,8.082766912415034e37,8.084766112714914e37,8.086765313014794e37,8.088764513314674e37,8.090763713614554e37,8.092762913914434e37,8.094762114214314e37,8.096761314514194e37,8.098760514814074e37,8.100759715113954e37,8.102758915413835e37,8.104758115713714e37,8.106757316013594e37,8.108756516313474e37,8.110755716613354e37,8.112754916913235e37,8.114754117213115e37,8.116753317512995e37,8.118752517812874e37,8.120751718112754e37,8.122750918412635e37,8.124750118712515e37,8.126749319012395e37,8.128748519312275e37,8.130747719612155e37,8.132746919912035e37,8.134746120211915e37,8.136745320511795e37,8.138744520811675e37,8.140743721111555e37,8.142742921411436e37,8.144742121711315e37,8.146741322011195e37,8.148740522311075e37,8.150739722610955e37,8.152738922910836e37,8.154738123210716e37,8.156737323510596e37,8.158736523810475e37,8.160735724110355e37,8.162734924410236e37,8.164734124710116e37,8.166733325009996e37,8.168732525309876e37,8.1707317256097555e37,8.172730925909636e37,8.174730126209516e37,8.176729326509396e37,8.178728526809276e37,8.180727727109156e37,8.182726927409037e37,8.184726127708916e37,8.186725328008796e37,8.188724528308676e37,8.190723728608556e37,8.192722928908437e37,8.194722129208317e37,8.196721329508196e37,8.198720529808076e37,8.200719730107956e37,8.202718930407837e37,8.204718130707717e37,8.206717331007597e37,8.208716531307477e37,8.2107157316073565e37,8.212714931907237e37,8.214714132207117e37,8.216713332506997e37,8.218712532806877e37,8.220711733106757e37,8.222710933406638e37,8.224710133706517e37,8.226709334006397e37,8.228708534306277e37,8.230707734606157e37,8.232706934906038e37,8.234706135205918e37,8.236705335505797e37,8.238704535805677e37,8.240703736105557e37,8.242702936405438e37,8.244702136705318e37,8.246701337005198e37,8.248700537305078e37,8.2506997376049575e37,8.252698937904838e37,8.254698138204718e37,8.256697338504598e37,8.258696538804478e37,8.260695739104358e37,8.262694939404238e37,8.264694139704118e37,8.266693340003998e37,8.268692540303878e37,8.270691740603758e37,8.272690940903639e37,8.274690141203519e37,8.276689341503398e37,8.278688541803278e37,8.2806877421031585e37,8.282686942403039e37,8.284686142702919e37,8.286685343002799e37,8.288684543302678e37,8.2906837436025585e37,8.292682943902439e37,8.294682144202319e37,8.296681344502199e37,8.298680544802079e37,8.300679745101959e37,8.302678945401839e37,8.304678145701719e37,8.306677346001599e37,8.308676546301479e37,8.310675746601359e37,8.31267494690124e37,8.314674147201119e37,8.316673347500999e37,8.318672547800879e37,8.3206717481007595e37,8.32267094840064e37,8.32467014870052e37,8.3266693490004e37,8.328668549300279e37,8.3306677496001595e37,8.33266694990004e37,8.33466615019992e37,8.3366653504998e37,8.33866455079968e37,8.34066375109956e37,8.34266295139944e37,8.34466215169932e37,8.3466613519992e37,8.34866055229908e37,8.35065975259896e37,8.352658952898841e37,8.35465815319872e37,8.3566573534986e37,8.35865655379848e37,8.3606557540983605e37,8.362654954398241e37,8.364654154698121e37,8.366653354998001e37,8.36865255529788e37,8.3706517555977605e37,8.372650955897641e37,8.374650156197521e37,8.376649356497401e37,8.378648556797281e37,8.3806477570971605e37,8.382646957397041e37,8.384646157696921e37,8.386645357996801e37,8.388644558296681e37,8.390643758596561e37,8.392642958896442e37,8.394642159196321e37,8.396641359496201e37,8.398640559796081e37,8.4006397600959615e37,8.402638960395842e37,8.404638160695722e37,8.406637360995601e37,8.408636561295481e37,8.4106357615953615e37,8.412634961895242e37,8.414634162195122e37,8.416633362495002e37,8.418632562794882e37,8.4206317630947615e37,8.422630963394642e37,8.424630163694522e37,8.426629363994402e37,8.428628564294282e37,8.4306277645941625e37,8.432626964894042e37,8.434626165193922e37,8.436625365493802e37,8.438624565793682e37,8.4406237660935625e37,8.442622966393443e37,8.444622166693323e37,8.446621366993202e37,8.448620567293082e37,8.4506197675929625e37,8.452618967892843e37,8.454618168192723e37,8.456617368492603e37,8.458616568792483e37,8.4606157690923625e37,8.462614969392243e37,8.464614169692123e37,8.466613369992003e37,8.468612570291883e37,8.4706117705917635e37,8.472610970891643e37,8.474610171191523e37,8.476609371491403e37,8.478608571791283e37,8.4806077720911635e37,8.482606972391044e37,8.484606172690924e37,8.486605372990803e37,8.488604573290683e37,8.4906037735905635e37,8.492602973890444e37,8.494602174190324e37,8.496601374490204e37,8.498600574790083e37,8.5005997750899635e37,8.502598975389844e37,8.504598175689724e37,8.506597375989604e37,8.508596576289484e37,8.510595776589364e37,8.512594976889245e37,8.514594177189124e37,8.516593377489005e37,8.518592577788884e37,8.520591778088764e37,8.522590978388645e37,8.524590178688524e37,8.526589378988405e37,8.528588579288284e37,8.530587779588165e37,8.532586979888045e37,8.534586180187924e37,8.536585380487805e37,8.538584580787684e37,8.540583781087565e37,8.542582981387445e37,8.544582181687324e37,8.546581381987205e37,8.548580582287084e37,8.550579782586965e37,8.552578982886845e37,8.554578183186726e37,8.556577383486605e37,8.558576583786484e37,8.560575784086366e37,8.562574984386245e37,8.564574184686126e37,8.566573384986005e37,8.568572585285886e37,8.570571785585766e37,8.572570985885645e37,8.574570186185526e37,8.576569386485405e37,8.578568586785286e37,8.580567787085166e37,8.582566987385047e37,8.584566187684926e37,8.586565387984805e37,8.588564588284686e37,8.590563788584566e37,8.592562988884447e37,8.594562189184326e37,8.596561389484205e37,8.598560589784086e37,8.600559790083966e37,8.602558990383847e37,8.604558190683726e37,8.606557390983607e37,8.608556591283486e37,8.610555791583366e37,8.612554991883247e37,8.614554192183126e37,8.616553392483007e37,8.618552592782886e37,8.620551793082767e37,8.622550993382647e37,8.624550193682526e37,8.626549393982407e37,8.628548594282286e37,8.630547794582167e37,8.632546994882047e37,8.634546195181928e37,8.636545395481807e37,8.638544595781686e37,8.640543796081568e37,8.642542996381447e37,8.644542196681328e37,8.646541396981207e37,8.648540597281088e37,8.650539797580968e37,8.652538997880847e37,8.654538198180728e37,8.656537398480607e37,8.658536598780488e37,8.660535799080368e37,8.662534999380247e37,8.664534199680128e37,8.666533399980007e37,8.668532600279888e37,8.670531800579768e37,8.672531000879649e37,8.674530201179528e37,8.676529401479407e37,8.678528601779288e37,8.680527802079168e37,8.682527002379049e37,8.684526202678928e37,8.68652540297881e37,8.688524603278688e37,8.690523803578568e37,8.692523003878449e37,8.694522204178328e37,8.69652140447821e37,8.698520604778088e37,8.70051980507797e37,8.702519005377849e37,8.704518205677728e37,8.70651740597761e37,8.708516606277488e37,8.71051580657737e37,8.712515006877249e37,8.71451420717713e37,8.71651340747701e37,8.718512607776888e37,8.72051180807677e37,8.722511008376649e37,8.72451020867653e37,8.72650940897641e37,8.728508609276288e37,8.73050780957617e37,8.732507009876049e37,8.73450621017593e37,8.73650541047581e37,8.73850461077569e37,8.74050381107557e37,8.742503011375449e37,8.74450221167533e37,8.74650141197521e37,8.74850061227509e37,8.75049981257497e37,8.75249901287485e37,8.75449821317473e37,8.75649741347461e37,8.75849661377449e37,8.76049581407437e37,8.76249501437425e37,8.76449421467413e37,8.766493414974011e37,8.76849261527389e37,8.77049181557377e37,8.77249101587365e37,8.77449021617353e37,8.776489416473411e37,8.77848861677329e37,8.78048781707317e37,8.78248701737305e37,8.78448621767293e37,8.786485417972811e37,8.78848461827269e37,8.790483818572572e37,8.79248301887245e37,8.79448221917233e37,8.796481419472211e37,8.79848061977209e37,8.800479820071972e37,8.80247902037185e37,8.804478220671732e37,8.806477420971611e37,8.80847662127149e37,8.810475821571372e37,8.81247502187125e37,8.814474222171132e37,8.816473422471011e37,8.818472622770892e37,8.820471823070772e37,8.82247102337065e37,8.824470223670532e37,8.826469423970411e37,8.828468624270292e37,8.830467824570172e37,8.832467024870053e37,8.834466225169932e37,8.836465425469811e37,8.838464625769692e37,8.840463826069572e37,8.842463026369453e37,8.844462226669332e37,8.846461426969211e37,8.848460627269092e37,8.850459827568972e37,8.852459027868853e37,8.854458228168732e37,8.856457428468613e37,8.858456628768492e37,8.860455829068372e37,8.862455029368253e37,8.864454229668132e37,8.866453429968013e37,8.868452630267892e37,8.870451830567774e37,8.872451030867653e37,8.874450231167532e37,8.876449431467413e37,8.878448631767292e37,8.880447832067174e37,8.882447032367053e37,8.884446232666934e37,8.886445432966813e37,8.888444633266692e37,8.890443833566574e37,8.892443033866453e37,8.894442234166334e37,8.896441434466213e37,8.898440634766092e37,8.900439835065974e37,8.902439035365853e37,8.904438235665734e37,8.906437435965613e37,8.908436636265494e37,8.910435836565374e37,8.912435036865253e37,8.914434237165134e37,8.916433437465013e37,8.918432637764894e37,8.920431838064774e37,8.922431038364655e37,8.924430238664534e37,8.926429438964413e37,8.928428639264294e37,8.930427839564174e37,8.932427039864055e37,8.934426240163934e37,8.936425440463815e37,8.938424640763694e37,8.940423841063574e37,8.942423041363455e37,8.944422241663334e37,8.946421441963215e37,8.948420642263094e37,8.950419842562976e37,8.952419042862855e37,8.954418243162734e37,8.956417443462615e37,8.958416643762494e37,8.960415844062376e37,8.962415044362255e37,8.964414244662134e37,8.966413444962015e37,8.968412645261894e37,8.970411845561776e37,8.972411045861655e37,8.974410246161536e37,8.976409446461415e37,8.978408646761294e37,8.980407847061176e37,8.982407047361055e37,8.984406247660936e37,8.986405447960815e37,8.988404648260696e37,8.990403848560576e37,8.992403048860455e37,8.994402249160336e37,8.996401449460215e37,8.998400649760096e37,9.000399850059976e37,9.002399050359857e37,9.004398250659736e37,9.006397450959615e37,9.008396651259496e37,9.010395851559376e37,9.012395051859257e37,9.014394252159136e37,9.016393452459015e37,9.018392652758896e37,9.020391853058776e37,9.022391053358657e37,9.024390253658536e37,9.026389453958417e37,9.028388654258296e37,9.030387854558176e37,9.032387054858057e37,9.034386255157936e37,9.036385455457817e37,9.038384655757696e37,9.040383856057578e37,9.042383056357457e37,9.044382256657336e37,9.046381456957217e37,9.048380657257096e37,9.050379857556978e37,9.052379057856857e37,9.054378258156738e37,9.056377458456617e37,9.058376658756496e37,9.060375859056378e37,9.062375059356257e37,9.064374259656138e37,9.066373459956017e37,9.068372660255898e37,9.070371860555778e37,9.072371060855657e37,9.074370261155538e37,9.076369461455417e37,9.078368661755298e37,9.080367862055178e37,9.082367062355057e37,9.084366262654938e37,9.086365462954817e37,9.088364663254698e37,9.090363863554578e37,9.092363063854459e37,9.094362264154338e37,9.096361464454217e37,9.098360664754098e37,9.100359865053978e37,9.102359065353859e37,9.104358265653738e37,9.10635746595362e37,9.108356666253498e37,9.110355866553378e37,9.112355066853259e37,9.114354267153138e37,9.11635346745302e37,9.118352667752898e37,9.12035186805278e37,9.122351068352659e37,9.124350268652538e37,9.12634946895242e37,9.128348669252298e37,9.13034786955218e37,9.132347069852059e37,9.134346270151938e37,9.13634547045182e37,9.138344670751698e37,9.14034387105158e37,9.142343071351459e37,9.14434227165134e37,9.14634147195122e37,9.148340672251098e37,9.15033987255098e37,9.152339072850859e37,9.15433827315074e37,9.15633747345062e37,9.1583366737505e37,9.16033587405038e37,9.162335074350259e37,9.16433427465014e37,9.16633347495002e37,9.1683326752499e37,9.17033187554978e37,9.17233107584966e37,9.17433027614954e37,9.17632947644942e37,9.1783286767493e37,9.18032787704918e37,9.18232707734906e37,9.18432627764894e37,9.186325477948821e37,9.1883246782487e37,9.19032387854858e37,9.19232307884846e37,9.19432227914834e37,9.196321479448221e37,9.1983206797481e37,9.20031988004798e37,9.20231908034786e37,9.20431828064774e37,9.206317480947621e37,9.2083166812475e37,9.210315881547382e37,9.21231508184726e37,9.21431428214714e37,9.216313482447021e37,9.2183126827469e37,9.220311883046782e37,9.22231108334666e37,9.224310283646542e37,9.226309483946421e37,9.2283086842463e37,9.230307884546182e37,9.23230708484606e37,9.234306285145942e37,9.236305485445821e37,9.238304685745702e37,9.240303886045582e37,9.24230308634546e37,9.244302286645342e37,9.246301486945221e37,9.248300687245102e37,9.250299887544982e37,9.252299087844863e37,9.254298288144742e37,9.256297488444621e37,9.258296688744502e37,9.260295889044382e37,9.262295089344263e37,9.264294289644142e37,9.266293489944021e37,9.268292690243902e37,9.270291890543782e37,9.272291090843663e37,9.274290291143542e37,9.276289491443423e37,9.278288691743302e37,9.280287892043182e37,9.282287092343063e37,9.284286292642942e37,9.286285492942823e37,9.288284693242702e37,9.290283893542584e37,9.292283093842463e37,9.294282294142342e37,9.296281494442223e37,9.298280694742102e37,9.300279895041984e37,9.302279095341863e37,9.304278295641744e37,9.306277495941623e37,9.308276696241502e37,9.310275896541384e37,9.312275096841263e37,9.314274297141144e37,9.316273497441023e37,9.318272697740903e37,9.320271898040784e37,9.322271098340663e37,9.324270298640544e37,9.326269498940423e37,9.328268699240304e37,9.330267899540184e37,9.332267099840063e37,9.334266300139944e37,9.336265500439823e37,9.338264700739704e37,9.340263901039584e37,9.342263101339465e37,9.344262301639344e37,9.346261501939223e37,9.348260702239104e37,9.350259902538984e37,9.352259102838865e37,9.354258303138744e37,9.356257503438625e37,9.358256703738504e37,9.360255904038384e37,9.362255104338265e37,9.364254304638144e37,9.366253504938025e37,9.368252705237904e37,9.370251905537786e37,9.372251105837665e37,9.374250306137544e37,9.376249506437425e37,9.378248706737304e37,9.380247907037186e37,9.382247107337065e37,9.384246307636944e37,9.386245507936825e37,9.388244708236705e37,9.390243908536586e37,9.392243108836465e37,9.394242309136346e37,9.396241509436225e37,9.398240709736105e37,9.400239910035986e37,9.402239110335865e37,9.404238310635746e37,9.406237510935625e37,9.408236711235506e37,9.410235911535386e37,9.412235111835265e37,9.414234312135146e37,9.416233512435025e37,9.418232712734906e37,9.420231913034786e37,9.422231113334667e37,9.424230313634546e37,9.426229513934425e37,9.428228714234306e37,9.430227914534186e37,9.432227114834067e37,9.434226315133946e37,9.436225515433825e37,9.438224715733706e37,9.440223916033586e37,9.442223116333467e37,9.444222316633346e37,9.446221516933227e37,9.448220717233106e37,9.450219917532986e37,9.452219117832867e37,9.454218318132746e37,9.456217518432627e37,9.458216718732506e37,9.460215919032388e37,9.462215119332267e37,9.464214319632146e37,9.466213519932027e37,9.468212720231907e37,9.470211920531788e37,9.472211120831667e37,9.474210321131548e37,9.476209521431427e37,9.478208721731307e37,9.480207922031188e37,9.482207122331067e37,9.484206322630948e37,9.486205522930827e37,9.488204723230708e37,9.490203923530588e37,9.492203123830467e37,9.494202324130348e37,9.496201524430227e37,9.498200724730108e37,9.500199925029988e37,9.502199125329867e37,9.504198325629748e37,9.506197525929627e37,9.508196726229508e37,9.510195926529388e37,9.512195126829269e37,9.514194327129148e37,9.516193527429027e37,9.518192727728908e37,9.520191928028788e37,9.522191128328669e37,9.524190328628548e37,9.52618952892843e37,9.528188729228308e37,9.530187929528188e37,9.532187129828069e37,9.534186330127948e37,9.53618553042783e37,9.538184730727709e37,9.54018393102759e37,9.542183131327469e37,9.544182331627348e37,9.54618153192723e37,9.548180732227109e37,9.55017993252699e37,9.552179132826869e37,9.554178333126748e37,9.55617753342663e37,9.558176733726509e37,9.56017593402639e37,9.562175134326269e37,9.56417433462615e37,9.56617353492603e37,9.568172735225909e37,9.57017193552579e37,9.572171135825669e37,9.57417033612555e37,9.57616953642543e37,9.57816873672531e37,9.58016793702519e37,9.582167137325069e37,9.58416633762495e37,9.58616553792483e37,9.58816473822471e37,9.59016393852459e37,9.59216313882447e37,9.59416233912435e37,9.59616153942423e37,9.59816073972411e37,9.60015994002399e37,9.60215914032387e37,9.60415834062375e37,9.606157540923631e37,9.60815674122351e37,9.61015594152339e37,9.61215514182327e37,9.61415434212315e37,9.616153542423031e37,9.61815274272291e37,9.62015194302279e37,9.62215114332267e37,9.62415034362255e37,9.626149543922431e37,9.62814874422231e37,9.630147944522192e37,9.63214714482207e37,9.63414634512195e37,9.636145545421831e37,9.63814474572171e37,9.640143946021592e37,9.64214314632147e37,9.644142346621352e37,9.646141546921231e37,9.64814074722111e37,9.650139947520992e37,9.65213914782087e37,9.654138348120752e37,9.656137548420631e37,9.658136748720512e37,9.660135949020392e37,9.662135149320271e37,9.664134349620152e37,9.666133549920031e37,9.668132750219912e37,9.670131950519792e37,9.672131150819671e37,9.674130351119552e37,9.676129551419431e37,9.678128751719312e37,9.680127952019192e37,9.682127152319073e37,9.684126352618952e37,9.686125552918831e37,9.688124753218713e37,9.690123953518592e37,9.692123153818473e37,9.694122354118352e37,9.696121554418233e37,9.698120754718113e37,9.700119955017992e37,9.702119155317873e37,9.704118355617752e37,9.706117555917633e37,9.708116756217513e37,9.710115956517394e37,9.712115156817273e37,9.714114357117152e37,9.716113557417033e37,9.718112757716913e37,9.720111958016794e37,9.722111158316673e37,9.724110358616554e37,9.726109558916433e37,9.728108759216313e37,9.730107959516194e37,9.732107159816073e37,9.734106360115954e37,9.736105560415833e37,9.738104760715713e37,9.740103961015594e37,9.742103161315473e37,9.744102361615354e37,9.746101561915233e37,9.748100762215114e37,9.750099962514994e37,9.752099162814873e37,9.754098363114754e37,9.756097563414633e37,9.758096763714515e37,9.760095964014394e37,9.762095164314275e37,9.764094364614154e37,9.766093564914033e37,9.768092765213915e37,9.770091965513794e37,9.772091165813675e37,9.774090366113554e37,9.776089566413435e37,9.778088766713315e37,9.780087967013194e37,9.782087167313075e37,9.784086367612954e37,9.786085567912835e37,9.788084768212715e37,9.790083968512596e37,9.792083168812475e37,9.794082369112354e37,9.796081569412235e37,9.798080769712115e37,9.800079970011996e37,9.802079170311875e37,9.804078370611754e37,9.806077570911635e37,9.808076771211515e37,9.810075971511396e37,9.812075171811275e37,9.814074372111156e37,9.816073572411035e37,9.818072772710915e37,9.820071973010796e37,9.822071173310675e37,9.824070373610556e37,9.826069573910435e37,9.828068774210316e37,9.830067974510196e37,9.832067174810075e37,9.834066375109956e37,9.836065575409835e37,9.838064775709717e37,9.840063976009596e37,9.842063176309477e37,9.844062376609356e37,9.846061576909235e37,9.848060777209117e37,9.850059977508996e37,9.852059177808877e37,9.854058378108756e37,9.856057578408635e37,9.858056778708517e37,9.860055979008396e37,9.862055179308277e37,9.864054379608156e37,9.866053579908037e37,9.868052780207917e37,9.870051980507796e37,9.872051180807677e37,9.874050381107556e37,9.876049581407437e37,9.878048781707317e37,9.880047982007198e37,9.882047182307077e37,9.884046382606956e37,9.886045582906837e37,9.888044783206717e37,9.890043983506598e37,9.892043183806477e37,9.894042384106358e37,9.896041584406237e37,9.898040784706117e37,9.900039985005998e37,9.902039185305877e37,9.904038385605758e37,9.906037585905637e37,9.908036786205519e37,9.910035986505398e37,9.912035186805277e37,9.914034387105158e37,9.916033587405037e37,9.918032787704919e37,9.920031988004798e37,9.922031188304677e37,9.924030388604558e37,9.926029588904437e37,9.928028789204319e37,9.930027989504198e37,9.932027189804079e37,9.934026390103958e37,9.936025590403837e37,9.938024790703719e37,9.940023991003598e37,9.942023191303479e37,9.944022391603358e37,9.94602159190324e37,9.948020792203119e37,9.950019992502998e37,9.952019192802879e37,9.954018393102758e37,9.95601759340264e37,9.958016793702519e37,9.9600159940024e37,9.962015194302279e37,9.964014394602158e37,9.96601359490204e37,9.968012795201919e37,9.9700119955018e37,9.972011195801679e37,9.974010396101558e37,9.97600959640144e37,9.978008796701319e37,9.9800079970012e37,9.982007197301079e37,9.98400639760096e37,9.98600559790084e37,9.988004798200719e37,9.9900039985006e37,9.992003198800479e37,9.99400239910036e37,9.99600159940024e37,9.99800079970012e37,1.0e38]} diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/large_positive.json new file mode 100644 index 00000000000..8187b84ae6b --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/large_positive.json @@ -0,0 +1 @@ +{"expected":[7.926655,7.927843,7.9290314,7.930219,7.9314075,7.932595,7.9337826,7.93497,7.936157,7.937344,7.938531,7.939718,7.940904,7.9420905,7.9432764,7.9444623,7.945648,7.9468336,7.948019,7.9492044,7.9503894,7.9515743,7.9527593,7.9539437,7.955128,7.956312,7.957496,7.95868,7.9598637,7.961047,7.9622307,7.9634137,7.9645967,7.9657793,7.966962,7.9681444,7.9693265,7.9705086,7.9716907,7.9728723,7.974054,7.975235,7.9764166,7.977597,7.9787784,7.979959,7.981139,7.98232,7.9835,7.9846797,7.9858594,7.987039,7.988219,7.989398,7.990577,7.991756,7.9929347,7.9941134,7.9952917,7.99647,7.9976482,7.998826,8.000004,8.001182,8.002358,8.003535,8.004713,8.00589,8.007067,8.008243,8.009419,8.010595,8.011771,8.012947,8.014123,8.015298,8.016474,8.017649,8.018824,8.019999,8.021173,8.022347,8.023521,8.024695,8.025869,8.027043,8.028217,8.02939,8.030563,8.031736,8.032909,8.034082,8.0352545,8.0364275,8.0376,8.038772,8.039943,8.041115,8.042287,8.043458,8.044629,8.0458,8.04697,8.0481415,8.049312,8.050483,8.051653,8.052822,8.053992,8.055161,8.056332,8.057501,8.05867,8.059839,8.0610075,8.062176,8.063345,8.064513,8.065681,8.066849,8.068017,8.069184,8.070352,8.071519,8.072686,8.0738535,8.07502,8.076186,8.0773535,8.078519,8.079685,8.080852,8.082017,8.083182,8.084348,8.085513,8.0866785,8.087843,8.089008,8.090173,8.091337,8.092502,8.093665,8.09483,8.095993,8.097157,8.09832,8.0994835,8.100646,8.1018095,8.102972,8.104135,8.105297,8.10646,8.107621,8.108784,8.109945,8.111107,8.112268,8.113429,8.114591,8.115751,8.116912,8.1180725,8.119233,8.120393,8.121553,8.122713,8.123873,8.125032,8.126192,8.127351,8.12851,8.129669,8.130828,8.131987,8.133145,8.134303,8.135462,8.13662,8.137777,8.138935,8.140092,8.14125,8.142406,8.143563,8.14472,8.145877,8.147034,8.14819,8.149345,8.150502,8.151657,8.152813,8.153969,8.155124,8.15628,8.157434,8.158589,8.159743,8.160898,8.162052,8.163206,8.164361,8.165514,8.166668,8.167822,8.168975,8.170128,8.171281,8.172434,8.173587,8.174739,8.175892,8.177044,8.178196,8.179348,8.180499,8.181651,8.182802,8.183953,8.185104,8.186255,8.187407,8.188557,8.189708,8.190858,8.192008,8.193158,8.194307,8.195457,8.196607,8.197756,8.198905,8.200054,8.201202,8.202352,8.2035,8.204648,8.205796,8.206944,8.208093,8.20924,8.210387,8.2115345,8.212682,8.213829,8.214976,8.216123,8.217269,8.218416,8.219562,8.220708,8.221854,8.223,8.224146,8.225291,8.226437,8.227581,8.228726,8.229871,8.231016,8.232161,8.233305,8.234448,8.235593,8.236736,8.237881,8.239024,8.240168,8.24131,8.242454,8.243596,8.24474,8.245882,8.247025,8.248166,8.249309,8.25045,8.251593,8.252734,8.253876,8.255017,8.256158,8.257299,8.25844,8.259581,8.260721,8.261862,8.263001,8.264142,8.265282,8.266421,8.267561,8.268701,8.269839,8.270979,8.272118,8.273256,8.274395,8.275534,8.276672,8.27781,8.278948,8.2800865,8.281224,8.282361,8.283499,8.2846365,8.285773,8.28691,8.288047,8.289184,8.29032,8.291456,8.292592,8.293729,8.294865,8.296,8.297135,8.298271,8.299406,8.300541,8.301676,8.302811,8.303946,8.305079,8.306214,8.307348,8.308482,8.309616,8.31075,8.311883,8.313017,8.31415,8.315283,8.316416,8.317549,8.318681,8.319814,8.320946,8.322078,8.32321,8.324342,8.325474,8.326605,8.327736,8.328868,8.329999,8.331129,8.33226,8.333391,8.334521,8.335651,8.3367815,8.337912,8.339042,8.340171,8.341301,8.34243,8.343559,8.344688,8.345818,8.346946,8.348075,8.349203,8.350331,8.3514595,8.352588,8.353715,8.354843,8.35597,8.357098,8.358225,8.359352,8.360479,8.361606,8.362733,8.363859,8.364985,8.366112,8.367237,8.368363,8.369489,8.370615,8.37174,8.372866,8.37399,8.375115,8.37624,8.377365,8.3784895,8.379614,8.380738,8.381862,8.382986,8.3841095,8.385233,8.386356,8.38748,8.388603,8.389726,8.390849,8.391972,8.393094,8.394217,8.395339,8.396461,8.397583,8.398705,8.399826,8.400948,8.402069,8.403191,8.404311,8.405433,8.406553,8.407674,8.408794,8.409914,8.411035,8.412154,8.413275,8.414394,8.415514,8.416633,8.417752,8.418871,8.419991,8.421109,8.422228,8.4233465,8.424464,8.425583,8.426701,8.427819,8.428937,8.430055,8.431171,8.432289,8.433406,8.434524,8.43564,8.436757,8.437874,8.43899,8.440106,8.441222,8.442338,8.443454,8.44457,8.445685,8.446801,8.447916,8.449031,8.450147,8.4512615,8.452375,8.45349,8.454605,8.455719,8.456833,8.457947,8.459061,8.460175,8.4612875,8.462401,8.463514,8.464627,8.46574,8.466853,8.467966,8.469078,8.470191,8.471303,8.472415,8.473527,8.474638,8.47575,8.476861,8.477973,8.479084,8.480195,8.481306,8.482416,8.483527,8.484637,8.485748,8.486858,8.487968,8.489078,8.490188,8.491297,8.492407,8.493516,8.494625,8.495734,8.496842,8.4979515,8.49906,8.500169,8.501277,8.502385,8.503492,8.504601,8.505709,8.506816,8.507923,8.50903,8.510138,8.511245,8.512351,8.513458,8.5145645,8.515671,8.516777,8.517883,8.51899,8.520095,8.521201,8.522306,8.523412,8.524517,8.525622,8.526727,8.527832,8.528936,8.530041,8.531145,8.532249,8.533354,8.534457,8.535562,8.536665,8.537768,8.538872,8.539975,8.541079,8.542181,8.543284,8.544387,8.545489,8.546592,8.547694,8.548796,8.549898,8.551,8.552101,8.553203,8.554304,8.555406,8.556506,8.557608,8.558708,8.559809,8.560909,8.56201,8.56311,8.56421,8.5653105,8.56641,8.56751,8.568609,8.569709,8.570808,8.571907,8.573007,8.574105,8.575204,8.576303,8.577401,8.578499,8.579597,8.580695,8.581793,8.5828905,8.583988,8.585086,8.586184,8.58728,8.588377,8.589474,8.59057,8.591667,8.592764,8.593861,8.594956,8.596052,8.597148,8.598244,8.5993395,8.600435,8.601531,8.602626,8.603721,8.6048155,8.60591,8.607005,8.6081,8.609194,8.610289,8.6113825,8.612476,8.61357,8.614664,8.615757,8.616851,8.617944,8.619037,8.620131,8.6212225,8.622315,8.623408,8.6245,8.625593,8.626685,8.627777,8.628869,8.629961,8.631052,8.632144,8.633235,8.634326,8.635417,8.636508,8.637599,8.63869,8.63978,8.64087,8.64196,8.643051,8.64414,8.64523,8.64632,8.647409,8.6484995,8.649589,8.650678,8.651767,8.652855,8.653944,8.655032,8.656121,8.657209,8.658298,8.659386,8.660473,8.661561,8.662648,8.663736,8.664824,8.665911,8.666998,8.668085,8.669171,8.6702585,8.671345,8.672431,8.673517,8.674603,8.67569,8.676775,8.677861,8.6789465,8.680032,8.681117,8.682202,8.683288,8.684372,8.685457,8.686542,8.687626,8.68871,8.689795,8.690879,8.691963,8.693047,8.69413,8.695213,8.696297,8.69738,8.698463,8.699547,8.700629,8.701713,8.702795,8.703877,8.70496,8.706041,8.707124,8.708205,8.709288,8.710369,8.711451,8.712532,8.7136135,8.714694,8.7157755,8.716856,8.7179365,8.719018,8.720098,8.721178,8.722259,8.723338,8.724419,8.725498,8.726578,8.727657,8.728737,8.7298155,8.730895,8.731974,8.733053,8.734132,8.73521,8.736289,8.737367,8.738445,8.739523,8.740601,8.741679,8.742757,8.743834,8.744911,8.745989,8.747066,8.748142,8.74922,8.750297,8.751373,8.752449,8.753526,8.7546015,8.755678,8.756754,8.75783,8.758905,8.759981,8.761056,8.762132,8.7632065,8.764281,8.765356,8.766431,8.767506,8.76858,8.769654,8.770729,8.771803,8.772877,8.773951,8.775024,8.776098,8.777171,8.778245,8.779318,8.780391,8.781464,8.7825365,8.783609,8.784681,8.785754,8.786826,8.787898,8.78897,8.790042,8.791114,8.792186,8.793257,8.794328,8.7954,8.796471,8.797542,8.798613,8.799683,8.800754,8.801824,8.802894,8.803965,8.805035,8.806104,8.807174,8.808244,8.809313,8.810383,8.811452,8.812521,8.81359,8.814658,8.815727,8.816796,8.817864,8.818933,8.820001,8.821069,8.822137,8.823205,8.824272,8.82534,8.826407,8.827475,8.828542,8.829609,8.830676,8.831742,8.832809,8.833876,8.834942,8.836008,8.837074,8.8381405,8.839207,8.840272,8.841338,8.842403,8.843469,8.844534,8.845599,8.846664,8.847729,8.848794,8.849858,8.850923,8.851987,8.853051,8.8541155,8.85518,8.856243,8.857307,8.858371,8.859434,8.860497,8.861561,8.862623,8.863687,8.864749,8.865812,8.866875,8.867937,8.8689995,8.870062,8.871123,8.872186,8.873247,8.874309,8.87537,8.876431,8.877493,8.878554,8.879616,8.880676,8.881737,8.882798,8.883859,8.884918,8.885979,8.887039,8.888099,8.889159,8.890219,8.891278,8.892338,8.893397,8.894457,8.895515,8.896575,8.897634,8.898692,8.899751,8.900809,8.901868,8.902926,8.903984,8.905043,8.9061,8.907158,8.9082155,8.909273,8.910331,8.911387,8.912445,8.913502,8.914558,8.915615,8.916672,8.917728,8.918785,8.919841,8.9208975,8.921953,8.923009,8.924065,8.92512,8.926176,8.927232,8.928287,8.929341,8.930397,8.931452,8.932507,8.933561,8.934615,8.93567,8.936724,8.937778,8.938832,8.939886,8.94094,8.941994,8.943047,8.9441,8.945153,8.946207,8.94726,8.948313,8.949366,8.950418,8.95147,8.952523,8.953575,8.954627,8.95568,8.956732,8.957783,8.958835,8.959887,8.9609375,8.961989,8.96304,8.964091,8.965142,8.966193,8.967243,8.968294,8.969344,8.970395,8.971445,8.972495,8.973545,8.974595,8.975644,8.976694,8.977743,8.978793,8.979842,8.980891,8.98194,8.982988,8.984037,8.985086,8.986135,8.987183,8.988231,8.989279,8.990327,8.991375,8.992423,8.99347,8.994517,8.995565,8.996613,8.99766,8.998707,8.999753,9.0008,9.001846,9.002893,9.00394,9.004986,9.006032,9.007078,9.008123,9.00917,9.010216,9.011261,9.012306,9.013351,9.014397,9.015442,9.016487,9.017531,9.018577,9.019621,9.020665,9.021709,9.022754,9.023798,9.024841,9.025886,9.026929,9.027973,9.0290165,9.03006,9.031103,9.032146,9.033189,9.034232,9.0352745,9.036317,9.03736,9.038403,9.039445,9.040486,9.041529,9.04257,9.0436125,9.044654,9.045695,9.046737,9.047778,9.04882,9.049861,9.050901,9.051943,9.052983,9.054024,9.055064,9.056105,9.057145,9.058185,9.059225,9.060265,9.061304,9.062345,9.063384,9.064423,9.065462,9.066502,9.06754,9.06858,9.069618,9.070657,9.071695,9.072734,9.073772,9.07481,9.075849,9.076886,9.077925,9.078962,9.08,9.0810375,9.082074,9.083112,9.084149,9.085186,9.086223,9.087259,9.088296,9.089333,9.090369,9.091406,9.092442,9.093478,9.094514,9.09555,9.096585,9.097621,9.098657,9.099692,9.100727,9.101763,9.1027975,9.103832,9.104867,9.105902,9.106936,9.10797,9.109005,9.110039,9.1110735,9.112107,9.113141,9.114175,9.115209,9.116241,9.117275,9.118308,9.119342,9.120375,9.1214075,9.12244,9.123473,9.124506,9.125538,9.126571,9.127603,9.128634,9.129666,9.130698,9.13173,9.132762,9.133793,9.134825,9.135856,9.136888,9.137918,9.138949,9.13998,9.14101,9.142041,9.143071,9.144102,9.145132,9.146162,9.147192,9.148222,9.149252,9.150282,9.151311,9.152341,9.15337,9.154399,9.155428,9.156457,9.157486,9.158515,9.159543,9.160572,9.1616,9.162628,9.163656,9.164684,9.165712,9.16674,9.167768,9.168796,9.169823,9.17085,9.171877,9.172904,9.173931,9.174958,9.175985,9.1770115,9.178039,9.179065,9.180091,9.181117,9.182143,9.183169,9.1841955,9.185221,9.186247,9.187272,9.188297,9.189322,9.190348,9.191373,9.192398,9.193422,9.1944475,9.195472,9.196496,9.19752,9.1985445,9.199569,9.200593,9.201617,9.202641,9.203665,9.204688,9.205711,9.206735,9.207758,9.208781,9.209804,9.210827,9.211849,9.2128725,9.213895,9.214917,9.2159395,9.216962,9.217984,9.219006,9.220028,9.221049,9.222071,9.223092,9.224113,9.225135,9.226156,9.227178,9.228198,9.229219,9.23024,9.23126,9.232281,9.233301,9.234322,9.235342,9.2363615,9.237382,9.238401,9.239422,9.240441,9.241461,9.24248,9.243499,9.244518,9.245538,9.246556,9.247575,9.248593,9.249612,9.25063,9.251649,9.252667,9.253686,9.2547035,9.255721,9.25674,9.257757,9.258775,9.259792,9.260809,9.2618265,9.262844,9.263861,9.264877,9.265895,9.2669115,9.267928,9.268944,9.26996,9.270977,9.271993,9.273009,9.274025,9.275041,9.276056,9.277072,9.278088,9.279102,9.280118,9.281133,9.282148,9.283163,9.284178,9.2851925,9.286207,9.287222,9.288236,9.28925,9.290264,9.291278,9.292293,9.293306,9.294319,9.295333,9.296347,9.29736,9.298373,9.299386,9.3004,9.301413,9.302425,9.303438,9.30445,9.305463,9.306476,9.3074875,9.308499,9.309511,9.310524,9.311536,9.312547,9.313559,9.31457,9.315581,9.316593,9.317604,9.318615,9.319626,9.320637,9.321648,9.322659,9.3236685,9.324679,9.325689,9.326699,9.327709,9.328719,9.329729,9.330739,9.331749,9.332758,9.333768,9.334777,9.335786,9.336795,9.337804,9.338813,9.339822,9.34083,9.341839,9.342847,9.343856,9.344864,9.345872,9.34688,9.347888,9.348895,9.349903,9.35091,9.351918,9.352925,9.353932,9.354939,9.355947,9.356954,9.357961,9.358967,9.359974,9.36098,9.361986,9.362993,9.363999,9.365005,9.366011,9.367017,9.368022,9.369028,9.370033,9.371039,9.372045,9.37305,9.374054,9.375059,9.376064,9.3770685,9.378074,9.379078,9.380082,9.381087,9.3820915,9.383095,9.384099,9.385103,9.3861065,9.387111,9.388114,9.389117,9.3901205,9.391124,9.392127,9.39313,9.394134,9.395136,9.396138,9.397141,9.398144,9.399146,9.400148,9.401151,9.402153,9.403154,9.404157,9.405158,9.406159,9.407162,9.408163,9.409164,9.410165,9.411166,9.412168,9.413168,9.414169,9.41517,9.41617,9.417171,9.418171,9.419171,9.420172,9.421171,9.422172,9.423171,9.4241705,9.425171,9.42617,9.42717,9.428168,9.429168,9.430167,9.431166,9.432165,9.433164,9.434162,9.435161,9.436159,9.437158,9.438156,9.439154,9.440152,9.44115,9.442147,9.443146,9.444143,9.445141,9.446138,9.447135,9.4481325,9.449129,9.450127,9.451123,9.45212,9.453116,9.454113,9.45511,9.456106,9.457103,9.458098,9.459094,9.460091,9.461086,9.462082,9.463078,9.464073,9.465069,9.4660635,9.467059,9.468054,9.4690485,9.470044,9.471039,9.4720335,9.473028,9.474022,9.475017,9.476011,9.477005,9.477999,9.478993,9.479987,9.480981,9.481975,9.482967,9.483961,9.484955,9.485948,9.48694,9.487934,9.488927,9.48992,9.490912,9.491904,9.492897,9.49389,9.494882,9.495874,9.496866,9.497858,9.49885,9.499842,9.5008335,9.501824,9.502816,9.503808,9.504799,9.50579,9.506781,9.5077715,9.508762,9.509753,9.510744,9.511735,9.512725,9.513716,9.514706,9.515696,9.5166855,9.517675,9.518665,9.519655,9.520644,9.521634,9.522623,9.523613,9.524602,9.525591,9.52658,9.527569,9.528558,9.529546,9.530535,9.531524,9.532512,9.5335,9.534488,9.535476,9.536464,9.537452,9.53844,9.539427,9.540415,9.541402,9.54239,9.543377,9.544364,9.545351,9.546338,9.547324,9.548311,9.549298,9.550284,9.5512705,9.552258,9.553244,9.55423,9.555216,9.556201,9.557187,9.558173,9.559158,9.560144,9.56113,9.562115,9.5631,9.564085,9.56507,9.566055,9.5670395,9.568025,9.569009,9.569993,9.570978,9.571962,9.572947,9.573931,9.574914,9.575898,9.576882,9.577866,9.578849,9.579833,9.580816,9.5817995,9.582783,9.583766,9.584748,9.5857315,9.586714,9.587697,9.588679,9.589662,9.590644,9.591626,9.592608,9.593591,9.594573,9.595554,9.596537,9.597518,9.598499,9.599481,9.600462,9.601443,9.602425,9.603406,9.604386,9.605368,9.606348,9.607329,9.60831,9.60929,9.6102705,9.611251,9.612231,9.613211,9.614191,9.6151705,9.616151,9.61713,9.61811,9.619089,9.620069,9.621048,9.622026,9.623006,9.623985,9.624964,9.625942,9.626922,9.6279,9.628879,9.629856,9.630835,9.631813,9.6327915,9.633769,9.634747,9.635725,9.636703,9.63768,9.638658,9.639635,9.640612,9.641589,9.642567,9.643543,9.64452,9.645497,9.646474,9.64745,9.648427,9.649403,9.650379,9.651356,9.652331,9.653308,9.654284,9.655259,9.656235,9.65721,9.658186,9.659162,9.660136,9.661112,9.6620865,9.663062,9.664037,9.665011,9.665986,9.666961,9.667935,9.66891,9.669884,9.670858,9.671832,9.672807,9.67378,9.674754,9.675728,9.676702,9.677675,9.678649,9.679622,9.680595,9.681568,9.682541,9.683515,9.684487,9.68546,9.686433,9.687405,9.688377,9.68935,9.690322,9.691295,9.692266,9.693238,9.69421,9.695182,9.696154,9.697125,9.698096,9.699068,9.700039,9.701011,9.701982,9.702952,9.703923,9.704894,9.705865,9.706836,9.707806,9.708776,9.709746,9.710717,9.711687,9.712657,9.713627,9.714597,9.715567,9.7165365,9.717505,9.718475,9.719444,9.720414,9.721383,9.722352,9.723321,9.72429,9.725259,9.726228,9.727196,9.728165,9.729133,9.730101,9.73107,9.732038,9.733006,9.7339735,9.734941,9.7359085,9.7368765,9.7378435,9.7388115,9.7397785,9.740746,9.741713,9.74268,9.743647,9.744614,9.745581,9.746547,9.747514,9.74848,9.749447,9.750413,9.751379,9.752345,9.753311,9.754277,9.755242,9.756208,9.757174,9.75814,9.759105,9.76007,9.761035,9.762,9.762965,9.76393,9.764895,9.76586,9.766825,9.767789,9.768754,9.769718,9.770682,9.7716465,9.772611,9.773575,9.774538,9.775502,9.776465,9.77743,9.778393,9.779356,9.780319,9.781282,9.782246,9.783209,9.784172,9.785134,9.786098,9.78706,9.788023,9.788985,9.7899475,9.79091,9.791872,9.792834,9.793796,9.794758,9.795719,9.796681,9.797643,9.798604,9.799566,9.800528,9.801488,9.802449,9.803411,9.804372,9.805332,9.8062935,9.807254,9.808214,9.809175,9.810135,9.811095,9.812056,9.813016,9.813975,9.814936,9.815895,9.816855,9.817815,9.818774,9.819734,9.820693,9.821652,9.822612,9.82357,9.82453,9.825488,9.8264475,9.827406,9.828364,9.829323,9.830281,9.83124,9.832198,9.833157,9.834114,9.8350725,9.83603,9.8369875,9.837946,9.838903,9.839861,9.840818,9.841775,9.842732,9.84369,9.844646,9.845604,9.8465605,9.847517,9.848474,9.84943,9.850387,9.851343,9.8523,9.853255,9.854212,9.855167,9.856124,9.8570795,9.858035,9.858991,9.859946,9.860902,9.861856,9.862812,9.863768,9.864722,9.865678,9.866632,9.867587,9.868542,9.869496,9.870451,9.871406,9.872359,9.873314,9.874268,9.875222,9.876176,9.87713,9.878083,9.879037,9.879991,9.880944,9.881898,9.882852,9.883804,9.884757,9.885711,9.886663,9.887616,9.888569,9.889522,9.890474,9.891427,9.892379,9.893332,9.894283,9.895236,9.896188,9.89714,9.898091,9.899043,9.899995,9.900947,9.901898,9.902849,9.903801,9.904752,9.905704,9.906654,9.907605,9.908556,9.909507,9.910458,9.911407,9.912358,9.913309,9.914259,9.915209,9.91616,9.9171095,9.918059,9.919009,9.919959,9.920909,9.921858,9.922808,9.923757,9.924706,9.925655,9.926604,9.927553,9.928503,9.929451,9.9304,9.931349,9.932298,9.933246,9.934195,9.9351425,9.93609,9.937038,9.937987,9.938935,9.939882,9.94083,9.941778,9.942726,9.943673,9.94462,9.945568,9.946515,9.947462,9.948409,9.949356,9.950303,9.95125,9.952196,9.953143,9.954089,9.955036,9.955982,9.956928,9.957874,9.95882,9.959766,9.960712,9.9616585,9.962604,9.96355,9.964495,9.965441,9.966386,9.967331,9.968276,9.969221,9.970166,9.971111,9.972055,9.973001,9.973945,9.97489,9.975834,9.976778,9.977722,9.978666,9.97961,9.980555,9.981499,9.982443,9.983386,9.98433,9.985273,9.986217,9.98716,9.988104,9.989047,9.989989,9.990932,9.991876,9.992819,9.993761,9.994704,9.995646,9.996589,9.997531,9.998473,9.999415,10.000358,10.0013,10.002242,10.003183,10.004126,10.005067,10.006009,10.00695,10.007892,10.008833,10.009774,10.0107155,10.011656,10.012597,10.013538,10.014479,10.01542,10.01636,10.017301,10.018241,10.019181,10.020122,10.021062,10.022002,10.022942,10.023882,10.024821,10.025762,10.026701,10.02764,10.02858,10.029519,10.030458,10.031398,10.032337,10.033276,10.034215,10.035153,10.036093,10.037031,10.03797,10.038908,10.039846,10.040785,10.041723,10.042662,10.043599,10.044538,10.045475,10.046413,10.047351,10.048288,10.049226,10.050163,10.051101,10.052038,10.052975,10.053912,10.05485,10.055786,10.056723,10.05766,10.058597,10.059533,10.06047,10.061406,10.062343,10.063278,10.064215,10.06515,10.066087,10.067022,10.067958,10.068893,10.06983,10.0707655,10.0717,10.072636,10.073571,10.074506,10.075441,10.076376,10.0773115,10.078246,10.079181,10.080115,10.08105,10.0819845,10.082919,10.083854,10.084787,10.085722,10.086656,10.087589,10.088524,10.0894575,10.090391,10.091325,10.092258,10.093191,10.094125,10.095058,10.095991,10.096925,10.097857,10.09879,10.099723,10.1006565,10.101589,10.102521,10.103454,10.104386,10.105319,10.106251,10.1071825,10.108115,10.109047,10.109979,10.11091,10.111842,10.112774,10.113706,10.114637,10.115568,10.1165,10.117431,10.118362,10.119293,10.120224,10.121155,10.122086,10.123016,10.123947,10.124878,10.125808,10.126739,10.127668,10.128599,10.129529,10.130459,10.131389,10.1323185,10.133248,10.134178,10.135108,10.136037,10.136967,10.137896,10.138825,10.139754,10.140683,10.141612,10.142541,10.14347,10.144399,10.145328,10.146256,10.147184,10.148113,10.149041,10.149969,10.150898,10.151826,10.152754,10.153682,10.15461,10.155537,10.156465,10.1573925,10.158319,10.159247,10.160174,10.161101,10.162028,10.162955,10.163882,10.164809,10.165736,10.166663,10.167589,10.168516,10.169442,10.170369,10.171295,10.172221,10.173147,10.174073,10.174999,10.175925,10.176851,10.177776,10.178702,10.179628,10.180553,10.1814785,10.182404,10.18333,10.184255,10.18518,10.186104,10.187029,10.187954,10.188878,10.189803,10.190727,10.191652,10.192576,10.1935005,10.194425,10.195349,10.196273,10.197197,10.198121,10.199044,10.199968,10.2008915,10.201816,10.202739,10.203662,10.204585,10.205508,10.206431,10.207355,10.208278,10.2092,10.210123,10.211045,10.211968,10.212891,10.213813,10.214735,10.215658,10.21658,10.217502,10.218424,10.219346,10.220267,10.2211895,10.222111,10.223033,10.223954,10.224875,10.225797,10.226718,10.227639,10.22856,10.229482,10.230403,10.231323,10.2322445,10.233165,10.234085,10.235006,10.235927,10.236847,10.237767,10.2386875,10.239607,10.240527,10.241447,10.242367,10.243287,10.244206,10.245126,10.246045,10.246965,10.247885,10.248804,10.2497225,10.250642,10.251561,10.25248,10.253399,10.254317,10.255237,10.256155,10.257073,10.257992,10.25891,10.259829,10.260747,10.261664,10.262583,10.263501,10.264419,10.265336,10.266254,10.267172,10.268089,10.269007,10.269924,10.270842,10.271759,10.2726755,10.273593,10.274509,10.275427,10.276343,10.27726,10.278177,10.279094,10.28001,10.280927,10.281842,10.282759,10.283675,10.284591,10.285507,10.286423,10.287339,10.288255,10.28917,10.290086,10.291001,10.291917,10.292832,10.293747,10.294662,10.295578,10.296493,10.297407,10.298323,10.299237,10.300152,10.301066,10.301981,10.302896,10.30381,10.304724,10.305638,10.306553,10.3074665,10.30838,10.309295,10.310208,10.311122,10.312036,10.312949,10.313863,10.314775,10.315689,10.316603,10.317515,10.318429,10.319342,10.320254,10.321167,10.32208,10.322992,10.323905,10.324818,10.32573,10.326643,10.327555,10.328467,10.329379,10.330291,10.331203,10.332115,10.333027,10.333939,10.33485,10.335762,10.336673,10.3375845,10.338495,10.339407,10.340318,10.341229,10.34214,10.343051,10.343962,10.344872,10.345783,10.346694,10.347604,10.348515,10.349425,10.350335,10.351246,10.352156,10.3530655,10.353975,10.354885,10.355795,10.356705,10.3576145,10.358524,10.359433,10.360343,10.361252,10.362162,10.3630705,10.363979,10.364888,10.365797,10.366706,10.367615,10.368524,10.369432,10.37034,10.371249,10.372157,10.373066,10.373974,10.374882,10.37579,10.376698,10.377605,10.378513,10.379421,10.380329,10.381236,10.382144,10.383051,10.383959,10.384866,10.385773,10.38668,10.387587,10.388494,10.3894005,10.390307,10.391214,10.39212,10.393027,10.393933,10.39484,10.395746,10.396652,10.397558,10.398464,10.39937,10.400276,10.401182,10.402088,10.402993,10.403899,10.404805,10.40571,10.406615,10.40752,10.408426,10.409331,10.410236,10.411141,10.4120455,10.4129505,10.413856,10.41476,10.415665,10.416569,10.417473,10.418378,10.419282,10.420186,10.42109,10.421994,10.422898,10.423801,10.4247055,10.42561,10.426513,10.427417,10.42832,10.429223,10.430126,10.431029,10.431932,10.432836,10.433739,10.434642,10.435545,10.436447,10.43735,10.438252,10.439155,10.440058,10.44096,10.441862,10.442764,10.443666,10.444569,10.445471,10.446372,10.447274,10.448175,10.449078,10.449979,10.450881,10.451782,10.452683,10.453585,10.454486,10.455387,10.456288,10.457189,10.45809,10.45899,10.459891,10.460792,10.461693,10.462593,10.463493,10.464394,10.465294,10.466194,10.467094,10.467994,10.468894,10.469794,10.470694,10.471594,10.472493,10.4733925,10.474292,10.475191,10.47609,10.47699,10.477889,10.478788,10.479688,10.480586,10.481485,10.482384,10.483283,10.484181,10.48508,10.485978,10.4868765,10.487775,10.488673,10.489572,10.49047,10.491367,10.492266,10.493163,10.494061,10.494959,10.495856,10.496754,10.497652,10.498549,10.499446,10.500343,10.501241,10.502138,10.503035,10.503932,10.504828,10.505726,10.506622,10.507519,10.508415,10.509312,10.510208,10.511105,10.512001,10.512897,10.513793,10.514689,10.515585,10.516481,10.517377,10.518272,10.519168,10.520063,10.520959,10.521854,10.52275,10.523645,10.52454,10.525435,10.526331,10.5272255,10.52812,10.529016,10.52991,10.530805,10.531699,10.532594,10.533488,10.534383,10.535276,10.536171,10.537065,10.537959,10.538853,10.539747,10.540641,10.541534,10.542428,10.543322,10.544215,10.545109,10.546002,10.546895,10.547789,10.548681,10.549575,10.5504675,10.55136,10.552254,10.553146,10.554039,10.554932,10.555824,10.556717,10.557609,10.558501,10.559393,10.560286,10.561177,10.56207,10.562962,10.563853,10.564745,10.565637,10.566528,10.56742,10.568312,10.569203,10.570094,10.570986,10.571877,10.572768,10.573659,10.57455,10.57544,10.576331,10.577222,10.578113,10.579003,10.579894,10.580785,10.581675,10.582565,10.583455,10.584345,10.585236,10.586125,10.587015,10.587905,10.588795,10.5896845,10.590574,10.591464,10.592353,10.593243,10.594131,10.595021,10.59591,10.596799,10.597689,10.5985775,10.599466,10.600355,10.601243,10.602132,10.603021,10.6039095,10.604797,10.605686,10.606574,10.607462,10.608351,10.609239,10.6101265,10.611014,10.611902,10.61279,10.613678,10.614565,10.615453,10.61634,10.617228,10.618114,10.619002,10.619889,10.620776,10.621663,10.62255,10.623437,10.624324,10.625211,10.626097,10.626984,10.627871,10.6287565,10.6296425,10.630529,10.631415,10.632301,10.633187,10.634073,10.634959,10.635845,10.636731,10.637616,10.638502,10.639388,10.640273,10.641158,10.642044,10.642929,10.643814,10.644699,10.645584,10.646469,10.647354,10.648239,10.649123,10.650008,10.650893,10.651777,10.652661,10.653546,10.65443,10.655314,10.6561985,10.657083,10.657967,10.658851,10.659735,10.660618,10.661502,10.662385,10.663269,10.664152,10.665036,10.665919,10.666802,10.6676855,10.668569,10.669452,10.670335,10.671218,10.6721,10.672983,10.673865,10.674748,10.675631,10.676514,10.677396,10.678278,10.67916,10.680042,10.680924,10.681807,10.682689,10.68357,10.684452,10.685333,10.686215,10.687097,10.687979,10.68886,10.689741,10.690622,10.691504,10.692385,10.693266,10.694147,10.695027,10.695909,10.69679,10.69767,10.69855,10.699431,10.700312,10.701192,10.702072,10.702952,10.703833,10.704713,10.705593,10.706473,10.707353,10.708233,10.709112,10.709992,10.710872,10.711751,10.712631,10.7135105,10.71439,10.715269,10.716148,10.717027,10.717906,10.718785,10.719664,10.720543,10.721421,10.722301,10.723179,10.724057,10.724936,10.725814,10.726692,10.727571,10.728449,10.729327,10.730205,10.731083,10.731961,10.732839,10.733716,10.734594,10.735472,10.736349,10.7372265,10.738104,10.738981,10.739859,10.740736,10.741612,10.74249,10.743366,10.744244,10.74512,10.745997,10.746874,10.74775,10.748627,10.749503,10.75038,10.751256,10.752132,10.753009,10.753884,10.754761,10.755636,10.756513,10.757388,10.758264,10.75914,10.7600155,10.760891,10.761766,10.762642,10.763516,10.764392,10.765267,10.766142,10.767017,10.767892,10.768767,10.769642,10.770516,10.771392,10.772266,10.773141,10.774015,10.774889,10.7757635,10.776638,10.777513,10.778386,10.779261,10.780134,10.781008,10.781882,10.782756,10.783629,10.784503,10.785377,10.78625,10.787124,10.787996,10.78887,10.789743,10.790616,10.79149,10.792362,10.793235,10.794107,10.794981,10.795854,10.796726,10.797599,10.798471,10.799343,10.800216,10.801088,10.80196,10.802833,10.803704,10.804576,10.805449,10.80632,10.807192,10.8080635,10.808935,10.809807,10.8106785,10.811549,10.812421,10.8132925,10.814163,10.815035,10.815906,10.816776,10.817648,10.818519,10.819389,10.82026,10.821131,10.822001,10.822872,10.823742,10.824613,10.825482,10.826353,10.827223,10.828094,10.828963,10.829833,10.830703,10.831573,10.832442,10.833312,10.834182,10.835052,10.835921,10.83679,10.83766,10.838529,10.839398,10.840267,10.841136,10.842005,10.842875,10.843743,10.844612,10.84548,10.846349,10.847218,10.848086,10.848954,10.849823,10.850691,10.85156,10.8524275,10.853295,10.854163,10.855031,10.855899,10.856767,10.857635,10.858502,10.85937,10.860237,10.861105,10.861973,10.86284,10.863707,10.864574,10.865441,10.866308,10.867175,10.868042,10.868909,10.869776,10.870643,10.871509,10.8723755,10.873241,10.874108,10.874974,10.875841,10.876707,10.877573,10.878439,10.879305,10.880171,10.881037,10.881903,10.882769,10.883635,10.8845,10.8853655,10.88623,10.887096,10.887961,10.888826,10.889691,10.890557,10.891422,10.892287,10.893152,10.894016,10.894881,10.895746,10.89661,10.897475,10.898339,10.899204,10.900068,10.900932,10.901797,10.902661,10.903525,10.904389,10.905253,10.9061165,10.9069805,10.907845,10.908708,10.909572,10.910435,10.911299,10.912162,10.913025,10.913889,10.914752,10.915615,10.916478,10.917341,10.918203,10.919066,10.9199295,10.920793,10.921655,10.922518,10.92338,10.924242,10.925104,10.925967,10.926829,10.927691,10.928554,10.929416,10.930277,10.931139,10.932001,10.932863,10.933724,10.934587,10.935448,10.936309,10.937171,10.938032,10.938893,10.9397545,10.940616,10.941477,10.942338,10.943198,10.944059,10.944921,10.945781,10.946642,10.947502,10.948362,10.9492235,10.950084,10.950944,10.951804,10.952664,10.953525,10.954385,10.955244,10.956104,10.9569645,10.957824,10.958684,10.959543,10.960403,10.961263,10.962122,10.962981,10.9638405,10.9647,10.965559,10.966418,10.967278,10.968136,10.968995,10.969854,10.970713,10.971571,10.97243,10.973289,10.974147,10.975005,10.975864,10.976723,10.97758,10.978438,10.979297,10.980155,10.981012,10.981871,10.982729,10.983586,10.984444,10.985302,10.986159,10.987017,10.987874,10.988731,10.989589,10.990446,10.991303,10.99216,10.993017,10.993875,10.994731,10.995588,10.996445,10.997301,10.998158,10.999015,10.999871,11.000728,11.001584,11.00244,11.003297,11.004152,11.005009,11.005865,11.006721,11.007577,11.008432,11.009288,11.010144,11.011,11.011855,11.012711,11.013566,11.014421,11.015277,11.016132,11.016987,11.017842,11.018698,11.019552,11.020407,11.021262,11.022117,11.022971,11.023827,11.024681,11.025536,11.02639,11.027244,11.028098,11.028953,11.029807,11.030661,11.031515,11.032369,11.033223,11.034077,11.03493,11.035784,11.036637,11.037492,11.038344,11.039198,11.040051,11.040905,11.041759,11.042611,11.043465,11.044317,11.045171,11.046023,11.046876,11.0477295,11.048582,11.049435,11.050287,11.05114,11.051992,11.052844,11.053697,11.054549,11.055401,11.056253,11.057105,11.057958,11.058809,11.059661,11.0605135,11.061365,11.062217,11.063068,11.06392,11.064771,11.065622,11.066474,11.067326,11.068176,11.069028,11.069879,11.070729,11.071581,11.072432,11.073282,11.074133,11.074984,11.075834,11.076685,11.077536,11.078385,11.079236,11.080087,11.080936,11.081787,11.082637,11.083487,11.084337,11.085187,11.086037,11.086886,11.087736,11.088586,11.089436,11.090285,11.091134,11.091984,11.0928335,11.093682,11.094532,11.095381,11.09623,11.097078,11.097928,11.098777,11.099626,11.100474,11.101323,11.102171,11.10302,11.1038685,11.104716,11.105565,11.106414,11.107262,11.108109,11.108958,11.109806,11.110654,11.111502,11.1123495,11.113197,11.114045,11.114893,11.11574,11.116588,11.117435,11.118282,11.11913,11.119977,11.120824,11.121672,11.122519,11.123365,11.124212,11.125059,11.125906,11.126753,11.1276,11.128446,11.1292925,11.130139,11.130985,11.131832,11.132678,11.133524,11.134371,11.135217,11.136063,11.136909,11.137754,11.1386,11.139446,11.140292,11.141137,11.141983,11.142828,11.143674,11.144519,11.145365,11.14621,11.147055,11.147901,11.148746,11.1495905,11.150435,11.15128,11.152124,11.152969,11.153814,11.154659,11.155503,11.156348,11.157192,11.158036,11.158881,11.159725,11.160569,11.161413,11.162257,11.163101,11.163945,11.164789,11.165633,11.166476,11.16732,11.168164,11.169007,11.169851,11.170694,11.171537,11.172381,11.173224,11.1740675,11.174911,11.175754,11.176597,11.17744,11.178282,11.179125,11.179968,11.18081,11.181653,11.182495,11.183338,11.18418,11.185022,11.185864,11.186707,11.187549,11.188391,11.189233,11.190075,11.190917,11.191759,11.1926,11.193442,11.1942835,11.195126,11.195967,11.196808,11.19765,11.198491,11.199332,11.200173,11.2010145,11.201856,11.202697,11.203537,11.204378,11.205219,11.206059,11.206901,11.207741,11.208582,11.209422,11.210262,11.2111025,11.211944,11.212784,11.213624,11.214464,11.215303,11.216144,11.216984,11.217824,11.218663,11.219503,11.220343,11.221182,11.222022,11.222861,11.223701,11.22454,11.225379,11.226218,11.227057,11.227897,11.228736,11.229575,11.230413,11.231253,11.232092,11.23293,11.233768,11.234608,11.235446,11.236284,11.237123,11.237961,11.238799,11.239637,11.240476,11.241314,11.242152,11.2429905,11.243828,11.244666,11.245503,11.246342,11.247179,11.248016,11.248854,11.249692,11.250529,11.251367,11.252204,11.253041,11.253878,11.254715,11.255552,11.25639,11.257226,11.258063,11.2589,11.259736,11.260573,11.26141,11.262246,11.2630825,11.263919,11.264755,11.265592,11.266428,11.267264,11.268101,11.268936,11.269773,11.270608,11.271444,11.27228,11.273116,11.273952,11.274787,11.275622,11.276458,11.277293,11.278129,11.278964,11.279799,11.280635,11.281469,11.282305,11.28314,11.283975,11.284809,11.285645,11.286479,11.287313,11.288149,11.288983,11.289818,11.290652,11.291487,11.29232,11.293155,11.293989,11.294824,11.295657,11.296492,11.297325,11.298159,11.298993,11.299827,11.30066,11.301494,11.302327,11.303161,11.303994,11.304828,11.305661,11.306495,11.307328,11.308161,11.308994,11.309827,11.31066,11.311493,11.3123255,11.313158,11.313992,11.314824,11.315657,11.316489,11.317322,11.318154,11.318986,11.3198185,11.320651,11.321483,11.322315,11.323147,11.323979,11.324811,11.325643,11.326474,11.327307,11.328138,11.32897,11.329802,11.330633,11.331464,11.332295,11.333127,11.333958,11.334789,11.33562,11.336452,11.337282,11.338114,11.338944,11.339775,11.340606,11.341436,11.342267,11.343098,11.343928,11.344759,11.34559,11.346419,11.34725,11.34808,11.34891,11.34974,11.350571,11.3514,11.35223,11.35306,11.353889,11.354719,11.355549,11.356379,11.357208,11.358038,11.358868,11.359696,11.360526,11.361355,11.362185,11.363013,11.363843,11.364672,11.3655,11.366329,11.367158,11.367987,11.368815,11.369644,11.370473,11.371302,11.372129,11.372958,11.373787,11.374615,11.375443,11.376271,11.377099,11.377928,11.378756,11.379583,11.380411,11.381239,11.382067,11.3828945,11.383722,11.384549,11.385377,11.386205,11.387032,11.387859,11.388686,11.389514,11.390341,11.391168,11.391994,11.392822,11.393649,11.394476,11.395303,11.396129,11.3969555,11.397782,11.398609,11.399435,11.400262,11.401088,11.401915,11.4027405,11.403566,11.404393,11.405219,11.406045,11.406871,11.407697,11.408523,11.4093485,11.410174,11.410999,11.411825,11.412651,11.413476,11.414302,11.415127,11.415953,11.416778,11.417603,11.418427,11.419252,11.420077,11.420902,11.421727,11.422552,11.423377,11.424202,11.425026,11.425851,11.426676,11.4275,11.428325,11.429149,11.429973,11.430797,11.431622,11.432446,11.4332695,11.434093,11.434917,11.435741,11.436564,11.437388,11.438212,11.439035,11.439859,11.440683,11.441506,11.442329,11.443153,11.443976,11.444799,11.445622,11.446445,11.4472685,11.4480915,11.448915,11.449738,11.450561,11.451383,11.452206,11.453029,11.453851,11.454674,11.455496,11.456318,11.45714,11.457963,11.458785,11.459607,11.460429,11.461251,11.462073,11.462895,11.4637165,11.464539,11.465361,11.466182,11.467004,11.467825,11.468647,11.469468,11.470289,11.47111,11.471932,11.472754,11.473575,11.474396,11.475216,11.476037,11.476858,11.477679,11.478499,11.479321,11.480142,11.480962,11.481782,11.482603,11.483423,11.484243,11.485064,11.485885,11.486705,11.487525,11.488344,11.489164,11.4899845,11.490805,11.491625,11.492444,11.493264,11.494083,11.494904,11.495723,11.496542,11.497362,11.498181,11.499001,11.49982,11.500639,11.501458,11.502277,11.503096,11.503915,11.504734,11.505553,11.5063715,11.507191,11.508009,11.508827,11.509646,11.510465,11.511283,11.512101,11.512919,11.513738,11.514556,11.515374,11.516192,11.517011,11.517829,11.518646,11.5194645,11.520282,11.5211,11.521917,11.522736,11.523553,11.52437,11.5251875,11.526005,11.526822,11.527639,11.528457,11.529274,11.530091,11.530909,11.531725,11.532542,11.53336,11.534176,11.534993,11.5358095,11.536626,11.537443,11.5382595,11.539076,11.539892,11.540709,11.541525,11.542341,11.543158,11.543973,11.544789,11.545606,11.546421,11.547237,11.548053,11.548869,11.549685,11.5505,11.551316,11.552132,11.552947,11.553762,11.554578,11.555393,11.556209,11.557024,11.557838,11.558654,11.559469,11.560284,11.561099,11.5619135,11.562728,11.563543,11.564358,11.565172,11.565987,11.566801,11.5676155,11.56843,11.569244,11.570059,11.570873,11.571688,11.572501,11.573316,11.574129,11.574944,11.575757,11.576571,11.577385,11.578198,11.579012,11.579826,11.58064,11.581453,11.582267,11.583079,11.583893,11.584706,11.58552,11.586332,11.587146,11.587959,11.588772,11.589584,11.590398,11.59121,11.592023,11.592835,11.593648,11.594461,11.595274,11.596086,11.596898,11.597711,11.598523,11.599336,11.600147,11.60096,11.601771,11.602584,11.603395,11.604207,11.60502,11.605831,11.606643,11.607454,11.608266,11.609077,11.609889,11.610701,11.611512,11.612323,11.613134,11.613946,11.614757,11.615568,11.616379,11.61719,11.618001,11.618812,11.619622,11.620433,11.621244,11.622055,11.622866,11.623675,11.624486,11.625297,11.626107,11.626917,11.6277275,11.628538,11.629348,11.630158,11.630968,11.631778,11.632587,11.633398,11.634208,11.635017,11.635827,11.636637,11.637446,11.638256,11.639065,11.639874,11.640684,11.641493,11.6423025,11.643111,11.643921,11.64473,11.645538,11.646348,11.647157,11.647965,11.648774,11.649583,11.650392,11.6512,11.652009,11.652818,11.6536255,11.654434,11.655243,11.656051,11.656859,11.657667,11.658475,11.659284,11.660091,11.660899,11.661707,11.662515,11.663322,11.66413,11.664938,11.665746,11.6665535,11.66736,11.668168,11.668976,11.669783,11.67059,11.671397,11.672205,11.673012,11.673819,11.674625,11.675432,11.67624,11.677047,11.677854,11.678659,11.679466,11.680273,11.68108,11.681886,11.682693,11.683499,11.684305,11.685112,11.685918,11.686724,11.68753,11.688336,11.689142,11.689948,11.690754,11.69156,11.692366,11.6931715,11.693976,11.694782,11.695588,11.696393,11.697199,11.698005,11.69881,11.699615,11.70042,11.701225,11.70203,11.702835,11.70364,11.704445,11.70525,11.706055,11.70686,11.7076645,11.708469,11.709273,11.710078,11.710883,11.711687,11.712492,11.713296,11.7141,11.714905,11.715709,11.716513,11.717317,11.718121,11.7189245,11.719728,11.720532,11.721336,11.72214,11.722943,11.723747,11.724551,11.725354,11.726158,11.726961,11.727764,11.728568,11.729371,11.730174,11.730977,11.73178,11.732583,11.733386,11.734189,11.734992,11.735795,11.736597,11.7374,11.738203,11.739005,11.739808,11.74061,11.741413,11.742215,11.743017,11.743819,11.744622,11.745424,11.746226,11.747028,11.74783,11.7486315,11.7494335,11.750236,11.751038,11.751839,11.752641,11.753442,11.754244,11.755045,11.755847,11.756648,11.757449,11.75825,11.759051,11.759852,11.7606535,11.761455,11.762256,11.763057,11.763858,11.764659,11.765459,11.76626,11.76706,11.767861,11.7686615,11.769463,11.770263,11.771063,11.771864,11.772664,11.773464,11.774264,11.775064,11.775865,11.776665,11.777464,11.778264,11.779064,11.779863,11.7806635,11.781464,11.782263,11.783062,11.783862,11.784661,11.78546,11.78626,11.78706,11.787859,11.788658,11.789457,11.790256,11.791055,11.791854,11.792653,11.793451,11.7942505,11.79505,11.795848,11.796647,11.797445,11.7982435,11.799043,11.799841,11.800639,11.801437,11.802236,11.803034,11.803832,11.80463,11.8054285,11.806226,11.807024,11.807822,11.8086195,11.809418,11.810215,11.811013,11.8118105,11.812608,11.813406,11.814203,11.815001,11.815798,11.816595,11.817392,11.81819,11.818987,11.819784,11.8205805,11.821378,11.822175,11.822971,11.823769,11.824565,11.825362,11.826159,11.826955,11.827752,11.828548,11.829345,11.830141,11.830937,11.831734,11.83253,11.833326,11.834122,11.834918,11.835714,11.836511,11.837306,11.838102,11.838898,11.839693,11.840489,11.841285,11.84208,11.8428755,11.843672,11.844467,11.845263,11.846058,11.846852,11.847648,11.848443,11.849238,11.850033,11.850828,11.851624,11.852418,11.853213,11.854008,11.854802,11.8555975,11.856392,11.857186,11.857981,11.858775,11.85957,11.860364,11.861158,11.861953,11.862747,11.863541,11.864335,11.865129,11.865923,11.866717,11.867511,11.868304,11.869099,11.869892,11.870686,11.871479,11.8722725,11.873066,11.873859,11.874653,11.875446,11.87624,11.877033,11.877827,11.878619,11.879413,11.880205,11.880999,11.881791,11.882585,11.883377,11.88417,11.884963,11.885756,11.886548,11.887341,11.888133,11.888926,11.889718,11.890511,11.891302,11.892095,11.892887,11.893679,11.894471,11.895263,11.896055,11.896847,11.897638,11.898431,11.899222,11.900014,11.900805,11.901597,11.902389,11.90318,11.903972,11.904763,11.905555,11.906345,11.907137,11.907928,11.908719,11.909511,11.910301,11.911093,11.911883,11.912674,11.9134655,11.914256,11.915047,11.915837,11.916628,11.9174185,11.918209,11.919,11.919789,11.92058,11.9213705,11.92216,11.922951,11.92374,11.924531,11.925321,11.926111,11.926901,11.9276905,11.92848,11.929271,11.93006,11.93085,11.93164,11.932428,11.933218,11.934008,11.934797,11.935587,11.936376,11.937165,11.937954,11.938744,11.939532,11.940322,11.941111,11.941899,11.942688,11.943477,11.944266,11.945055,11.945844,11.946632,11.94742,11.948209,11.9489975,11.949786,11.950574,11.951363,11.95215,11.952939,11.953727,11.954515,11.955303,11.956091,11.95688,11.957667,11.958455,11.959243,11.960031,11.960818,11.961606,11.962394,11.963181,11.963968,11.964756,11.965543,11.966331,11.967117,11.967905,11.968692,11.96948,11.970266,11.971053,11.97184,11.972627,11.973414,11.974201,11.974988,11.975774,11.976561,11.977347,11.978134,11.978921,11.979707,11.980494,11.981279,11.982066,11.982852,11.983639,11.984425,11.98521,11.985996,11.986783,11.987569,11.988355,11.9891405,11.989926,11.990712,11.991497,11.992283,11.993069,11.9938545,11.994639,11.995425,11.99621,11.996996,11.997781,11.998566,11.9993515,12.000136,12.000921,12.001706,12.002491,12.003276,12.004061,12.004846,12.0056305,12.006415,12.0072,12.007984,12.008769,12.009554,12.010338,12.011123,12.011907,12.012691,12.013475,12.014259,12.015043,12.015827,12.016612,12.017396,12.01818,12.018964,12.019747,12.020531,12.021315,12.022099,12.0228815,12.023665,12.024449,12.025232,12.026016,12.026799,12.027582,12.028366,12.029149,12.029932,12.030715,12.031498,12.032281,12.033064,12.033847,12.03463,12.035413,12.036196,12.036979,12.037761,12.038544,12.039326,12.040109,12.040891,12.041674,12.042456,12.043238,12.044021,12.044803,12.045585,12.046367,12.047149,12.047931,12.048713,12.049495,12.050277,12.051058,12.05184,12.052622,12.053403,12.054185,12.054966,12.055748,12.056529,12.057311,12.058092,12.058873,12.059654,12.060435,12.061216,12.061997,12.062778,12.06356,12.064341,12.065122,12.065903,12.066683,12.067464,12.068245,12.069025,12.069806,12.070586,12.071366,12.072147,12.072927,12.073708,12.074488,12.075269,12.076049,12.076829,12.077609,12.078388,12.079168,12.079948,12.080729,12.081509,12.082288,12.083068,12.083847,12.084627,12.085406,12.086186,12.086966,12.087745,12.088524,12.089304,12.090083,12.090862,12.091641,12.092421,12.0932,12.093979,12.094757,12.095536,12.096315,12.097094,12.097873,12.098651,12.09943,12.100208,12.100987,12.101766,12.102544,12.103323,12.104101,12.104879,12.105658,12.106436,12.107214,12.107992,12.10877,12.109548,12.110326,12.111104,12.111882,12.112659,12.113438,12.114215,12.114993,12.11577,12.116548,12.117326,12.118103,12.11888,12.1196575,12.120435,12.121212,12.121989,12.1227665,12.123544,12.124321,12.125097,12.1258745,12.126652,12.127428,12.128205,12.128982,12.129759,12.130535,12.131312,12.132089,12.132865,12.133641,12.134418,12.135194,12.135971,12.136746,12.137523,12.138299,12.139075,12.139852,12.140628,12.141403,12.1421795,12.142955,12.143731,12.144506,12.145283,12.146058,12.146833,12.14761,12.148385,12.14916,12.149936,12.150711,12.151486,12.152262,12.153037,12.153812,12.154587,12.155362,12.156137,12.156912,12.157687,12.158463,12.159237,12.160011,12.160787,12.161561,12.162335,12.163111,12.163885,12.1646595,12.165434,12.166208,12.166983,12.167757,12.168531,12.169305,12.170079,12.170854,12.171627,12.172401,12.173176,12.173949,12.174723,12.175497,12.1762705,12.177044,12.177818,12.178592,12.179365,12.180139,12.180912,12.181685,12.182459,12.183232,12.184006,12.184778,12.185552,12.186325,12.187098,12.187871,12.188643,12.189417,12.190189,12.190963,12.191735,12.192508,12.19328,12.194054,12.194826,12.195599,12.196371,12.197144,12.197916,12.198688,12.19946,12.2002325,12.201005,12.2017765,12.202549,12.2033205,12.204093,12.2048645,12.205637,12.2064085,12.20718,12.207952,12.208724,12.209496,12.210267,12.211039,12.21181,12.212582,12.213353,12.214124,12.214895,12.215667,12.216437,12.217209,12.21798,12.218751,12.219522,12.220293,12.221064,12.221835,12.222606,12.223376,12.224147,12.224917,12.225688,12.226459,12.227229,12.228,12.22877,12.229541,12.230311,12.231081,12.231852,12.232622,12.233392,12.234162,12.234932,12.235702,12.236472,12.237242,12.238011,12.238781,12.239552,12.240321,12.241091,12.24186,12.24263,12.2434,12.244168,12.244938,12.2457075,12.246477,12.247246,12.248015,12.248784,12.249554,12.250322,12.251092,12.251861,12.252629,12.253398,12.254168,12.254936,12.255705,12.256474,12.257242,12.258011,12.25878,12.259547,12.260316,12.261085,12.261852,12.262621,12.26339,12.264157,12.264926,12.265694,12.266461,12.26723,12.267998,12.268765,12.269533,12.270301,12.27107,12.271837,12.272604,12.273372,12.274139,12.274907,12.275675,12.276443,12.277209,12.277977,12.278744,12.279511,12.280278,12.281046,12.281813,12.282579,12.283347,12.284114,12.284881,12.285647,12.286414,12.287181,12.287948,12.288714,12.289481,12.290248,12.291014,12.29178,12.292547,12.293313,12.29408,12.294846,12.295612,12.296378,12.297145,12.297911,12.2986765,12.299442,12.300209,12.300975,12.301741,12.302506,12.303272,12.304038,12.304803,12.305569,12.3063345,12.3071,12.307865,12.308631,12.309397,12.310162,12.310926,12.311692,12.312457,12.313223,12.313988,12.314753,12.315517,12.316282,12.317047,12.317812,12.318577,12.319342,12.3201065,12.320871,12.321636,12.3224,12.323165,12.32393,12.324694,12.325459,12.326222,12.326987,12.327751,12.328515,12.329279,12.330044,12.330808,12.331572,12.332335,12.333099,12.333863,12.334627,12.335391,12.336155,12.336918,12.337682,12.338446,12.339209,12.3399725,12.340735,12.341499,12.342262,12.343026,12.343789,12.344552,12.345315,12.346079,12.346842,12.347605,12.348368,12.349131,12.349894,12.3506565,12.3514185,12.352181,12.352944,12.353707,12.354469,12.355232,12.355994,12.356757,12.357519,12.358282,12.359044,12.359806,12.360568,12.361331,12.362093,12.362855,12.363617,12.364379,12.365141,12.365903,12.366664,12.367426,12.368188,12.36895,12.369711,12.370473,12.371234,12.371996,12.372757,12.373519,12.37428,12.375041,12.375803,12.376564,12.377325,12.378086,12.378847,12.379608,12.380369,12.38113,12.381891,12.382652,12.383412,12.384173,12.384934,12.3856945,12.386456,12.387217,12.387977,12.388737,12.389498,12.390258,12.391018,12.391779,12.392539,12.393299,12.394059,12.394819,12.395579,12.396339,12.3970995,12.39786,12.398619,12.399379,12.400139,12.400898,12.401658,12.402417,12.403177,12.403936,12.404696,12.405456,12.406215,12.406975,12.407734,12.408493,12.409252,12.410011,12.41077,12.41153,12.412289,12.413048,12.413807,12.414565,12.415324,12.416083,12.4168415,12.417601,12.418359,12.419118,12.419876,12.420635,12.421393,12.422152,12.42291,12.423669,12.424427,12.425185,12.425943,12.426702,12.42746,12.428218,12.428976,12.429733,12.430491,12.43125,12.432007,12.432765,12.433522,12.43428,12.435038,12.435796,12.436553,12.43731,12.438068,12.438826,12.439583,12.44034,12.441097,12.4418545,12.442612,12.443369,12.444126,12.444883,12.445641,12.446397,12.447154,12.447911,12.448668,12.449425,12.450181,12.450938,12.4516945,12.452451,12.453208,12.453964,12.4547205,12.455477,12.456233,12.456989,12.457746,12.458502,12.459258,12.460014,12.460771,12.461527,12.462282,12.463038,12.463795,12.46455,12.465306,12.466062,12.466817,12.467573,12.468328,12.469084,12.46984,12.470595,12.471351,12.472106,12.472861,12.473617,12.474372,12.475127,12.475883,12.476638,12.477392,12.4781475,12.478903,12.479657,12.4804125,12.481167,12.481922,12.4826765,12.483432,12.484186,12.484941,12.485695,12.48645,12.487205,12.487959,12.488713,12.489468,12.490222,12.490976,12.49173,12.492484,12.493238,12.493993,12.494746,12.495501,12.496254,12.497008,12.497762,12.498516,12.4992695,12.500023,12.500777,12.501531,12.502284,12.503037,12.503791,12.504544,12.505298,12.506051,12.506804,12.507558,12.508311,12.509065,12.509817,12.510571,12.511323,12.512076,12.51283,12.513582,12.514335,12.515088,12.515841,12.516593,12.517346,12.518099,12.518851,12.519604,12.520356,12.521109,12.521861,12.522614,12.523366,12.524117,12.52487,12.525622,12.526375,12.527126,12.527879,12.52863,12.529383,12.530134,12.530886,12.531638,12.53239,12.533141],"x":[20.0,20.005997600959617,20.011995201919234,20.017992802878847,20.023990403838464,20.02998800479808,20.0359856057577,20.041983206717312,20.04798080767693,20.053978408636546,20.059976009596163,20.065973610555776,20.071971211515393,20.07796881247501,20.083966413434627,20.08996401439424,20.095961615353858,20.101959216313475,20.10795681727309,20.11395441823271,20.119952019192322,20.12594962015194,20.131947221111556,20.137944822071173,20.143942423030786,20.149940023990403,20.15593762495002,20.161935225909637,20.16793282686925,20.173930427828868,20.179928028788485,20.185925629748102,20.191923230707715,20.197920831667332,20.20391843262695,20.209916033586566,20.215913634546183,20.221911235505797,20.227908836465414,20.23390643742503,20.239904038384648,20.24590163934426,20.251899240303878,20.257896841263495,20.263894442223112,20.269892043182725,20.275889644142342,20.28188724510196,20.287884846061576,20.29388244702119,20.299880047980807,20.305877648940424,20.31187524990004,20.317872850859658,20.32387045181927,20.329868052778888,20.335865653738505,20.341863254698122,20.347860855657736,20.353858456617353,20.35985605757697,20.365853658536587,20.3718512594962,20.377848860455817,20.383846461415434,20.38984406237505,20.395841663334664,20.40183926429428,20.4078368652539,20.413834466213515,20.419832067173132,20.425829668132746,20.431827269092363,20.43782487005198,20.443822471011597,20.44982007197121,20.455817672930827,20.461815273890444,20.46781287485006,20.473810475809675,20.47980807676929,20.48580567772891,20.491803278688526,20.49780087964814,20.503798480607756,20.509796081567373,20.51579368252699,20.521791283486607,20.52778888444622,20.533786485405837,20.539784086365454,20.54578168732507,20.551779288284685,20.557776889244302,20.56377449020392,20.569772091163536,20.57576969212315,20.581767293082766,20.587764894042383,20.593762495002,20.599760095961614,20.60575769692123,20.611755297880848,20.617752898840465,20.62375049980008,20.629748100759695,20.635745701719312,20.64174330267893,20.647740903638546,20.65373850459816,20.659736105557776,20.665733706517393,20.67173130747701,20.677728908436624,20.68372650939624,20.689724110355858,20.695721711315475,20.701719312275088,20.707716913234705,20.713714514194322,20.71971211515394,20.725709716113556,20.73170731707317,20.737704918032787,20.743702518992404,20.74970011995202,20.755697720911634,20.76169532187125,20.767692922830868,20.773690523790485,20.7796881247501,20.785685725709715,20.791683326669332,20.79768092762895,20.803678528588563,20.80967612954818,20.815673730507797,20.821671331467414,20.82766893242703,20.833666533386644,20.83966413434626,20.845661735305878,20.851659336265495,20.85765693722511,20.863654538184726,20.869652139144343,20.87564974010396,20.881647341063573,20.88764494202319,20.893642542982807,20.899640143942424,20.905637744902037,20.911635345861654,20.91763294682127,20.92363054778089,20.929628148740505,20.93562574970012,20.941623350659736,20.947620951619353,20.95361855257897,20.959616153538583,20.9656137544982,20.971611355457817,20.977608956417434,20.983606557377048,20.989604158336665,20.99560175929628,21.0015993602559,21.007596961215516,21.01359456217513,21.019592163134746,21.025589764094363,21.03158736505398,21.037584966013593,21.04358256697321,21.049580167932827,21.055577768892444,21.061575369852058,21.067572970811675,21.073570571771292,21.07956817273091,21.085565773690522,21.09156337465014,21.097560975609756,21.103558576569373,21.10955617752899,21.115553778488604,21.12155137944822,21.127548980407838,21.133546581367455,21.139544182327068,21.145541783286685,21.151539384246302,21.15753698520592,21.163534586165532,21.16953218712515,21.175529788084766,21.181527389044383,21.187524990003997,21.193522590963614,21.19952019192323,21.205517792882848,21.211515393842465,21.217512994802078,21.223510595761695,21.229508196721312,21.23550579768093,21.241503398640543,21.24750099960016,21.253498600559777,21.259496201519394,21.265493802479007,21.271491403438624,21.27748900439824,21.283486605357858,21.28948420631747,21.29548180727709,21.301479408236705,21.307477009196322,21.31347461015594,21.319472211115553,21.32546981207517,21.331467413034787,21.337465013994404,21.343462614954017,21.349460215913634,21.35545781687325,21.361455417832868,21.36745301879248,21.3734506197521,21.379448220711716,21.385445821671333,21.391443422630946,21.397441023590563,21.40343862455018,21.409436225509797,21.415433826469414,21.421431427429027,21.427429028388644,21.43342662934826,21.43942423030788,21.445421831267492,21.45141943222711,21.457417033186726,21.463414634146343,21.469412235105956,21.475409836065573,21.48140743702519,21.487405037984807,21.49340263894442,21.499400239904038,21.505397840863655,21.51139544182327,21.51739304278289,21.523390643742502,21.52938824470212,21.535385845661736,21.541383446621353,21.547381047580966,21.553378648540583,21.5593762495002,21.565373850459817,21.57137145141943,21.577369052379048,21.583366653338665,21.58936425429828,21.595361855257895,21.601359456217512,21.60735705717713,21.613354658136746,21.619352259096363,21.625349860055977,21.631347461015594,21.63734506197521,21.643342662934828,21.64934026389444,21.655337864854058,21.661335465813675,21.667333066773292,21.673330667732905,21.679328268692522,21.68532586965214,21.691323470611756,21.69732107157137,21.703318672530987,21.709316273490604,21.71531387445022,21.721311475409838,21.72730907636945,21.733306677329068,21.739304278288685,21.745301879248302,21.751299480207916,21.757297081167533,21.76329468212715,21.769292283086767,21.77528988404638,21.781287485005997,21.787285085965614,21.79328268692523,21.799280287884844,21.80527788884446,21.81127548980408,21.817273090763695,21.823270691723312,21.829268292682926,21.835265893642543,21.84126349460216,21.847261095561777,21.85325869652139,21.859256297481007,21.865253898440624,21.87125149940024,21.877249100359855,21.88324670131947,21.88924430227909,21.895241903238706,21.90123950419832,21.907237105157936,21.913234706117553,21.91923230707717,21.925229908036787,21.9312275089964,21.937225109956017,21.943222710915634,21.94922031187525,21.955217912834865,21.961215513794482,21.9672131147541,21.973210715713716,21.97920831667333,21.985205917632946,21.991203518592563,21.99720111955218,22.003198720511794,22.00919632147141,22.015193922431028,22.021191523390645,22.02718912435026,22.033186725309875,22.039184326269492,22.04518192722911,22.051179528188726,22.05717712914834,22.063174730107956,22.069172331067573,22.07516993202719,22.081167532986804,22.08716513394642,22.093162734906038,22.099160335865655,22.105157936825268,22.111155537784885,22.117153138744502,22.12315073970412,22.129148340663736,22.13514594162335,22.141143542582967,22.147141143542584,22.1531387445022,22.159136345461814,22.16513394642143,22.171131547381048,22.177129148340665,22.18312674930028,22.189124350259895,22.195121951219512,22.20111955217913,22.207117153138743,22.21311475409836,22.219112355057977,22.225109956017594,22.23110755697721,22.237105157936824,22.24310275889644,22.249100359856058,22.255097960815675,22.26109556177529,22.267093162734906,22.273090763694523,22.27908836465414,22.285085965613753,22.29108356657337,22.297081167532987,22.303078768492604,22.309076369452217,22.315073970411834,22.32107157137145,22.32706917233107,22.333066773290685,22.3390643742503,22.345061975209916,22.351059576169533,22.35705717712915,22.363054778088763,22.36905237904838,22.375049980007997,22.381047580967614,22.387045181927228,22.393042782886845,22.39904038384646,22.40503798480608,22.411035585765692,22.41703318672531,22.423030787684926,22.429028388644543,22.43502598960416,22.441023590563773,22.44702119152339,22.453018792483007,22.459016393442624,22.465013994402238,22.471011595361855,22.47700919632147,22.48300679728109,22.489004398240702,22.49500199920032,22.500999600159936,22.506997201119553,22.512994802079167,22.518992403038784,22.5249900039984,22.530987604958018,22.536985205917635,22.542982806877248,22.548980407836865,22.554978008796482,22.5609756097561,22.566973210715712,22.57297081167533,22.578968412634946,22.584966013594563,22.590963614554177,22.596961215513794,22.60295881647341,22.608956417433028,22.61495401839264,22.620951619352258,22.626949220311875,22.632946821271492,22.63894442223111,22.644942023190723,22.65093962415034,22.656937225109957,22.662934826069574,22.668932427029187,22.674930027988804,22.68092762894842,22.686925229908038,22.69292283086765,22.69892043182727,22.704918032786885,22.710915633746502,22.716913234706116,22.722910835665733,22.72890843662535,22.734906037584967,22.740903638544584,22.746901239504197,22.752898840463814,22.75889644142343,22.764894042383048,22.77089164334266,22.77688924430228,22.782886845261896,22.788884446221513,22.794882047181126,22.800879648140743,22.80687724910036,22.812874850059977,22.818872451019594,22.824870051979207,22.830867652938824,22.83686525389844,22.84286285485806,22.848860455817672,22.85485805677729,22.860855657736906,22.866853258696523,22.872850859656136,22.878848460615753,22.88484606157537,22.890843662534987,22.8968412634946,22.902838864454218,22.908836465413835,22.91483406637345,22.92083166733307,22.926829268292682,22.9328268692523,22.938824470211916,22.944822071171533,22.950819672131146,22.956817273090763,22.96281487405038,22.968812475009997,22.97481007596961,22.980807676929228,22.986805277888845,22.99280287884846,22.998800479808075,23.004798080767692,23.01079568172731,23.016793282686926,23.022790883646543,23.028788484606157,23.034786085565774,23.04078368652539,23.046781287485008,23.05277888844462,23.058776489404238,23.064774090363855,23.070771691323472,23.076769292283085,23.082766893242702,23.08876449420232,23.094762095161936,23.10075969612155,23.106757297081167,23.112754898040784,23.1187524990004,23.124750099960018,23.13074770091963,23.136745301879248,23.142742902838865,23.148740503798482,23.154738104758096,23.160735705717713,23.16673330667733,23.172730907636947,23.17872850859656,23.184726109556177,23.190723710515794,23.19672131147541,23.202718912435024,23.20871651339464,23.21471411435426,23.220711715313875,23.226709316273492,23.232706917233106,23.238704518192723,23.24470211915234,23.250699720111957,23.25669732107157,23.262694922031187,23.268692522990804,23.27469012395042,23.280687724910035,23.28668532586965,23.29268292682927,23.298680527788886,23.3046781287485,23.310675729708116,23.316673330667733,23.32267093162735,23.328668532586967,23.33466613354658,23.340663734506197,23.346661335465814,23.35265893642543,23.358656537385045,23.36465413834466,23.37065173930428,23.376649340263896,23.38264694122351,23.388644542183126,23.394642143142743,23.40063974410236,23.406637345061974,23.41263494602159,23.418632546981208,23.424630147940825,23.43062774890044,23.436625349860055,23.442622950819672,23.44862055177929,23.454618152738906,23.46061575369852,23.466613354658136,23.472610955617753,23.47860855657737,23.484606157536984,23.4906037584966,23.496601359456218,23.502598960415835,23.508596561375448,23.514594162335065,23.520591763294682,23.5265893642543,23.532586965213916,23.53858456617353,23.544582167133147,23.550579768092764,23.55657736905238,23.562574970011994,23.56857257097161,23.574570171931228,23.580567772890845,23.58656537385046,23.592562974810075,23.598560575769692,23.60455817672931,23.610555777688923,23.61655337864854,23.622550979608157,23.628548580567774,23.63454618152739,23.640543782487004,23.64654138344662,23.652538984406238,23.658536585365855,23.66453418632547,23.670531787285086,23.676529388244703,23.68252698920432,23.688524590163933,23.69452219112355,23.700519792083167,23.706517393042784,23.712514994002397,23.718512594962014,23.72451019592163,23.73050779688125,23.736505397840865,23.74250299880048,23.748500599760096,23.754498200719713,23.76049580167933,23.766493402638943,23.77249100359856,23.778488604558177,23.784486205517794,23.790483806477408,23.796481407437025,23.80247900839664,23.80847660935626,23.814474210315872,23.82047181127549,23.826469412235106,23.832467013194723,23.83846461415434,23.844462215113953,23.85045981607357,23.856457417033187,23.862455017992804,23.868452618952418,23.874450219912035,23.88044782087165,23.88644542183127,23.892443022790882,23.8984406237505,23.904438224710116,23.910435825669733,23.916433426629347,23.922431027588964,23.92842862854858,23.934426229508198,23.940423830467815,23.946421431427428,23.952419032387045,23.958416633346662,23.96441423430628,23.970411835265892,23.97640943622551,23.982407037185126,23.988404638144743,23.994402239104357,24.000399840063974,24.00639744102359,24.012395041983208,24.01839264294282,24.024390243902438,24.030387844862055,24.036385445821672,24.04238304678129,24.048380647740903,24.05437824870052,24.060375849660137,24.066373450619754,24.072371051579367,24.078368652538984,24.0843662534986,24.090363854458218,24.09636145541783,24.10235905637745,24.108356657337065,24.114354258296682,24.120351859256296,24.126349460215913,24.13234706117553,24.138344662135147,24.144342263094764,24.150339864054377,24.156337465013994,24.16233506597361,24.168332666933228,24.17433026789284,24.18032786885246,24.186325469812076,24.192323070771693,24.198320671731306,24.204318272690923,24.21031587365054,24.216313474610157,24.22231107556977,24.228308676529387,24.234306277489004,24.24030387844862,24.24630147940824,24.25229908036785,24.25829668132747,24.264294282287086,24.270291883246703,24.276289484206316,24.282287085165933,24.28828468612555,24.294282287085167,24.30027988804478,24.306277489004398,24.312275089964015,24.31827269092363,24.324270291883245,24.330267892842862,24.33626549380248,24.342263094762096,24.348260695721713,24.354258296681326,24.360255897640943,24.36625349860056,24.372251099560177,24.37824870051979,24.384246301479408,24.390243902439025,24.39624150339864,24.402239104358255,24.408236705317872,24.41423430627749,24.420231907237106,24.42622950819672,24.432227109156337,24.438224710115954,24.44422231107557,24.450219912035188,24.4562175129948,24.462215113954418,24.468212714914035,24.474210315873652,24.480207916833265,24.486205517792882,24.4922031187525,24.498200719712116,24.50419832067173,24.510195921631347,24.516193522590964,24.52219112355058,24.528188724510194,24.53418632546981,24.540183926429428,24.546181527389045,24.552179128348662,24.558176729308276,24.564174330267893,24.57017193122751,24.576169532187127,24.58216713314674,24.588164734106357,24.594162335065974,24.60015993602559,24.606157536985204,24.61215513794482,24.61815273890444,24.624150339864055,24.63014794082367,24.636145541783286,24.642143142742903,24.64814074370252,24.654138344662137,24.66013594562175,24.666133546581367,24.672131147540984,24.6781287485006,24.684126349460215,24.69012395041983,24.69612155137945,24.702119152339066,24.70811675329868,24.714114354258296,24.720111955217913,24.72610955617753,24.732107157137147,24.73810475809676,24.744102359056377,24.750099960015994,24.75609756097561,24.762095161935225,24.76809276289484,24.77409036385446,24.780087964814076,24.78608556577369,24.792083166733306,24.798080767692923,24.80407836865254,24.810075969612154,24.81607357057177,24.822071171531388,24.828068772491005,24.83406637345062,24.840063974410235,24.846061575369852,24.85205917632947,24.858056777289086,24.8640543782487,24.870051979208316,24.876049580167933,24.88204718112755,24.888044782087164,24.89404238304678,24.900039984006398,24.906037584966015,24.912035185925628,24.918032786885245,24.924030387844862,24.93002798880448,24.936025589764096,24.94202319072371,24.948020791683327,24.954018392642944,24.96001599360256,24.966013594562174,24.97201119552179,24.978008796481408,24.984006397441025,24.99000399840064,24.996001599360255,25.001999200319872,25.00799680127949,25.013994402239103,25.01999200319872,25.025989604158337,25.031987205117954,25.03798480607757,25.043982407037184,25.0499800079968,25.055977608956418,25.061975209916035,25.06797281087565,25.073970411835266,25.079968012794883,25.0859656137545,25.091963214714113,25.09796081567373,25.103958416633347,25.109956017592964,25.115953618552577,25.121951219512194,25.12794882047181,25.13394642143143,25.139944022391045,25.14594162335066,25.151939224310276,25.157936825269893,25.16393442622951,25.169932027189123,25.17592962814874,25.181927229108357,25.187924830067974,25.193922431027588,25.199920031987205,25.20591763294682,25.21191523390644,25.217912834866052,25.22391043582567,25.229908036785286,25.235905637744903,25.24190323870452,25.247900839664133,25.25389844062375,25.259896041583367,25.265893642542984,25.271891243502598,25.277888844462215,25.28388644542183,25.28988404638145,25.295881647341062,25.30187924830068,25.307876849260296,25.313874450219913,25.319872051179527,25.325869652139144,25.33186725309876,25.337864854058378,25.343862455017995,25.349860055977608,25.355857656937225,25.361855257896842,25.36785285885646,25.373850459816072,25.37984806077569,25.385845661735306,25.391843262694923,25.397840863654537,25.403838464614154,25.40983606557377,25.415833666533388,25.421831267493,25.427828868452618,25.433826469412235,25.439824070371852,25.44582167133147,25.451819272291083,25.4578168732507,25.463814474210317,25.469812075169934,25.475809676129547,25.481807277089164,25.48780487804878,25.493802479008398,25.49980007996801,25.50579768092763,25.511795281887245,25.517792882846862,25.523790483806476,25.529788084766093,25.53578568572571,25.541783286685327,25.547780887644944,25.553778488604557,25.559776089564174,25.56577369052379,25.571771291483408,25.57776889244302,25.58376649340264,25.589764094362256,25.595761695321873,25.601759296281486,25.607756897241103,25.61375449820072,25.619752099160337,25.62574970011995,25.631747301079567,25.637744902039184,25.6437425029988,25.64974010395842,25.65573770491803,25.66173530587765,25.667732906837266,25.673730507796883,25.679728108756496,25.685725709716113,25.69172331067573,25.697720911635347,25.70371851259496,25.709716113554578,25.715713714514195,25.72171131547381,25.727708916433425,25.733706517393042,25.73970411835266,25.745701719312276,25.751699320271893,25.757696921231506,25.763694522191123,25.76969212315074,25.775689724110357,25.78168732506997,25.787684926029588,25.793682526989205,25.79968012794882,25.805677728908435,25.811675329868052,25.81767293082767,25.823670531787286,25.8296681327469,25.835665733706517,25.841663334666134,25.84766093562575,25.853658536585368,25.85965613754498,25.865653738504598,25.871651339464215,25.877648940423832,25.883646541383445,25.889644142343062,25.89564174330268,25.901639344262296,25.90763694522191,25.913634546181527,25.919632147141144,25.92562974810076,25.931627349060374,25.93762495001999,25.943622550979608,25.949620151939225,25.955617752898842,25.961615353858456,25.967612954818073,25.97361055577769,25.979608156737307,25.98560575769692,25.991603358656537,25.997600959616154,26.00359856057577,26.009596161535384,26.015593762495,26.02159136345462,26.027588964414235,26.03358656537385,26.039584166333466,26.045581767293083,26.0515793682527,26.057576969212317,26.06357457017193,26.069572171131547,26.075569772091164,26.08156737305078,26.087564974010395,26.09356257497001,26.09956017592963,26.105557776889246,26.11155537784886,26.117552978808476,26.123550579768093,26.12954818072771,26.135545781687323,26.14154338264694,26.147540983606557,26.153538584566174,26.15953618552579,26.165533786485405,26.17153138744502,26.17752898840464,26.183526589364256,26.18952419032387,26.195521791283486,26.201519392243103,26.20751699320272,26.213514594162334,26.21951219512195,26.225509796081568,26.231507397041185,26.237504998000798,26.243502598960415,26.249500199920032,26.25549780087965,26.261495401839266,26.26749300279888,26.273490603758496,26.279488204718113,26.28548580567773,26.291483406637344,26.29748100759696,26.303478608556578,26.309476209516195,26.315473810475808,26.321471411435425,26.327469012395042,26.33346661335466,26.339464214314273,26.34546181527389,26.351459416233507,26.357457017193124,26.36345461815274,26.369452219112354,26.37544982007197,26.381447421031588,26.387445021991205,26.39344262295082,26.399440223910435,26.405437824870052,26.41143542582967,26.417433026789283,26.4234306277489,26.429428228708517,26.435425829668134,26.441423430627747,26.447421031587364,26.45341863254698,26.459416233506598,26.465413834466215,26.47141143542583,26.477409036385446,26.483406637345063,26.48940423830468,26.495401839264293,26.50139944022391,26.507397041183527,26.513394642143144,26.519392243102757,26.525389844062374,26.53138744502199,26.53738504598161,26.54338264694122,26.54938024790084,26.555377848860456,26.561375449820073,26.56737305077969,26.573370651739303,26.57936825269892,26.585365853658537,26.591363454618154,26.597361055577768,26.603358656537385,26.609356257497,26.61535385845662,26.621351459416232,26.62734906037585,26.633346661335466,26.639344262295083,26.6453418632547,26.651339464214313,26.65733706517393,26.663334666133547,26.669332267093164,26.675329868052778,26.681327469012395,26.68732506997201,26.69332267093163,26.699320271891242,26.70531787285086,26.711315473810476,26.717313074770093,26.723310675729707,26.729308276689324,26.73530587764894,26.741303478608557,26.747301079568174,26.753298680527788,26.759296281487405,26.765293882447022,26.77129148340664,26.777289084366252,26.78328668532587,26.789284286285486,26.795281887245103,26.801279488204717,26.807277089164334,26.81327469012395,26.819272291083568,26.82526989204318,26.831267493002798,26.837265093962415,26.843262694922032,26.84926029588165,26.855257896841263,26.86125549780088,26.867253098760496,26.873250699720113,26.879248300679727,26.885245901639344,26.89124350259896,26.897241103558578,26.90323870451819,26.90923630547781,26.915233906437425,26.921231507397042,26.927229108356656,26.933226709316273,26.93922431027589,26.945221911235507,26.951219512195124,26.957217113154737,26.963214714114354,26.96921231507397,26.975209916033588,26.9812075169932,26.98720511795282,26.993202718912436,26.999200319872052,27.005197920831666,27.011195521791283,27.0171931227509,27.023190723710517,27.02918832467013,27.035185925629747,27.041183526589364,27.04718112754898,27.0531787285086,27.05917632946821,27.06517393042783,27.071171531387446,27.077169132347063,27.083166733306676,27.089164334266293,27.09516193522591,27.101159536185527,27.10715713714514,27.113154738104758,27.119152339064375,27.12514994002399,27.131147540983605,27.137145141943222,27.14314274290284,27.149140343862456,27.155137944822073,27.161135545781686,27.167133146741303,27.17313074770092,27.179128348660537,27.18512594962015,27.191123550579768,27.197121151539385,27.203118752499,27.209116353458615,27.215113954418232,27.22111155537785,27.227109156337466,27.23310675729708,27.239104358256697,27.245101959216314,27.25109956017593,27.257097161135547,27.26309476209516,27.269092363054778,27.275089964014395,27.281087564974012,27.287085165933625,27.293082766893242,27.29908036785286,27.305077968812476,27.31107556977209,27.317073170731707,27.323070771691324,27.32906837265094,27.335065973610554,27.34106357457017,27.347061175529788,27.353058776489405,27.359056377449022,27.365053978408636,27.371051579368253,27.37704918032787,27.383046781287486,27.3890443822471,27.395041983206717,27.401039584166334,27.40703718512595,27.413034786085564,27.41903238704518,27.4250299880048,27.431027588964415,27.43702518992403,27.443022790883646,27.449020391843263,27.45501799280288,27.461015593762497,27.46701319472211,27.473010795681727,27.479008396641344,27.48500599760096,27.491003598560575,27.49700119952019,27.50299880047981,27.508996401439425,27.51499400239904,27.520991603358656,27.526989204318273,27.53298680527789,27.538984406237503,27.54498200719712,27.550979608156737,27.556977209116354,27.56297481007597,27.568972411035585,27.5749700119952,27.58096761295482,27.586965213914436,27.59296281487405,27.598960415833666,27.604958016793283,27.6109556177529,27.616953218712514,27.62295081967213,27.628948420631747,27.634946021591364,27.640943622550978,27.646941223510595,27.652938824470212,27.65893642542983,27.664934026389446,27.67093162734906,27.676929228308676,27.682926829268293,27.68892443022791,27.694922031187524,27.70091963214714,27.706917233106758,27.712914834066375,27.718912435025988,27.724910035985605,27.730907636945222,27.73690523790484,27.742902838864453,27.74890043982407,27.754898040783686,27.760895641743303,27.76689324270292,27.772890843662534,27.77888844462215,27.784886045581768,27.790883646541385,27.796881247501,27.802878848460615,27.808876449420232,27.81487405037985,27.820871651339463,27.82686925229908,27.832866853258697,27.838864454218314,27.844862055177927,27.850859656137544,27.85685725709716,27.862854858056778,27.868852459016395,27.87485005997601,27.880847660935625,27.886845261895242,27.89284286285486,27.898840463814473,27.90483806477409,27.910835665733707,27.916833266693324,27.922830867652937,27.928828468612554,27.93482606957217,27.94082367053179,27.9468212714914,27.95281887245102,27.958816473410636,27.964814074370253,27.97081167532987,27.976809276289483,27.9828068772491,27.988804478208717,27.994802079168334,28.000799680127948,28.006797281087564,28.01279488204718,28.0187924830068,28.024790083966412,28.03078768492603,28.036785285885646,28.042782886845263,28.048780487804876,28.054778088764493,28.06077568972411,28.066773290683727,28.072770891643344,28.078768492602958,28.084766093562575,28.09076369452219,28.09676129548181,28.102758896441422,28.10875649740104,28.114754098360656,28.120751699320273,28.126749300279887,28.132746901239504,28.13874450219912,28.144742103158737,28.15073970411835,28.156737305077968,28.162734906037585,28.168732506997202,28.17473010795682,28.180727708916432,28.18672530987605,28.192722910835666,28.198720511795283,28.204718112754897,28.210715713714514,28.21671331467413,28.222710915633748,28.22870851659336,28.234706117552978,28.240703718512595,28.246701319472212,28.252698920431826,28.258696521391443,28.26469412235106,28.270691723310676,28.276689324270293,28.282686925229907,28.288684526189524,28.29468212714914,28.300679728108758,28.30667732906837,28.31267493002799,28.318672530987605,28.324670131947222,28.330667732906836,28.336665333866453,28.34266293482607,28.348660535785687,28.3546581367453,28.360655737704917,28.366653338664534,28.37265093962415,28.378648540583768,28.38464614154338,28.390643742503,28.396641343462615,28.402638944422232,28.408636545381846,28.414634146341463,28.42063174730108,28.426629348260697,28.43262694922031,28.438624550179927,28.444622151139544,28.45061975209916,28.45661735305878,28.46261495401839,28.46861255497801,28.474610155937626,28.480607756897243,28.486605357856856,28.492602958816473,28.49860055977609,28.504598160735707,28.51059576169532,28.516593362654937,28.522590963614554,28.52858856457417,28.534586165533785,28.540583766493402,28.54658136745302,28.552578968412636,28.558576569372253,28.564574170331866,28.570571771291483,28.5765693722511,28.582566973210717,28.58856457417033,28.594562175129948,28.600559776089565,28.60655737704918,28.612554978008795,28.618552578968412,28.62455017992803,28.630547780887646,28.63654538184726,28.642542982806876,28.648540583766493,28.65453818472611,28.660535785685727,28.66653338664534,28.672530987604958,28.678528588564575,28.684526189524192,28.690523790483805,28.696521391443422,28.70251899240304,28.708516593362656,28.71451419432227,28.720511795281887,28.726509396241504,28.73250699720112,28.738504598160734,28.74450219912035,28.750499800079968,28.756497401039585,28.762495001999202,28.768492602958815,28.774490203918432,28.78048780487805,28.786485405837666,28.79248300679728,28.798480607756897,28.804478208716514,28.81047580967613,28.816473410635744,28.82247101159536,28.82846861255498,28.834466213514595,28.84046381447421,28.846461415433826,28.852459016393443,28.85845661735306,28.864454218312677,28.87045181927229,28.876449420231907,28.882447021191524,28.88844462215114,28.894442223110754,28.90043982407037,28.90643742502999,28.912435025989605,28.91843262694922,28.924430227908836,28.930427828868453,28.93642542982807,28.942423030787683,28.9484206317473,28.954418232706917,28.960415833666534,28.96641343462615,28.972411035585765,28.97840863654538,28.984406237505,28.990403838464616,28.99640143942423,29.002399040383846,29.008396641343463,29.01439424230308,29.020391843262693,29.02638944422231,29.032387045181927,29.038384646141544,29.044382247101158,29.050379848060775,29.056377449020392,29.06237504998001,29.068372650939626,29.07437025189924,29.080367852858856,29.086365453818473,29.09236305477809,29.098360655737704,29.10435825669732,29.110355857656938,29.116353458616555,29.122351059576168,29.128348660535785,29.134346261495402,29.14034386245502,29.146341463414632,29.15233906437425,29.158336665333866,29.164334266293483,29.1703318672531,29.176329468212714,29.18232706917233,29.188324670131948,29.194322271091565,29.20031987205118,29.206317473010795,29.212315073970412,29.21831267493003,29.224310275889643,29.23030787684926,29.236305477808877,29.242303078768494,29.248300679728107,29.254298280687724,29.26029588164734,29.266293482606958,29.272291083566575,29.27828868452619,29.284286285485805,29.290283886445422,29.29628148740504,29.302279088364653,29.30827668932427,29.314274290283887,29.320271891243504,29.326269492203117,29.332267093162734,29.33826469412235,29.34426229508197,29.35025989604158,29.3562574970012,29.362255097960816,29.368252698920433,29.37425029988005,29.380247900839663,29.38624550179928,29.392243102758897,29.398240703718514,29.404238304678127,29.410235905637744,29.41623350659736,29.42223110755698,29.428228708516592,29.43422630947621,29.440223910435826,29.446221511395443,29.452219112355056,29.458216713314673,29.46421431427429,29.470211915233907,29.476209516193524,29.482207117153138,29.488204718112755,29.49420231907237,29.50019992003199,29.506197520991602,29.51219512195122,29.518192722910836,29.524190323870453,29.530187924830066,29.536185525789683,29.5421831267493,29.548180727708917,29.55417832866853,29.560175929628148,29.566173530587765,29.572171131547382,29.578168732507,29.584166333466612,29.59016393442623,29.596161535385846,29.602159136345463,29.608156737305077,29.614154338264694,29.62015193922431,29.626149540183928,29.63214714114354,29.638144742103158,29.644142343062775,29.650139944022392,29.656137544982005,29.662135145941622,29.66813274690124,29.674130347860856,29.680127948820473,29.686125549780087,29.692123150739704,29.69812075169932,29.704118352658938,29.71011595361855,29.71611355457817,29.722111155537785,29.728108756497402,29.734106357457016,29.740103958416633,29.74610155937625,29.752099160335867,29.75809676129548,29.764094362255097,29.770091963214714,29.77608956417433,29.782087165133948,29.78808476609356,29.79408236705318,29.800079968012795,29.806077568972412,29.812075169932026,29.818072770891643,29.82407037185126,29.830067972810877,29.83606557377049,29.842063174730107,29.848060775689724,29.85405837664934,29.860055977608955,29.86605357856857,29.87205117952819,29.878048780487806,29.884046381447423,29.890043982407036,29.896041583366653,29.90203918432627,29.908036785285887,29.9140343862455,29.920031987205117,29.926029588164734,29.93202718912435,29.938024790083965,29.944022391043582,29.9500199920032,29.956017592962816,29.96201519392243,29.968012794882046,29.974010395841663,29.98000799680128,29.986005597760897,29.99200319872051,29.998000799680128,30.003998400639745,30.00999600159936,30.015993602558975,30.021991203518592,30.02798880447821,30.033986405437826,30.03998400639744,30.045981607357056,30.051979208316673,30.05797680927629,30.063974410235904,30.06997201119552,30.075969612155138,30.081967213114755,30.087964814074372,30.093962415033985,30.099960015993602,30.10595761695322,30.111955217912836,30.11795281887245,30.123950419832067,30.129948020791684,30.1359456217513,30.141943222710914,30.14794082367053,30.153938424630148,30.159936025589765,30.16593362654938,30.171931227508995,30.177928828468612,30.18392642942823,30.189924030387846,30.19592163134746,30.201919232307077,30.207916833266694,30.21391443422631,30.219912035185924,30.22590963614554,30.23190723710516,30.237904838064775,30.24390243902439,30.249900039984006,30.255897640943623,30.26189524190324,30.267892842862853,30.27389044382247,30.279888044782087,30.285885645741704,30.29188324670132,30.297880847660934,30.30387844862055,30.30987604958017,30.315873650539785,30.3218712514994,30.327868852459016,30.333866453418633,30.33986405437825,30.345861655337863,30.35185925629748,30.357856857257097,30.363854458216714,30.36985205917633,30.375849660135945,30.38184726109556,30.38784486205518,30.393842463014796,30.39984006397441,30.405837664934026,30.411835265893643,30.41783286685326,30.423830467812873,30.42982806877249,30.435825669732107,30.441823270691724,30.447820871651338,30.453818472610955,30.459816073570572,30.46581367453019,30.471811275489806,30.47780887644942,30.483806477409036,30.489804078368653,30.49580167932827,30.501799280287884,30.5077968812475,30.513794482207118,30.519792083166735,30.525789684126348,30.531787285085965,30.537784886045582,30.5437824870052,30.549780087964812,30.55577768892443,30.561775289884046,30.567772890843663,30.57377049180328,30.579768092762894,30.58576569372251,30.591763294682128,30.597760895641745,30.60375849660136,30.609756097560975,30.615753698520592,30.62175129948021,30.627748900439823,30.63374650139944,30.639744102359057,30.645741703318674,30.651739304278287,30.657736905237904,30.66373450619752,30.669732107157138,30.675729708116755,30.68172730907637,30.687724910035985,30.693722510995602,30.69972011195522,30.705717712914833,30.71171531387445,30.717712914834067,30.723710515793684,30.729708116753297,30.735705717712914,30.74170331867253,30.74770091963215,30.75369852059176,30.75969612155138,30.765693722510996,30.771691323470613,30.77768892443023,30.783686525389843,30.78968412634946,30.795681727309077,30.801679328268694,30.807676929228307,30.813674530187924,30.81967213114754,30.82566973210716,30.831667333066772,30.83766493402639,30.843662534986006,30.849660135945623,30.855657736905236,30.861655337864853,30.86765293882447,30.873650539784087,30.879648140743704,30.885645741703318,30.891643342662935,30.89764094362255,30.90363854458217,30.909636145541782,30.9156337465014,30.921631347461016,30.927628948420633,30.933626549380246,30.939624150339863,30.94562175129948,30.951619352259097,30.95761695321871,30.963614554178328,30.969612155137945,30.975609756097562,30.98160735705718,30.987604958016792,30.99360255897641,30.999600159936026,31.005597760895643,31.011595361855257,31.017592962814874,31.02359056377449,31.029588164734108,31.03558576569372,31.041583366653338,31.047580967612955,31.053578568572572,31.059576169532185,31.065573770491802,31.07157137145142,31.077568972411036,31.083566573370653,31.089564174330267,31.095561775289884,31.1015593762495,31.107556977209118,31.11355457816873,31.11955217912835,31.125549780087965,31.131547381047582,31.137544982007196,31.143542582966813,31.14954018392643,31.155537784886047,31.16153538584566,31.167532986805277,31.173530587764894,31.17952818872451,31.185525789684128,31.19152339064374,31.19752099160336,31.203518592562975,31.209516193522592,31.215513794482206,31.221511395441823,31.22750899640144,31.233506597361057,31.23950419832067,31.245501799280287,31.251499400239904,31.25749700119952,31.263494602159135,31.26949220311875,31.27548980407837,31.281487405037986,31.287485005997603,31.293482606957216,31.299480207916833,31.30547780887645,31.311475409836067,31.31747301079568,31.323470611755297,31.329468212714914,31.33546581367453,31.341463414634145,31.347461015593762,31.35345861655338,31.359456217512996,31.36545381847261,31.371451419432226,31.377449020391843,31.38344662135146,31.389444222311077,31.39544182327069,31.401439424230308,31.407437025189925,31.41343462614954,31.419432227109155,31.425429828068772,31.43142742902839,31.437425029988006,31.44342263094762,31.449420231907236,31.455417832866853,31.46141543382647,31.467413034786084,31.4734106357457,31.479408236705318,31.485405837664935,31.491403438624552,31.497401039584165,31.503398640543782,31.5093962415034,31.515393842463016,31.52139144342263,31.527389044382247,31.533386645341864,31.53938424630148,31.545381847261094,31.55137944822071,31.557377049180328,31.563374650139945,31.56937225109956,31.575369852059175,31.581367453018792,31.58736505397841,31.593362654938026,31.59936025589764,31.605357856857257,31.611355457816874,31.61735305877649,31.623350659736104,31.62934826069572,31.63534586165534,31.641343462614955,31.64734106357457,31.653338664534186,31.659336265493803,31.66533386645342,31.671331467413033,31.67732906837265,31.683326669332267,31.689324270291884,31.6953218712515,31.701319472211114,31.70731707317073,31.71331467413035,31.719312275089965,31.72530987604958,31.731307477009196,31.737305077968813,31.74330267892843,31.749300279888043,31.75529788084766,31.761295481807277,31.767293082766894,31.773290683726508,31.779288284686125,31.78528588564574,31.79128348660536,31.797281087564976,31.80327868852459,31.809276289484206,31.815273890443823,31.82127149140344,31.827269092363053,31.83326669332267,31.839264294282287,31.845261895241904,31.851259496201518,31.857257097161135,31.863254698120752,31.86925229908037,31.875249900039982,31.8812475009996,31.887245101959216,31.893242702918833,31.89924030387845,31.905237904838064,31.91123550579768,31.917233106757298,31.923230707716915,31.929228308676528,31.935225909636145,31.941223510595762,31.94722111155538,31.953218712514992,31.95921631347461,31.965213914434226,31.971211515393843,31.977209116353457,31.983206717313074,31.98920431827269,31.995201919232308,32.001199520191925,32.00719712115154,32.01319472211116,32.01919232307077,32.025189924030386,32.03118752499,32.03718512594962,32.04318272690924,32.049180327868854,32.05517792882847,32.06117552978809,32.0671731307477,32.073170731707314,32.07916833266693,32.08516593362655,32.091163534586165,32.09716113554578,32.1031587365054,32.109156337465016,32.11515393842463,32.12115153938424,32.12714914034386,32.13314674130348,32.139144342263094,32.14514194322271,32.15113954418233,32.157137145141945,32.16313474610156,32.16913234706117,32.17512994802079,32.181127548980406,32.18712514994002,32.19312275089964,32.19912035185926,32.205117952818874,32.21111555377849,32.21711315473811,32.22311075569772,32.229108356657335,32.23510595761695,32.24110355857657,32.247101159536186,32.2530987604958,32.25909636145542,32.26509396241504,32.27109156337465,32.277089164334264,32.28308676529388,32.2890843662535,32.295081967213115,32.30107956817273,32.30707716913235,32.313074770091966,32.31907237105158,32.32506997201119,32.33106757297081,32.33706517393043,32.34306277489004,32.34906037584966,32.35505797680928,32.361055577768894,32.36705317872851,32.37305077968812,32.37904838064774,32.385045981607355,32.39104358256697,32.39704118352659,32.403038784486206,32.40903638544582,32.41503398640544,32.42103158736506,32.42702918832467,32.433026789284284,32.4390243902439,32.44502199120352,32.451019592163135,32.45701719312275,32.46301479408237,32.469012395041986,32.475009996001596,32.48100759696121,32.48700519792083,32.49300279888045,32.499000399840064,32.50499800079968,32.5109956017593,32.516993202718915,32.52299080367853,32.52898840463814,32.53498600559776,32.540983606557376,32.54698120751699,32.55297880847661,32.55897640943623,32.564974010395844,32.57097161135546,32.57696921231507,32.58296681327469,32.588964414234304,32.59496201519392,32.60095961615354,32.606957217113155,32.61295481807277,32.61895241903239,32.624950019992006,32.630947620951616,32.63694522191123,32.64294282287085,32.64894042383047,32.654938024790084,32.6609356257497,32.66693322670932,32.672930827668935,32.678928428628545,32.68492602958816,32.69092363054778,32.696921231507396,32.70291883246701,32.70891643342663,32.71491403438625,32.720911635345864,32.72690923630548,32.73290683726509,32.73890443822471,32.744902039184325,32.75089964014394,32.75689724110356,32.762894842063176,32.76889244302279,32.77489004398241,32.78088764494202,32.78688524590164,32.792882846861254,32.79888044782087,32.80487804878049,32.810875649740105,32.81687325069972,32.82287085165934,32.828868452618956,32.834866053578565,32.84086365453818,32.8468612554978,32.852858856457416,32.85885645741703,32.86485405837665,32.87085165933627,32.876849260295884,32.882846861255494,32.88884446221511,32.89484206317473,32.900839664134345,32.90683726509396,32.91283486605358,32.918832467013196,32.92483006797281,32.93082766893243,32.93682526989204,32.94282287085166,32.948820471811274,32.95481807277089,32.96081567373051,32.966813274690125,32.97281087564974,32.97880847660936,32.98480607756897,32.990803678528586,32.9968012794882,33.00279888044782,33.00879648140744,33.014794082367054,33.02079168332667,33.02678928428629,33.032786885245905,33.038784486205515,33.04478208716513,33.05077968812475,33.056777289084366,33.06277489004398,33.0687724910036,33.07477009196322,33.080767692922834,33.08676529388244,33.09276289484206,33.09876049580168,33.104758096761294,33.11075569772091,33.11675329868053,33.122750899640145,33.12874850059976,33.13474610155938,33.14074370251899,33.146741303478606,33.15273890443822,33.15873650539784,33.16473410635746,33.170731707317074,33.17672930827669,33.18272690923631,33.188724510195925,33.194722111155535,33.20071971211515,33.20671731307477,33.212714914034386,33.218712514994,33.22471011595362,33.23070771691324,33.236705317872854,33.242702918832464,33.24870051979208,33.2546981207517,33.260695721711315,33.26669332267093,33.27269092363055,33.278688524590166,33.28468612554978,33.2906837265094,33.29668132746901,33.30267892842863,33.308676529388244,33.31467413034786,33.32067173130748,33.326669332267095,33.33266693322671,33.33866453418633,33.34466213514594,33.350659736105555,33.35665733706517,33.36265493802479,33.368652538984406,33.37465013994402,33.38064774090364,33.38664534186326,33.392642942822874,33.398640543782484,33.4046381447421,33.41063574570172,33.416633346661335,33.42263094762095,33.42862854858057,33.434626149540186,33.4406237504998,33.44662135145941,33.45261895241903,33.45861655337865,33.464614154338264,33.47061175529788,33.4766093562575,33.482606957217115,33.48860455817673,33.49460215913635,33.50059976009596,33.506597361055576,33.51259496201519,33.51859256297481,33.52459016393443,33.530587764894044,33.53658536585366,33.54258296681328,33.54858056777289,33.554578168732505,33.56057576969212,33.56657337065174,33.572570971611356,33.57856857257097,33.58456617353059,33.59056377449021,33.596561375449824,33.60255897640943,33.60855657736905,33.61455417832867,33.620551779288284,33.6265493802479,33.63254698120752,33.638544582167135,33.64454218312675,33.65053978408636,33.65653738504598,33.662534986005596,33.66853258696521,33.67453018792483,33.68052778888445,33.686525389844064,33.69252299080368,33.6985205917633,33.70451819272291,33.710515793682525,33.71651339464214,33.72251099560176,33.728508596561376,33.73450619752099,33.74050379848061,33.74650139944023,33.75249900039984,33.758496601359454,33.76449420231907,33.77049180327869,33.776489404238305,33.78248700519792,33.78848460615754,33.794482207117156,33.80047980807677,33.80647740903638,33.812475009996,33.81847261095562,33.824470211915234,33.83046781287485,33.83646541383447,33.842463014794085,33.8484606157537,33.85445821671331,33.86045581767293,33.866453418632545,33.87245101959216,33.87844862055178,33.884446221511396,33.89044382247101,33.89644142343063,33.90243902439025,33.90843662534986,33.914434226309474,33.92043182726909,33.92642942822871,33.932427029188325,33.93842463014794,33.94442223110756,33.950419832067176,33.956417433026786,33.9624150339864,33.96841263494602,33.97441023590564,33.980407836865254,33.98640543782487,33.99240303878449,33.998400639744105,34.00439824070372,34.01039584166333,34.01639344262295,34.022391043582566,34.02838864454218,34.0343862455018,34.04038384646142,34.046381447421034,34.05237904838065,34.05837664934026,34.06437425029988,34.070371851259495,34.07636945221911,34.08236705317873,34.088364654138346,34.09436225509796,34.10035985605758,34.1063574570172,34.11235505797681,34.11835265893642,34.12435025989604,34.13034786085566,34.136345461815274,34.14234306277489,34.14834066373451,34.154338264694125,34.160335865653735,34.16633346661335,34.17233106757297,34.178328668532586,34.1843262694922,34.19032387045182,34.19632147141144,34.202319072371054,34.20831667333067,34.21431427429028,34.2203118752499,34.226309476209515,34.23230707716913,34.23830467812875,34.244302279088366,34.25029988004798,34.2562974810076,34.26229508196721,34.26829268292683,34.274290283886444,34.28028788484606,34.28628548580568,34.292283086765295,34.29828068772491,34.30427828868453,34.310275889644146,34.316273490603756,34.32227109156337,34.32826869252299,34.33426629348261,34.340263894442224,34.34626149540184,34.35225909636146,34.358256697321075,34.364254298280684,34.3702518992403,34.37624950019992,34.382247101159535,34.38824470211915,34.39424230307877,34.400239904038386,34.406237504998,34.41223510595762,34.41823270691723,34.42423030787685,34.430227908836464,34.43622550979608,34.4422231107557,34.448220711715315,34.45421831267493,34.46021591363455,34.46621351459416,34.472211115553776,34.47820871651339,34.48420631747301,34.49020391843263,34.496201519392244,34.50219912035186,34.50819672131148,34.514194322271095,34.520191923230705,34.52618952419032,34.53218712514994,34.538184726109556,34.54418232706917,34.55017992802879,34.55617752898841,34.562175129948024,34.568172730907634,34.57417033186725,34.58016793282687,34.586165533786485,34.5921631347461,34.59816073570572,34.604158336665336,34.61015593762495,34.61615353858457,34.62215113954418,34.628148740503796,34.63414634146341,34.64014394242303,34.64614154338265,34.652139144342264,34.65813674530188,34.6641343462615,34.67013194722111,34.676129548180725,34.68212714914034,34.68812475009996,34.694122351059576,34.70011995201919,34.70611755297881,34.71211515393843,34.718112754898044,34.724110355857654,34.73010795681727,34.73610555777689,34.742103158736505,34.74810075969612,34.75409836065574,34.760095961615356,34.76609356257497,34.77209116353458,34.7780887644942,34.78408636545382,34.790083966413434,34.79608156737305,34.80207916833267,34.808076769292285,34.8140743702519,34.82007197121152,34.82606957217113,34.832067173130746,34.83806477409036,34.84406237504998,34.8500599760096,34.856057576969214,34.86205517792883,34.86805277888845,34.87405037984806,34.880047980807674,34.88604558176729,34.89204318272691,34.898040783686525,34.90403838464614,34.91003598560576,34.916033586565376,34.92203118752499,34.9280287884846,34.93402638944422,34.94002399040384,34.946021591363454,34.95201919232307,34.95801679328269,34.964014394242305,34.97001199520192,34.97600959616153,34.98200719712115,34.988004798080766,34.99400239904038,35.0,35.00599760095962,35.011995201919234,35.01799280287885,35.02399040383847,35.02998800479808,35.035985605757695,35.04198320671731,35.04798080767693,35.053978408636546,35.05997600959616,35.06597361055578,35.0719712115154,35.07796881247501,35.083966413434624,35.08996401439424,35.09596161535386,35.101959216313475,35.10795681727309,35.11395441823271,35.119952019192326,35.12594962015194,35.13194722111155,35.13794482207117,35.143942423030786,35.1499400239904,35.15593762495002,35.16193522590964,35.167932826869254,35.17393042782887,35.17992802878848,35.1859256297481,35.191923230707715,35.19792083166733,35.20391843262695,35.209916033586566,35.21591363454618,35.2219112355058,35.22790883646542,35.23390643742503,35.239904038384644,35.24590163934426,35.25189924030388,35.257896841263495,35.26389444222311,35.26989204318273,35.275889644142346,35.281887245101956,35.28788484606157,35.29388244702119,35.29988004798081,35.305877648940424,35.31187524990004,35.31787285085966,35.323870451819275,35.32986805277889,35.3358656537385,35.34186325469812,35.347860855657736,35.35385845661735,35.35985605757697,35.36585365853659,35.371851259496204,35.37784886045582,35.38384646141543,35.38984406237505,35.395841663334664,35.40183926429428,35.4078368652539,35.413834466213515,35.41983206717313,35.42582966813275,35.431827269092366,35.437824870051976,35.44382247101159,35.44982007197121,35.45581767293083,35.461815273890444,35.46781287485006,35.47381047580968,35.479808076769295,35.485805677728905,35.49180327868852,35.49780087964814,35.503798480607756,35.50979608156737,35.51579368252699,35.52179128348661,35.527788884446224,35.53378648540584,35.53978408636545,35.54578168732507,35.551779288284685,35.5577768892443,35.56377449020392,35.569772091163536,35.57576969212315,35.58176729308277,35.58776489404238,35.593762495002,35.599760095961614,35.60575769692123,35.61175529788085,35.617752898840465,35.62375049980008,35.6297481007597,35.635745701719316,35.641743302678925,35.64774090363854,35.65373850459816,35.659736105557776,35.66573370651739,35.67173130747701,35.67772890843663,35.683726509396244,35.689724110355854,35.69572171131547,35.70171931227509,35.707716913234705,35.71371451419432,35.71971211515394,35.725709716113556,35.73170731707317,35.73770491803279,35.7437025189924,35.74970011995202,35.755697720911634,35.76169532187125,35.76769292283087,35.773690523790485,35.7796881247501,35.78568572570972,35.79168332666933,35.797680927628946,35.80367852858856,35.80967612954818,35.8156737305078,35.821671331467414,35.82766893242703,35.83366653338665,35.839664134346265,35.845661735305875,35.85165933626549,35.85765693722511,35.863654538184726,35.86965213914434,35.87564974010396,35.88164734106358,35.88764494202319,35.8936425429828,35.89964014394242,35.90563774490204,35.911635345861654,35.91763294682127,35.92363054778089,35.929628148740505,35.93562574970012,35.94162335065974,35.94762095161935,35.953618552578966,35.95961615353858,35.9656137544982,35.97161135545782,35.977608956417434,35.98360655737705,35.98960415833667,35.99560175929628,36.001599360255895,36.00759696121551,36.01359456217513,36.019592163134746,36.02558976409436,36.03158736505398,36.0375849660136,36.043582566973214,36.049580167932824,36.05557776889244,36.06157536985206,36.067572970811675,36.07357057177129,36.07956817273091,36.085565773690526,36.09156337465014,36.09756097560975,36.10355857656937,36.10955617752899,36.115553778488604,36.12155137944822,36.12754898040784,36.133546581367455,36.13954418232707,36.14554178328669,36.1515393842463,36.157536985205915,36.16353458616553,36.16953218712515,36.175529788084766,36.18152738904438,36.187524990004,36.19352259096362,36.19952019192323,36.205517792882844,36.21151539384246,36.21751299480208,36.223510595761695,36.22950819672131,36.23550579768093,36.241503398640546,36.24750099960016,36.25349860055977,36.25949620151939,36.26549380247901,36.271491403438624,36.27748900439824,36.28348660535786,36.289484206317475,36.29548180727709,36.3014794082367,36.30747700919632,36.313474610155936,36.31947221111555,36.32546981207517,36.33146741303479,36.337465013994404,36.34346261495402,36.34946021591364,36.35545781687325,36.361455417832865,36.36745301879248,36.3734506197521,36.379448220711716,36.38544582167133,36.39144342263095,36.39744102359057,36.403438624550176,36.40943622550979,36.41543382646941,36.42143142742903,36.427429028388644,36.43342662934826,36.43942423030788,36.445421831267495,36.45141943222711,36.45741703318672,36.46341463414634,36.469412235105956,36.47540983606557,36.48140743702519,36.48740503798481,36.493402638944424,36.49940023990404,36.50539784086365,36.51139544182327,36.517393042782885,36.5233906437425,36.52938824470212,36.535385845661736,36.54138344662135,36.54738104758097,36.55337864854059,36.5593762495002,36.565373850459814,36.57137145141943,36.57736905237905,36.583366653338665,36.58936425429828,36.5953618552579,36.601359456217516,36.607357057177126,36.61335465813674,36.61935225909636,36.62534986005598,36.631347461015594,36.63734506197521,36.64334266293483,36.649340263894445,36.65533786485406,36.66133546581367,36.66733306677329,36.673330667732905,36.67932826869252,36.68532586965214,36.691323470611756,36.69732107157137,36.70331867253099,36.7093162734906,36.71531387445022,36.721311475409834,36.72730907636945,36.73330667732907,36.739304278288685,36.7453018792483,36.75129948020792,36.757297081167536,36.763294682127146,36.76929228308676,36.77528988404638,36.781287485006,36.787285085965614,36.79328268692523,36.79928028788485,36.805277888844465,36.811275489804075,36.81727309076369,36.82327069172331,36.829268292682926,36.83526589364254,36.84126349460216,36.84726109556178,36.853258696521394,36.85925629748101,36.86525389844062,36.87125149940024,36.877249100359855,36.88324670131947,36.88924430227909,36.895241903238706,36.90123950419832,36.90723710515794,36.91323470611756,36.919232307077166,36.92522990803678,36.9312275089964,36.93722510995602,36.943222710915634,36.94922031187525,36.95521791283487,36.961215513794485,36.967213114754095,36.97321071571371,36.97920831667333,36.985205917632946,36.99120351859256,36.99720111955218,37.0031987205118,37.009196321471414,37.01519392243103,37.02119152339064,37.02718912435026,37.033186725309875,37.03918432626949,37.04518192722911,37.051179528188726,37.05717712914834,37.06317473010796,37.06917233106757,37.07516993202719,37.081167532986804,37.08716513394642,37.09316273490604,37.099160335865655,37.10515793682527,37.11115553778489,37.117153138744506,37.123150739704116,37.12914834066373,37.13514594162335,37.14114354258297,37.147141143542584,37.1531387445022,37.15913634546182,37.165133946421435,37.171131547381044,37.17712914834066,37.18312674930028,37.189124350259895,37.19512195121951,37.20111955217913,37.207117153138746,37.21311475409836,37.21911235505798,37.22510995601759,37.23110755697721,37.237105157936824,37.24310275889644,37.24910035985606,37.255097960815675,37.26109556177529,37.26709316273491,37.27309076369452,37.279088364654136,37.28508596561375,37.29108356657337,37.29708116753299,37.303078768492604,37.30907636945222,37.31507397041184,37.321071571371455,37.327069172331065,37.33306677329068,37.3390643742503,37.345061975209916,37.35105957616953,37.35705717712915,37.36305477808877,37.369052379048384,37.375049980007994,37.38104758096761,37.38704518192723,37.393042782886845,37.39904038384646,37.40503798480608,37.411035585765696,37.41703318672531,37.42303078768493,37.42902838864454,37.435025989604156,37.44102359056377,37.44702119152339,37.45301879248301,37.459016393442624,37.46501399440224,37.47101159536186,37.47700919632147,37.483006797281085,37.4890043982407,37.49500199920032,37.500999600159936,37.50699720111955,37.51299480207917,37.51899240303879,37.524990003998404,37.530987604958014,37.53698520591763,37.54298280687725,37.548980407836865,37.55497800879648,37.5609756097561,37.566973210715716,37.57297081167533,37.57896841263494,37.58496601359456,37.59096361455418,37.596961215513794,37.60295881647341,37.60895641743303,37.614954018392645,37.62095161935226,37.62694922031188,37.63294682127149,37.638944422231106,37.64494202319072,37.65093962415034,37.65693722510996,37.66293482606957,37.66893242702919,37.67493002798881,37.68092762894842,37.686925229908034,37.69292283086765,37.69892043182727,37.704918032786885,37.7109156337465,37.71691323470612,37.722910835665736,37.72890843662535,37.73490603758496,37.74090363854458,37.7469012395042,37.752898840463814,37.75889644142343,37.76489404238305,37.770891643342665,37.77688924430228,37.78288684526189,37.78888444622151,37.794882047181126,37.80087964814074,37.80687724910036,37.81287485005998,37.818872451019594,37.82487005197921,37.83086765293883,37.83686525389844,37.842862854858055,37.84886045581767,37.85485805677729,37.860855657736906,37.86685325869652,37.87285085965614,37.87884846061576,37.88484606157537,37.890843662534984,37.8968412634946,37.90283886445422,37.908836465413835,37.91483406637345,37.92083166733307,37.926829268292686,37.9328268692523,37.93882447021191,37.94482207117153,37.950819672131146,37.95681727309076,37.96281487405038,37.96881247501,37.974810075969614,37.98080767692923,37.98680527788884,37.99280287884846,37.998800479808075,38.00479808076769,38.01079568172731,38.016793282686926,38.02279088364654,38.02878848460616,38.03478608556578,38.04078368652539,38.046781287485004,38.05277888844462,38.05877648940424,38.064774090363855,38.07077169132347,38.07676929228309,38.082766893242706,38.088764494202316,38.09476209516193,38.10075969612155,38.10675729708117,38.112754898040784,38.1187524990004,38.12475009996002,38.130747700919635,38.13674530187925,38.14274290283886,38.14874050379848,38.154738104758096,38.16073570571771,38.16673330667733,38.17273090763695,38.17872850859656,38.18472610955618,38.19072371051579,38.19672131147541,38.202718912435024,38.20871651339464,38.21471411435426,38.220711715313875,38.22670931627349,38.23270691723311,38.238704518192726,38.244702119152336,38.25069972011195,38.25669732107157,38.26269492203119,38.268692522990804,38.27469012395042,38.28068772491004,38.286685325869655,38.292682926829265,38.29868052778888,38.3046781287485,38.310675729708116,38.31667333066773,38.32267093162735,38.32866853258697,38.334666133546584,38.3406637345062,38.34666133546581,38.35265893642543,38.358656537385045,38.36465413834466,38.37065173930428,38.376649340263896,38.38264694122351,38.38864454218313,38.39464214314274,38.40063974410236,38.406637345061974,38.41263494602159,38.41863254698121,38.424630147940825,38.43062774890044,38.43662534986006,38.442622950819676,38.448620551779285,38.4546181527389,38.46061575369852,38.466613354658136,38.47261095561775,38.47860855657737,38.48460615753699,38.490603758496604,38.496601359456214,38.50259896041583,38.50859656137545,38.514594162335065,38.52059176329468,38.5265893642543,38.532586965213916,38.53858456617353,38.54458216713315,38.55057976809276,38.55657736905238,38.562574970011994,38.56857257097161,38.57457017193123,38.580567772890845,38.58656537385046,38.59256297481008,38.59856057576969,38.604558176729306,38.61055577768892,38.61655337864854,38.62255097960816,38.628548580567774,38.63454618152739,38.64054378248701,38.646541383446625,38.652538984406235,38.65853658536585,38.66453418632547,38.670531787285086,38.6765293882447,38.68252698920432,38.68852459016394,38.69452219112355,38.70051979208316,38.70651739304278,38.7125149940024,38.718512594962014,38.72451019592163,38.73050779688125,38.736505397840865,38.74250299880048,38.7485005997601,38.75449820071971,38.760495801679326,38.76649340263894,38.77249100359856,38.77848860455818,38.784486205517794,38.79048380647741,38.79648140743703,38.80247900839664,38.808476609356255,38.81447421031587,38.82047181127549,38.826469412235106,38.83246701319472,38.83846461415434,38.84446221511396,38.850459816073574,38.856457417033184,38.8624550179928,38.86845261895242,38.874450219912035,38.88044782087165,38.88644542183127,38.892443022790886,38.8984406237505,38.90443822471011,38.91043582566973,38.91643342662935,38.922431027588964,38.92842862854858,38.9344262295082,38.940423830467815,38.94642143142743,38.95241903238705,38.95841663334666,38.964414234306275,38.97041183526589,38.97640943622551,38.982407037185126,38.98840463814474,38.99440223910436,39.00039984006398,39.00639744102359,39.012395041983204,39.01839264294282,39.02439024390244,39.030387844862055,39.03638544582167,39.04238304678129,39.048380647740906,39.05437824870052,39.06037584966013,39.06637345061975,39.07237105157937,39.078368652538984,39.0843662534986,39.09036385445822,39.096361455417835,39.10235905637745,39.10835665733706,39.11435425829668,39.120351859256296,39.12634946021591,39.13234706117553,39.13834466213515,39.144342263094764,39.15033986405438,39.156337465014,39.16233506597361,39.168332666933225,39.17433026789284,39.18032786885246,39.186325469812076,39.19232307077169,39.19832067173131,39.20431827269093,39.210315873650536,39.21631347461015,39.22231107556977,39.22830867652939,39.234306277489004,39.24030387844862,39.24630147940824,39.252299080367855,39.25829668132747,39.26429428228708,39.2702918832467,39.276289484206316,39.28228708516593,39.28828468612555,39.29428228708517,39.300279888044784,39.3062774890044,39.31227508996401,39.31827269092363,39.324270291883245,39.33026789284286,39.33626549380248,39.342263094762096,39.34826069572171,39.35425829668133,39.36025589764095,39.36625349860056,39.372251099560174,39.37824870051979,39.38424630147941,39.390243902439025,39.39624150339864,39.40223910435826,39.408236705317876,39.414234306277486,39.4202319072371,39.42622950819672,39.43222710915634,39.43822471011595,39.44422231107557,39.45021991203519,39.456217512994805,39.46221511395442,39.46821271491403,39.47421031587365,39.480207916833265,39.48620551779288,39.4922031187525,39.498200719712116,39.50419832067173,39.51019592163135,39.51619352259096,39.52219112355058,39.528188724510194,39.53418632546981,39.54018392642943,39.546181527389045,39.55217912834866,39.55817672930828,39.564174330267896,39.570171931227506,39.57616953218712,39.58216713314674,39.58816473410636,39.594162335065974,39.60015993602559,39.60615753698521,39.612155137944825,39.618152738904435,39.62415033986405,39.63014794082367,39.636145541783286,39.6421431427429,39.64814074370252,39.65413834466214,39.660135945621754,39.66613354658137,39.67213114754098,39.6781287485006,39.684126349460215,39.69012395041983,39.69612155137945,39.702119152339066,39.70811675329868,39.7141143542583,39.72011195521791,39.726109556177526,39.73210715713714,39.73810475809676,39.74410235905638,39.750099960015994,39.75609756097561,39.76209516193523,39.768092762894845,39.774090363854455,39.78008796481407,39.78608556577369,39.792083166733306,39.79808076769292,39.80407836865254,39.81007596961216,39.816073570571774,39.822071171531384,39.828068772491,39.83406637345062,39.840063974410235,39.84606157536985,39.85205917632947,39.858056777289086,39.8640543782487,39.87005197920832,39.87604958016793,39.88204718112755,39.888044782087164,39.89404238304678,39.9000399840064,39.906037584966015,39.91203518592563,39.91803278688525,39.92403038784486,39.930027988804476,39.93602558976409,39.94202319072371,39.94802079168333,39.95401839264294,39.96001599360256,39.96601359456218,39.972011195521794,39.978008796481404,39.98400639744102,39.99000399840064,39.996001599360255,40.00199920031987,40.00799680127949,40.013994402239106,40.01999200319872,40.02598960415833,40.03198720511795,40.03798480607757,40.043982407037184,40.0499800079968,40.05597760895642,40.061975209916035,40.06797281087565,40.07397041183527,40.07996801279488,40.085965613754496,40.09196321471411,40.09796081567373,40.10395841663335,40.109956017592964,40.11595361855258,40.1219512195122,40.12794882047181,40.133946421431425,40.13994402239104,40.14594162335066,40.151939224310276,40.15793682526989,40.16393442622951,40.16993202718913,40.175929628148744,40.181927229108354,40.18792483006797,40.19392243102759,40.199920031987205,40.20591763294682,40.21191523390644,40.217912834866056,40.22391043582567,40.22990803678528,40.2359056377449,40.241903238704516,40.24790083966413,40.25389844062375,40.25989604158337,40.265893642542984,40.2718912435026,40.27788884446222,40.28388644542183,40.289884046381445,40.29588164734106,40.30187924830068,40.307876849260296,40.31387445021991,40.31987205117953,40.32586965213915,40.33186725309876,40.337864854058374,40.34386245501799,40.34986005597761,40.355857656937225,40.36185525789684,40.36785285885646,40.373850459816076,40.37984806077569,40.3858456617353,40.39184326269492,40.39784086365454,40.403838464614154,40.40983606557377,40.41583366653339,40.421831267493005,40.42782886845262,40.43382646941223,40.43982407037185,40.445821671331466,40.45181927229108,40.4578168732507,40.46381447421032,40.46981207516993,40.47580967612955,40.48180727708917,40.48780487804878,40.493802479008394,40.49980007996801,40.50579768092763,40.511795281887245,40.51779288284686,40.52379048380648,40.529788084766096,40.535785685725706,40.54178328668532,40.54778088764494,40.55377848860456,40.559776089564174,40.56577369052379,40.57177129148341,40.577768892443025,40.58376649340264,40.58976409436225,40.59576169532187,40.601759296281486,40.6077568972411,40.61375449820072,40.61975209916034,40.625749700119954,40.63174730107957,40.63774490203919,40.6437425029988,40.649740103958415,40.65573770491803,40.66173530587765,40.667732906837266,40.67373050779688,40.6797281087565,40.68572570971612,40.69172331067573,40.697720911635344,40.70371851259496,40.70971611355458,40.715713714514195,40.72171131547381,40.72770891643343,40.733706517393045,40.73970411835266,40.74570171931227,40.75169932027189,40.757696921231506,40.76369452219112,40.76969212315074,40.77568972411036,40.781687325069974,40.78768492602959,40.7936825269892,40.79968012794882,40.805677728908435,40.81167532986805,40.81767293082767,40.823670531787286,40.8296681327469,40.83566573370652,40.84166333466614,40.84766093562575,40.853658536585364,40.85965613754498,40.8656537385046,40.871651339464215,40.87764894042383,40.88364654138345,40.889644142343066,40.895641743302676,40.90163934426229,40.90763694522191,40.91363454618153,40.919632147141144,40.92562974810076,40.93162734906038,40.937624950019995,40.94362255097961,40.94962015193922,40.95561775289884,40.961615353858456,40.96761295481807,40.97361055577769,40.97960815673731,40.98560575769692,40.99160335865654,40.99760095961615,41.00359856057577,41.009596161535384,41.015593762495,41.02159136345462,41.027588964414235,41.03358656537385,41.03958416633347,41.045581767293086,41.051579368252696,41.05757696921231,41.06357457017193,41.06957217113155,41.075569772091164,41.08156737305078,41.0875649740104,41.093562574970015,41.099560175929625,41.10555777688924,41.11155537784886,41.117552978808476,41.12355057976809,41.12954818072771,41.13554578168733,41.141543382646944,41.14754098360656,41.15353858456617,41.15953618552579,41.165533786485405,41.17153138744502,41.17752898840464,41.183526589364256,41.18952419032387,41.19552179128349,41.2015193922431,41.20751699320272,41.21351459416233,41.21951219512195,41.22550979608157,41.231507397041185,41.2375049980008,41.24350259896042,41.249500199920035,41.255497800879645,41.26149540183926,41.26749300279888,41.273490603758496,41.27948820471811,41.28548580567773,41.29148340663735,41.297481007596964,41.303478608556574,41.30947620951619,41.31547381047581,41.321471411435425,41.32746901239504,41.33346661335466,41.339464214314276,41.34546181527389,41.35145941623351,41.35745701719312,41.36345461815274,41.369452219112354,41.37544982007197,41.38144742103159,41.387445021991205,41.39344262295082,41.39944022391044,41.40543782487005,41.411435425829666,41.41743302678928,41.4234306277489,41.42942822870852,41.435425829668134,41.44142343062775,41.44742103158737,41.453418632546985,41.459416233506595,41.46541383446621,41.47141143542583,41.477409036385446,41.48340663734506,41.48940423830468,41.4954018392643,41.50139944022391,41.50739704118352,41.51339464214314,41.51939224310276,41.525389844062374,41.53138744502199,41.53738504598161,41.543382646941225,41.54938024790084,41.55537784886046,41.56137544982007,41.567373050779686,41.5733706517393,41.57936825269892,41.58536585365854,41.591363454618154,41.59736105557777,41.60335865653739,41.609356257497,41.615353858456615,41.62135145941623,41.62734906037585,41.633346661335466,41.63934426229508,41.6453418632547,41.65133946421432,41.657337065173934,41.663334666133544,41.66933226709316,41.67532986805278,41.681327469012395,41.68732506997201,41.69332267093163,41.699320271891246,41.70531787285086,41.71131547381047,41.71731307477009,41.72331067572971,41.72930827668932,41.73530587764894,41.74130347860856,41.747301079568174,41.75329868052779,41.75929628148741,41.76529388244702,41.771291483406635,41.77728908436625,41.78328668532587,41.789284286285486,41.7952818872451,41.80127948820472,41.80727708916434,41.81327469012395,41.819272291083564,41.82526989204318,41.8312674930028,41.837265093962415,41.84326269492203,41.84926029588165,41.855257896841266,41.86125549780088,41.86725309876049,41.87325069972011,41.87924830067973,41.885245901639344,41.89124350259896,41.89724110355858,41.903238704518195,41.90923630547781,41.91523390643742,41.92123150739704,41.927229108356656,41.93322670931627,41.93922431027589,41.94522191123551,41.951219512195124,41.95721711315474,41.96321471411436,41.96921231507397,41.975209916033585,41.9812075169932,41.98720511795282,41.993202718912436,41.99920031987205,42.00519792083167,42.01119552179129,42.017193122750896,42.02319072371051,42.02918832467013,42.03518592562975,42.041183526589364,42.04718112754898,42.0531787285086,42.059176329468215,42.06517393042783,42.07117153138744,42.07716913234706,42.083166733306676,42.08916433426629,42.09516193522591,42.10115953618553,42.107157137145144,42.11315473810476,42.11915233906437,42.12514994002399,42.131147540983605,42.13714514194322,42.14314274290284,42.149140343862456,42.15513794482207,42.16113554578169,42.16713314674131,42.17313074770092,42.179128348660534,42.18512594962015,42.19112355057977,42.197121151539385,42.203118752499,42.20911635345862,42.215113954418236,42.221111555377846,42.22710915633746,42.23310675729708,42.2391043582567,42.24510195921631,42.25109956017593,42.25709716113555,42.263094762095164,42.26909236305478,42.27508996401439,42.28108756497401,42.287085165933625,42.29308276689324,42.29908036785286,42.305077968812476,42.31107556977209,42.31707317073171,42.32307077169132,42.32906837265094,42.335065973610554,42.34106357457017,42.34706117552979,42.353058776489405,42.35905637744902,42.36505397840864,42.371051579368256,42.377049180327866,42.38304678128748,42.3890443822471,42.39504198320672,42.401039584166334,42.40703718512595,42.41303478608557,42.419032387045185,42.425029988004795,42.43102758896441,42.43702518992403,42.443022790883646,42.44902039184326,42.45501799280288,42.4610155937625,42.467013194722114,42.47301079568173,42.47900839664134,42.48500599760096,42.491003598560575,42.49700119952019,42.50299880047981,42.508996401439425,42.51499400239904,42.52099160335866,42.52698920431827,42.532986805277886,42.5389844062375,42.54498200719712,42.55097960815674,42.556977209116354,42.56297481007597,42.56897241103559,42.574970011995205,42.580967612954815,42.58696521391443,42.59296281487405,42.598960415833666,42.60495801679328,42.6109556177529,42.61695321871252,42.622950819672134,42.628948420631744,42.63494602159136,42.64094362255098,42.646941223510595,42.65293882447021,42.65893642542983,42.664934026389446,42.67093162734906,42.67692922830868,42.68292682926829,42.68892443022791,42.694922031187524,42.70091963214714,42.70691723310676,42.712914834066375,42.71891243502599,42.72491003598561,42.73090763694522,42.736905237904836,42.74290283886445,42.74890043982407,42.75489804078369,42.7608956417433,42.76689324270292,42.77289084366254,42.778888444622154,42.784886045581764,42.79088364654138,42.796881247501,42.802878848460615,42.80887644942023,42.81487405037985,42.820871651339466,42.82686925229908,42.83286685325869,42.83886445421831,42.84486205517793,42.850859656137544,42.85685725709716,42.86285485805678,42.868852459016395,42.87485005997601,42.88084766093563,42.88684526189524,42.892842862854856,42.89884046381447,42.90483806477409,42.91083566573371,42.916833266693324,42.92283086765294,42.92882846861256,42.93482606957217,42.940823670531785,42.9468212714914,42.95281887245102,42.958816473410636,42.96481407437025,42.97081167532987,42.97680927628949,42.982806877249104,42.98880447820871,42.99480207916833,43.00079968012795,43.006797281087564,43.01279488204718,43.0187924830068,43.024790083966415,43.03078768492603,43.03678528588564,43.04278288684526,43.048780487804876,43.05477808876449,43.06077568972411,43.06677329068373,43.072770891643344,43.07876849260296,43.08476609356258,43.09076369452219,43.096761295481805,43.10275889644142,43.10875649740104,43.114754098360656,43.12075169932027,43.12674930027989,43.13274690123951,43.13874450219912,43.144742103158734,43.15073970411835,43.15673730507797,43.162734906037585,43.1687325069972,43.17473010795682,43.180727708916436,43.18672530987605,43.19272291083566,43.19872051179528,43.2047181127549,43.210715713714514,43.21671331467413,43.22271091563375,43.228708516593365,43.23470611755298,43.24070371851259,43.24670131947221,43.252698920431826,43.25869652139144,43.26469412235106,43.27069172331068,43.27668932427029,43.28268692522991,43.28868452618953,43.29468212714914,43.300679728108754,43.30667732906837,43.31267493002799,43.318672530987605,43.32467013194722,43.33066773290684,43.336665333866456,43.342662934826066,43.34866053578568,43.3546581367453,43.36065573770492,43.366653338664534,43.37265093962415,43.37864854058377,43.384646141543385,43.390643742503,43.39664134346261,43.40263894442223,43.408636545381846,43.41463414634146,43.42063174730108,43.4266293482607,43.432626949220314,43.43862455017993,43.44462215113954,43.45061975209916,43.456617353058775,43.46261495401839,43.46861255497801,43.474610155937626,43.48060775689724,43.48660535785686,43.49260295881648,43.49860055977609,43.5045981607357,43.51059576169532,43.51659336265494,43.522590963614554,43.52858856457417,43.53458616553379,43.540583766493405,43.546581367453015,43.55257896841263,43.55857656937225,43.564574170331866,43.57057177129148,43.5765693722511,43.58256697321072,43.588564574170334,43.59456217512995,43.60055977608956,43.60655737704918,43.612554978008795,43.61855257896841,43.62455017992803,43.630547780887646,43.63654538184726,43.64254298280688,43.64854058376649,43.65453818472611,43.660535785685724,43.66653338664534,43.67253098760496,43.678528588564575,43.68452618952419,43.69052379048381,43.696521391443426,43.702518992403036,43.70851659336265,43.71451419432227,43.72051179528189,43.726509396241504,43.73250699720112,43.73850459816074,43.744502199120355,43.750499800079965,43.75649740103958,43.7624950019992,43.768492602958815,43.77449020391843,43.78048780487805,43.78648540583767,43.79248300679728,43.7984806077569,43.80447820871651,43.81047580967613,43.816473410635744,43.82247101159536,43.82846861255498,43.834466213514595,43.84046381447421,43.84646141543383,43.85245901639344,43.858456617353056,43.86445421831267,43.87045181927229,43.87644942023191,43.882447021191524,43.88844462215114,43.89444222311076,43.900439824070375,43.906437425029985,43.9124350259896,43.91843262694922,43.924430227908836,43.93042782886845,43.93642542982807,43.94242303078769,43.948420631747304,43.954418232706914,43.96041583366653,43.96641343462615,43.972411035585765,43.97840863654538,43.984406237505,43.990403838464616,43.99640143942423,44.00239904038385,44.00839664134346,44.01439424230308,44.02039184326269,44.02638944422231,44.03238704518193,44.038384646141544,44.04438224710116,44.05037984806078,44.05637744902039,44.062375049980005,44.06837265093962,44.07437025189924,44.080367852858856,44.08636545381847,44.09236305477809,44.09836065573771,44.104358256697324,44.110355857656934,44.11635345861655,44.12235105957617,44.128348660535785,44.1343462614954,44.14034386245502,44.146341463414636,44.15233906437425,44.15833666533386,44.16433426629348,44.1703318672531,44.176329468212714,44.18232706917233,44.18832467013195,44.194322271091565,44.20031987205118,44.2063174730108,44.21231507397041,44.218312674930026,44.22431027588964,44.23030787684926,44.23630547780888,44.242303078768494,44.24830067972811,44.25429828068773,44.26029588164734,44.266293482606955,44.27229108356657,44.27828868452619,44.284286285485805,44.29028388644542,44.29628148740504,44.302279088364656,44.30827668932427,44.31427429028388,44.3202718912435,44.32626949220312,44.332267093162734,44.33826469412235,44.34426229508197,44.350259896041585,44.3562574970012,44.36225509796081,44.36825269892043,44.374250299880046,44.38024790083966,44.38624550179928,44.3922431027589,44.398240703718514,44.40423830467813,44.41023590563775,44.41623350659736,44.422231107556975,44.42822870851659,44.43422630947621,44.440223910435826,44.44622151139544,44.45221911235506,44.45821671331468,44.464214314274294,44.470211915233904,44.47620951619352,44.48220711715314,44.488204718112755,44.49420231907237,44.50019992003199,44.506197520991606,44.51219512195122,44.51819272291083,44.52419032387045,44.53018792483007,44.53618552578968,44.5421831267493,44.54818072770892,44.554178328668534,44.56017592962815,44.56617353058777,44.57217113154738,44.578168732506995,44.58416633346661,44.59016393442623,44.596161535385846,44.60215913634546,44.60815673730508,44.6141543382647,44.62015193922431,44.626149540183924,44.63214714114354,44.63814474210316,44.644142343062775,44.65013994402239,44.65613754498201,44.662135145941626,44.66813274690124,44.67413034786085,44.68012794882047,44.68612554978009,44.692123150739704,44.69812075169932,44.70411835265894,44.710115953618555,44.71611355457817,44.72211115553778,44.7281087564974,44.734106357457016,44.74010395841663,44.74610155937625,44.75209916033587,44.758096761295484,44.7640943622551,44.77009196321472,44.77608956417433,44.782087165133944,44.78808476609356,44.79408236705318,44.800079968012795,44.80607756897241,44.81207516993203,44.818072770891646,44.824070371851256,44.83006797281087,44.83606557377049,44.84206317473011,44.848060775689724,44.85405837664934,44.86005597760896,44.866053578568575,44.87205117952819,44.8780487804878,44.88404638144742,44.890043982407036,44.89604158336665,44.90203918432627,44.90803678528589,44.914034386245504,44.92003198720512,44.92602958816473,44.93202718912435,44.938024790083965,44.94402239104358,44.9500199920032,44.956017592962816,44.96201519392243,44.96801279488205,44.97401039584167,44.98000799680128,44.986005597760894,44.99200319872051,44.99800079968013,45.003998400639745,45.00999600159936,45.01599360255898,45.021991203518596,45.027988804478206,45.03398640543782,45.03998400639744,45.04598160735706,45.05197920831667,45.05797680927629,45.06397441023591,45.069972011195524,45.07596961215514,45.08196721311475,45.08796481407437,45.093962415033985,45.0999600159936,45.10595761695322,45.111955217912836,45.11795281887245,45.12395041983207,45.12994802079168,45.1359456217513,45.141943222710914,45.14794082367053,45.15393842463015,45.159936025589765,45.16593362654938,45.171931227509,45.177928828468616,45.183926429428226,45.18992403038784,45.19592163134746,45.20191923230708,45.207916833266694,45.21391443422631,45.21991203518593,45.225909636145545,45.231907237105155,45.23790483806477,45.24390243902439,45.249900039984006,45.25589764094362,45.26189524190324,45.26789284286286,45.273890443822474,45.27988804478209,45.2858856457417,45.29188324670132,45.297880847660934,45.30387844862055,45.30987604958017,45.315873650539785,45.3218712514994,45.32786885245902,45.33386645341863,45.339864054378246,45.34586165533786,45.35185925629748,45.3578568572571,45.363854458216714,45.36985205917633,45.37584966013595,45.381847261095565,45.387844862055175,45.39384246301479,45.39984006397441,45.405837664934026,45.41183526589364,45.41783286685326,45.42383046781288,45.429828068772494,45.435825669732104,45.44182327069172,45.44782087165134,45.453818472610955,45.45981607357057,45.46581367453019,45.471811275489806,45.47780887644942,45.48380647740904,45.48980407836865,45.49580167932827,45.501799280287884,45.5077968812475,45.51379448220712,45.519792083166735,45.52578968412635,45.53178728508597,45.53778488604558,45.543782487005195,45.54978008796481,45.55577768892443,45.56177528988405,45.56777289084366,45.57377049180328,45.5797680927629,45.585765693722514,45.591763294682124,45.59776089564174,45.60375849660136,45.609756097560975,45.61575369852059,45.62175129948021,45.627748900439826,45.63374650139944,45.63974410235905,45.64574170331867,45.65173930427829,45.657736905237904,45.66373450619752,45.66973210715714,45.675729708116755,45.68172730907637,45.68772491003599,45.6937225109956,45.699720111955216,45.70571771291483,45.71171531387445,45.71771291483407,45.723710515793684,45.7297081167533,45.73570571771292,45.74170331867253,45.747700919632145,45.75369852059176,45.75969612155138,45.765693722510996,45.77169132347061,45.77768892443023,45.78368652538985,45.789684126349464,45.79568172730907,45.80167932826869,45.80767692922831,45.813674530187924,45.81967213114754,45.82566973210716,45.831667333066775,45.83766493402639,45.843662534986,45.84966013594562,45.855657736905236,45.86165533786485,45.86765293882447,45.87365053978409,45.879648140743704,45.88564574170332,45.89164334266294,45.89764094362255,45.903638544582165,45.90963614554178,45.9156337465014,45.921631347461016,45.92762894842063,45.93362654938025,45.93962415033987,45.94562175129948,45.951619352259094,45.95761695321871,45.96361455417833,45.969612155137945,45.97560975609756,45.98160735705718,45.987604958016796,45.99360255897641,45.99960015993602,46.00559776089564,46.01159536185526,46.017592962814874,46.02359056377449,46.02958816473411,46.035585765693725,46.04158336665334,46.04758096761295,46.05357856857257,46.059576169532185,46.0655737704918,46.07157137145142,46.077568972411036,46.08356657337065,46.08956417433027,46.09556177528989,46.1015593762495,46.107556977209114,46.11355457816873,46.11955217912835,46.125549780087965,46.13154738104758,46.1375449820072,46.143542582966816,46.149540183926426,46.15553778488604,46.16153538584566,46.16753298680528,46.173530587764894,46.17952818872451,46.18552578968413,46.191523390643745,46.19752099160336,46.20351859256297,46.20951619352259,46.215513794482206,46.22151139544182,46.22750899640144,46.23350659736106,46.239504198320674,46.24550179928029,46.2514994002399,46.25749700119952,46.263494602159135,46.26949220311875,46.27548980407837,46.281487405037986,46.2874850059976,46.29348260695722,46.29948020791684,46.30547780887645,46.31147540983606,46.31747301079568,46.3234706117553,46.329468212714914,46.33546581367453,46.34146341463415,46.347461015593765,46.353458616553375,46.35945621751299,46.36545381847261,46.371451419432226,46.37744902039184,46.38344662135146,46.38944422231108,46.395441823270694,46.40143942423031,46.40743702518992,46.41343462614954,46.419432227109155,46.42542982806877,46.43142742902839,46.437425029988006,46.44342263094762,46.44942023190724,46.45541783286685,46.46141543382647,46.467413034786084,46.4734106357457,46.47940823670532,46.485405837664935,46.49140343862455,46.49740103958417,46.503398640543786,46.509396241503396,46.51539384246301,46.52139144342263,46.52738904438225,46.533386645341864,46.53938424630148,46.5453818472611,46.551379448220715,46.557377049180324,46.56337465013994,46.56937225109956,46.575369852059175,46.58136745301879,46.58736505397841,46.593362654938026,46.59936025589764,46.60535785685726,46.61135545781687,46.61735305877649,46.623350659736104,46.62934826069572,46.63534586165534,46.641343462614955,46.64734106357457,46.65333866453419,46.6593362654938,46.665333866453416,46.67133146741303,46.67732906837265,46.68332666933227,46.689324270291884,46.6953218712515,46.70131947221112,46.707317073170735,46.713314674130345,46.71931227508996,46.72530987604958,46.731307477009196,46.73730507796881,46.74330267892843,46.74930027988805,46.755297880847664,46.761295481807274,46.76729308276689,46.77329068372651,46.779288284686125,46.78528588564574,46.79128348660536,46.797281087564976,46.80327868852459,46.80927628948421,46.81527389044382,46.82127149140344,46.82726909236305,46.83326669332267,46.83926429428229,46.845261895241904,46.85125949620152,46.85725709716114,46.86325469812075,46.869252299080365,46.87524990003998,46.8812475009996,46.887245101959216,46.89324270291883,46.89924030387845,46.90523790483807,46.911235505797684,46.917233106757294,46.92323070771691,46.92922830867653,46.935225909636145,46.94122351059576,46.94722111155538,46.953218712514996,46.95921631347461,46.96521391443422,46.97121151539384,46.97720911635346,46.983206717313074,46.98920431827269,46.99520191923231,47.001199520191925,47.00719712115154,47.01319472211116,47.01919232307077,47.025189924030386,47.03118752499,47.03718512594962,47.04318272690924,47.049180327868854,47.05517792882847,47.06117552978809,47.0671731307477,47.073170731707314,47.07916833266693,47.08516593362655,47.091163534586165,47.09716113554578,47.1031587365054,47.109156337465016,47.11515393842463,47.12115153938424,47.12714914034386,47.13314674130348,47.139144342263094,47.14514194322271,47.15113954418233,47.157137145141945,47.16313474610156,47.16913234706117,47.17512994802079,47.181127548980406,47.18712514994002,47.19312275089964,47.19912035185926,47.205117952818874,47.21111555377849,47.21711315473811,47.22311075569772,47.229108356657335,47.23510595761695,47.24110355857657,47.247101159536186,47.2530987604958,47.25909636145542,47.26509396241504,47.27109156337465,47.277089164334264,47.28308676529388,47.2890843662535,47.295081967213115,47.30107956817273,47.30707716913235,47.313074770091966,47.31907237105158,47.32506997201119,47.33106757297081,47.33706517393043,47.34306277489004,47.34906037584966,47.35505797680928,47.361055577768894,47.36705317872851,47.37305077968812,47.37904838064774,47.385045981607355,47.39104358256697,47.39704118352659,47.403038784486206,47.40903638544582,47.41503398640544,47.42103158736506,47.42702918832467,47.433026789284284,47.4390243902439,47.44502199120352,47.451019592163135,47.45701719312275,47.46301479408237,47.469012395041986,47.475009996001596,47.48100759696121,47.48700519792083,47.49300279888045,47.499000399840064,47.50499800079968,47.5109956017593,47.516993202718915,47.52299080367853,47.52898840463814,47.53498600559776,47.540983606557376,47.54698120751699,47.55297880847661,47.55897640943623,47.564974010395844,47.57097161135546,47.57696921231507,47.58296681327469,47.588964414234304,47.59496201519392,47.60095961615354,47.606957217113155,47.61295481807277,47.61895241903239,47.624950019992006,47.630947620951616,47.63694522191123,47.64294282287085,47.64894042383047,47.654938024790084,47.6609356257497,47.66693322670932,47.672930827668935,47.678928428628545,47.68492602958816,47.69092363054778,47.696921231507396,47.70291883246701,47.70891643342663,47.71491403438625,47.720911635345864,47.72690923630548,47.73290683726509,47.73890443822471,47.744902039184325,47.75089964014394,47.75689724110356,47.762894842063176,47.76889244302279,47.77489004398241,47.78088764494202,47.78688524590164,47.792882846861254,47.79888044782087,47.80487804878049,47.810875649740105,47.81687325069972,47.82287085165934,47.828868452618956,47.834866053578565,47.84086365453818,47.8468612554978,47.852858856457416,47.85885645741703,47.86485405837665,47.87085165933627,47.876849260295884,47.882846861255494,47.88884446221511,47.89484206317473,47.900839664134345,47.90683726509396,47.91283486605358,47.918832467013196,47.92483006797281,47.93082766893243,47.93682526989204,47.94282287085166,47.948820471811274,47.95481807277089,47.96081567373051,47.966813274690125,47.97281087564974,47.97880847660936,47.98480607756897,47.990803678528586,47.9968012794882,48.00279888044782,48.00879648140744,48.014794082367054,48.02079168332667,48.02678928428629,48.032786885245905,48.038784486205515,48.04478208716513,48.05077968812475,48.056777289084366,48.06277489004398,48.0687724910036,48.07477009196322,48.080767692922834,48.08676529388244,48.09276289484206,48.09876049580168,48.104758096761294,48.11075569772091,48.11675329868053,48.122750899640145,48.12874850059976,48.13474610155938,48.14074370251899,48.146741303478606,48.15273890443822,48.15873650539784,48.16473410635746,48.170731707317074,48.17672930827669,48.18272690923631,48.188724510195925,48.194722111155535,48.20071971211515,48.20671731307477,48.212714914034386,48.218712514994,48.22471011595362,48.23070771691324,48.236705317872854,48.242702918832464,48.24870051979208,48.2546981207517,48.260695721711315,48.26669332267093,48.27269092363055,48.278688524590166,48.28468612554978,48.2906837265094,48.29668132746901,48.30267892842863,48.308676529388244,48.31467413034786,48.32067173130748,48.326669332267095,48.33266693322671,48.33866453418633,48.34466213514594,48.350659736105555,48.35665733706517,48.36265493802479,48.368652538984406,48.37465013994402,48.38064774090364,48.38664534186326,48.392642942822874,48.398640543782484,48.4046381447421,48.41063574570172,48.416633346661335,48.42263094762095,48.42862854858057,48.434626149540186,48.4406237504998,48.44662135145941,48.45261895241903,48.45861655337865,48.464614154338264,48.47061175529788,48.4766093562575,48.482606957217115,48.48860455817673,48.49460215913635,48.50059976009596,48.506597361055576,48.51259496201519,48.51859256297481,48.52459016393443,48.530587764894044,48.53658536585366,48.54258296681328,48.54858056777289,48.554578168732505,48.56057576969212,48.56657337065174,48.572570971611356,48.57856857257097,48.58456617353059,48.59056377449021,48.596561375449824,48.60255897640943,48.60855657736905,48.61455417832867,48.620551779288284,48.6265493802479,48.63254698120752,48.638544582167135,48.64454218312675,48.65053978408636,48.65653738504598,48.662534986005596,48.66853258696521,48.67453018792483,48.68052778888445,48.686525389844064,48.69252299080368,48.6985205917633,48.70451819272291,48.710515793682525,48.71651339464214,48.72251099560176,48.728508596561376,48.73450619752099,48.74050379848061,48.74650139944023,48.75249900039984,48.758496601359454,48.76449420231907,48.77049180327869,48.776489404238305,48.78248700519792,48.78848460615754,48.794482207117156,48.80047980807677,48.80647740903638,48.812475009996,48.81847261095562,48.824470211915234,48.83046781287485,48.83646541383447,48.842463014794085,48.8484606157537,48.85445821671331,48.86045581767293,48.866453418632545,48.87245101959216,48.87844862055178,48.884446221511396,48.89044382247101,48.89644142343063,48.90243902439025,48.90843662534986,48.914434226309474,48.92043182726909,48.92642942822871,48.932427029188325,48.93842463014794,48.94442223110756,48.950419832067176,48.956417433026786,48.9624150339864,48.96841263494602,48.97441023590564,48.980407836865254,48.98640543782487,48.99240303878449,48.998400639744105,49.00439824070372,49.01039584166333,49.01639344262295,49.022391043582566,49.02838864454218,49.0343862455018,49.04038384646142,49.046381447421034,49.05237904838065,49.05837664934026,49.06437425029988,49.070371851259495,49.07636945221911,49.08236705317873,49.088364654138346,49.09436225509796,49.10035985605758,49.1063574570172,49.11235505797681,49.11835265893642,49.12435025989604,49.13034786085566,49.136345461815274,49.14234306277489,49.14834066373451,49.154338264694125,49.160335865653735,49.16633346661335,49.17233106757297,49.178328668532586,49.1843262694922,49.19032387045182,49.19632147141144,49.202319072371054,49.20831667333067,49.21431427429028,49.2203118752499,49.226309476209515,49.23230707716913,49.23830467812875,49.244302279088366,49.25029988004798,49.2562974810076,49.26229508196721,49.26829268292683,49.274290283886444,49.28028788484606,49.28628548580568,49.292283086765295,49.29828068772491,49.30427828868453,49.310275889644146,49.316273490603756,49.32227109156337,49.32826869252299,49.33426629348261,49.340263894442224,49.34626149540184,49.35225909636146,49.358256697321075,49.364254298280684,49.3702518992403,49.37624950019992,49.382247101159535,49.38824470211915,49.39424230307877,49.400239904038386,49.406237504998,49.41223510595762,49.41823270691723,49.42423030787685,49.430227908836464,49.43622550979608,49.4422231107557,49.448220711715315,49.45421831267493,49.46021591363455,49.46621351459416,49.472211115553776,49.47820871651339,49.48420631747301,49.49020391843263,49.496201519392244,49.50219912035186,49.50819672131148,49.514194322271095,49.520191923230705,49.52618952419032,49.53218712514994,49.538184726109556,49.54418232706917,49.55017992802879,49.55617752898841,49.562175129948024,49.568172730907634,49.57417033186725,49.58016793282687,49.586165533786485,49.5921631347461,49.59816073570572,49.604158336665336,49.61015593762495,49.61615353858457,49.62215113954418,49.628148740503796,49.63414634146341,49.64014394242303,49.64614154338265,49.652139144342264,49.65813674530188,49.6641343462615,49.67013194722111,49.676129548180725,49.68212714914034,49.68812475009996,49.694122351059576,49.70011995201919,49.70611755297881,49.71211515393843,49.718112754898044,49.724110355857654,49.73010795681727,49.73610555777689,49.742103158736505,49.74810075969612,49.75409836065574,49.760095961615356,49.76609356257497,49.77209116353458,49.7780887644942,49.78408636545382,49.790083966413434,49.79608156737305,49.80207916833267,49.808076769292285,49.8140743702519,49.82007197121152,49.82606957217113,49.832067173130746,49.83806477409036,49.84406237504998,49.8500599760096,49.856057576969214,49.86205517792883,49.86805277888845,49.87405037984806,49.880047980807674,49.88604558176729,49.89204318272691,49.898040783686525,49.90403838464614,49.91003598560576,49.916033586565376,49.92203118752499,49.9280287884846,49.93402638944422,49.94002399040384,49.946021591363454,49.95201919232307,49.95801679328269,49.964014394242305,49.97001199520192,49.97600959616153,49.98200719712115,49.988004798080766,49.99400239904038,50.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/medium_positive.json b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/medium_positive.json new file mode 100644 index 00000000000..529728140f9 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/medium_positive.json @@ -0,0 +1 @@ +{"expected":[3.0699801,3.0717187,3.073456,3.0751927,3.0769281,3.0786626,3.0803962,3.0821288,3.0838604,3.085591,3.0873208,3.0890493,3.0907772,3.092504,3.0942297,3.0959547,3.0976784,3.0994015,3.1011233,3.1028445,3.1045644,3.1062837,3.1080017,3.109719,3.1114352,3.1131506,3.114865,3.1165783,3.118291,3.1200025,3.121713,3.1234226,3.1251314,3.1268392,3.1285462,3.1302521,3.131957,3.1336613,3.1353643,3.1370666,3.138768,3.1404684,3.1421678,3.1438663,3.1455638,3.1472607,3.1489565,3.1506512,3.1523452,3.1540384,3.1557305,3.1574218,3.1591122,3.1608016,3.1624901,3.1641777,3.1658645,3.1675503,3.1692352,3.1709194,3.1726024,3.1742847,3.175966,3.1776466,3.1793263,3.181005,3.1826828,3.1843598,3.1860356,3.187711,3.1893852,3.1910586,3.1927311,3.194403,3.1960735,3.1977437,3.1994126,3.2010808,3.202748,3.2044146,3.2060802,3.2077448,3.2094085,3.2110717,3.2127337,3.214395,3.2160554,3.217715,3.2193737,3.2210314,3.2226884,3.2243445,3.2259998,3.2276542,3.229308,3.2309606,3.2326126,3.2342637,3.2359138,3.2375631,3.2392118,3.2408593,3.2425063,3.2441523,3.2457974,3.2474418,3.2490852,3.250728,3.2523699,3.254011,3.255651,3.2572904,3.258929,3.2605667,3.2622037,3.2638397,3.265475,3.2671094,3.268743,3.2703757,3.272008,3.273639,3.2752693,3.2768989,3.2785277,3.2801557,3.2817829,3.283409,3.2850347,3.2866592,3.2882833,3.2899063,3.2915287,3.2931502,3.294771,3.2963908,3.2980099,3.2996283,3.3012457,3.3028626,3.3044784,3.3060937,3.307708,3.3093216,3.3109343,3.3125465,3.3141577,3.315768,3.3173778,3.3189867,3.3205948,3.3222022,3.3238087,3.3254144,3.3270195,3.3286235,3.3302271,3.3318298,3.3334317,3.3350327,3.3366332,3.3382328,3.3398316,3.3414297,3.343027,3.3446236,3.3462193,3.3478143,3.3494086,3.3510022,3.3525949,3.3541868,3.3557782,3.3573687,3.3589582,3.3605473,3.3621356,3.363723,3.3653097,3.3668957,3.368481,3.3700655,3.3716493,3.3732321,3.3748145,3.376396,3.3779767,3.3795567,3.3811362,3.3827145,3.3842924,3.3858695,3.387446,3.3890214,3.3905964,3.3921707,3.393744,3.3953166,3.3968887,3.39846,3.4000304,3.4016001,3.4031692,3.4047377,3.4063053,3.4078722,3.4094384,3.4110038,3.4125686,3.4141326,3.415696,3.4172585,3.4188204,3.4203815,3.421942,3.4235017,3.4250607,3.426619,3.4281766,3.4297335,3.43129,3.4328454,3.4344,3.435954,3.4375076,3.4390602,3.4406123,3.4421635,3.4437141,3.445264,3.446813,3.4483616,3.4499094,3.4514565,3.453003,3.4545488,3.4560938,3.457638,3.4591818,3.4607246,3.462267,3.4638085,3.4653494,3.4668896,3.468429,3.469968,3.471506,3.4730437,3.4745805,3.4761167,3.477652,3.4791868,3.480721,3.4822543,3.483787,3.4853191,3.4868505,3.4883814,3.4899113,3.4914408,3.4929695,3.4944975,3.4960248,3.4975514,3.4990776,3.500603,3.5021276,3.5036516,3.505175,3.506698,3.50822,3.5097413,3.511262,3.512782,3.5143015,3.5158203,3.5173385,3.5188558,3.5203726,3.521889,3.5234044,3.5249193,3.5264335,3.527947,3.52946,3.530972,3.5324838,3.5339947,3.535505,3.5370147,3.5385237,3.5400321,3.5415397,3.543047,3.5445533,3.5460591,3.5475643,3.549069,3.5505729,3.552076,3.5535786,3.5550807,3.556582,3.5580828,3.5595827,3.5610824,3.562581,3.5640793,3.5655768,3.5670738,3.5685701,3.5700657,3.5715609,3.5730553,3.5745492,3.5760422,3.577535,3.5790267,3.580518,3.5820088,3.583499,3.5849884,3.586477,3.5879655,3.589453,3.59094,3.5924263,3.5939121,3.5953972,3.5968819,3.5983658,3.599849,3.6013317,3.6028137,3.6042953,3.605776,3.6072564,3.608736,3.610215,3.6116934,3.6131713,3.6146486,3.616125,3.6176012,3.6190767,3.6205513,3.6220257,3.6234992,3.6249723,3.6264448,3.6279166,3.6293879,3.6308584,3.6323285,3.633798,3.6352668,3.636735,3.6382027,3.6396697,3.6411362,3.642602,3.6440673,3.6455321,3.6469963,3.6484597,3.6499226,3.651385,3.6528468,3.654308,3.6557686,3.6572287,3.658688,3.660147,3.6616051,3.6630628,3.66452,3.6659765,3.6674325,3.6688879,3.6703427,3.671797,3.6732507,3.6747036,3.6761563,3.677608,3.6790595,3.6805103,3.6819603,3.6834102,3.6848593,3.6863077,3.6877556,3.689203,3.6906497,3.692096,3.6935418,3.6949868,3.6964312,3.6978753,3.6993186,3.7007616,3.7022038,3.7036455,3.7050867,3.7065272,3.7079673,3.7094069,3.7108457,3.712284,3.7137218,3.7151592,3.716596,3.718032,3.7194674,3.7209024,3.722337,3.7237709,3.7252042,3.7266371,3.7280693,3.729501,3.7309322,3.732363,3.733793,3.7352226,3.7366514,3.7380798,3.7395077,3.740935,3.742362,3.7437882,3.745214,3.746639,3.7480638,3.7494879,3.7509112,3.7523344,3.7537568,3.7551787,3.7566001,3.7580209,3.7594411,3.760861,3.7622802,3.763699,3.7651172,3.7665348,3.767952,3.7693684,3.7707844,3.7722,3.773615,3.7750294,3.7764432,3.7778568,3.7792697,3.7806818,3.7820938,3.783505,3.7849157,3.786326,3.7877357,3.7891448,3.7905536,3.7919617,3.7933693,3.7947762,3.7961829,3.7975888,3.7989943,3.8003993,3.8018038,3.8032079,3.8046112,3.8060143,3.8074167,3.8088186,3.81022,3.8116207,3.8130212,3.814421,3.8158202,3.817219,3.8186173,3.8200152,3.8214123,3.8228092,3.8242054,3.825601,3.8269963,3.828391,3.8297853,3.8311791,3.8325722,3.8339648,3.8353572,3.8367488,3.83814,3.8395307,3.840921,3.8423104,3.8436997,3.8450882,3.8464766,3.8478642,3.8492513,3.850638,3.852024,3.8534098,3.854795,3.8561797,3.8575637,3.8589475,3.8603306,3.8617134,3.8630955,3.8644772,3.8658586,3.8672392,3.8686194,3.8699992,3.8713784,3.872757,3.8741353,3.875513,3.8768904,3.878267,3.8796434,3.881019,3.8823946,3.8837693,3.8851438,3.8865175,3.8878908,3.8892639,3.8906362,3.892008,3.8933794,3.8947506,3.896121,3.897491,3.8988605,3.9002295,3.901598,3.902966,3.9043336,3.9057007,3.9070675,3.9084337,3.9097993,3.9111645,3.9125292,3.9138935,3.9152572,3.9166205,3.9179833,3.9193456,3.9207075,3.9220688,3.9234297,3.9247904,3.9261503,3.9275098,3.9288688,3.9302273,3.9315856,3.932943,3.9343002,3.935657,3.9370131,3.938369,3.9397242,3.9410791,3.9424334,3.9437873,3.9451408,3.9464939,3.9478462,3.9491982,3.9505498,3.951901,3.9532516,3.9546018,3.9559517,3.957301,3.9586496,3.9599981,3.961346,3.9626935,3.9640403,3.9653869,3.966733,3.9680786,3.9694238,3.9707685,3.9721127,3.9734564,3.9747996,3.9761426,3.977485,3.978827,3.9801686,3.9815097,3.9828503,3.9841905,3.9855301,3.9868693,3.9882083,3.9895465,3.9908845,3.9922218,3.993559,3.9948955,3.9962316,3.9975674,3.9989026,4.0002375,4.0015717,4.0029054,4.004239,4.005572,4.0069046,4.008237,4.009568,4.0108995,4.0122304,4.013561,4.0148907,4.01622,4.017549,4.018878,4.020206,4.0215335,4.022861,4.0241876,4.025514,4.02684,4.028166,4.029491,4.0308156,4.03214,4.0334635,4.0347867,4.03611,4.037432,4.0387545,4.040076,4.041397,4.042718,4.0440383,4.045358,4.0466776,4.0479965,4.049315,4.0506334,4.051951,4.0532684,4.0545855,4.0559015,4.0572176,4.058533,4.059849,4.0611634,4.0624776,4.0637918,4.065105,4.066418,4.067731,4.0690427,4.070355,4.0716662,4.072977,4.0742874,4.075598,4.076907,4.0782166,4.0795255,4.080834,4.082142,4.0834494,4.0847564,4.0860634,4.0873694,4.0886755,4.089981,4.091286,4.092591,4.093895,4.0951986,4.0965023,4.097805,4.0991077,4.10041,4.1017118,4.103013,4.104314,4.1056147,4.1069145,4.1082144,4.1095138,4.1108127,4.112111,4.113409,4.1147065,4.116004,4.1173005,4.118597,4.119893,4.1211886,4.1224837,4.123779,4.125073,4.126367,4.1276608,4.128954,4.1302466,4.131539,4.1328306,4.1341224,4.1354136,4.1367044,4.137995,4.1392846,4.140574,4.1418633,4.1431518,4.14444,4.145728,4.1470156,4.1483026,4.1495895,4.150876,4.1521616,4.153447,4.154732,4.1560173,4.1573014,4.1585855,4.159869,4.1611524,4.162435,4.1637173,4.1649995,4.1662807,4.167562,4.168843,4.170123,4.1714034,4.172683,4.173962,4.175241,4.1765194,4.1777973,4.179075,4.180352,4.181629,4.1829057,4.1841817,4.185457,4.186733,4.1880074,4.189282,4.190556,4.19183,4.1931033,4.1943765,4.195649,4.1969213,4.198193,4.1994643,4.2007356,4.2020063,4.2032766,4.2045465,4.205816,4.207085,4.208354,4.2096224,4.2108903,4.2121577,4.213425,4.2146916,4.215958,4.2172246,4.21849,4.2197556,4.22102,4.222285,4.2235494,4.224813,4.2260766,4.2273393,4.228602,4.2298646,4.2311263,4.232388,4.2336493,4.23491,4.2361703,4.2374306,4.23869,4.239949,4.241208,4.242467,4.243725,4.2449827,4.24624,4.247497,4.248754,4.2500105,4.2512665,4.252522,4.253777,4.255032,4.256286,4.25754,4.2587943,4.2600474,4.2613006,4.262553,4.2638054,4.265057,4.266309,4.26756,4.2688107,4.270061,4.2713113,4.272561,4.2738104,4.275059,4.2763076,4.277556,4.278804,4.280051,4.2812986,4.282545,4.2837915,4.2850375,4.2862835,4.2875285,4.2887735,4.290018,4.2912626,4.292506,4.29375,4.294993,4.2962356,4.297478,4.2987204,4.299962,4.3012033,4.3024445,4.303685,4.3049254,4.306165,4.307405,4.308644,4.309883,4.3111215,4.3123593,4.313597,4.3148346,4.316072,4.3173084,4.318545,4.319781,4.321017,4.322252,4.323487,4.3247213,4.325956,4.3271894,4.328423,4.3296566,4.330889,4.332122,4.333354,4.3345857,4.3358173,4.337048,4.3382792,4.3395095,4.3407393,4.341969,4.3431983,4.3444276,4.3456564,4.3468847,4.3481126,4.34934,4.3505673,4.3517942,4.3530207,4.354247,4.355473,4.3566985,4.3579235,4.3591485,4.360373,4.361597,4.362821,4.3640447,4.3652678,4.3664904,4.367713,4.368935,4.370157,4.3713784,4.372599,4.3738203,4.3750405,4.3762608,4.37748,4.3787,4.3799186,4.3811374,4.3823557,4.383574,4.3847914,4.3860087,4.3872256,4.3884425,4.389659,4.390875,4.3920903,4.393306,4.3945208,4.3957353,4.39695,4.398164,4.3993773,4.400591,4.401804,4.4030166,4.4042287,4.405441,4.4066525,4.4078636,4.409075,4.4102855,4.4114957,4.4127054,4.413915,4.4151244,4.4163337,4.417542,4.418751,4.4199586,4.4211664,4.422374,4.4235806,4.424787,4.4259934,4.4272,4.4284053,4.4296107,4.4308157,4.43202,4.4332247,4.4344287,4.4356327,4.436836,4.438039,4.439242,4.440444,4.441646,4.442848,4.4440494,4.4452505,4.4464517,4.447652,4.448852,4.450052,4.4512515,4.4524508,4.4536495,4.454848,4.456046,4.457244,4.4584417,4.459639,4.460836,4.4620323,4.4632287,4.4644246,4.4656205,4.4668155,4.4680104,4.4692054,4.4704,4.471594,4.4727874,4.473981,4.475174,4.4763665,4.477559,4.478751,4.4799433,4.481135,4.482326,4.4835167,4.4847074,4.4858975,4.4870872,4.488277,4.489466,4.4906554,4.491844,4.4930325,4.4942203,4.495408,4.4965954,4.4977827,4.4989696,4.500156,4.501342,4.5025277,4.503713,4.5048985,4.5060835,4.507268,4.5084524,4.5096364,4.51082,4.5120034,4.5131865,4.514369,4.5155516,4.5167336,4.5179152,4.519097,4.520278,4.521459,4.5226393,4.52382,4.5249996,4.5261793,4.5273585,4.5285378,4.5297165,4.5308948,4.532073,4.533251,4.534428,4.5356054,4.5367823,4.537959,4.539135,4.5403113,4.5414867,4.542662,4.543837,4.545012,4.5461864,4.5473604,4.5485344,4.549708,4.5508814,4.552054,4.553227,4.554399,4.555571,4.5567427,4.5579143,4.5590854,4.560256,4.5614266,4.562597,4.563767,4.5649366,4.566106,4.567275,4.568444,4.569612,4.5707803,4.571948,4.5731153,4.5742826,4.5754495,4.5766163,4.5777826,4.5789485,4.5801144,4.5812798,4.582445,4.58361,4.5847745,4.5859385,4.587103,4.5882664,4.58943,4.590593,4.5917554,4.592918,4.5940804,4.595242,4.5964036,4.597565,4.5987263,4.599887,4.6010475,4.6022077,4.6033673,4.604527,4.605686,4.6068454,4.6080036,4.6091623,4.6103206,4.6114783,4.6126356,4.613793,4.6149497,4.6161065,4.617263,4.618419,4.6195745,4.6207304,4.6218853,4.62304,4.624195,4.6253495,4.6265035,4.627657,4.628811,4.629964,4.631117,4.6322694,4.633422,4.634574,4.6357255,4.636877,4.638028,4.639179,4.64033,4.64148,4.64263,4.6437798,4.6449294,4.6460786,4.6472273,4.648376,4.649524,4.6506724,4.65182,4.6529675,4.6541147,4.655262,4.6564083,4.6575546,4.658701,4.659847,4.660992,4.6621375,4.6632824,4.664427,4.665571,4.6667156,4.6678596,4.669003,4.670146,4.671289,4.672432,4.6735744,4.6747165,4.6758585,4.677,4.678141,4.679282,4.680423,4.6815634,4.6827035,4.6838436,4.6849833,4.6861224,4.6872616,4.6884007,4.689539,4.690677,4.6918154,4.692953,4.6940904,4.6952276,4.6963644,4.697501,4.6986375,4.6997733,4.700909,4.702045,4.70318,4.704315,4.7054496,4.706584,4.7077184,4.7088523,4.7099857,4.711119,4.712252,4.7133846,4.714517,4.7156496,4.7167816,4.717913,4.7190447,4.7201757,4.721307,4.7224374,4.7235675,4.7246976,4.7258277,4.726957,4.7280865,4.729215,4.730344,4.7314725,4.7326007,4.7337284,4.734856,4.7359834,4.7371106,4.7382374,4.739364,4.7404904,4.7416162,4.742742,4.7438674,4.7449927,4.7461176,4.7472425,4.748367,4.749491,4.750615,4.7517385,4.752862,4.753985,4.755108,4.7562304,4.757353,4.758475,4.7595963,4.760718,4.7618394,4.7629604,4.764081,4.7652016,4.7663217,4.7674417,4.7685614,4.7696805,4.7707996,4.771919,4.7730374,4.7741556,4.775274,4.7763915,4.777509,4.7786264,4.7797437,4.7808604,4.7819767,4.783093,4.7842093,4.785325,4.7864404,4.7875557,4.7886705,4.7897854,4.7908998,4.7920136,4.793128,4.7942414,4.795355,4.796468,4.7975807,4.7986937,4.799806,4.800918,4.80203,4.8031416,4.8042526,4.805364,4.8064747,4.8075852,4.808696,4.809806,4.8109155,4.812025,4.813134,4.8142433,4.815352,4.8164606,4.817569,4.818677,4.8197846,4.8208923,4.8219995,4.823107,4.8242135,4.82532,4.826426,4.827532,4.8286376,4.8297434,4.8308487,4.8319535,4.8330584,4.8341627,4.835267,4.836371,4.8374743,4.8385777,4.839681,4.840784,4.841887,4.8429894,4.8440914,4.8451934,4.8462954,4.847397,4.848498,4.849599,4.8506994,4.8518,4.8529,4.854,4.8550997,4.8561993,4.8572984,4.8583975,4.859496,4.8605947,4.861693,4.8627906,4.8638883,4.864986,4.866083,4.8671803,4.868277,4.8693733,4.8704696,4.8715653,4.872661,4.873757,4.874852,4.875947,4.877042,4.878136,4.8792305,4.880325,4.881418,4.882512,4.883605,4.8846984,4.885791,4.8868837,4.8879757,4.889068,4.8901596,4.8912516,4.8923426,4.8934336,4.8945246,4.895615,4.8967056,4.8977957,4.8988857,4.8999753,4.9010644,4.9021535,4.9032426,4.904331,4.90542,4.906508,4.9075956,4.9086833,4.909771,4.910858,4.9119453,4.913032,4.9141183,4.9152045,4.9162908,4.9173765,4.918462,4.919547,4.9206324,4.921717,4.922802,4.9238863,4.92497,4.926054,4.927138,4.928221,4.929304,4.930387,4.93147,4.9325523,4.9336343,4.934716,4.935798,4.9368796,4.9379606,4.9390416,4.9401226,4.941203,4.9422836,4.9433637,4.944443,4.945523,4.9466023,4.9476814,4.9487605,4.949839,4.9509172,4.9519954,4.9530735,4.954151,4.955229,4.956306,4.957383,4.95846,4.959536,4.960613,4.9616885,4.9627643,4.96384,4.9649153,4.9659905,4.9670653,4.96814,4.9692144,4.9702888,4.971363,4.9724364,4.9735103,4.974583,4.9756565,4.9767294,4.977802,4.978874,4.979946,4.981018,4.98209,4.9831614,4.9842324,4.9853034,4.9863744,4.987445,4.988515,4.989585,4.990655,4.9917245,4.992794,4.993863,4.994932,4.996001,4.9970694,4.9981375,4.9992056,5.000273,5.001341,5.002408,5.003475,5.004542,5.0056086,5.006675,5.007741,5.008807,5.009873,5.010938,5.0120034,5.0130687,5.0141335,5.015198,5.0162625,5.0173264,5.0183907,5.019454,5.020518,5.0215807,5.022644,5.0237064,5.0247693,5.0258317,5.0268936,5.0279555,5.0290174,5.030079,5.03114,5.032201,5.033262,5.0343223,5.0353827,5.0364428,5.0375023,5.0385623,5.0396214,5.040681,5.04174,5.0427985,5.043857,5.044915,5.0459733,5.0470314,5.048089,5.0491467,5.050204,5.0512605,5.0523176,5.053374,5.0544305,5.055486,5.0565424,5.057598,5.0586534,5.0597086,5.060764,5.0618186,5.062873,5.063927,5.0649815,5.0660353,5.067089,5.0681424,5.0691957,5.0702486,5.0713015,5.0723543,5.0734067,5.0744586,5.0755105,5.0765624,5.077614,5.0786653,5.079716,5.080767,5.0818176,5.082868,5.0839186,5.084968,5.086018,5.0870676,5.088117,5.089166,5.090215,5.091264,5.0923123,5.0933604,5.0944085,5.095456,5.0965037,5.0975513,5.0985985,5.099645,5.1006923,5.1017385,5.102785,5.1038313,5.104877,5.1059227,5.106968,5.108013,5.1090584,5.110103,5.111148,5.112192,5.1132364,5.11428,5.115324,5.1163673,5.1174107,5.118454,5.119497,5.1205397,5.121582,5.1226244,5.1236663,5.124708,5.12575,5.1267915,5.1278324,5.1288733,5.1299143,5.1309547,5.131995,5.133035,5.134075,5.135115,5.1361547,5.1371937,5.1382327,5.1392717,5.1403103,5.141349,5.1423874,5.143425,5.144463,5.1455007,5.1465383,5.1475754,5.1486125,5.149649,5.150686,5.151722,5.152758,5.1537943,5.15483,5.1558657,5.156901,5.157936,5.158971,5.1600056,5.16104,5.1620746,5.1631083,5.164142,5.165176,5.166209,5.1672425,5.168276,5.1693087,5.170341,5.171374,5.1724057,5.173438,5.17447,5.1755013,5.1765327,5.177564,5.178595,5.179626,5.1806564,5.181687,5.182717,5.183747,5.184777,5.1858063,5.186836,5.187865,5.188894,5.1899223,5.190951,5.1919794,5.1930075,5.1940355,5.195063,5.1960907,5.197118,5.198145,5.199172,5.2001987,5.2012253,5.2022514,5.2032776,5.2043033,5.205329,5.2063546,5.20738,5.208405,5.2094297,5.2104545,5.211479,5.2125034,5.2135277,5.2145514,5.215575,5.2165985,5.217622,5.218645,5.219668,5.2206903,5.221713,5.2227354,5.2237573,5.224779,5.225801,5.2268224,5.2278438,5.2288647,5.2298856,5.230906,5.231927,5.232947,5.2339673,5.234987,5.2360067,5.237026,5.238045,5.2390647,5.240083,5.241102,5.2421207,5.243139,5.244157,5.245175,5.2461925,5.24721,5.2482276,5.2492447,5.2502613,5.2512784,5.2522945,5.253311,5.2543273,5.255343,5.256359,5.2573743,5.25839,5.259405,5.26042,5.2614346,5.2624493,5.2634635,5.2644777,5.2654915,5.2665057,5.267519,5.2685323,5.2695456,5.270559,5.2715716,5.272584,5.2735963,5.2746086,5.275621,5.276633,5.277644,5.2786555,5.279667,5.280678,5.2816887,5.2826996,5.28371,5.2847204,5.2857304,5.2867403,5.2877502,5.2887597,5.2897687,5.290778,5.291787,5.2927957,5.293804,5.2948127,5.2958207,5.2968287,5.2978363,5.2988443,5.2998514,5.3008585,5.3018656,5.3028727,5.3038793,5.304886,5.305892,5.306898,5.307904,5.3089094,5.309915,5.3109202,5.3119254,5.31293,5.3139353,5.3149395,5.315944,5.316948,5.317952,5.318956,5.3199596,5.320963,5.321966,5.322969,5.3239717,5.3249745,5.325977,5.326979,5.3279815,5.3289833,5.329985,5.3309865,5.331988,5.332989,5.33399,5.3349905,5.3359914,5.336992,5.3379917,5.338992,5.3399916,5.3409915,5.341991,5.34299,5.3439894,5.344988,5.345987,5.3469853,5.347984,5.348982,5.34998,5.3509774,5.351975,5.3529725,5.3539696,5.3549666,5.3559637,5.3569603,5.357957,5.358953,5.359949,5.360945,5.361941,5.3629365,5.3639317,5.364927,5.365922,5.3669167,5.3679113,5.3689055,5.3699,5.370894,5.371888,5.372882,5.373875,5.3748684,5.3758616,5.376855,5.3778477,5.37884,5.3798323,5.3808246,5.381817,5.3828087,5.3838005,5.384792,5.385783,5.3867745,5.3877654,5.3887563,5.3897467,5.390737,5.3917274,5.3927174,5.3937073,5.3946967,5.3956866,5.3966756,5.397665,5.398654,5.3996425,5.4006314,5.4016194,5.402608,5.403596,5.404584,5.4055715,5.406559,5.4075465,5.4085336,5.4095206,5.410507,5.411494,5.4124804,5.4134665,5.4144526,5.4154387,5.4164243,5.41741,5.418395,5.41938,5.4203653,5.42135,5.4223347,5.4233193,5.4243035,5.4252877,5.4262714,5.427255,5.428239,5.429222,5.4302053,5.4311886,5.4321713,5.433154,5.4341364,5.4351187,5.436101,5.4370832,5.438065,5.4390464,5.4400277,5.441009,5.4419904,5.442971,5.443952,5.4449325,5.445913,5.446893,5.447873,5.448853,5.4498324,5.450812,5.4517913,5.4527707,5.4537497,5.454728,5.455707,5.4566855,5.4576635,5.4586415,5.4596195,5.4605975,5.461575,5.462552,5.4635296,5.4645066,5.465483,5.46646,5.467437,5.468413,5.469389,5.470365,5.471341,5.4723167,5.473292,5.4742675,5.4752426,5.4762173,5.4771924,5.478167,5.479141,5.4801154,5.4810896,5.4820633,5.4830375,5.4840107,5.4849844,5.4859576,5.4869304,5.4879036,5.488876,5.4898486,5.490821,5.491793,5.492765,5.493737,5.4947085,5.4956803,5.4966516,5.4976225,5.498594,5.4995646,5.500535,5.5015054,5.5024757,5.503446,5.504416,5.505386,5.5063553,5.5073247,5.508294,5.509263,5.510232,5.511201,5.5121694,5.513138,5.5141063,5.5150743,5.516042,5.5170097,5.517977,5.5189447,5.5199122,5.5208793,5.521846,5.522813,5.5237794,5.5247455,5.525712,5.526678,5.5276437,5.5286098,5.529575,5.5305405,5.5315056,5.5324707,5.5334353,5.5344005,5.5353646,5.5363293,5.5372934,5.5382576,5.5392213,5.540185,5.5411487,5.542112,5.543075,5.544038,5.545001,5.545964,5.546926,5.5478883,5.5488505,5.549813,5.5507746,5.5517364,5.5526977,5.553659,5.5546203,5.555581,5.556542,5.5575027,5.5584636,5.559424,5.560384,5.561344,5.562304,5.5632634,5.564223,5.565182,5.5661416,5.5671005,5.5680594,5.5690184,5.569977,5.5709352,5.571893,5.572851,5.573809,5.574767,5.5757246,5.576682,5.577639,5.578596,5.579553,5.5805097,5.581466,5.5824227,5.583379,5.584335,5.585291,5.5862465,5.587202,5.5881577,5.5891128,5.590068,5.591023,5.5919776,5.592932,5.593887,5.594841,5.595795,5.5967493,5.597703,5.5986567,5.59961,5.6005635,5.6015162,5.6024694,5.603422,5.604375,5.6053276,5.60628,5.607232,5.608184,5.6091356,5.6100874,5.611039,5.6119905,5.6129413,5.6138926,5.6148434,5.615794,5.6167445,5.617695,5.618645,5.6195955,5.6205454,5.6214952,5.6224446,5.623394,5.6243434,5.6252923,5.626241,5.62719,5.628139,5.6290874,5.6300354,5.630984,5.631932,5.6328797,5.633827,5.6347747,5.635722,5.636669,5.637616,5.638563,5.63951,5.6404567,5.6414027,5.6423492,5.6432953,5.6442413,5.645187,5.6461325,5.647078,5.648023,5.648968,5.6499133,5.650858,5.651803,5.652747,5.653692,5.654636,5.65558,5.6565237,5.6574674,5.658411,5.659354,5.660298,5.6612406,5.662184,5.6631265,5.664069,5.6650114,5.6659536,5.666896,5.667838,5.66878,5.6697216,5.670663,5.671604,5.6725454,5.6734867,5.6744275,5.6753683,5.6763086,5.677249,5.6781893,5.6791296,5.6800694,5.6810093,5.681949,5.6828885,5.683828,5.684767,5.685706,5.686645,5.6875834,5.688522,5.6894603,5.6903987,5.6913366,5.6922746,5.6932125,5.69415,5.695088,5.696025,5.6969624,5.6978993,5.698836,5.699773,5.7007093,5.701646,5.702582,5.703518,5.704454,5.70539,5.7063255,5.707261,5.708196,5.7091312,5.7100663,5.7110014,5.711936,5.7128706,5.7138047,5.7147393,5.7156734,5.716607,5.717541,5.718475,5.719408,5.7203417,5.721275,5.7222075,5.7231407,5.7240734,5.725006,5.7259383,5.7268705,5.7278028,5.7287345,5.7296667,5.730598,5.7315297,5.732461,5.7333922,5.7343235,5.7352543,5.736185,5.7371154,5.738046,5.7389765,5.7399063,5.7408366,5.7417665,5.7426963,5.7436256,5.744555,5.7454844,5.746413,5.747342,5.748271,5.7492,5.7501283,5.7510567,5.7519846,5.752913,5.753841,5.7547684,5.7556963,5.7566237,5.7575507,5.758478,5.759405,5.760332,5.7612586,5.762185,5.7631116,5.7640376,5.764964,5.76589,5.7668157,5.767741,5.7686667,5.7695923,5.7705173,5.7714424,5.7723675,5.773292,5.774217,5.7751412,5.776066,5.77699,5.777914,5.7788377,5.779762,5.780685,5.7816086,5.7825317,5.783455,5.784378,5.7853007,5.7862234,5.787146,5.788069,5.788991,5.789913,5.790835,5.7917566,5.7926784,5.7936,5.7945213,5.7954426,5.796364,5.7972846,5.7982054,5.799126,5.8000464,5.800967,5.801887,5.8028073,5.803727,5.804647,5.805567,5.806486,5.8074055,5.808325,5.8092437,5.8101625,5.8110814,5.812,5.8129187,5.8138366,5.814755,5.815673,5.816591,5.8175087,5.818426,5.8193436,5.820261,5.821178,5.8220954,5.823012,5.823929,5.8248453,5.825762,5.8266783,5.8275943,5.8285103,5.8294263,5.830342,5.8312573,5.832173,5.8330884,5.8340034,5.8349185,5.835833,5.836748,5.8376627,5.838577,5.8394914,5.8404055,5.8413196,5.842233,5.843147,5.8440604,5.844974,5.845887,5.8468003,5.8477135,5.848626,5.849539,5.8504515,5.851364,5.8522763,5.8531885,5.8541007,5.8550124,5.855924,5.856836,5.857747,5.8586583,5.8595695,5.860481,5.8613915,5.8623023,5.8632126,5.8641233,5.8650336,5.865944,5.8668537,5.8677635,5.8686733,5.869583,5.8704925,5.871402,5.872311,5.87322,5.874129,5.8750377,5.875946,5.876855,5.877763,5.878671,5.879579,5.880487,5.881395,5.8823028,5.88321,5.8841176,5.8850245,5.885932,5.886839,5.8877454,5.8886523,5.889559,5.8904653,5.8913713,5.8922772,5.893183,5.894089,5.8949947,5.8959002,5.896806,5.897711,5.8986163,5.8995214,5.900426,5.9013305,5.902235,5.9031396,5.904044,5.904948,5.9058523,5.906756,5.9076595,5.908563,5.9094667,5.9103703,5.9112735,5.9121766,5.9130793,5.913982,5.9148846,5.915787,5.9166894,5.9175916,5.9184937,5.919396,5.9202976,5.9211993,5.922101,5.9230022,5.9239035,5.9248047,5.9257054,5.9266067,5.927507,5.9284077,5.929308,5.9302087,5.9311085,5.9320087,5.9329085,5.9338083,5.934708,5.9356074,5.9365067,5.937406,5.938305,5.939204,5.9401026,5.9410014,5.9419,5.9427986,5.9436965,5.944595,5.9454927,5.9463906,5.9472885,5.948186,5.9490833,5.9499807,5.9508777,5.951775,5.9526715,5.9535685,5.9544654,5.955362,5.956258,5.9571543,5.9580503,5.958946,5.959842,5.9607377,5.961633,5.9625287,5.963424,5.964319,5.9652143,5.9661093,5.967004,5.9678984,5.968793,5.9696875,5.9705815,5.9714756,5.9723697,5.9732633,5.974157,5.9750504,5.975944,5.976837,5.9777303,5.9786234,5.9795165,5.980409,5.981302,5.982194,5.9830866,5.9839787,5.984871,5.9857626,5.9866548,5.9875464,5.9884377,5.9893293,5.9902205,5.9911118,5.9920025,5.9928937,5.9937844,5.9946747,5.9955654,5.9964557,5.997346,5.998236,5.999126,6.0000157,6.0009055,6.0017953,6.0026846,6.003574,6.004463,6.005352,6.006241,6.0071297,6.0080185,6.008907,6.009795,6.0106835,6.0115714,6.0124598,6.0133476,6.014235,6.015123,6.0160103,6.0168977,6.0177846,6.018672,6.019559,6.0204453,6.0213323,6.0222187,6.023105,6.0239916,6.0248775,6.0257635,6.0266495,6.0275354,6.028421,6.0293064,6.030192,6.031077,6.031962,6.032847,6.033732,6.0346165,6.0355015,6.0363855,6.03727,6.038154,6.039038,6.039922,6.0408063,6.04169,6.0425735,6.0434566,6.04434,6.045223,6.0461063,6.0469894,6.047872,6.0487547,6.0496373,6.0505195,6.0514016,6.052284,6.053166,6.054048,6.0549297,6.0558114,6.0566926,6.0575743,6.0584555,6.0593367,6.0602174,6.061098,6.061979,6.0628595,6.0637403,6.0646205,6.0655007,6.066381,6.0672607,6.0681405,6.0690203,6.0699,6.0707793,6.0716586,6.072538,6.0734167,6.074296,6.075175,6.076053,6.076932,6.0778103,6.0786886,6.079567,6.080445,6.0813227,6.0822005,6.0830784,6.083956,6.084833,6.0857105,6.086588,6.087465,6.0883417,6.0892186,6.090095,6.0909715,6.091848,6.0927243,6.0936003,6.0944767,6.0953526,6.096228,6.097104,6.0979795,6.098855,6.09973,6.100605,6.1014805,6.102355,6.10323,6.1041045,6.104979,6.1058536,6.1067276,6.107602,6.108476,6.1093497,6.110224,6.1110973,6.111971,6.112844,6.1137176,6.1145906,6.1154637,6.1163363,6.1172094,6.118082,6.1189547,6.119827,6.1206994,6.1215715,6.122443,6.1233153,6.124187,6.1250587,6.1259303,6.1268015,6.127673,6.1285443,6.129415,6.130286,6.131157,6.1320276,6.132898,6.1337686,6.134639,6.135509,6.136379,6.137249,6.1381187,6.1389885,6.139858,6.1407275,6.141597,6.142466,6.143335,6.1442037,6.145073,6.1459413,6.14681,6.1476784,6.1485467,6.149415,6.150283,6.151151,6.152019,6.1528864,6.153754,6.1546216,6.155489,6.1563563,6.157223,6.15809,6.158957,6.159824,6.1606903,6.161557,6.162423,6.1632895,6.1641555,6.165022,6.165888,6.1667533,6.167619,6.1684847,6.16935,6.170215,6.1710806,6.1719456,6.17281,6.173675,6.1745396,6.1754045,6.1762686,6.177133,6.177997,6.178861,6.179725,6.180589,6.1814528,6.1823163,6.18318,6.1840434,6.1849065,6.1857696,6.1866326,6.187495,6.1883583,6.189221,6.190083,6.1909456,6.1918077,6.19267,6.193532,6.194394,6.1952558,6.1961174,6.196979,6.19784,6.1987014,6.1995625,6.2004237,6.201285,6.2021456,6.2030063,6.203867,6.204727,6.205588,6.206448,6.207308,6.208168,6.209028,6.2098875,6.2107472,6.211607,6.2124662,6.2133255,6.2141848,6.2150435,6.2159023,6.216761,6.21762,6.2184787,6.219337,6.2201953,6.2210536,6.2219114,6.2227697,6.2236276,6.2244854,6.2253428,6.2262,6.2270575,6.227915,6.228772,6.229629,6.230486,6.231343,6.2321997,6.233056,6.2339125,6.234769,6.235625,6.236481,6.237337,6.238193,6.2390485,6.2399044,6.24076,6.2416153,6.2424703,6.2433257,6.2441807,6.2450356,6.24589,6.246745,6.2475996,6.248454,6.249308,6.2501626,6.2510166,6.2518706,6.252724,6.253578,6.2544317,6.2552853,6.256139,6.256992,6.257845,6.258698,6.259551,6.2604036,6.2612567,6.2621093,6.2629614,6.263814,6.264666,6.265518,6.2663703,6.267222,6.268074,6.2689257,6.2697773,6.2706285,6.2714796,6.2723308,6.273182,6.274033,6.2748837,6.2757344,6.276585,6.277436,6.278286,6.279136,6.2799864,6.2808366,6.2816863,6.282536,6.2833858,6.2842355,6.285085,6.2859344,6.2867837,6.2876325,6.2884817,6.2893305,6.2901793,6.291028,6.2918763,6.292725,6.2935734,6.2944217,6.2952695,6.2961173,6.2969656,6.297813,6.2986608,6.299508,6.300356,6.301203,6.30205,6.302897,6.3037443,6.304591,6.3054376,6.3062844,6.307131,6.307977,6.3088236,6.3096695,6.3105154,6.3113613,6.312207,6.313053,6.3138986,6.314744,6.3155894,6.316435,6.31728,6.318125,6.3189697,6.3198147,6.320659,6.3215036,6.322348,6.3231926,6.3240366,6.324881,6.325725,6.3265686,6.3274126,6.328256,6.3290997,6.329943,6.3307867,6.3316298,6.332473,6.333316,6.334159,6.3350015,6.335844,6.3366866,6.337529,6.3383713,6.339214,6.340056,6.3408976,6.3417397,6.3425813,6.343423,6.3442645,6.345106,6.3459473,6.3467884,6.3476295,6.3484707,6.3493114,6.350152,6.3509927,6.3518333,6.352674,6.353514,6.3543544,6.3551946,6.3560343,6.3568745,6.357714,6.358554,6.359393,6.360233,6.361072,6.3619113,6.36275,6.3635893,6.364428,6.365267,6.3661056,6.366944,6.3677826,6.368621,6.369459,6.370297,6.371135,6.371973,6.372811,6.373648,6.374486,6.3753233,6.3761606,6.376998,6.377835,6.378672,6.379509,6.380346,6.381182,6.382019,6.3828554,6.383692,6.3845277,6.385364,6.3862,6.387036,6.3878717,6.388707,6.389543,6.3903785,6.391214,6.392049,6.3928843,6.393719,6.394554,6.395389,6.3962235,6.397058,6.3978925,6.398727,6.3995614,6.4003954,6.4012294,6.4020634,6.4028974,6.403731,6.4045644,6.405398,6.4062314,6.407065,6.407898,6.408731,6.409564,6.410397,6.4112296,6.412062,6.4128947,6.4137273,6.4145594,6.4153914,6.416224,6.4170556,6.4178877,6.4187193,6.419551,6.4203825,6.421214,6.422045,6.422877,6.423708,6.4245386,6.4253697,6.4262004,6.427031,6.4278617,6.4286923,6.4295225,6.430353,6.4311833,6.432013,6.432843,6.433673,6.4345026,6.4353323,6.436162,6.436991,6.4378204,6.4386497,6.439479,6.4403076,6.441137,6.4419656,6.4427943,6.4436226,6.4444513,6.4452796,6.446108,6.4469357,6.447764,6.4485917,6.4494195,6.4502473,6.451075,6.4519024,6.4527297,6.453557,6.4543843,6.455211,6.4560385,6.4568653,6.4576917,6.4585185,6.459345,6.4601717,6.460998,6.461824,6.4626503,6.463476,6.464302,6.465128,6.465954,6.466779,6.4676046,6.46843,6.4692554,6.4700804,6.470906,6.4717307,6.472555,6.47338,6.474205,6.4750295,6.475854,6.476678,6.4775023,6.4783263,6.4791503,6.4799743,6.4807982,6.4816217,6.4824452,6.4832687,6.484092,6.4849157,6.4857388,6.486562,6.487385,6.488208,6.4890304,6.489853,6.4906754,6.491498,6.4923205,6.4931426,6.4939647,6.4947867,6.495609,6.4964304,6.4972525,6.498074,6.4988956,6.4997168,6.5005383,6.5013595,6.5021806,6.503001,6.5038223,6.504643,6.5054636,6.506284,6.507105,6.507925,6.5087457,6.509566,6.5103855,6.5112057,6.5120254,6.512845,6.5136647,6.5144844,6.515304,6.5161233,6.5169425,6.5177617,6.5185804,6.5193996,6.5202184,6.521037,6.521856,6.522674,6.523493,6.524311,6.5251293,6.525947,6.5267653,6.527583,6.528401,6.5292187,6.5300364,6.5308537,6.531671,6.5324883,6.5333056,6.5341225,6.53494,6.5357566,6.5365734,6.5373898,6.5382066,6.539023,6.5398393,6.5406556,6.541472,6.542288,6.5431037,6.5439196,6.5447354,6.5455513,6.5463667,6.547182,6.5479975,6.548813,6.549628,6.5504427,6.5512576,6.5520725,6.5528874,6.553702,6.554517,6.555331,6.556145,6.5569596,6.5577736,6.5585876,6.5594015,6.5602155,6.5610294,6.561843,6.5626564,6.56347,6.5642834,6.5650964,6.5659094,6.5667224,6.5675354,6.5683484,6.569161,6.5699735,6.570786,6.5715985,6.572411,6.573223,6.574035,6.574847,6.5756593,6.576471,6.577283,6.5780945,6.578906,6.579717,6.5805287,6.58134,6.582151,6.582962,6.5837727,6.5845838,6.5853944,6.586205,6.5870156,6.587826,6.5886364,6.5894465,6.5902567,6.591067,6.5918765,6.592686,6.5934963,6.5943055,6.595115,6.595925,6.596734,6.5975432,6.5983524,6.599161,6.5999703,6.600779,6.601588,6.6023965,6.603205,6.6040134,6.6048217,6.60563,6.606438,6.6072464,6.608054,6.608862,6.6096697,6.6104774,6.6112847,6.6120925,6.6129,6.613707,6.614514,6.615321,6.616128,6.616935,6.6177416,6.6185484,6.6193547,6.6201615,6.620968,6.621774,6.62258,6.6233864,6.624192,6.624998,6.625804,6.6266093,6.627415,6.6282206,6.629026,6.6298313,6.630636,6.6314416,6.6322465,6.6330514,6.6338563,6.6346607,6.6354656,6.63627,6.6370745,6.637879,6.638683,6.639487,6.640291,6.641095,6.6418986,6.6427026,6.643506,6.6443095,6.645113,6.6459165,6.6467195,6.647523,6.648326,6.649129,6.6499314,6.6507344,6.651537,6.6523395,6.653142,6.6539445,6.6547465,6.655549,6.656351,6.657153,6.6579547,6.6587567,6.6595583,6.66036,6.6611614,6.661963,6.662764,6.663565,6.6643662,6.6651673,6.6659684,6.666769,6.6675696,6.6683707,6.669171,6.6699715,6.6707716,6.671572,6.6723723,6.6731725,6.673972,6.6747723,6.675572,6.6763716,6.677171,6.6779704,6.67877,6.6795692,6.6803684,6.6811676,6.6819663,6.6827655,6.683564,6.684363,6.6851616,6.6859603,6.6867585,6.6875567,6.688355,6.689153,6.6899514,6.690749,6.691547,6.6923447,6.6931424,6.69394,6.6947374,6.6955347,6.6963325,6.6971292,6.6979265,6.6987233,6.6995206,6.7003174,6.7011137,6.7019105,6.7027073,6.7035036,6.7043,6.7050962,6.705892,6.7066884,6.7074842,6.70828,6.709076,6.709872,6.710667,6.7114625,6.712258,6.713053,6.7138486,6.7146435,6.715439,6.7162337,6.7170286,6.717823,6.718618,6.7194123,6.7202067,6.721001,6.7217956,6.7225895,6.723384,6.724178,6.724972,6.725765,6.726559,6.7273526,6.728146,6.7289395,6.729733,6.730526,6.7313194,6.7321124,6.7329054,6.7336984,6.734491,6.7352834,6.7360764,6.736869,6.737661,6.7384534,6.7392454,6.740038,6.74083,6.7416215,6.7424135,6.743205,6.743997,6.7447886,6.7455797,6.7463713,6.7471623,6.747954,6.748745,6.749536,6.7503266,6.7511177,6.7519083,6.752699,6.7534895,6.75428,6.75507,6.7558603,6.7566504,6.7574406,6.7582307,6.759021,6.7598104,6.7606,6.7613897,6.7621794,6.7629685,6.763758,6.7645473,6.7653365,6.7661257,6.7669144,6.7677035,6.768492,6.769281,6.7700696,6.770858,6.7716465,6.7724347,6.773223,6.774011,6.774799,6.775587,6.776375,6.7771626,6.7779503,6.778738,6.7795253,6.780313,6.7811003,6.7818875,6.7826743,6.7834616,6.7842484,6.7850356,6.7858224,6.7866087,6.7873955,6.788182,6.7889686,6.789755,6.7905407,6.791327,6.792113,6.792899,6.793685,6.794471,6.795256,6.796042,6.7968273,6.7976127,6.798398,6.7991834,6.7999682,6.8007536,6.8015385,6.8023233,6.803108,6.8038926,6.8046775,6.805462,6.8062463,6.8070307,6.8078146,6.808599,6.809383,6.810167,6.8109508,6.8117347,6.812518,6.813302,6.8140855,6.814869,6.815652,6.8164353,6.8172183,6.8180017,6.8187847,6.819567,6.82035,6.8211327,6.8219156,6.822698,6.8234806,6.8242626,6.825045,6.825827,6.826609,6.827391,6.828173,6.8289547,6.8297367,6.8305182,6.8313,6.8320813,6.8328624,6.833644,6.834425,6.835206,6.835987,6.836768,6.8375487,6.83833,6.8391104,6.839891,6.840671,6.8414516,6.8422318,6.843012,6.843792,6.844572,6.845352,6.846132,6.846912,6.8476915,6.8484707,6.8492503,6.85003,6.850809,6.8515882,6.8523674,6.8531466,6.853925,6.8547044,6.855483,6.8562617,6.8570404,6.857819,6.8585973,6.8593755,6.8601537,6.860932,6.86171,6.8624883,6.863266,6.8640437,6.8648214,6.865599,6.866377,6.867154,6.8679314,6.8687086,6.869486,6.870263,6.87104,6.871817,6.872594,6.8733706,6.8741474,6.8749237,6.8757005,6.876477,6.877253,6.8780293,6.878805,6.8795815,6.8803573,6.881133,6.881909,6.8826847,6.88346,6.884236,6.885011,6.8857865,6.886562,6.887337,6.888112,6.888887,6.889662,6.8904366,6.8912115,6.8919864,6.8927608,6.893535,6.8943095,6.895084,6.8958583,6.896632,6.897406,6.8981805,6.898954,6.899728,6.9005017,6.901275,6.9020486,6.902822,6.9035954,6.904369,6.905142,6.9059153,6.906688,6.907461,6.9082336,6.9090066,6.909779,6.9105515,6.911324,6.9120965,6.912869,6.913641,6.9144135,6.9151855,6.9159575,6.916729,6.917501,6.9182725,6.9190445,6.919816,6.920587,6.9213586,6.92213,6.922901,6.923672,6.9244432,6.9252143,6.925985,6.926756,6.9275265,6.928297,6.9290676,6.929838,6.9306083,6.9313784,6.932149,6.9329185,6.9336886,6.9344587,6.9352283,6.9359984,6.936768,6.937537,6.938307,6.9390764,6.9398456,6.9406147,6.941384,6.942153,6.942922,6.943691,6.9444594,6.9452286,6.9459968,6.9467654,6.947534,6.9483023,6.9490705,6.9498386,6.950607,6.951375,6.9521427,6.952911,6.9536786,6.9544463,6.955214,6.9559813,6.956749,6.957516,6.9582834,6.9590507,6.959818,6.9605846,6.961352,6.9621186,6.9628854,6.963652,6.9644184,6.965185,6.9659514,6.9667177,6.967484,6.9682503,6.9690166,6.9697824,6.970548,6.971314,6.9720798,6.9728456,6.973611,6.9743767,6.975142,6.9759073,6.9766726,6.9774375,6.978203,6.9789677,6.9797325,6.9804974,6.981262,6.982027,6.9827914,6.983556,6.98432,6.9850845,6.985849,6.9866133,6.987377,6.988141,6.988905,6.989669,6.9904327,6.991196,6.99196,6.9927235,6.993487,6.9942503,6.995013,6.9957767,6.9965396,6.9973025,6.9980655,6.9988284,6.999591,7.000354,7.0011163,7.0018787,7.002641,7.0034037,7.0041656,7.0049276,7.00569,7.006452,7.007214,7.0079756,7.0087376,7.009499,7.0102606,7.011022,7.0117836,7.012545,7.013306,7.014067,7.014828,7.015589,7.0163503,7.0171113,7.017872,7.0186324,7.019393,7.0201535,7.020914,7.0216746,7.0224347,7.023195,7.023955,7.024715,7.025475,7.0262346,7.0269947,7.0277543,7.028514,7.0292735,7.0300326,7.030792,7.0315514,7.0323105,7.0330696,7.0338287,7.0345874,7.0353465,7.036105,7.036864,7.0376225,7.038381,7.0391397,7.039898,7.040656,7.0414143,7.0421724,7.0429306,7.043689,7.0444465,7.045204,7.045962,7.0467196,7.0474772,7.0482345,7.048992,7.0497494,7.0505066,7.051264,7.0520205,7.052778,7.0535345,7.0542917,7.0550485,7.0558047,7.0565615,7.057318,7.0580745,7.0588307,7.059587,7.0603433,7.061099,7.0618553,7.062611,7.063367,7.0641227,7.0648785,7.0656343,7.0663896,7.0671453,7.0679007,7.068656,7.069411,7.070166,7.070921,7.0716763,7.072431,7.073186,7.0739403,7.074695,7.07545,7.0762043,7.0769587,7.077713,7.0784674,7.0792212,7.0799756,7.0807295,7.0814834,7.0822372,7.082991,7.0837445,7.0844984,7.085252,7.086005,7.0867586,7.0875115,7.088265,7.089018,7.0897713,7.090524,7.091277,7.0920296,7.0927825,7.093535,7.094288,7.0950403,7.0957923,7.0965447,7.097297,7.098049,7.098801,7.099553,7.100305,7.101057,7.101809,7.1025605,7.103312,7.1040635,7.104815,7.1055665,7.1063175,7.107069,7.10782,7.108571,7.109322,7.110073,7.1108236,7.1115746,7.112325,7.1130757,7.1138263,7.114577,7.115327,7.116077,7.1168275,7.1175776,7.1183276,7.119077,7.1198273,7.120577,7.121327,7.1220765,7.122826,7.123575,7.124325,7.125074,7.1258235,7.1265726,7.1273217,7.1280704,7.1288195,7.129568,7.130317,7.131066,7.1318145,7.1325626,7.1333113,7.1340594,7.134808,7.135556,7.1363044,7.137052,7.1378,7.138548,7.139296,7.1400437,7.1407914,7.141539,7.1422863,7.143034,7.143781,7.1445284,7.1452756,7.146023,7.1467695,7.1475167,7.1482635,7.14901,7.149757,7.1505036,7.1512504,7.1519966,7.1527433,7.1534896,7.154236,7.154982,7.155728,7.156474,7.15722,7.1579657,7.1587114,7.159457,7.160203,7.1609483,7.161694,7.1624393,7.1631846,7.16393,7.164675,7.16542,7.1661654,7.16691,7.167655,7.1684,7.1691446,7.169889,7.170634,7.171378,7.1721225,7.172867,7.173611,7.174355,7.1750994,7.1758432,7.176587,7.177331,7.178075,7.1788187,7.179562,7.1803055,7.181049,7.1817923,7.1825356,7.183279,7.184022,7.1847653,7.1855083,7.186251,7.186994,7.187737,7.1884794,7.1892223,7.189965,7.190707,7.1914496,7.1921916,7.192934,7.193676,7.1944184,7.1951604,7.1959023,7.1966443,7.197386,7.1981277,7.198869,7.1996107,7.200352,7.2010937,7.2018347,7.202576,7.203317,7.204058,7.2047997,7.20554,7.206281,7.207022,7.2077627,7.2085032,7.209244,7.2099843,7.210725,7.211465,7.2122054,7.2129455,7.2136855,7.2144256,7.2151656,7.2159057,7.2166452,7.217385,7.218125,7.218864,7.2196035,7.220343,7.2210827,7.221822,7.222561,7.2233,7.224039,7.224778,7.225517,7.226256,7.2269945,7.227733,7.2284718,7.2292104,7.2299485,7.230687,7.2314253,7.2321634,7.2329016,7.2336397,7.234378,7.2351155,7.235853,7.2365913,7.237329,7.2380667,7.238804,7.2395415,7.2402787,7.241016,7.2417536,7.2424903,7.2432275,7.2439647,7.2447014,7.2454386,7.2461753,7.246912,7.2476487,7.248385,7.2491217,7.249858,7.250594,7.2513304,7.2520666,7.252803,7.253539,7.254275,7.2550106,7.2557464,7.256482,7.257218,7.2579536,7.258689,7.259424,7.26016,7.2608953,7.2616305,7.2623653,7.2631006,7.2638354,7.26457,7.265305,7.26604,7.2667747,7.2675095,7.268244,7.268978,7.269713,7.2704473,7.271181,7.2719154,7.27265,7.2733836,7.2741175,7.2748513,7.275585,7.276319,7.2770524,7.2777863,7.2785196,7.279253,7.2799864,7.2807198,7.281453,7.282186,7.2829194,7.2836523,7.284385,7.285118,7.2858505,7.2865834,7.287316,7.2880487,7.288781,7.2895136,7.2902455,7.290978,7.2917104,7.2924423,7.2931743,7.293906,7.294638,7.29537,7.2961016,7.2968335,7.297565,7.2982965,7.299028,7.2997594,7.300491,7.301222,7.301953,7.3026843,7.3034153,7.304146,7.304877,7.305608,7.3063383,7.307069,7.3078,7.30853,7.3092604,7.309991,7.310721,7.3114514,7.3121815,7.3129115,7.3136415,7.3143716,7.315101,7.315831,7.3165607,7.3172903,7.31802,7.3187494,7.3194785,7.320208,7.320937,7.3216667,7.322396,7.323125,7.3238535,7.3245826,7.325311,7.3260403,7.326769,7.3274975,7.328226,7.328954,7.329683,7.330411,7.331139,7.3318677,7.3325953,7.3333235,7.3340516,7.3347793,7.3355074,7.336235,7.3369627,7.3376904,7.3384175,7.339145,7.3398724,7.3406,7.341327,7.3420544,7.3427815,7.3435082,7.3442354,7.344962,7.345689,7.3464155,7.347142,7.347869,7.3485956,7.349322,7.350048,7.350775,7.351501,7.3522267,7.352953,7.353679,7.354405,7.3551307,7.3558564,7.356582,7.357308,7.3580337,7.358759,7.3594847,7.36021,7.360935,7.3616605,7.3623857,7.3631105,7.363836,7.3645606,7.3652854,7.36601,7.366735,7.36746,7.368184,7.368909,7.369633,7.3703575,7.371082,7.371806,7.37253,7.3732543,7.373978,7.374702,7.375426,7.3761497,7.3768735,7.3775973,7.3783207,7.3790445,7.379768,7.3804913,7.3812146,7.3819375,7.382661,7.3833838,7.384107,7.38483,7.385553,7.386276,7.386998,7.387721,7.3884435,7.389166,7.3898883,7.3906107,7.391333,7.3920555,7.3927774,7.3935,7.394222,7.3949437,7.3956656,7.3963876,7.397109,7.397831,7.3985524,7.399274,7.3999953,7.400717,7.401438,7.402159,7.4028807,7.4036016,7.4043226,7.4050436,7.4057646,7.4064856,7.407206,7.407927,7.4086475,7.409368,7.4100885,7.410809,7.411529,7.4122496,7.4129696,7.41369,7.41441,7.41513,7.4158497,7.4165697,7.4172897,7.4180093,7.418729,7.4194484,7.420168,7.4208875,7.4216065,7.422326,7.423045,7.423764,7.4244833,7.4252024,7.4259214,7.4266405,7.427359,7.4280777,7.4287963,7.4295154,7.4302335,7.430952,7.4316707,7.432389,7.433107,7.433825,7.434543,7.4352612,7.4359794,7.4366975,7.437415,7.438133,7.4388504,7.439568,7.4402857,7.4410033,7.4417205,7.442438,7.4431553,7.4438725,7.4445896,7.445307,7.446024,7.4467406,7.4474573,7.4481745,7.448891,7.449608,7.4503245,7.4510407,7.4517574,7.4524736,7.45319,7.453906,7.4546223,7.4553385,7.4560547,7.4567704,7.4574866,7.4582024,7.458918,7.459634,7.4603496,7.461065,7.4617805,7.462496,7.463211,7.4639263,7.4646416,7.465357,7.466072,7.466787,7.4675016,7.468217,7.4689317,7.4696465,7.4703608,7.4710755,7.47179,7.4725046,7.473219,7.473933,7.4746475,7.475362,7.4760756,7.47679,7.477504,7.4782176,7.4789314,7.4796453,7.480359,7.481073,7.4817863,7.4824996,7.4832134,7.483927,7.48464,7.485353,7.4860663,7.486779,7.4874926,7.4882054,7.4889183,7.489631,7.490344,7.4910564,7.4917693,7.4924817,7.493194,7.4939065,7.494619,7.4953313,7.4960437,7.4967556,7.497468,7.49818,7.498892,7.4996037,7.5003157,7.501027,7.501739,7.5024505,7.503162,7.5038733,7.504585,7.505296,7.5060077,7.5067186,7.50743,7.508141,7.508852,7.509563,7.510274,7.5109844,7.5116954,7.512406,7.5131164,7.5138273,7.514538,7.515248,7.5159583,7.516669,7.517379,7.518089,7.518799,7.519509,7.520219,7.520929,7.5216384,7.5223484,7.523058,7.5237675,7.524477,7.5251865,7.525896,7.526605,7.5273147,7.5280237,7.528733,7.529442,7.530151,7.53086,7.5315685,7.5322776,7.532986,7.5336947,7.5344033,7.535112,7.5358205,7.5365286,7.537237,7.5379453,7.5386534,7.539362,7.5400696,7.5407777,7.541486,7.5421934,7.5429015,7.543609,7.544317,7.5450244,7.545732,7.546439,7.547147,7.547854,7.548561,7.5492687,7.549976,7.5506825,7.5513897,7.552097,7.5528035,7.55351,7.554217,7.5549235,7.55563,7.556337,7.5570436,7.5577497,7.558456,7.559162,7.5598683,7.5605745,7.5612807,7.561987,7.5626926,7.5633984,7.5641046,7.5648103,7.565516,7.566221,7.566927,7.5676327,7.568338,7.569043,7.5697484,7.5704536,7.571159,7.571864,7.572569,7.573274,7.573979,7.5746837,7.5753884,7.576093,7.576798,7.5775023,7.578207,7.5789113,7.5796156,7.58032,7.581024,7.5817285,7.5824323,7.5831366,7.5838404,7.584544,7.585248,7.585952,7.5866556,7.5873594,7.588063,7.5887666,7.58947,7.5901732,7.5908766,7.59158,7.592283,7.592986,7.593689,7.5943923,7.595095,7.595798,7.596501,7.5972037,7.597906,7.598609,7.5993114,7.6000137,7.600716,7.6014185,7.602121,7.6028233,7.603525,7.604227,7.6049294,7.6056314,7.6063333,7.607035,7.6077366,7.6084385,7.60914,7.609842,7.6105433,7.6112447,7.611946,7.612647,7.6133485,7.61405,7.614751,7.615452,7.616153,7.6168537,7.6175547,7.6182556,7.618956,7.6196566,7.6203575,7.621058,7.6217585,7.622459,7.623159,7.6238594,7.6245594,7.62526,7.62596,7.62666,7.62736,7.62806,7.6287594,7.6294594,7.630159,7.630859,7.6315584,7.632258,7.632957,7.6336565,7.634356,7.635055,7.635754,7.6364536,7.6371527,7.6378517,7.6385503,7.6392493,7.639948,7.640647,7.6413455,7.642044,7.6427426,7.643441,7.64414,7.644838,7.6455364,7.6462345,7.6469326,7.6476307,7.648329,7.649027,7.6497245,7.6504226,7.65112,7.651818,7.6525154,7.653213,7.6539106,7.6546082,7.6553054,7.656003,7.6567,7.6573973,7.6580944,7.6587915,7.6594887,7.660186,7.6608825,7.661579,7.6622763,7.662973,7.6636696,7.6643662,7.6650624,7.665759,7.6664553,7.667152,7.667848,7.6685443,7.6692405,7.669936,7.6706324,7.6713285,7.6720243,7.67272,7.6734157,7.6741114,7.674807,7.675503,7.676198,7.6768937,7.677589,7.678284,7.6789794,7.6796746,7.68037,7.681065,7.68176,7.682455,7.68315,7.6838446,7.6845393,7.685234,7.685929,7.686623,7.687318,7.688012,7.6887064,7.6894007,7.690095,7.690789,7.6914835,7.6921773,7.6928716,7.6935654,7.694259,7.694953,7.695647,7.6963406,7.697034,7.6977277,7.698421,7.6991143,7.6998076,7.700501,7.7011943,7.7018876,7.702581,7.703274,7.7039666,7.70466,7.705353,7.706045,7.706738,7.707431,7.708123,7.708816,7.7095084,7.710201,7.710893,7.7115855,7.712278,7.7129703,7.713662,7.714354,7.7150464,7.7157383,7.71643,7.717122,7.7178135,7.7185054,7.719197,7.7198887,7.72058,7.7212715,7.721963,7.7226543,7.7233453,7.7240367,7.7247276,7.7254186,7.72611,7.726801,7.727492,7.7281823,7.7288733,7.7295637,7.7302547,7.730945,7.7316356,7.732326,7.7330165,7.733707,7.734397,7.7350874,7.7357774,7.7364674,7.7371573,7.7378473,7.7385373,7.7392273,7.739917,7.740607,7.7412963,7.741986,7.7426753,7.743365,7.7440543,7.744744,7.745433,7.7461224,7.7468114,7.7475004,7.7481894,7.7488785,7.7495675,7.7502565,7.750945,7.7516336,7.7523227,7.753011,7.7537,7.7543883,7.7550764,7.755765,7.756453,7.7571416,7.7578297,7.7585177,7.759206,7.759894,7.760582,7.7612696,7.7619576,7.7626452,7.763333,7.7640204,7.764708,7.7653956,7.7660832,7.7667704,7.767458,7.768145,7.768832,7.7695193,7.7702065,7.7708936,7.7715807,7.7722673,7.7729545,7.773641,7.7743278,7.7750144,7.775701,7.7763877,7.777074,7.7777605,7.7784467,7.7791333,7.7798195,7.7805057,7.781192,7.7818775,7.7825637,7.78325,7.7839355,7.7846212,7.785307,7.7859926,7.7866783,7.787364,7.7880497,7.788735,7.7894206,7.790106,7.790791,7.7914762,7.7921615,7.7928467,7.7935314,7.7942166,7.7949014,7.795586,7.796271,7.7969556,7.7976403,7.798325,7.7990093,7.799694,7.8003783,7.801063,7.8017473,7.8024316,7.8031154,7.8037996,7.804484,7.8051677,7.805852,7.8065357,7.8072195,7.8079033,7.808587,7.8092704,7.809954,7.8106375,7.8113213,7.8120046,7.812688,7.813371,7.8140545,7.814738,7.8154206,7.816104,7.816787,7.8174696,7.8181524,7.8188353,7.819518,7.820201,7.8208833,7.821566,7.8222485,7.822931,7.8236136,7.824296,7.824978,7.82566,7.8263426,7.8270245,7.8277063,7.8283887,7.8290706,7.8297524,7.8304343,7.8311157,7.8317976,7.832479,7.833161,7.8338423,7.8345237,7.835205,7.8358865,7.836568,7.837249,7.83793,7.838611,7.839292,7.839973,7.840654,7.841335,7.8420157,7.842696,7.843377,7.8440576,7.8447385,7.845419,7.8460994,7.84678,7.84746,7.8481402,7.84882,7.8495007,7.8501806,7.8508606,7.8515406,7.8522205,7.8529005,7.85358,7.85426,7.8549395,7.8556194,7.856299,7.8569784,7.857658,7.858337,7.8590164,7.8596954,7.860375,7.861054,7.861733,7.862412,7.863091,7.86377,7.864449,7.8651276,7.8658066,7.866485,7.8671637,7.867842,7.8685207,7.8691993,7.8698773,7.870556,7.871234,7.8719125,7.8725905,7.8732686,7.8739467,7.8746247,7.8753023,7.8759804,7.876658,7.877336,7.8780136,7.878691,7.879369,7.8800464,7.880724,7.881401,7.8820786,7.8827558,7.883433,7.88411,7.884787,7.885464,7.8861413,7.8868184,7.887495,7.8881717,7.888849,7.8895254,7.890202,7.8908787,7.8915553,7.8922315,7.892908,7.8935843,7.8942604,7.894937,7.895613,7.896289,7.896965,7.897641,7.8983173,7.898993,7.8996687,7.9003444,7.90102,7.9016957,7.9023714,7.903047,7.903723,7.904398,7.905073,7.905749,7.906424,7.9070992,7.9077744,7.908449,7.9091244,7.909799,7.9104743,7.911149,7.9118237,7.9124985,7.913173,7.913848,7.914522,7.915197,7.915871,7.916546,7.91722,7.9178944,7.9185686,7.919243,7.9199166,7.920591,7.9212646,7.921939,7.9226127,7.9232864,7.92396,7.924634,7.9253073,7.925981,7.926655],"x":[3.0,3.0033986405437827,3.006797281087565,3.0101959216313476,3.01359456217513,3.0169932027189126,3.020391843262695,3.0237904838064775,3.0271891243502598,3.0305877648940425,3.0339864054378247,3.0373850459816074,3.0407836865253897,3.0441823270691724,3.0475809676129546,3.0509796081567373,3.05437824870052,3.0577768892443022,3.061175529788085,3.064574170331867,3.06797281087565,3.071371451419432,3.074770091963215,3.078168732506997,3.0815673730507798,3.084966013594562,3.0883646541383447,3.091763294682127,3.0951619352259097,3.098560575769692,3.1019592163134746,3.1053578568572573,3.1087564974010395,3.1121551379448222,3.1155537784886045,3.118952419032387,3.1223510595761694,3.125749700119952,3.1291483406637344,3.132546981207517,3.1359456217512993,3.139344262295082,3.1427429028388643,3.146141543382647,3.1495401839264296,3.152938824470212,3.1563374650139946,3.159736105557777,3.1631347461015595,3.166533386645342,3.1699320271891245,3.1733306677329067,3.1767293082766894,3.1801279488204717,3.1835265893642544,3.1869252299080366,3.1903238704518193,3.1937225109956016,3.1971211515393843,3.200519792083167,3.203918432626949,3.207317073170732,3.210715713714514,3.214114354258297,3.217512994802079,3.220911635345862,3.224310275889644,3.2277089164334267,3.231107556977209,3.2345061975209917,3.237904838064774,3.2413034786085566,3.244702119152339,3.2481007596961216,3.2514994002399042,3.2548980407836865,3.258296681327469,3.2616953218712514,3.265093962415034,3.2684926029588164,3.271891243502599,3.2752898840463813,3.278688524590164,3.2820871651339463,3.285485805677729,3.288884446221511,3.292283086765294,3.295681727309076,3.299080367852859,3.3024790083966415,3.305877648940424,3.3092762894842065,3.3126749300279887,3.3160735705717714,3.3194722111155537,3.3228708516593364,3.3262694922031186,3.3296681327469013,3.3330667732906836,3.3364654138344663,3.3398640543782485,3.343262694922031,3.3466613354658135,3.350059976009596,3.353458616553379,3.356857257097161,3.360255897640944,3.363654538184726,3.3670531787285087,3.370451819272291,3.3738504598160737,3.377249100359856,3.3806477409036386,3.384046381447421,3.3874450219912036,3.390843662534986,3.3942423030787685,3.3976409436225508,3.4010395841663335,3.404438224710116,3.4078368652538984,3.411235505797681,3.4146341463414633,3.418032786885246,3.4214314274290283,3.424830067972811,3.4282287085165932,3.431627349060376,3.435025989604158,3.438424630147941,3.441823270691723,3.445221911235506,3.4486205517792885,3.4520191923230708,3.4554178328668534,3.4588164734106357,3.4622151139544184,3.4656137544982006,3.4690123950419833,3.4724110355857656,3.4758096761295483,3.4792083166733305,3.482606957217113,3.4860055977608955,3.489404238304678,3.4928028788484604,3.496201519392243,3.499600159936026,3.502998800479808,3.5063974410235907,3.509796081567373,3.5131947221111557,3.516593362654938,3.5199920031987206,3.523390643742503,3.5267892842862856,3.530187924830068,3.5335865653738505,3.5369852059176328,3.5403838464614155,3.5437824870051977,3.5471811275489804,3.550579768092763,3.5539784086365453,3.557377049180328,3.5607756897241103,3.564174330267893,3.5675729708116752,3.570971611355458,3.57437025189924,3.577768892443023,3.581167532986805,3.584566173530588,3.58796481407437,3.5913634546181528,3.594762095161935,3.5981607357057177,3.6015593762495004,3.6049580167932826,3.6083566573370653,3.6117552978808476,3.6151539384246303,3.6185525789684125,3.6219512195121952,3.6253498600559775,3.62874850059976,3.6321471411435424,3.635545781687325,3.6389444222311074,3.64234306277489,3.6457417033186723,3.649140343862455,3.6525389844062377,3.65593762495002,3.6593362654938026,3.662734906037585,3.6661335465813676,3.66953218712515,3.6729308276689325,3.676329468212715,3.6797281087564975,3.6831267493002797,3.6865253898440624,3.6899240303878447,3.6933226709316274,3.69672131147541,3.7001199520191923,3.703518592562975,3.7069172331067572,3.71031587365054,3.713714514194322,3.717113154738105,3.720511795281887,3.72391043582567,3.727309076369452,3.7307077169132348,3.734106357457017,3.7375049980007997,3.740903638544582,3.7443022790883647,3.7477009196321474,3.7510995601759296,3.7544982007197123,3.7578968412634945,3.7612954818072772,3.7646941223510595,3.768092762894842,3.7714914034386244,3.774890043982407,3.7782886845261894,3.781687325069972,3.7850859656137543,3.788484606157537,3.7918832467013193,3.795281887245102,3.7986805277888847,3.802079168332667,3.8054778088764496,3.808876449420232,3.8122750899640145,3.815673730507797,3.8190723710515795,3.8224710115953617,3.8258696521391444,3.8292682926829267,3.8326669332267094,3.8360655737704916,3.8394642143142743,3.8428628548580566,3.8462614954018393,3.849660135945622,3.853058776489404,3.856457417033187,3.859856057576969,3.863254698120752,3.866653338664534,3.870051979208317,3.873450619752099,3.8768492602958817,3.880247900839664,3.8836465413834467,3.887045181927229,3.8904438224710116,3.893842463014794,3.8972411035585766,3.9006397441023593,3.9040383846461415,3.907437025189924,3.9108356657337064,3.914234306277489,3.9176329468212714,3.921031587365054,3.9244302279088363,3.927828868452619,3.9312275089964013,3.934626149540184,3.938024790083966,3.941423430627749,3.9448220711715316,3.948220711715314,3.9516193522590966,3.955017992802879,3.9584166333466615,3.9618152738904437,3.9652139144342264,3.9686125549780087,3.9720111955217914,3.9754098360655736,3.9788084766093563,3.9822071171531386,3.9856057576969213,3.9890043982407035,3.992403038784486,3.995801679328269,3.999200319872051,4.002598960415834,4.005997600959616,4.009396241503398,4.0127948820471815,4.016193522590964,4.019592163134746,4.022990803678528,4.026389444222311,4.029788084766094,4.033186725309876,4.036585365853658,4.039984006397441,4.0433826469412235,4.046781287485006,4.050179928028789,4.053578568572571,4.056977209116353,4.060375849660136,4.063774490203919,4.067173130747701,4.070571771291483,4.0739704118352655,4.077369052379049,4.080767692922831,4.084166333466613,4.087564974010395,4.090963614554179,4.094362255097961,4.097760895641743,4.101159536185526,4.1045581767293084,4.107956817273091,4.111355457816873,4.114754098360656,4.118152738904438,4.121551379448221,4.124950019992003,4.128348660535786,4.131747301079568,4.1351459416233505,4.138544582167133,4.141943222710916,4.145341863254698,4.14874050379848,4.1521391443422635,4.155537784886046,4.158936425429828,4.16233506597361,4.165733706517393,4.169132347061176,4.172530987604958,4.17592962814874,4.179328268692523,4.1827269092363055,4.186125549780088,4.18952419032387,4.192922830867653,4.196321471411435,4.199720111955218,4.203118752499001,4.206517393042783,4.209916033586565,4.2133146741303475,4.216713314674131,4.220111955217913,4.223510595761695,4.226909236305477,4.230307876849261,4.233706517393043,4.237105157936825,4.240503798480607,4.2439024390243905,4.247301079568173,4.250699720111955,4.254098360655738,4.25749700119952,4.260895641743303,4.264294282287085,4.267692922830868,4.27109156337465,4.2744902039184325,4.277888844462215,4.281287485005998,4.28468612554978,4.288084766093562,4.291483406637345,4.294882047181128,4.29828068772491,4.301679328268692,4.305077968812475,4.308476609356258,4.31187524990004,4.315273890443822,4.318672530987605,4.3220711715313875,4.32546981207517,4.328868452618952,4.332267093162735,4.335665733706517,4.3390643742503,4.342463014794083,4.345861655337865,4.349260295881647,4.35265893642543,4.356057576969213,4.359456217512995,4.362854858056777,4.3662534986005594,4.369652139144343,4.373050779688125,4.376449420231907,4.379848060775689,4.3832467013194725,4.386645341863255,4.390043982407037,4.39344262295082,4.396841263494602,4.400239904038385,4.403638544582167,4.40703718512595,4.410435825669732,4.4138344662135145,4.417233106757297,4.42063174730108,4.424030387844862,4.427429028388644,4.430827668932427,4.43422630947621,4.437624950019992,4.441023590563774,4.444422231107557,4.44782087165134,4.451219512195122,4.454618152738904,4.458016793282687,4.4614154338264695,4.464814074370252,4.468212714914034,4.471611355457817,4.475009996001599,4.478408636545382,4.481807277089164,4.485205917632947,4.488604558176729,4.492003198720512,4.495401839264295,4.498800479808077,4.502199120351859,4.5055977608956415,4.508996401439425,4.512395041983207,4.515793682526989,4.519192323070771,4.5225909636145545,4.525989604158337,4.529388244702119,4.532786885245901,4.536185525789684,4.539584166333467,4.542982806877249,4.546381447421032,4.549780087964814,4.5531787285085965,4.556577369052379,4.559976009596162,4.563374650139944,4.566773290683726,4.570171931227509,4.573570571771292,4.576969212315074,4.580367852858856,4.5837664934026385,4.587165133946422,4.590563774490204,4.593962415033986,4.597361055577769,4.600759696121552,4.604158336665334,4.607556977209116,4.610955617752899,4.614354258296681,4.617752898840464,4.621151539384246,4.624550179928029,4.627948820471811,4.631347461015594,4.634746101559376,4.638144742103159,4.641543382646941,4.6449420231907235,4.648340663734507,4.651739304278289,4.655137944822071,4.658536585365853,4.6619352259096365,4.665333866453419,4.668732506997201,4.672131147540983,4.675529788084766,4.678928428628549,4.682327069172331,4.685725709716113,4.689124350259896,4.6925229908036785,4.695921631347461,4.699320271891244,4.702718912435026,4.706117552978808,4.709516193522591,4.712914834066374,4.716313474610156,4.719712115153938,4.7231107556977205,4.726509396241504,4.729908036785286,4.733306677329068,4.73670531787285,4.740103958416634,4.743502598960416,4.746901239504198,4.750299880047981,4.7536985205917635,4.757097161135546,4.760495801679328,4.763894442223111,4.767293082766893,4.770691723310676,4.774090363854458,4.777489004398241,4.780887644942023,4.7842862854858055,4.787684926029588,4.791083566573371,4.794482207117153,4.797880847660935,4.8012794882047185,4.804678128748501,4.808076769292283,4.811475409836065,4.814874050379848,4.818272690923631,4.821671331467413,4.825069972011195,4.828468612554978,4.8318672530987605,4.835265893642543,4.838664534186325,4.842063174730108,4.84546181527389,4.848860455817673,4.852259096361456,4.855657736905238,4.85905637744902,4.8624550179928026,4.865853658536586,4.869252299080368,4.87265093962415,4.876049580167932,4.879448220711716,4.882846861255498,4.88624550179928,4.889644142343063,4.8930427828868455,4.896441423430628,4.89984006397441,4.903238704518193,4.906637345061975,4.910035985605758,4.91343462614954,4.916833266693323,4.920231907237105,4.9236305477808875,4.92702918832467,4.930427828868453,4.933826469412235,4.937225109956017,4.9406237504998005,4.944022391043583,4.947421031587365,4.950819672131147,4.95421831267493,4.957616953218713,4.961015593762495,4.964414234306277,4.96781287485006,4.9712115153938425,4.974610155937625,4.978008796481407,4.98140743702519,4.984806077568972,4.988204718112755,4.991603358656538,4.99500199920032,4.998400639744102,5.001799280287885,5.005197920831668,5.00859656137545,5.011995201919232,5.0153938424630145,5.018792483006798,5.02219112355058,5.025589764094362,5.028988404638144,5.0323870451819275,5.03578568572571,5.039184326269492,5.042582966813275,5.045981607357057,5.04938024790084,5.052778888444622,5.056177528988405,5.059576169532187,5.0629748100759695,5.066373450619752,5.069772091163535,5.073170731707317,5.076569372251099,5.079968012794882,5.083366653338665,5.086765293882447,5.090163934426229,5.093562574970012,5.096961215513795,5.100359856057577,5.103758496601359,5.107157137145142,5.1105557776889246,5.113954418232707,5.117353058776489,5.120751699320272,5.124150339864054,5.127548980407837,5.130947620951619,5.134346261495402,5.137744902039184,5.141143542582967,5.14454218312675,5.147940823670532,5.151339464214314,5.1547381047580965,5.15813674530188,5.161535385845662,5.164934026389444,5.168332666933226,5.1717313074770095,5.175129948020792,5.178528588564574,5.181927229108356,5.185325869652139,5.188724510195922,5.192123150739704,5.195521791283487,5.198920431827269,5.2023190723710515,5.205717712914834,5.209116353458617,5.212514994002399,5.215913634546181,5.219312275089964,5.222710915633747,5.226109556177529,5.229508196721311,5.2329068372650935,5.236305477808877,5.239704118352659,5.243102758896441,5.246501399440224,5.249900039984007,5.253298680527789,5.256697321071571,5.260095961615354,5.2634946021591364,5.266893242702919,5.270291883246701,5.273690523790484,5.277089164334266,5.280487804878049,5.283886445421831,5.287285085965614,5.290683726509396,5.2940823670531785,5.297481007596962,5.300879648140744,5.304278288684526,5.307676929228308,5.3110755697720915,5.314474210315874,5.317872850859656,5.321271491403438,5.324670131947221,5.328068772491004,5.331467413034786,5.334866053578568,5.338264694122351,5.3416633346661335,5.345061975209916,5.348460615753699,5.351859256297481,5.355257896841263,5.358656537385046,5.362055177928829,5.365453818472611,5.368852459016393,5.3722510995601755,5.375649740103959,5.379048380647741,5.382447021191523,5.385845661735305,5.389244302279089,5.392642942822871,5.396041583366653,5.399440223910436,5.4028388644542185,5.406237504998001,5.409636145541783,5.413034786085566,5.416433426629348,5.419832067173131,5.423230707716913,5.426629348260696,5.430027988804478,5.4334266293482605,5.436825269892044,5.440223910435826,5.443622550979608,5.44702119152339,5.4504198320671735,5.453818472610956,5.457217113154738,5.46061575369852,5.464014394242303,5.467413034786086,5.470811675329868,5.47421031587365,5.477608956417433,5.4810075969612155,5.484406237504998,5.487804878048781,5.491203518592563,5.494602159136345,5.498000799680128,5.501399440223911,5.504798080767693,5.508196721311475,5.511595361855258,5.514994002399041,5.518392642942823,5.521791283486605,5.5251899240303874,5.528588564574171,5.531987205117953,5.535385845661735,5.538784486205518,5.5421831267493005,5.545581767293083,5.548980407836865,5.552379048380648,5.55577768892443,5.559176329468213,5.562574970011995,5.565973610555778,5.56937225109956,5.5727708916433425,5.576169532187125,5.579568172730908,5.58296681327469,5.586365453818472,5.5897640943622555,5.593162734906038,5.59656137544982,5.599960015993602,5.603358656537385,5.606757297081168,5.61015593762495,5.613554578168732,5.616953218712515,5.6203518592562975,5.62375049980008,5.627149140343862,5.630547780887645,5.633946421431427,5.63734506197521,5.640743702518993,5.644142343062775,5.647540983606557,5.65093962415034,5.654338264694123,5.657736905237905,5.661135545781687,5.6645341863254695,5.667932826869253,5.671331467413035,5.674730107956817,5.678128748500599,5.6815273890443825,5.684926029588165,5.688324670131947,5.69172331067573,5.695121951219512,5.698520591763295,5.701919232307077,5.70531787285086,5.708716513394642,5.7121151539384245,5.715513794482207,5.71891243502599,5.722311075569772,5.725709716113554,5.729108356657337,5.73250699720112,5.735905637744902,5.739304278288684,5.742702918832467,5.74610155937625,5.749500199920032,5.752898840463814,5.756297481007597,5.7596961215513796,5.763094762095162,5.766493402638944,5.769892043182727,5.773290683726509,5.776689324270292,5.780087964814074,5.783486605357857,5.786885245901639,5.790283886445422,5.793682526989205,5.797081167532987,5.800479808076769,5.8038784486205515,5.807277089164335,5.810675729708117,5.814074370251899,5.817473010795681,5.8208716513394645,5.824270291883247,5.827668932427029,5.831067572970811,5.834466213514594,5.837864854058377,5.841263494602159,5.844662135145942,5.848060775689724,5.8514594162335065,5.854858056777289,5.858256697321072,5.861655337864854,5.865053978408636,5.868452618952419,5.871851259496202,5.875249900039984,5.878648540583766,5.8820471811275485,5.885445821671332,5.888844462215114,5.892243102758896,5.895641743302679,5.899040383846462,5.902439024390244,5.905837664934026,5.909236305477809,5.9126349460215915,5.916033586565374,5.919432227109156,5.922830867652939,5.926229508196721,5.929628148740504,5.933026789284287,5.936425429828069,5.939824070371851,5.9432227109156335,5.946621351459417,5.950019992003199,5.953418632546981,5.956817273090763,5.9602159136345465,5.963614554178329,5.967013194722111,5.970411835265893,5.973810475809676,5.977209116353459,5.980607756897241,5.984006397441024,5.987405037984806,5.9908036785285885,5.994202319072371,5.997600959616154,6.000999600159936,6.004398240703718,6.007796881247501,6.011195521791284,6.014594162335066,6.017992802878848,6.0213914434226306,6.024790083966414,6.028188724510196,6.031587365053978,6.034986005597761,6.038384646141544,6.041783286685326,6.045181927229108,6.048580567772891,6.0519792083166735,6.055377848860456,6.058776489404238,6.062175129948021,6.065573770491803,6.068972411035586,6.072371051579368,6.075769692123151,6.079168332666933,6.0825669732107155,6.085965613754499,6.089364254298281,6.092762894842063,6.096161535385845,6.0995601759296285,6.102958816473411,6.106357457017193,6.109756097560975,6.113154738104758,6.116553378648541,6.119952019192323,6.123350659736105,6.126749300279888,6.1301479408236705,6.133546581367453,6.136945221911236,6.140343862455018,6.1437425029988,6.147141143542583,6.150539784086366,6.153938424630148,6.15733706517393,6.160735705717713,6.164134346261496,6.167532986805278,6.17093162734906,6.1743302678928424,6.177728908436626,6.181127548980408,6.18452618952419,6.187924830067973,6.1913234706117555,6.194722111155538,6.19812075169932,6.201519392243103,6.204918032786885,6.208316673330668,6.21171531387445,6.215113954418233,6.218512594962015,6.2219112355057975,6.22530987604958,6.228708516593363,6.232107157137145,6.235505797680927,6.2389044382247105,6.242303078768493,6.245701719312275,6.249100359856057,6.25249900039984,6.255897640943623,6.259296281487405,6.262694922031187,6.26609356257497,6.2694922031187525,6.272890843662535,6.276289484206317,6.2796881247501,6.283086765293882,6.286485405837665,6.289884046381448,6.29328268692523,6.296681327469012,6.300079968012795,6.303478608556578,6.30687724910036,6.310275889644142,6.3136745301879245,6.317073170731708,6.32047181127549,6.323870451819272,6.327269092363054,6.3306677329068375,6.33406637345062,6.337465013994402,6.340863654538185,6.344262295081967,6.34766093562575,6.351059576169532,6.354458216713315,6.357856857257097,6.3612554978008795,6.364654138344662,6.368052778888445,6.371451419432227,6.374850059976009,6.378248700519792,6.381647341063575,6.385045981607357,6.388444622151139,6.391843262694922,6.395241903238705,6.398640543782487,6.402039184326269,6.405437824870052,6.408836465413835,6.412235105957617,6.415633746501399,6.419032387045182,6.4224310275889644,6.425829668132747,6.429228308676529,6.432626949220312,6.436025589764094,6.439424230307877,6.44282287085166,6.446221511395442,6.449620151939224,6.4530187924830065,6.45641743302679,6.459816073570572,6.463214714114354,6.466613354658136,6.4700119952019195,6.473410635745702,6.476809276289484,6.480207916833267,6.483606557377049,6.487005197920832,6.490403838464614,6.493802479008397,6.497201119552179,6.5005997600959615,6.503998400639744,6.507397041183527,6.510795681727309,6.514194322271091,6.517592962814874,6.520991603358657,6.524390243902439,6.527788884446221,6.531187524990004,6.534586165533787,6.537984806077569,6.541383446621351,6.544782087165134,6.548180727708917,6.551579368252699,6.554978008796481,6.558376649340264,6.5617752898840465,6.565173930427829,6.568572570971611,6.571971211515394,6.575369852059176,6.578768492602959,6.582167133146742,6.585565773690524,6.588964414234306,6.5923630547780885,6.595761695321872,6.599160335865654,6.602558976409436,6.605957616953218,6.6093562574970015,6.612754898040784,6.616153538584566,6.619552179128348,6.622950819672131,6.626349460215914,6.629748100759696,6.633146741303479,6.636545381847261,6.6399440223910435,6.643342662934826,6.646741303478609,6.650139944022391,6.653538584566173,6.656937225109956,6.660335865653739,6.663734506197521,6.667133146741303,6.670531787285086,6.673930427828869,6.677329068372651,6.680727708916433,6.684126349460216,6.687524990003999,6.690923630547781,6.694322271091563,6.697720911635346,6.7011195521791285,6.704518192722911,6.707916833266693,6.711315473810476,6.714714114354258,6.718112754898041,6.721511395441823,6.724910035985606,6.728308676529388,6.7317073170731705,6.735105957616954,6.738504598160736,6.741903238704518,6.7453018792483,6.7487005197920835,6.752099160335866,6.755497800879648,6.75889644142343,6.762295081967213,6.765693722510996,6.769092363054778,6.77249100359856,6.775889644142343,6.7792882846861255,6.782686925229908,6.786085565773691,6.789484206317473,6.792882846861255,6.796281487405038,6.799680127948821,6.803078768492603,6.806477409036385,6.809876049580168,6.813274690123951,6.816673330667733,6.820071971211515,6.8234706117552975,6.826869252299081,6.830267892842863,6.833666533386645,6.837065173930428,6.8404638144742105,6.843862455017993,6.847261095561775,6.850659736105558,6.85405837664934,6.857457017193123,6.860855657736905,6.864254298280688,6.86765293882447,6.8710515793682525,6.874450219912035,6.877848860455818,6.8812475009996,6.884646141543382,6.8880447820871655,6.891443422630948,6.89484206317473,6.898240703718512,6.901639344262295,6.905037984806078,6.90843662534986,6.911835265893642,6.915233906437425,6.9186325469812076,6.92203118752499,6.925429828068772,6.928828468612555,6.932227109156337,6.93562574970012,6.939024390243903,6.942423030787685,6.945821671331467,6.94922031187525,6.952618952419033,6.956017592962815,6.959416233506597,6.9628148740503795,6.966213514594163,6.969612155137945,6.973010795681727,6.976409436225509,6.9798080767692925,6.983206717313075,6.986605357856857,6.99000399840064,6.993402638944422,6.996801279488205,7.000199920031987,7.00359856057577,7.006997201119552,7.0103958416633345,7.013794482207117,7.0171931227509,7.020591763294682,7.023990403838464,7.0273890443822475,7.03078768492603,7.034186325469812,7.037584966013594,7.040983606557377,7.04438224710116,7.047780887644942,7.051179528188724,7.054578168732507,7.05797680927629,7.061375449820072,7.064774090363854,7.068172730907637,7.0715713714514195,7.074970011995202,7.078368652538985,7.081767293082767,7.085165933626549,7.088564574170332,7.091963214714115,7.095361855257897,7.098760495801679,7.1021591363454615,7.105557776889245,7.108956417433027,7.112355057976809,7.115753698520591,7.1191523390643745,7.122550979608157,7.125949620151939,7.129348260695722,7.132746901239504,7.136145541783287,7.139544182327069,7.142942822870852,7.146341463414634,7.1497401039584165,7.153138744502199,7.156537385045982,7.159936025589764,7.163334666133546,7.166733306677329,7.170131947221112,7.173530587764894,7.176929228308676,7.180327868852459,7.183726509396242,7.187125149940024,7.190523790483806,7.193922431027589,7.197321071571372,7.200719712115154,7.204118352658936,7.207516993202719,7.2109156337465015,7.214314274290284,7.217712914834066,7.221111555377849,7.224510195921631,7.227908836465414,7.231307477009197,7.234706117552979,7.238104758096761,7.2415033986405435,7.244902039184327,7.248300679728109,7.251699320271891,7.255097960815673,7.2584966013594565,7.261895241903239,7.265293882447021,7.268692522990803,7.272091163534586,7.275489804078369,7.278888444622151,7.282287085165934,7.285685725709716,7.2890843662534985,7.292483006797281,7.295881647341064,7.299280287884846,7.302678928428628,7.306077568972411,7.309476209516194,7.312874850059976,7.316273490603758,7.319672131147541,7.323070771691324,7.326469412235106,7.329868052778888,7.333266693322671,7.336665333866454,7.340063974410236,7.343462614954018,7.346861255497801,7.3502598960415835,7.353658536585366,7.357057177129148,7.360455817672931,7.363854458216713,7.367253098760496,7.370651739304278,7.374050379848061,7.377449020391843,7.3808476609356255,7.384246301479409,7.387644942023191,7.391043582566973,7.394442223110755,7.3978408636545385,7.401239504198321,7.404638144742103,7.408036785285885,7.411435425829668,7.414834066373451,7.418232706917233,7.421631347461015,7.425029988004798,7.4284286285485805,7.431827269092363,7.435225909636146,7.438624550179928,7.44202319072371,7.445421831267493,7.448820471811276,7.452219112355058,7.45561775289884,7.459016393442623,7.462415033986406,7.465813674530188,7.46921231507397,7.4726109556177525,7.476009596161536,7.479408236705318,7.4828068772491,7.486205517792883,7.4896041583366655,7.493002798880448,7.49640143942423,7.499800079968013,7.503198720511795,7.506597361055578,7.50999600159936,7.513394642143143,7.516793282686925,7.5201919232307075,7.523590563774491,7.526989204318273,7.530387844862055,7.533786485405837,7.5371851259496205,7.540583766493403,7.543982407037185,7.547381047580967,7.55077968812475,7.554178328668533,7.557576969212315,7.560975609756097,7.56437425029988,7.567772890843663,7.571171531387445,7.574570171931228,7.57796881247501,7.5813674530187924,7.584766093562575,7.588164734106358,7.59156337465014,7.594962015193922,7.598360655737705,7.601759296281488,7.60515793682527,7.608556577369052,7.6119552179128345,7.615353858456618,7.6187524990004,7.622151139544182,7.625549780087965,7.6289484206317475,7.63234706117553,7.635745701719312,7.639144342263095,7.642542982806877,7.64594162335066,7.649340263894442,7.652738904438225,7.656137544982007,7.6595361855257895,7.662934826069572,7.666333466613355,7.669732107157137,7.673130747700919,7.6765293882447025,7.679928028788485,7.683326669332267,7.686725309876049,7.690123950419832,7.693522590963615,7.696921231507397,7.700319872051179,7.703718512594962,7.707117153138745,7.710515793682527,7.713914434226309,7.717313074770092,7.7207117153138745,7.724110355857657,7.72750899640144,7.730907636945222,7.734306277489004,7.737704918032787,7.74110355857657,7.744502199120352,7.747900839664134,7.7512994802079165,7.7546981207517,7.758096761295482,7.761495401839264,7.764894042383046,7.7682926829268295,7.771691323470612,7.775089964014394,7.778488604558177,7.781887245101959,7.785285885645742,7.788684526189524,7.792083166733307,7.795481807277089,7.7988804478208715,7.802279088364654,7.805677728908437,7.809076369452219,7.812475009996001,7.815873650539784,7.819272291083567,7.822670931627349,7.826069572171131,7.829468212714914,7.832866853258697,7.836265493802479,7.839664134346261,7.843062774890044,7.846461415433827,7.849860055977609,7.853258696521391,7.856657337065174,7.8600559776089565,7.863454618152739,7.866853258696521,7.870251899240304,7.873650539784086,7.877049180327869,7.880447820871652,7.883846461415434,7.887245101959216,7.8906437425029985,7.894042383046782,7.897441023590564,7.900839664134346,7.904238304678128,7.9076369452219115,7.911035585765694,7.914434226309476,7.917832866853258,7.921231507397041,7.924630147940824,7.928028788484606,7.931427429028389,7.934826069572171,7.9382247101159535,7.941623350659736,7.945021991203519,7.948420631747301,7.951819272291083,7.955217912834866,7.958616553378649,7.962015193922431,7.965413834466213,7.968812475009996,7.972211115553779,7.975609756097561,7.979008396641343,7.982407037185126,7.985805677728909,7.989204318272691,7.992602958816473,7.996001599360256,7.9994002399040385,8.002798880447822,8.006197520991604,8.009596161535386,8.012994802079168,8.01639344262295,8.019792083166733,8.023190723710515,8.0265893642543,8.029988004798081,8.033386645341864,8.036785285885646,8.040183926429428,8.04358256697321,8.046981207516993,8.050379848060775,8.053778488604559,8.057177129148341,8.060575769692123,8.063974410235906,8.067373050779688,8.07077169132347,8.074170331867252,8.077568972411036,8.080967612954819,8.084366253498601,8.087764894042383,8.091163534586165,8.094562175129948,8.09796081567373,8.101359456217512,8.104758096761296,8.108156737305078,8.11155537784886,8.114954018392643,8.118352658936425,8.121751299480207,8.12514994002399,8.128548580567774,8.131947221111556,8.135345861655338,8.13874450219912,8.142143142742903,8.145541783286685,8.148940423830467,8.15233906437425,8.155737704918034,8.159136345461816,8.162534986005598,8.16593362654938,8.169332267093163,8.172730907636945,8.176129548180727,8.179528188724511,8.182926829268293,8.186325469812076,8.189724110355858,8.19312275089964,8.196521391443422,8.199920031987205,8.203318672530987,8.20671731307477,8.210115953618553,8.213514594162335,8.216913234706118,8.2203118752499,8.223710515793682,8.227109156337464,8.230507796881248,8.23390643742503,8.237305077968813,8.240703718512595,8.244102359056377,8.24750099960016,8.250899640143942,8.254298280687724,8.257696921231508,8.26109556177529,8.264494202319073,8.267892842862855,8.271291483406637,8.27469012395042,8.278088764494202,8.281487405037986,8.284886045581768,8.28828468612555,8.291683326669332,8.295081967213115,8.298480607756897,8.30187924830068,8.305277888844461,8.308676529388245,8.312075169932028,8.31547381047581,8.318872451019592,8.322271091563374,8.325669732107157,8.329068372650939,8.332467013194723,8.335865653738505,8.339264294282287,8.34266293482607,8.346061575369852,8.349460215913634,8.352858856457416,8.356257497001199,8.359656137544983,8.363054778088765,8.366453418632547,8.36985205917633,8.373250699720112,8.376649340263894,8.380047980807676,8.38344662135146,8.386845261895242,8.390243902439025,8.393642542982807,8.39704118352659,8.400439824070371,8.403838464614154,8.407237105157936,8.41063574570172,8.414034386245502,8.417433026789285,8.420831667333067,8.424230307876849,8.427628948420631,8.431027588964414,8.434426229508198,8.43782487005198,8.441223510595762,8.444622151139544,8.448020791683327,8.451419432227109,8.454818072770891,8.458216713314673,8.461615353858457,8.46501399440224,8.468412634946022,8.471811275489804,8.475209916033586,8.478608556577369,8.48200719712115,8.485405837664935,8.488804478208717,8.4922031187525,8.495601759296282,8.499000399840064,8.502399040383846,8.505797680927628,8.50919632147141,8.512594962015195,8.515993602558977,8.519392243102759,8.522790883646541,8.526189524190324,8.529588164734106,8.532986805277888,8.536385445821672,8.539784086365454,8.543182726909237,8.546581367453019,8.549980007996801,8.553378648540583,8.556777289084366,8.560175929628148,8.563574570171932,8.566973210715714,8.570371851259496,8.573770491803279,8.577169132347061,8.580567772890843,8.583966413434625,8.58736505397841,8.590763694522192,8.594162335065974,8.597560975609756,8.600959616153538,8.60435825669732,8.607756897241103,8.611155537784885,8.61455417832867,8.617952818872451,8.621351459416234,8.624750099960016,8.628148740503798,8.63154738104758,8.634946021591363,8.638344662135147,8.641743302678929,8.645141943222711,8.648540583766493,8.651939224310276,8.655337864854058,8.65873650539784,8.662135145941622,8.665533786485407,8.668932427029189,8.672331067572971,8.675729708116753,8.679128348660536,8.682526989204318,8.6859256297481,8.689324270291884,8.692722910835666,8.696121551379449,8.69952019192323,8.702918832467013,8.706317473010795,8.709716113554578,8.71311475409836,8.716513394642144,8.719912035185926,8.723310675729708,8.72670931627349,8.730107956817273,8.733506597361055,8.736905237904837,8.740303878448621,8.743702518992404,8.747101159536186,8.750499800079968,8.75389844062375,8.757297081167533,8.760695721711315,8.764094362255097,8.767493002798881,8.770891643342663,8.774290283886446,8.777688924430228,8.78108756497401,8.784486205517792,8.787884846061575,8.791283486605359,8.79468212714914,8.798080767692923,8.801479408236705,8.804878048780488,8.80827668932427,8.811675329868052,8.815073970411834,8.818472610955618,8.8218712514994,8.825269892043183,8.828668532586965,8.832067173130747,8.83546581367453,8.838864454218312,8.842263094762096,8.845661735305878,8.84906037584966,8.852459016393443,8.855857656937225,8.859256297481007,8.86265493802479,8.866053578568573,8.869452219112356,8.872850859656138,8.87624950019992,8.879648140743702,8.883046781287485,8.886445421831267,8.88984406237505,8.893242702918833,8.896641343462615,8.900039984006398,8.90343862455018,8.906837265093962,8.910235905637744,8.913634546181527,8.91703318672531,8.920431827269093,8.923830467812875,8.927229108356658,8.93062774890044,8.934026389444222,8.937425029988004,8.940823670531787,8.94422231107557,8.947620951619353,8.951019592163135,8.954418232706917,8.9578168732507,8.961215513794482,8.964614154338264,8.968012794882048,8.97141143542583,8.974810075969613,8.978208716513395,8.981607357057177,8.98500599760096,8.988404638144742,8.991803278688524,8.995201919232308,8.99860055977609,9.001999200319872,9.005397840863655,9.008796481407437,9.012195121951219,9.015593762495001,9.018992403038785,9.022391043582568,9.02578968412635,9.029188324670132,9.032586965213914,9.035985605757697,9.039384246301479,9.042782886845261,9.046181527389045,9.049580167932827,9.05297880847661,9.056377449020392,9.059776089564174,9.063174730107956,9.066573370651739,9.069972011195523,9.073370651739305,9.076769292283087,9.08016793282687,9.083566573370652,9.086965213914434,9.090363854458216,9.093762495001998,9.097161135545782,9.100559776089565,9.103958416633347,9.10735705717713,9.110755697720911,9.114154338264694,9.117552978808476,9.12095161935226,9.124350259896042,9.127748900439824,9.131147540983607,9.134546181527389,9.137944822071171,9.141343462614953,9.144742103158736,9.14814074370252,9.151539384246302,9.154938024790084,9.158336665333866,9.161735305877649,9.165133946421431,9.168532586965213,9.171931227508997,9.17532986805278,9.178728508596562,9.182127149140344,9.185525789684126,9.188924430227909,9.19232307077169,9.195721711315473,9.199120351859257,9.20251899240304,9.205917632946822,9.209316273490604,9.212714914034386,9.216113554578168,9.21951219512195,9.222910835665735,9.226309476209517,9.229708116753299,9.233106757297081,9.236505397840864,9.239904038384646,9.243302678928428,9.24670131947221,9.250099960015994,9.253498600559777,9.256897241103559,9.260295881647341,9.263694522191123,9.267093162734906,9.270491803278688,9.273890443822472,9.277289084366254,9.280687724910036,9.284086365453819,9.2874850059976,9.290883646541383,9.294282287085165,9.297680927628948,9.301079568172732,9.304478208716514,9.307876849260296,9.311275489804078,9.31467413034786,9.318072770891643,9.321471411435425,9.32487005197921,9.328268692522991,9.331667333066774,9.335065973610556,9.338464614154338,9.34186325469812,9.345261895241903,9.348660535785685,9.352059176329469,9.355457816873251,9.358856457417033,9.362255097960816,9.365653738504598,9.36905237904838,9.372451019592162,9.375849660135946,9.379248300679729,9.382646941223511,9.386045581767293,9.389444222311075,9.392842862854858,9.39624150339864,9.399640143942422,9.403038784486206,9.406437425029988,9.40983606557377,9.413234706117553,9.416633346661335,9.420031987205117,9.4234306277489,9.426829268292684,9.430227908836466,9.433626549380248,9.43702518992403,9.440423830467813,9.443822471011595,9.447221111555377,9.45061975209916,9.454018392642944,9.457417033186726,9.460815673730508,9.46421431427429,9.467612954818073,9.471011595361855,9.474410235905637,9.477808876449421,9.481207516993203,9.484606157536986,9.488004798080768,9.49140343862455,9.494802079168332,9.498200719712115,9.501599360255897,9.50499800079968,9.508396641343463,9.511795281887245,9.515193922431028,9.51859256297481,9.521991203518592,9.525389844062374,9.528788484606158,9.53218712514994,9.535585765693723,9.538984406237505,9.542383046781287,9.54578168732507,9.549180327868852,9.552578968412634,9.555977608956418,9.5593762495002,9.562774890043983,9.566173530587765,9.569572171131547,9.57297081167533,9.576369452219112,9.579768092762896,9.583166733306678,9.58656537385046,9.589964014394242,9.593362654938025,9.596761295481807,9.60015993602559,9.603558576569371,9.606957217113155,9.610355857656938,9.61375449820072,9.617153138744502,9.620551779288284,9.623950419832067,9.627349060375849,9.630747700919633,9.634146341463415,9.637544982007197,9.64094362255098,9.644342263094762,9.647740903638544,9.651139544182326,9.654538184726109,9.657936825269893,9.661335465813675,9.664734106357457,9.66813274690124,9.671531387445022,9.674930027988804,9.678328668532586,9.68172730907637,9.685125949620152,9.688524590163935,9.691923230707717,9.6953218712515,9.698720511795281,9.702119152339064,9.705517792882846,9.70891643342663,9.712315073970412,9.715713714514195,9.719112355057977,9.722510995601759,9.725909636145541,9.729308276689324,9.732706917233108,9.73610555777689,9.739504198320672,9.742902838864454,9.746301479408237,9.749700119952019,9.753098760495801,9.756497401039583,9.759896041583367,9.76329468212715,9.766693322670932,9.770091963214714,9.773490603758496,9.776889244302279,9.78028788484606,9.783686525389845,9.787085165933627,9.79048380647741,9.793882447021192,9.797281087564974,9.800679728108756,9.804078368652538,9.80747700919632,9.810875649740105,9.814274290283887,9.81767293082767,9.821071571371451,9.824470211915234,9.827868852459016,9.831267493002798,9.834666133546582,9.838064774090364,9.841463414634147,9.844862055177929,9.848260695721711,9.851659336265493,9.855057976809276,9.858456617353058,9.861855257896842,9.865253898440624,9.868652538984406,9.872051179528189,9.875449820071971,9.878848460615753,9.882247101159535,9.88564574170332,9.889044382247102,9.892443022790884,9.895841663334666,9.899240303878448,9.90263894442223,9.906037584966013,9.909436225509797,9.91283486605358,9.916233506597361,9.919632147141144,9.923030787684926,9.926429428228708,9.92982806877249,9.933226709316273,9.936625349860057,9.940023990403839,9.943422630947621,9.946821271491403,9.950219912035186,9.953618552578968,9.95701719312275,9.960415833666534,9.963814474210317,9.967213114754099,9.970611755297881,9.974010395841663,9.977409036385446,9.980807676929228,9.98420631747301,9.987604958016794,9.991003598560576,9.994402239104359,9.99780087964814,10.001199520191923,10.004598160735705,10.007996801279488,10.011395441823272,10.014794082367054,10.018192722910836,10.021591363454618,10.0249900039984,10.028388644542183,10.031787285085965,10.035185925629747,10.038584566173531,10.041983206717314,10.045381847261096,10.048780487804878,10.05217912834866,10.055577768892443,10.058976409436225,10.062375049980009,10.065773690523791,10.069172331067573,10.072570971611356,10.075969612155138,10.07936825269892,10.082766893242702,10.086165533786485,10.089564174330269,10.092962814874051,10.096361455417833,10.099760095961615,10.103158736505398,10.10655737704918,10.109956017592962,10.113354658136746,10.116753298680528,10.12015193922431,10.123550579768093,10.126949220311875,10.130347860855657,10.13374650139944,10.137145141943222,10.140543782487006,10.143942423030788,10.14734106357457,10.150739704118353,10.154138344662135,10.157536985205917,10.1609356257497,10.164334266293483,10.167732906837266,10.171131547381048,10.17453018792483,10.177928828468612,10.181327469012395,10.184726109556177,10.18812475009996,10.191523390643743,10.194922031187525,10.198320671731308,10.20171931227509,10.205117952818872,10.208516593362654,10.211915233906437,10.21531387445022,10.218712514994003,10.222111155537785,10.225509796081568,10.22890843662535,10.232307077169132,10.235705717712914,10.239104358256697,10.24250299880048,10.245901639344263,10.249300279888045,10.252698920431827,10.25609756097561,10.259496201519392,10.262894842063174,10.266293482606958,10.26969212315074,10.273090763694523,10.276489404238305,10.279888044782087,10.28328668532587,10.286685325869652,10.290083966413434,10.293482606957218,10.296881247501,10.300279888044782,10.303678528588565,10.307077169132347,10.310475809676129,10.313874450219911,10.317273090763695,10.320671731307478,10.32407037185126,10.327469012395042,10.330867652938824,10.334266293482607,10.337664934026389,10.341063574570171,10.344462215113955,10.347860855657737,10.35125949620152,10.354658136745302,10.358056777289084,10.361455417832866,10.364854058376649,10.368252698920433,10.371651339464215,10.375049980007997,10.37844862055178,10.381847261095562,10.385245901639344,10.388644542183126,10.392043182726908,10.395441823270692,10.398840463814475,10.402239104358257,10.40563774490204,10.409036385445821,10.412435025989604,10.415833666533386,10.41923230707717,10.422630947620952,10.426029588164734,10.429428228708517,10.432826869252299,10.436225509796081,10.439624150339863,10.443022790883646,10.44642143142743,10.449820071971212,10.453218712514994,10.456617353058776,10.460015993602559,10.463414634146341,10.466813274690123,10.470211915233907,10.47361055577769,10.477009196321472,10.480407836865254,10.483806477409036,10.487205117952819,10.4906037584966,10.494002399040383,10.497401039584167,10.50079968012795,10.504198320671732,10.507596961215514,10.510995601759296,10.514394242303078,10.51779288284686,10.521191523390645,10.524590163934427,10.527988804478209,10.531387445021991,10.534786085565774,10.538184726109556,10.541583366653338,10.54498200719712,10.548380647740904,10.551779288284687,10.555177928828469,10.558576569372251,10.561975209916033,10.565373850459816,10.568772491003598,10.572171131547382,10.575569772091164,10.578968412634946,10.582367053178729,10.58576569372251,10.589164334266293,10.592562974810075,10.595961615353858,10.599360255897642,10.602758896441424,10.606157536985206,10.609556177528988,10.61295481807277,10.616353458616553,10.619752099160335,10.62315073970412,10.626549380247901,10.629948020791684,10.633346661335466,10.636745301879248,10.64014394242303,10.643542582966813,10.646941223510595,10.650339864054379,10.653738504598161,10.657137145141943,10.660535785685726,10.663934426229508,10.66733306677329,10.670731707317072,10.674130347860856,10.677528988404639,10.680927628948421,10.684326269492203,10.687724910035985,10.691123550579768,10.69452219112355,10.697920831667332,10.701319472211116,10.704718112754898,10.70811675329868,10.711515393842463,10.714914034386245,10.718312674930027,10.72171131547381,10.725109956017594,10.728508596561376,10.731907237105158,10.73530587764894,10.738704518192723,10.742103158736505,10.745501799280287,10.74890043982407,10.752299080367854,10.755697720911636,10.759096361455418,10.7624950019992,10.765893642542983,10.769292283086765,10.772690923630547,10.776089564174331,10.779488204718113,10.782886845261896,10.786285485805678,10.78968412634946,10.793082766893242,10.796481407437025,10.799880047980807,10.80327868852459,10.806677329068373,10.810075969612155,10.813474610155938,10.81687325069972,10.820271891243502,10.823670531787284,10.827069172331068,10.83046781287485,10.833866453418633,10.837265093962415,10.840663734506197,10.84406237504998,10.847461015593762,10.850859656137544,10.854258296681328,10.85765693722511,10.861055577768893,10.864454218312675,10.867852858856457,10.87125149940024,10.874650139944022,10.878048780487806,10.881447421031588,10.88484606157537,10.888244702119152,10.891643342662935,10.895041983206717,10.8984406237505,10.901839264294281,10.905237904838065,10.908636545381848,10.91203518592563,10.915433826469412,10.918832467013194,10.922231107556977,10.925629748100759,10.929028388644543,10.932427029188325,10.935825669732107,10.93922431027589,10.942622950819672,10.946021591363454,10.949420231907236,10.952818872451019,10.956217512994803,10.959616153538585,10.963014794082367,10.96641343462615,10.969812075169932,10.973210715713714,10.976609356257496,10.98000799680128,10.983406637345063,10.986805277888845,10.990203918432627,10.99360255897641,10.997001199520192,11.000399840063974,11.003798480607758,11.00719712115154,11.010595761695322,11.013994402239105,11.017393042782887,11.020791683326669,11.024190323870451,11.027588964414234,11.030987604958018,11.0343862455018,11.037784886045582,11.041183526589364,11.044582167133147,11.047980807676929,11.051379448220711,11.054778088764495,11.058176729308277,11.06157536985206,11.064974010395842,11.068372650939624,11.071771291483406,11.075169932027189,11.07856857257097,11.081967213114755,11.085365853658537,11.08876449420232,11.092163134746102,11.095561775289884,11.098960415833666,11.102359056377448,11.105757696921232,11.109156337465015,11.112554978008797,11.11595361855258,11.119352259096361,11.122750899640144,11.126149540183926,11.129548180727708,11.132946821271492,11.136345461815274,11.139744102359057,11.143142742902839,11.146541383446621,11.149940023990403,11.153338664534186,11.15673730507797,11.160135945621752,11.163534586165534,11.166933226709316,11.170331867253099,11.173730507796881,11.177129148340663,11.180527788884445,11.18392642942823,11.187325069972012,11.190723710515794,11.194122351059576,11.197520991603358,11.20091963214714,11.204318272690923,11.207716913234707,11.21111555377849,11.214514194322271,11.217912834866054,11.221311475409836,11.224710115953618,11.2281087564974,11.231507397041183,11.234906037584967,11.238304678128749,11.241703318672531,11.245101959216314,11.248500599760096,11.251899240303878,11.25529788084766,11.258696521391444,11.262095161935227,11.265493802479009,11.268892443022791,11.272291083566573,11.275689724110356,11.279088364654138,11.28248700519792,11.285885645741704,11.289284286285486,11.292682926829269,11.29608156737305,11.299480207916833,11.302878848460615,11.306277489004398,11.309676129548182,11.313074770091964,11.316473410635746,11.319872051179528,11.32327069172331,11.326669332267093,11.330067972810875,11.333466613354657,11.336865253898441,11.340263894442224,11.343662534986006,11.347061175529788,11.35045981607357,11.353858456617353,11.357257097161135,11.360655737704919,11.364054378248701,11.367453018792483,11.370851659336266,11.374250299880048,11.37764894042383,11.381047580967612,11.384446221511395,11.387844862055179,11.391243502598961,11.394642143142743,11.398040783686525,11.401439424230308,11.40483806477409,11.408236705317872,11.411635345861656,11.415033986405438,11.41843262694922,11.421831267493003,11.425229908036785,11.428628548580567,11.43202718912435,11.435425829668132,11.438824470211916,11.442223110755698,11.44562175129948,11.449020391843263,11.452419032387045,11.455817672930827,11.45921631347461,11.462614954018393,11.466013594562176,11.469412235105958,11.47281087564974,11.476209516193522,11.479608156737305,11.483006797281087,11.48640543782487,11.489804078368653,11.493202718912436,11.496601359456218,11.5,11.503398640543782,11.506797281087564,11.510195921631347,11.51359456217513,11.516993202718913,11.520391843262695,11.523790483806478,11.52718912435026,11.530587764894042,11.533986405437824,11.537385045981607,11.54078368652539,11.544182327069173,11.547580967612955,11.550979608156737,11.55437824870052,11.557776889244302,11.561175529788084,11.564574170331868,11.56797281087565,11.571371451419433,11.574770091963215,11.578168732506997,11.58156737305078,11.584966013594562,11.588364654138344,11.591763294682128,11.59516193522591,11.598560575769692,11.601959216313475,11.605357856857257,11.608756497401039,11.612155137944821,11.615553778488605,11.618952419032388,11.62235105957617,11.625749700119952,11.629148340663734,11.632546981207517,11.635945621751299,11.639344262295081,11.642742902838865,11.646141543382647,11.64954018392643,11.652938824470212,11.656337465013994,11.659736105557776,11.663134746101559,11.666533386645343,11.669932027189125,11.673330667732907,11.67672930827669,11.680127948820472,11.683526589364254,11.686925229908036,11.690323870451818,11.693722510995602,11.697121151539385,11.700519792083167,11.70391843262695,11.707317073170731,11.710715713714514,11.714114354258296,11.71751299480208,11.720911635345862,11.724310275889644,11.727708916433427,11.731107556977209,11.734506197520991,11.737904838064773,11.741303478608556,11.74470211915234,11.748100759696122,11.751499400239904,11.754898040783686,11.758296681327469,11.761695321871251,11.765093962415033,11.768492602958817,11.7718912435026,11.775289884046382,11.778688524590164,11.782087165133946,11.785485805677729,11.78888444622151,11.792283086765293,11.795681727309077,11.79908036785286,11.802479008396642,11.805877648940424,11.809276289484206,11.812674930027988,11.81607357057177,11.819472211115555,11.822870851659337,11.826269492203119,11.829668132746901,11.833066773290684,11.836465413834466,11.839864054378248,11.84326269492203,11.846661335465814,11.850059976009597,11.853458616553379,11.856857257097161,11.860255897640943,11.863654538184726,11.867053178728508,11.870451819272292,11.873850459816074,11.877249100359856,11.880647740903639,11.88404638144742,11.887445021991203,11.890843662534985,11.894242303078768,11.897640943622552,11.901039584166334,11.904438224710116,11.907836865253898,11.91123550579768,11.914634146341463,11.918032786885245,11.92143142742903,11.924830067972811,11.928228708516594,11.931627349060376,11.935025989604158,11.93842463014794,11.941823270691723,11.945221911235505,11.948620551779289,11.952019192323071,11.955417832866853,11.958816473410636,11.962215113954418,11.9656137544982,11.969012395041982,11.972411035585766,11.975809676129549,11.979208316673331,11.982606957217113,11.986005597760895,11.989404238304678,11.99280287884846,11.996201519392242,11.999600159936026,12.002998800479808,12.00639744102359,12.009796081567373,12.013194722111155,12.016593362654937,12.01999200319872,12.023390643742504,12.026789284286286,12.030187924830068,12.03358656537385,12.036985205917633,12.040383846461415,12.043782487005197,12.047181127548981,12.050579768092764,12.053978408636546,12.057377049180328,12.06077568972411,12.064174330267893,12.067572970811675,12.070971611355457,12.074370251899241,12.077768892443023,12.081167532986806,12.084566173530588,12.08796481407437,12.091363454618152,12.094762095161935,12.098160735705719,12.1015593762495,12.104958016793283,12.108356657337065,12.111755297880848,12.11515393842463,12.118552578968412,12.121951219512194,12.125349860055978,12.12874850059976,12.132147141143543,12.135545781687325,12.138944422231107,12.14234306277489,12.145741703318672,12.149140343862456,12.152538984406238,12.15593762495002,12.159336265493803,12.162734906037585,12.166133546581367,12.16953218712515,12.172930827668932,12.176329468212716,12.179728108756498,12.18312674930028,12.186525389844062,12.189924030387845,12.193322670931627,12.19672131147541,12.200119952019193,12.203518592562975,12.206917233106758,12.21031587365054,12.213714514194322,12.217113154738104,12.220511795281887,12.223910435825669,12.227309076369453,12.230707716913235,12.234106357457017,12.2375049980008,12.240903638544582,12.244302279088364,12.247700919632146,12.25109956017593,12.254498200719713,12.257896841263495,12.261295481807277,12.26469412235106,12.268092762894842,12.271491403438624,12.274890043982406,12.27828868452619,12.281687325069973,12.285085965613755,12.288484606157537,12.29188324670132,12.295281887245102,12.298680527788884,12.302079168332668,12.30547780887645,12.308876449420232,12.312275089964015,12.315673730507797,12.319072371051579,12.322471011595361,12.325869652139144,12.329268292682928,12.33266693322671,12.336065573770492,12.339464214314274,12.342862854858057,12.346261495401839,12.349660135945621,12.353058776489405,12.356457417033187,12.35985605757697,12.363254698120752,12.366653338664534,12.370051979208316,12.373450619752099,12.37684926029588,12.380247900839665,12.383646541383447,12.38704518192723,12.390443822471012,12.393842463014794,12.397241103558576,12.400639744102358,12.404038384646142,12.407437025189925,12.410835665733707,12.41423430627749,12.417632946821271,12.421031587365054,12.424430227908836,12.427828868452618,12.431227508996402,12.434626149540184,12.438024790083967,12.441423430627749,12.444822071171531,12.448220711715313,12.451619352259096,12.45501799280288,12.458416633346662,12.461815273890444,12.465213914434226,12.468612554978009,12.472011195521791,12.475409836065573,12.478808476609355,12.48220711715314,12.485605757696922,12.489004398240704,12.492403038784486,12.495801679328268,12.49920031987205,12.502598960415833,12.505997600959617,12.5093962415034,12.512794882047181,12.516193522590964,12.519592163134746,12.522990803678528,12.52638944422231,12.529788084766093,12.533186725309877,12.536585365853659,12.539984006397441,12.543382646941224,12.546781287485006,12.550179928028788,12.55357856857257,12.556977209116354,12.560375849660137,12.563774490203919,12.567173130747701,12.570571771291483,12.573970411835266,12.577369052379048,12.58076769292283,12.584166333466614,12.587564974010396,12.590963614554179,12.59436225509796,12.597760895641743,12.601159536185525,12.604558176729308,12.607956817273092,12.611355457816874,12.614754098360656,12.618152738904438,12.62155137944822,12.624950019992003,12.628348660535785,12.631747301079567,12.635145941623351,12.638544582167134,12.641943222710916,12.645341863254698,12.64874050379848,12.652139144342263,12.655537784886045,12.658936425429829,12.662335065973611,12.665733706517393,12.669132347061176,12.672530987604958,12.67592962814874,12.679328268692522,12.682726909236305,12.686125549780089,12.689524190323871,12.692922830867653,12.696321471411435,12.699720111955218,12.703118752499,12.706517393042782,12.709916033586566,12.713314674130348,12.71671331467413,12.720111955217913,12.723510595761695,12.726909236305477,12.73030787684926,12.733706517393042,12.737105157936826,12.740503798480608,12.74390243902439,12.747301079568173,12.750699720111955,12.754098360655737,12.75749700119952,12.760895641743303,12.764294282287086,12.767692922830868,12.77109156337465,12.774490203918432,12.777888844462215,12.781287485005997,12.78468612554978,12.788084766093563,12.791483406637346,12.794882047181128,12.79828068772491,12.801679328268692,12.805077968812475,12.808476609356257,12.81187524990004,12.815273890443823,12.818672530987605,12.822071171531388,12.82546981207517,12.828868452618952,12.832267093162734,12.835665733706517,12.8390643742503,12.842463014794083,12.845861655337865,12.849260295881647,12.85265893642543,12.856057576969212,12.859456217512994,12.862854858056778,12.86625349860056,12.869652139144343,12.873050779688125,12.876449420231907,12.87984806077569,12.883246701319472,12.886645341863254,12.890043982407038,12.89344262295082,12.896841263494602,12.900239904038385,12.903638544582167,12.907037185125949,12.910435825669731,12.913834466213515,12.917233106757298,12.92063174730108,12.924030387844862,12.927429028388644,12.930827668932427,12.934226309476209,12.937624950019991,12.941023590563775,12.944422231107557,12.94782087165134,12.951219512195122,12.954618152738904,12.958016793282686,12.961415433826469,12.964814074370253,12.968212714914035,12.971611355457817,12.9750099960016,12.978408636545382,12.981807277089164,12.985205917632946,12.988604558176728,12.992003198720512,12.995401839264295,12.998800479808077,13.00219912035186,13.005597760895641,13.008996401439424,13.012395041983206,13.01579368252699,13.019192323070772,13.022590963614554,13.025989604158337,13.029388244702119,13.032786885245901,13.036185525789683,13.039584166333466,13.04298280687725,13.046381447421032,13.049780087964814,13.053178728508597,13.056577369052379,13.059976009596161,13.063374650139943,13.066773290683727,13.07017193122751,13.073570571771292,13.076969212315074,13.080367852858856,13.083766493402639,13.08716513394642,13.090563774490203,13.093962415033987,13.09736105557777,13.100759696121552,13.104158336665334,13.107556977209116,13.110955617752898,13.11435425829668,13.117752898840465,13.121151539384247,13.124550179928029,13.127948820471811,13.131347461015594,13.134746101559376,13.138144742103158,13.141543382646942,13.144942023190724,13.148340663734507,13.151739304278289,13.155137944822071,13.158536585365853,13.161935225909636,13.165333866453418,13.168732506997202,13.172131147540984,13.175529788084766,13.178928428628549,13.18232706917233,13.185725709716113,13.189124350259895,13.19252299080368,13.195921631347462,13.199320271891244,13.202718912435026,13.206117552978808,13.20951619352259,13.212914834066373,13.216313474610155,13.21971211515394,13.223110755697721,13.226509396241504,13.229908036785286,13.233306677329068,13.23670531787285,13.240103958416633,13.243502598960417,13.246901239504199,13.250299880047981,13.253698520591763,13.257097161135546,13.260495801679328,13.26389444222311,13.267293082766892,13.270691723310676,13.274090363854459,13.277489004398241,13.280887644942023,13.284286285485805,13.287684926029588,13.29108356657337,13.294482207117154,13.297880847660936,13.301279488204719,13.3046781287485,13.308076769292283,13.311475409836065,13.314874050379848,13.31827269092363,13.321671331467414,13.325069972011196,13.328468612554978,13.33186725309876,13.335265893642543,13.338664534186325,13.342063174730107,13.345461815273891,13.348860455817674,13.352259096361456,13.355657736905238,13.35905637744902,13.362455017992803,13.365853658536585,13.369252299080367,13.372650939624151,13.376049580167933,13.379448220711716,13.382846861255498,13.38624550179928,13.389644142343062,13.393042782886845,13.396441423430629,13.39984006397441,13.403238704518193,13.406637345061975,13.410035985605758,13.41343462614954,13.416833266693322,13.420231907237104,13.423630547780888,13.42702918832467,13.430427828868453,13.433826469412235,13.437225109956017,13.4406237504998,13.444022391043582,13.447421031587366,13.450819672131148,13.45421831267493,13.457616953218713,13.461015593762495,13.464414234306277,13.46781287485006,13.471211515393842,13.474610155937626,13.478008796481408,13.48140743702519,13.484806077568972,13.488204718112755,13.491603358656537,13.49500199920032,13.498400639744103,13.501799280287885,13.505197920831668,13.50859656137545,13.511995201919232,13.515393842463014,13.518792483006797,13.522191123550579,13.525589764094363,13.528988404638145,13.532387045181927,13.53578568572571,13.539184326269492,13.542582966813274,13.545981607357056,13.54938024790084,13.552778888444623,13.556177528988405,13.559576169532187,13.56297481007597,13.566373450619752,13.569772091163534,13.573170731707316,13.5765693722511,13.579968012794883,13.583366653338665,13.586765293882447,13.59016393442623,13.593562574970012,13.596961215513794,13.600359856057578,13.60375849660136,13.607157137145142,13.610555777688925,13.613954418232707,13.617353058776489,13.620751699320271,13.624150339864054,13.627548980407838,13.63094762095162,13.634346261495402,13.637744902039184,13.641143542582967,13.644542183126749,13.647940823670531,13.651339464214315,13.654738104758097,13.65813674530188,13.661535385845662,13.664934026389444,13.668332666933226,13.671731307477009,13.67512994802079,13.678528588564575,13.681927229108357,13.68532586965214,13.688724510195922,13.692123150739704,13.695521791283486,13.698920431827268,13.702319072371052,13.705717712914835,13.709116353458617,13.7125149940024,13.715913634546181,13.719312275089964,13.722710915633746,13.726109556177528,13.729508196721312,13.732906837265094,13.736305477808877,13.739704118352659,13.743102758896441,13.746501399440223,13.749900039984006,13.75329868052779,13.756697321071572,13.760095961615354,13.763494602159136,13.766893242702919,13.770291883246701,13.773690523790483,13.777089164334265,13.78048780487805,13.783886445421832,13.787285085965614,13.790683726509396,13.794082367053178,13.79748100759696,13.800879648140743,13.804278288684527,13.80767692922831,13.811075569772091,13.814474210315874,13.817872850859656,13.821271491403438,13.82467013194722,13.828068772491003,13.831467413034787,13.834866053578569,13.838264694122351,13.841663334666134,13.845061975209916,13.848460615753698,13.85185925629748,13.855257896841264,13.858656537385047,13.862055177928829,13.865453818472611,13.868852459016393,13.872251099560176,13.875649740103958,13.87904838064774,13.882447021191524,13.885845661735306,13.889244302279089,13.89264294282287,13.896041583366653,13.899440223910435,13.902838864454218,13.906237504998002,13.909636145541784,13.913034786085566,13.916433426629348,13.91983206717313,13.923230707716913,13.926629348260695,13.930027988804477,13.933426629348261,13.936825269892044,13.940223910435826,13.943622550979608,13.94702119152339,13.950419832067173,13.953818472610955,13.957217113154739,13.960615753698521,13.964014394242303,13.967413034786086,13.970811675329868,13.97421031587365,13.977608956417432,13.981007596961215,13.984406237504999,13.987804878048781,13.991203518592563,13.994602159136345,13.998000799680128,14.00139944022391,14.004798080767692,14.008196721311476,14.011595361855258,14.01499400239904,14.018392642942823,14.021791283486605,14.025189924030387,14.02858856457417,14.031987205117952,14.035385845661736,14.038784486205518,14.0421831267493,14.045581767293083,14.048980407836865,14.052379048380647,14.05577768892443,14.059176329468213,14.062574970011996,14.065973610555778,14.06937225109956,14.072770891643342,14.076169532187125,14.079568172730907,14.08296681327469,14.086365453818473,14.089764094362256,14.093162734906038,14.09656137544982,14.099960015993602,14.103358656537385,14.106757297081167,14.11015593762495,14.113554578168733,14.116953218712515,14.120351859256298,14.12375049980008,14.127149140343862,14.130547780887644,14.133946421431427,14.13734506197521,14.140743702518993,14.144142343062775,14.147540983606557,14.15093962415034,14.154338264694122,14.157736905237904,14.161135545781688,14.16453418632547,14.167932826869253,14.171331467413035,14.174730107956817,14.1781287485006,14.181527389044382,14.184926029588166,14.188324670131948,14.19172331067573,14.195121951219512,14.198520591763295,14.201919232307077,14.20531787285086,14.208716513394641,14.212115153938425,14.215513794482208,14.21891243502599,14.222311075569772,14.225709716113554,14.229108356657337,14.232506997201119,14.235905637744903,14.239304278288685,14.242702918832467,14.24610155937625,14.249500199920032,14.252898840463814,14.256297481007596,14.259696121551379,14.263094762095163,14.266493402638945,14.269892043182727,14.27329068372651,14.276689324270292,14.280087964814074,14.283486605357856,14.28688524590164,14.290283886445422,14.293682526989205,14.297081167532987,14.30047980807677,14.303878448620551,14.307277089164334,14.310675729708116,14.3140743702519,14.317473010795682,14.320871651339464,14.324270291883247,14.327668932427029,14.331067572970811,14.334466213514593,14.337864854058378,14.34126349460216,14.344662135145942,14.348060775689724,14.351459416233507,14.354858056777289,14.358256697321071,14.361655337864853,14.365053978408637,14.36845261895242,14.371851259496202,14.375249900039984,14.378648540583766,14.382047181127549,14.38544582167133,14.388844462215115,14.392243102758897,14.39564174330268,14.399040383846462,14.402439024390244,14.405837664934026,14.409236305477808,14.41263494602159,14.416033586565375,14.419432227109157,14.422830867652939,14.426229508196721,14.429628148740504,14.433026789284286,14.436425429828068,14.439824070371852,14.443222710915634,14.446621351459417,14.450019992003199,14.453418632546981,14.456817273090763,14.460215913634546,14.463614554178328,14.467013194722112,14.470411835265894,14.473810475809676,14.477209116353459,14.480607756897241,14.484006397441023,14.487405037984805,14.49080367852859,14.494202319072372,14.497600959616154,14.500999600159936,14.504398240703718,14.5077968812475,14.511195521791283,14.514594162335065,14.51799280287885,14.521391443422631,14.524790083966414,14.528188724510196,14.531587365053978,14.53498600559776,14.538384646141543,14.541783286685327,14.545181927229109,14.548580567772891,14.551979208316673,14.555377848860456,14.558776489404238,14.56217512994802,14.565573770491802,14.568972411035586,14.572371051579369,14.575769692123151,14.579168332666933,14.582566973210715,14.585965613754498,14.58936425429828,14.592762894842064,14.596161535385846,14.599560175929629,14.60295881647341,14.606357457017193,14.609756097560975,14.613154738104758,14.61655337864854,14.619952019192324,14.623350659736106,14.626749300279888,14.63014794082367,14.633546581367453,14.636945221911235,14.640343862455017,14.643742502998801,14.647141143542584,14.650539784086366,14.653938424630148,14.65733706517393,14.660735705717713,14.664134346261495,14.667532986805277,14.670931627349061,14.674330267892843,14.677728908436626,14.681127548980408,14.68452618952419,14.687924830067972,14.691323470611755,14.694722111155539,14.69812075169932,14.701519392243103,14.704918032786885,14.708316673330668,14.71171531387445,14.715113954418232,14.718512594962014,14.721911235505798,14.72530987604958,14.728708516593363,14.732107157137145,14.735505797680927,14.73890443822471,14.742303078768492,14.745701719312276,14.749100359856058,14.75249900039984,14.755897640943623,14.759296281487405,14.762694922031187,14.76609356257497,14.769492203118752,14.772890843662536,14.776289484206318,14.7796881247501,14.783086765293882,14.786485405837665,14.789884046381447,14.79328268692523,14.796681327469013,14.800079968012795,14.803478608556578,14.80687724910036,14.810275889644142,14.813674530187924,14.817073170731707,14.820471811275489,14.823870451819273,14.827269092363055,14.830667732906837,14.83406637345062,14.837465013994402,14.840863654538184,14.844262295081966,14.84766093562575,14.851059576169533,14.854458216713315,14.857856857257097,14.86125549780088,14.864654138344662,14.868052778888444,14.871451419432226,14.87485005997601,14.878248700519793,14.881647341063575,14.885045981607357,14.88844462215114,14.891843262694922,14.895241903238704,14.898640543782488,14.90203918432627,14.905437824870052,14.908836465413835,14.912235105957617,14.915633746501399,14.919032387045181,14.922431027588964,14.925829668132748,14.92922830867653,14.932626949220312,14.936025589764094,14.939424230307877,14.942822870851659,14.946221511395441,14.949620151939225,14.953018792483007,14.95641743302679,14.959816073570572,14.963214714114354,14.966613354658136,14.970011995201919,14.9734106357457,14.976809276289485,14.980207916833267,14.98360655737705,14.987005197920832,14.990403838464614,14.993802479008396,14.997201119552178,15.000599760095962,15.003998400639745,15.007397041183527,15.01079568172731,15.014194322271091,15.017592962814874,15.020991603358656,15.024390243902438,15.027788884446222,15.031187524990004,15.034586165533787,15.037984806077569,15.041383446621351,15.044782087165133,15.048180727708916,15.0515793682527,15.054978008796482,15.058376649340264,15.061775289884046,15.065173930427829,15.068572570971611,15.071971211515393,15.075369852059175,15.07876849260296,15.082167133146742,15.085565773690524,15.088964414234306,15.092363054778088,15.09576169532187,15.099160335865653,15.102558976409437,15.10595761695322,15.109356257497002,15.112754898040784,15.116153538584566,15.119552179128348,15.12295081967213,15.126349460215913,15.129748100759697,15.133146741303479,15.136545381847261,15.139944022391044,15.143342662934826,15.146741303478608,15.15013994402239,15.153538584566174,15.156937225109957,15.160335865653739,15.163734506197521,15.167133146741303,15.170531787285086,15.173930427828868,15.17732906837265,15.180727708916434,15.184126349460216,15.187524990003999,15.19092363054778,15.194322271091563,15.197720911635345,15.201119552179128,15.204518192722912,15.207916833266694,15.211315473810476,15.214714114354258,15.21811275489804,15.221511395441823,15.224910035985605,15.22830867652939,15.231707317073171,15.235105957616954,15.238504598160736,15.241903238704518,15.2453018792483,15.248700519792083,15.252099160335865,15.255497800879649,15.258896441423431,15.262295081967213,15.265693722510996,15.269092363054778,15.27249100359856,15.275889644142342,15.279288284686126,15.282686925229909,15.286085565773691,15.289484206317473,15.292882846861255,15.296281487405038,15.29968012794882,15.303078768492602,15.306477409036386,15.309876049580168,15.31327469012395,15.316673330667733,15.320071971211515,15.323470611755297,15.32686925229908,15.330267892842864,15.333666533386646,15.337065173930428,15.34046381447421,15.343862455017993,15.347261095561775,15.350659736105557,15.35405837664934,15.357457017193124,15.360855657736906,15.364254298280688,15.36765293882447,15.371051579368253,15.374450219912035,15.377848860455817,15.381247500999601,15.384646141543383,15.388044782087166,15.391443422630948,15.39484206317473,15.398240703718512,15.401639344262295,15.405037984806077,15.40843662534986,15.411835265893643,15.415233906437425,15.418632546981208,15.42203118752499,15.425429828068772,15.428828468612554,15.432227109156338,15.43562574970012,15.439024390243903,15.442423030787685,15.445821671331467,15.44922031187525,15.452618952419032,15.456017592962814,15.459416233506598,15.46281487405038,15.466213514594163,15.469612155137945,15.473010795681727,15.47640943622551,15.479808076769292,15.483206717313076,15.486605357856858,15.49000399840064,15.493402638944422,15.496801279488205,15.500199920031987,15.50359856057577,15.506997201119551,15.510395841663335,15.513794482207118,15.5171931227509,15.520591763294682,15.523990403838464,15.527389044382247,15.530787684926029,15.534186325469813,15.537584966013595,15.540983606557377,15.54438224710116,15.547780887644942,15.551179528188724,15.554578168732506,15.557976809276289,15.561375449820073,15.564774090363855,15.568172730907637,15.57157137145142,15.574970011995202,15.578368652538984,15.581767293082766,15.58516593362655,15.588564574170332,15.591963214714115,15.595361855257897,15.59876049580168,15.602159136345461,15.605557776889244,15.608956417433026,15.61235505797681,15.615753698520592,15.619152339064375,15.622550979608157,15.625949620151939,15.629348260695721,15.632746901239504,15.636145541783288,15.63954418232707,15.642942822870852,15.646341463414634,15.649740103958417,15.653138744502199,15.656537385045981,15.659936025589763,15.663334666133547,15.66673330667733,15.670131947221112,15.673530587764894,15.676929228308676,15.680327868852459,15.68372650939624,15.687125149940025,15.690523790483807,15.69392243102759,15.697321071571372,15.700719712115154,15.704118352658936,15.707516993202718,15.7109156337465,15.714314274290285,15.717712914834067,15.721111555377849,15.724510195921631,15.727908836465414,15.731307477009196,15.734706117552978,15.738104758096762,15.741503398640544,15.744902039184327,15.748300679728109,15.751699320271891,15.755097960815673,15.758496601359456,15.761895241903238,15.765293882447022,15.768692522990804,15.772091163534586,15.775489804078369,15.778888444622151,15.782287085165933,15.785685725709715,15.7890843662535,15.792483006797282,15.795881647341064,15.799280287884846,15.802678928428628,15.80607756897241,15.809476209516193,15.812874850059975,15.81627349060376,15.819672131147541,15.823070771691324,15.826469412235106,15.829868052778888,15.83326669332267,15.836665333866453,15.840063974410237,15.843462614954019,15.846861255497801,15.850259896041583,15.853658536585366,15.857057177129148,15.86045581767293,15.863854458216712,15.867253098760496,15.870651739304279,15.874050379848061,15.877449020391843,15.880847660935625,15.884246301479408,15.88764494202319,15.891043582566974,15.894442223110756,15.897840863654539,15.90123950419832,15.904638144742103,15.908036785285885,15.911435425829668,15.91483406637345,15.918232706917234,15.921631347461016,15.925029988004798,15.92842862854858,15.931827269092363,15.935225909636145,15.938624550179927,15.942023190723711,15.945421831267494,15.948820471811276,15.952219112355058,15.95561775289884,15.959016393442623,15.962415033986405,15.965813674530187,15.969212315073971,15.972610955617753,15.976009596161536,15.979408236705318,15.9828068772491,15.986205517792882,15.989604158336665,15.993002798880449,15.99640143942423,15.999800079968013,16.003198720511794,16.00659736105558,16.00999600159936,16.013394642143144,16.016793282686926,16.02019192323071,16.02359056377449,16.026989204318273,16.030387844862055,16.033786485405837,16.03718512594962,16.040583766493402,16.043982407037184,16.047381047580966,16.05077968812475,16.05417832866853,16.057576969212317,16.0609756097561,16.06437425029988,16.067772890843663,16.071171531387446,16.074570171931228,16.07796881247501,16.081367453018792,16.084766093562575,16.088164734106357,16.09156337465014,16.09496201519392,16.098360655737704,16.101759296281486,16.105157936825268,16.108556577369054,16.111955217912836,16.11535385845662,16.1187524990004,16.122151139544183,16.125549780087965,16.128948420631747,16.13234706117553,16.135745701719312,16.139144342263094,16.142542982806876,16.14594162335066,16.14934026389444,16.152738904438223,16.156137544982005,16.15953618552579,16.162934826069574,16.166333466613356,16.169732107157138,16.17313074770092,16.176529388244703,16.179928028788485,16.183326669332267,16.18672530987605,16.19012395041983,16.193522590963614,16.196921231507396,16.20031987205118,16.20371851259496,16.207117153138743,16.21051579368253,16.21391443422631,16.217313074770093,16.220711715313875,16.224110355857658,16.22750899640144,16.230907636945222,16.234306277489004,16.237704918032787,16.24110355857657,16.24450219912035,16.247900839664133,16.251299480207916,16.254698120751698,16.25809676129548,16.261495401839266,16.264894042383048,16.26829268292683,16.271691323470613,16.275089964014395,16.278488604558177,16.28188724510196,16.28528588564574,16.288684526189524,16.292083166733306,16.29548180727709,16.29888044782087,16.302279088364653,16.305677728908435,16.309076369452217,16.312475009996003,16.315873650539785,16.319272291083568,16.32267093162735,16.326069572171132,16.329468212714914,16.332866853258697,16.33626549380248,16.33966413434626,16.343062774890043,16.346461415433826,16.349860055977608,16.35325869652139,16.356657337065172,16.360055977608955,16.36345461815274,16.366853258696523,16.370251899240305,16.373650539784087,16.37704918032787,16.38044782087165,16.383846461415434,16.387245101959216,16.390643742503,16.39404238304678,16.397441023590563,16.400839664134345,16.404238304678127,16.40763694522191,16.411035585765692,16.414434226309478,16.41783286685326,16.421231507397042,16.424630147940825,16.428028788484607,16.43142742902839,16.43482606957217,16.438224710115954,16.441623350659736,16.445021991203518,16.4484206317473,16.451819272291083,16.455217912834865,16.458616553378647,16.46201519392243,16.465413834466215,16.468812475009997,16.47221111555378,16.475609756097562,16.479008396641344,16.482407037185126,16.48580567772891,16.48920431827269,16.492602958816473,16.496001599360255,16.499400239904038,16.50279888044782,16.506197520991602,16.509596161535384,16.512994802079167,16.516393442622952,16.519792083166735,16.523190723710517,16.5265893642543,16.52998800479808,16.533386645341864,16.536785285885646,16.540183926429428,16.54358256697321,16.546981207516993,16.550379848060775,16.553778488604557,16.55717712914834,16.56057576969212,16.563974410235904,16.56737305077969,16.570771691323472,16.574170331867254,16.577568972411036,16.58096761295482,16.5843662534986,16.587764894042383,16.591163534586165,16.594562175129948,16.59796081567373,16.601359456217512,16.604758096761294,16.608156737305077,16.61155537784886,16.61495401839264,16.618352658936427,16.62175129948021,16.62514994002399,16.628548580567774,16.631947221111556,16.63534586165534,16.63874450219912,16.642143142742903,16.645541783286685,16.648940423830467,16.65233906437425,16.65573770491803,16.659136345461814,16.662534986005596,16.66593362654938,16.669332267093164,16.672730907636947,16.67612954818073,16.67952818872451,16.682926829268293,16.686325469812076,16.689724110355858,16.69312275089964,16.696521391443422,16.699920031987205,16.703318672530987,16.70671731307477,16.71011595361855,16.713514594162334,16.716913234706116,16.7203118752499,16.723710515793684,16.727109156337466,16.73050779688125,16.73390643742503,16.737305077968813,16.740703718512595,16.744102359056377,16.74750099960016,16.750899640143942,16.754298280687724,16.757696921231506,16.76109556177529,16.76449420231907,16.767892842862853,16.77129148340664,16.77469012395042,16.778088764494203,16.781487405037986,16.784886045581768,16.78828468612555,16.791683326669332,16.795081967213115,16.798480607756897,16.80187924830068,16.80527788884446,16.808676529388244,16.812075169932026,16.815473810475808,16.818872451019594,16.822271091563376,16.82566973210716,16.82906837265094,16.832467013194723,16.835865653738505,16.839264294282287,16.84266293482607,16.846061575369852,16.849460215913634,16.852858856457416,16.8562574970012,16.85965613754498,16.863054778088763,16.866453418632545,16.86985205917633,16.873250699720113,16.876649340263896,16.880047980807678,16.88344662135146,16.886845261895242,16.890243902439025,16.893642542982807,16.89704118352659,16.90043982407037,16.903838464614154,16.907237105157936,16.91063574570172,16.9140343862455,16.917433026789283,16.92083166733307,16.92423030787685,16.927628948420633,16.931027588964415,16.934426229508198,16.93782487005198,16.941223510595762,16.944622151139544,16.948020791683327,16.95141943222711,16.95481807277089,16.958216713314673,16.961615353858456,16.965013994402238,16.96841263494602,16.971811275489806,16.975209916033588,16.97860855657737,16.982007197121153,16.985405837664935,16.988804478208717,16.9922031187525,16.99560175929628,16.999000399840064,17.002399040383846,17.00579768092763,17.00919632147141,17.012594962015193,17.015993602558975,17.019392243102757,17.022790883646543,17.026189524190325,17.029588164734108,17.03298680527789,17.036385445821672,17.039784086365454,17.043182726909237,17.04658136745302,17.0499800079968,17.053378648540583,17.056777289084366,17.060175929628148,17.06357457017193,17.066973210715712,17.070371851259495,17.07377049180328,17.077169132347063,17.080567772890845,17.083966413434627,17.08736505397841,17.09076369452219,17.094162335065974,17.097560975609756,17.10095961615354,17.10435825669732,17.107756897241103,17.111155537784885,17.114554178328667,17.11795281887245,17.121351459416232,17.124750099960018,17.1281487405038,17.131547381047582,17.134946021591364,17.138344662135147,17.14174330267893,17.14514194322271,17.148540583766493,17.151939224310276,17.155337864854058,17.15873650539784,17.162135145941622,17.165533786485405,17.168932427029187,17.17233106757297,17.175729708116755,17.179128348660537,17.18252698920432,17.185925629748102,17.189324270291884,17.192722910835666,17.19612155137945,17.19952019192323,17.202918832467013,17.206317473010795,17.209716113554578,17.21311475409836,17.216513394642142,17.219912035185924,17.223310675729707,17.226709316273492,17.230107956817275,17.233506597361057,17.23690523790484,17.24030387844862,17.243702518992404,17.247101159536186,17.250499800079968,17.25389844062375,17.257297081167533,17.260695721711315,17.264094362255097,17.26749300279888,17.27089164334266,17.274290283886444,17.27768892443023,17.281087564974012,17.284486205517794,17.287884846061576,17.29128348660536,17.29468212714914,17.298080767692923,17.301479408236705,17.304878048780488,17.30827668932427,17.311675329868052,17.315073970411834,17.318472610955617,17.3218712514994,17.32526989204318,17.328668532586967,17.33206717313075,17.33546581367453,17.338864454218314,17.342263094762096,17.345661735305878,17.34906037584966,17.352459016393443,17.355857656937225,17.359256297481007,17.36265493802479,17.36605357856857,17.369452219112354,17.372850859656136,17.37624950019992,17.379648140743704,17.383046781287486,17.38644542183127,17.38984406237505,17.393242702918833,17.396641343462615,17.400039984006398,17.40343862455018,17.406837265093962,17.410235905637744,17.413634546181527,17.41703318672531,17.42043182726909,17.423830467812873,17.427229108356656,17.43062774890044,17.434026389444224,17.437425029988006,17.44082367053179,17.44422231107557,17.447620951619353,17.451019592163135,17.454418232706917,17.4578168732507,17.461215513794482,17.464614154338264,17.468012794882046,17.47141143542583,17.47481007596961,17.478208716513393,17.48160735705718,17.48500599760096,17.488404638144743,17.491803278688526,17.495201919232308,17.49860055977609,17.501999200319872,17.505397840863655,17.508796481407437,17.51219512195122,17.515593762495,17.518992403038784,17.522391043582566,17.525789684126348,17.52918832467013,17.532586965213916,17.5359856057577,17.53938424630148,17.542782886845263,17.546181527389045,17.549580167932827,17.55297880847661,17.556377449020392,17.559776089564174,17.563174730107956,17.56657337065174,17.56997201119552,17.573370651739303,17.576769292283085,17.580167932826868,17.583566573370653,17.586965213914436,17.590363854458218,17.593762495002,17.597161135545782,17.600559776089565,17.603958416633347,17.60735705717713,17.61075569772091,17.614154338264694,17.617552978808476,17.620951619352258,17.62435025989604,17.627748900439823,17.631147540983605,17.63454618152739,17.637944822071173,17.641343462614955,17.644742103158737,17.64814074370252,17.651539384246302,17.654938024790084,17.658336665333866,17.66173530587765,17.66513394642143,17.668532586965213,17.671931227508995,17.675329868052778,17.67872850859656,17.682127149140342,17.685525789684128,17.68892443022791,17.692323070771693,17.695721711315475,17.699120351859257,17.70251899240304,17.70591763294682,17.709316273490604,17.712714914034386,17.71611355457817,17.71951219512195,17.722910835665733,17.726309476209515,17.729708116753297,17.73310675729708,17.736505397840865,17.739904038384648,17.74330267892843,17.746701319472212,17.750099960015994,17.753498600559777,17.75689724110356,17.76029588164734,17.763694522191123,17.767093162734906,17.770491803278688,17.77389044382247,17.777289084366252,17.780687724910035,17.784086365453817,17.787485005997603,17.790883646541385,17.794282287085167,17.79768092762895,17.80107956817273,17.804478208716514,17.807876849260296,17.81127548980408,17.81467413034786,17.818072770891643,17.821471411435425,17.824870051979207,17.82826869252299,17.831667333066772,17.835065973610554,17.83846461415434,17.841863254698122,17.845261895241904,17.848660535785687,17.85205917632947,17.85545781687325,17.858856457417033,17.862255097960816,17.865653738504598,17.86905237904838,17.872451019592162,17.875849660135945,17.879248300679727,17.88264694122351,17.88604558176729,17.889444222311077,17.89284286285486,17.89624150339864,17.899640143942424,17.903038784486206,17.90643742502999,17.90983606557377,17.913234706117553,17.916633346661335,17.920031987205117,17.9234306277489,17.926829268292682,17.930227908836464,17.933626549380246,17.93702518992403,17.940423830467815,17.943822471011597,17.94722111155538,17.95061975209916,17.954018392642944,17.957417033186726,17.960815673730508,17.96421431427429,17.967612954818073,17.971011595361855,17.974410235905637,17.97780887644942,17.9812075169932,17.984606157536984,17.988004798080766,17.991403438624552,17.994802079168334,17.998200719712116,18.0015993602559,18.00499800079968,18.008396641343463,18.011795281887245,18.015193922431028,18.01859256297481,18.021991203518592,18.025389844062374,18.028788484606157,18.03218712514994,18.03558576569372,18.038984406237503,18.04238304678129,18.04578168732507,18.049180327868854,18.052578968412636,18.055977608956418,18.0593762495002,18.062774890043983,18.066173530587765,18.069572171131547,18.07297081167533,18.07636945221911,18.079768092762894,18.083166733306676,18.08656537385046,18.08996401439424,18.093362654938026,18.09676129548181,18.10015993602559,18.103558576569373,18.106957217113155,18.110355857656938,18.11375449820072,18.117153138744502,18.120551779288284,18.123950419832067,18.12734906037585,18.13074770091963,18.134146341463413,18.137544982007196,18.140943622550978,18.144342263094764,18.147740903638546,18.151139544182328,18.15453818472611,18.157936825269893,18.161335465813675,18.164734106357457,18.16813274690124,18.17153138744502,18.174930027988804,18.178328668532586,18.18172730907637,18.18512594962015,18.188524590163933,18.191923230707715,18.1953218712515,18.198720511795283,18.202119152339066,18.205517792882848,18.20891643342663,18.212315073970412,18.215713714514195,18.219112355057977,18.22251099560176,18.22590963614554,18.229308276689324,18.232706917233106,18.236105557776888,18.23950419832067,18.242902838864453,18.24630147940824,18.24970011995202,18.253098760495803,18.256497401039585,18.259896041583367,18.26329468212715,18.266693322670932,18.270091963214714,18.273490603758496,18.27688924430228,18.28028788484606,18.283686525389843,18.287085165933625,18.290483806477408,18.29388244702119,18.297281087564976,18.300679728108758,18.30407836865254,18.307477009196322,18.310875649740105,18.314274290283887,18.31767293082767,18.32107157137145,18.324470211915234,18.327868852459016,18.331267493002798,18.33466613354658,18.338064774090363,18.341463414634145,18.344862055177927,18.348260695721713,18.351659336265495,18.355057976809277,18.35845661735306,18.361855257896842,18.365253898440624,18.368652538984406,18.37205117952819,18.37544982007197,18.378848460615753,18.382247101159535,18.385645741703318,18.3890443822471,18.392443022790882,18.395841663334664,18.39924030387845,18.402638944422232,18.406037584966015,18.409436225509797,18.41283486605358,18.41623350659736,18.419632147141144,18.423030787684926,18.426429428228708,18.42982806877249,18.433226709316273,18.436625349860055,18.440023990403837,18.44342263094762,18.4468212714914,18.450219912035188,18.45361855257897,18.457017193122752,18.460415833666534,18.463814474210317,18.4672131147541,18.47061175529788,18.474010395841663,18.477409036385446,18.480807676929228,18.48420631747301,18.487604958016792,18.491003598560575,18.494402239104357,18.49780087964814,18.501199520191925,18.504598160735707,18.50799680127949,18.51139544182327,18.514794082367054,18.518192722910836,18.52159136345462,18.5249900039984,18.528388644542183,18.531787285085965,18.535185925629747,18.53858456617353,18.541983206717312,18.545381847261094,18.548780487804876,18.552179128348662,18.555577768892444,18.558976409436227,18.56237504998001,18.56577369052379,18.569172331067573,18.572570971611356,18.575969612155138,18.57936825269892,18.582766893242702,18.586165533786485,18.589564174330267,18.59296281487405,18.59636145541783,18.599760095961614,18.6031587365054,18.60655737704918,18.609956017592964,18.613354658136746,18.61675329868053,18.62015193922431,18.623550579768093,18.626949220311875,18.630347860855657,18.63374650139944,18.637145141943222,18.640543782487004,18.643942423030786,18.64734106357457,18.65073970411835,18.654138344662137,18.65753698520592,18.6609356257497,18.664334266293483,18.667732906837266,18.671131547381048,18.67453018792483,18.677928828468612,18.681327469012395,18.684726109556177,18.68812475009996,18.69152339064374,18.694922031187524,18.698320671731306,18.701719312275088,18.705117952818874,18.708516593362656,18.71191523390644,18.71531387445022,18.718712514994003,18.722111155537785,18.725509796081568,18.72890843662535,18.732307077169132,18.735705717712914,18.739104358256697,18.74250299880048,18.74590163934426,18.749300279888043,18.752698920431826,18.75609756097561,18.759496201519394,18.762894842063176,18.766293482606958,18.76969212315074,18.773090763694523,18.776489404238305,18.779888044782087,18.78328668532587,18.78668532586965,18.790083966413434,18.793482606957216,18.796881247501,18.80027988804478,18.803678528588563,18.80707716913235,18.81047580967613,18.813874450219913,18.817273090763695,18.820671731307478,18.82407037185126,18.827469012395042,18.830867652938824,18.834266293482607,18.83766493402639,18.84106357457017,18.844462215113953,18.847860855657736,18.851259496201518,18.8546581367453,18.858056777289086,18.861455417832868,18.86485405837665,18.868252698920433,18.871651339464215,18.875049980007997,18.87844862055178,18.88184726109556,18.885245901639344,18.888644542183126,18.89204318272691,18.89544182327069,18.898840463814473,18.902239104358255,18.905637744902037,18.909036385445823,18.912435025989605,18.915833666533388,18.91923230707717,18.922630947620952,18.926029588164734,18.929428228708517,18.9328268692523,18.93622550979608,18.939624150339863,18.943022790883646,18.946421431427428,18.94982007197121,18.953218712514992,18.95661735305878,18.96001599360256,18.963414634146343,18.966813274690125,18.970211915233907,18.97361055577769,18.97700919632147,18.980407836865254,18.983806477409036,18.98720511795282,18.9906037584966,18.994002399040383,18.997401039584165,19.000799680127948,19.00419832067173,19.007596961215516,19.010995601759298,19.01439424230308,19.017792882846862,19.021191523390645,19.024590163934427,19.02798880447821,19.03138744502199,19.034786085565774,19.038184726109556,19.041583366653338,19.04498200719712,19.048380647740903,19.051779288284685,19.055177928828467,19.058576569372253,19.061975209916035,19.065373850459817,19.0687724910036,19.072171131547382,19.075569772091164,19.078968412634946,19.08236705317873,19.08576569372251,19.089164334266293,19.092562974810075,19.095961615353858,19.09936025589764,19.102758896441422,19.106157536985204,19.10955617752899,19.112954818072772,19.116353458616555,19.119752099160337,19.12315073970412,19.1265493802479,19.129948020791684,19.133346661335466,19.136745301879248,19.14014394242303,19.143542582966813,19.146941223510595,19.150339864054377,19.15373850459816,19.15713714514194,19.160535785685727,19.16393442622951,19.167333066773292,19.170731707317074,19.174130347860856,19.17752898840464,19.18092762894842,19.184326269492203,19.187724910035985,19.191123550579768,19.19452219112355,19.197920831667332,19.201319472211114,19.204718112754897,19.20811675329868,19.211515393842465,19.214914034386247,19.21831267493003,19.22171131547381,19.225109956017594,19.228508596561376,19.23190723710516,19.23530587764894,19.238704518192723,19.242103158736505,19.245501799280287,19.24890043982407,19.25229908036785,19.255697720911634,19.259096361455416,19.262495001999202,19.265893642542984,19.269292283086767,19.27269092363055,19.27608956417433,19.279488204718113,19.282886845261896,19.286285485805678,19.28968412634946,19.293082766893242,19.296481407437025,19.299880047980807,19.30327868852459,19.30667732906837,19.310075969612154,19.31347461015594,19.31687325069972,19.320271891243504,19.323670531787286,19.32706917233107,19.33046781287485,19.333866453418633,19.337265093962415,19.340663734506197,19.34406237504998,19.347461015593762,19.350859656137544,19.354258296681326,19.35765693722511,19.36105557776889,19.364454218312677,19.36785285885646,19.37125149940024,19.374650139944023,19.378048780487806,19.381447421031588,19.38484606157537,19.388244702119152,19.391643342662935,19.395041983206717,19.3984406237505,19.40183926429428,19.405237904838064,19.408636545381846,19.412035185925628,19.415433826469414,19.418832467013196,19.42223110755698,19.42562974810076,19.429028388644543,19.432427029188325,19.435825669732107,19.43922431027589,19.442622950819672,19.446021591363454,19.449420231907236,19.45281887245102,19.4562175129948,19.459616153538583,19.463014794082365,19.46641343462615,19.469812075169934,19.473210715713716,19.476609356257498,19.48000799680128,19.483406637345063,19.486805277888845,19.490203918432627,19.49360255897641,19.49700119952019,19.500399840063974,19.503798480607756,19.50719712115154,19.51059576169532,19.513994402239103,19.51739304278289,19.52079168332667,19.524190323870453,19.527588964414235,19.530987604958018,19.5343862455018,19.537784886045582,19.541183526589364,19.544582167133147,19.54798080767693,19.55137944822071,19.554778088764493,19.558176729308276,19.561575369852058,19.56497401039584,19.568372650939626,19.571771291483408,19.57516993202719,19.578568572570973,19.581967213114755,19.585365853658537,19.58876449420232,19.5921631347461,19.595561775289884,19.598960415833666,19.60235905637745,19.60575769692123,19.609156337465013,19.612554978008795,19.615953618552577,19.619352259096363,19.622750899640145,19.626149540183928,19.62954818072771,19.632946821271492,19.636345461815274,19.639744102359057,19.64314274290284,19.64654138344662,19.649940023990403,19.653338664534186,19.656737305077968,19.66013594562175,19.663534586165532,19.666933226709315,19.6703318672531,19.673730507796883,19.677129148340665,19.680527788884447,19.68392642942823,19.68732506997201,19.690723710515794,19.694122351059576,19.69752099160336,19.70091963214714,19.704318272690923,19.707716913234705,19.711115553778487,19.71451419432227,19.717912834866052,19.721311475409838,19.72471011595362,19.728108756497402,19.731507397041185,19.734906037584967,19.73830467812875,19.74170331867253,19.745101959216314,19.748500599760096,19.751899240303878,19.75529788084766,19.758696521391443,19.762095161935225,19.765493802479007,19.76889244302279,19.772291083566575,19.775689724110357,19.77908836465414,19.782487005197922,19.785885645741704,19.789284286285486,19.79268292682927,19.79608156737305,19.799480207916833,19.802878848460615,19.806277489004398,19.80967612954818,19.813074770091962,19.816473410635744,19.819872051179527,19.823270691723312,19.826669332267095,19.830067972810877,19.83346661335466,19.83686525389844,19.840263894442224,19.843662534986006,19.847061175529788,19.85045981607357,19.853858456617353,19.857257097161135,19.860655737704917,19.8640543782487,19.86745301879248,19.870851659336264,19.87425029988005,19.877648940423832,19.881047580967614,19.884446221511396,19.88784486205518,19.89124350259896,19.894642143142743,19.898040783686525,19.901439424230308,19.90483806477409,19.908236705317872,19.911635345861654,19.915033986405437,19.91843262694922,19.921831267493,19.925229908036787,19.92862854858057,19.93202718912435,19.935425829668134,19.938824470211916,19.942223110755698,19.94562175129948,19.949020391843263,19.952419032387045,19.955817672930827,19.95921631347461,19.96261495401839,19.966013594562174,19.969412235105956,19.97281087564974,19.976209516193524,19.979608156737307,19.98300679728109,19.98640543782487,19.989804078368653,19.993202718912436,19.996601359456218,20.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/runner.jl new file mode 100644 index 00000000000..b839b1c385b --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/runner.jl @@ -0,0 +1,96 @@ +#!/usr/bin/env julia +# +# @license Apache-2.0 +# +# Copyright (c) 2022 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( x, name ) + +Generate fixture data and write to file. + +# Arguments + +* `x`: domain +* `name::AbstractString`: output filename + +# Examples + +``` julia +julia> x = range( -1000, stop = 1000, length = 2001 ); +julia> gen( x, \"data.json\" ); +``` +""" +function gen( x, name ) + y = Array{Float32}( undef, length(x) ); + for i in eachindex(x) + y[i] = sqrt( x[i] * pi ); + end + + # 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 ); + +# Subnormal values: +x = range( 1.0e-38, stop = 1.0e-34, length = 5003 ); +gen( x, "subnormal.json" ); + +# Positive tiny values: +x = range( 1.0e-30, stop = 1.0e-38, length = 5003 ); +gen( x, "tiny_positive.json" ); + +# Small(er) values: +x = range( 0.0, stop = 0.8, length = 5003 ); +gen( x, "smaller.json" ); + +# Positive small values: +x = range( 0.8, stop = 3.0, length = 5003 ); +gen( x, "small_positive.json" ); + +# Positive medium values: +x = range( 3.0, stop = 20.0, length = 5003 ); +gen( x, "medium_positive.json" ); + +# Large positive values: +x = range( 20.0, stop = 50.0, length = 5003 ); +gen( x, "large_positive.json" ); + +# Very large positive values: +x = range( 50.0, stop = 500.0, length = 5003 ); +gen( x, "very_large_positive.json" ); + +# Huge positive values: +x = range( 1.0e30, stop = 1.0e38, length = 5003 ); +gen( x, "huge_positive.json" ); diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/small_positive.json b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/small_positive.json new file mode 100644 index 00000000000..33fbb74b326 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/small_positive.json @@ -0,0 +1 @@ +{"expected":[1.585331,1.5857667,1.5862023,1.5866377,1.5870731,1.5875084,1.5879436,1.5883785,1.5888134,1.5892482,1.5896828,1.5901175,1.5905519,1.5909861,1.5914203,1.5918543,1.5922884,1.5927222,1.5931559,1.5935894,1.5940229,1.5944563,1.5948895,1.5953226,1.5957557,1.5961885,1.5966213,1.597054,1.5974865,1.5979189,1.5983512,1.5987834,1.5992155,1.5996474,1.6000792,1.600511,1.6009425,1.601374,1.6018054,1.6022366,1.6026678,1.6030988,1.6035297,1.6039605,1.6043912,1.6048217,1.6052521,1.6056825,1.6061127,1.6065428,1.6069728,1.6074027,1.6078324,1.6082621,1.6086916,1.609121,1.6095502,1.6099794,1.6104085,1.6108375,1.6112663,1.611695,1.6121236,1.612552,1.6129805,1.6134087,1.6138369,1.614265,1.6146928,1.6151206,1.6155484,1.615976,1.6164035,1.6168308,1.6172581,1.6176852,1.6181122,1.6185391,1.6189659,1.6193925,1.6198192,1.6202456,1.6206719,1.6210982,1.6215242,1.6219503,1.6223762,1.622802,1.6232276,1.6236532,1.6240786,1.624504,1.6249292,1.6253543,1.6257794,1.6262043,1.626629,1.6270537,1.6274782,1.6279027,1.628327,1.6287513,1.6291754,1.6295993,1.6300232,1.630447,1.6308707,1.6312944,1.6317178,1.6321411,1.6325644,1.6329875,1.6334106,1.6338334,1.6342562,1.634679,1.6351014,1.6355239,1.6359463,1.6363686,1.6367908,1.6372128,1.6376346,1.6380565,1.6384783,1.6388998,1.6393213,1.6397427,1.640164,1.6405852,1.6410062,1.6414272,1.641848,1.6422688,1.6426893,1.6431099,1.6435302,1.6439506,1.6443708,1.6447909,1.6452109,1.6456307,1.6460506,1.6464702,1.6468898,1.6473092,1.6477286,1.6481478,1.648567,1.648986,1.6494049,1.6498237,1.6502423,1.650661,1.6510794,1.6514978,1.6519161,1.6523343,1.6527524,1.6531703,1.6535882,1.6540059,1.6544236,1.6548411,1.6552585,1.6556759,1.6560931,1.6565102,1.6569272,1.6573441,1.657761,1.6581776,1.6585943,1.6590108,1.659427,1.6598433,1.6602596,1.6606756,1.6610916,1.6615075,1.6619232,1.6623389,1.6627544,1.6631699,1.6635852,1.6640005,1.6644156,1.6648307,1.6652455,1.6656604,1.6660751,1.6664897,1.6669042,1.6673187,1.667733,1.6681472,1.6685612,1.6689752,1.6693891,1.669803,1.6702167,1.6706302,1.6710438,1.6714572,1.6718705,1.6722836,1.6726967,1.6731097,1.6735226,1.6739353,1.674348,1.6747606,1.675173,1.6755854,1.6759977,1.6764098,1.676822,1.6772338,1.6776457,1.6780576,1.6784692,1.6788807,1.6792922,1.6797035,1.6801147,1.6805259,1.680937,1.681348,1.6817588,1.6821696,1.6825802,1.6829908,1.6834012,1.6838115,1.6842219,1.684632,1.685042,1.685452,1.6858618,1.6862715,1.6866813,1.6870908,1.6875002,1.6879096,1.6883188,1.6887281,1.6891371,1.6895461,1.6899549,1.6903636,1.6907723,1.691181,1.6915894,1.6919978,1.692406,1.6928142,1.6932223,1.6936302,1.6940382,1.6944458,1.6948535,1.6952611,1.6956686,1.696076,1.6964833,1.6968905,1.6972976,1.6977046,1.6981115,1.6985183,1.698925,1.6993316,1.6997381,1.7001445,1.7005508,1.7009571,1.7013632,1.7017692,1.7021751,1.7025809,1.7029867,1.7033923,1.7037978,1.7042032,1.7046087,1.7050139,1.7054191,1.7058241,1.7062291,1.7066339,1.7070386,1.7074434,1.707848,1.7082524,1.7086568,1.7090611,1.7094653,1.7098694,1.7102734,1.7106773,1.7110811,1.7114848,1.7118884,1.712292,1.7126954,1.7130988,1.7135019,1.7139051,1.7143081,1.7147112,1.715114,1.7155168,1.7159195,1.7163221,1.7167245,1.7171268,1.7175292,1.7179314,1.7183335,1.7187355,1.7191374,1.7195393,1.719941,1.7203426,1.7207441,1.7211456,1.721547,1.7219483,1.7223494,1.7227505,1.7231514,1.7235523,1.7239531,1.7243539,1.7247545,1.725155,1.7255554,1.7259557,1.726356,1.7267561,1.7271562,1.7275561,1.727956,1.7283558,1.7287555,1.7291551,1.7295545,1.729954,1.7303532,1.7307525,1.7311516,1.7315507,1.7319496,1.7323484,1.7327472,1.733146,1.7335445,1.733943,1.7343414,1.7347397,1.7351378,1.735536,1.735934,1.7363319,1.7367299,1.7371275,1.7375252,1.7379228,1.7383202,1.7387177,1.739115,1.7395122,1.7399093,1.7403064,1.7407032,1.7411001,1.7414969,1.7418935,1.7422901,1.7426866,1.743083,1.7434794,1.7438755,1.7442716,1.7446676,1.7450637,1.7454596,1.7458552,1.746251,1.7466465,1.7470421,1.7474375,1.7478328,1.748228,1.7486231,1.7490182,1.7494131,1.7498081,1.7502028,1.7505975,1.7509921,1.7513866,1.7517811,1.7521753,1.7525697,1.7529638,1.7533579,1.7537519,1.7541457,1.7545396,1.7549332,1.7553269,1.7557205,1.7561139,1.7565073,1.7569005,1.7572937,1.7576869,1.7580799,1.7584728,1.7588656,1.7592584,1.7596511,1.7600436,1.760436,1.7608285,1.7612208,1.761613,1.7620052,1.7623973,1.7627892,1.7631811,1.7635729,1.7639645,1.7643561,1.7647477,1.7651392,1.7655305,1.7659218,1.766313,1.7667041,1.7670951,1.767486,1.7678769,1.7682676,1.7686583,1.7690488,1.7694393,1.7698298,1.77022,1.7706103,1.7710004,1.7713904,1.7717805,1.7721703,1.7725601,1.7729498,1.7733395,1.7737291,1.7741185,1.7745079,1.7748972,1.7752864,1.7756755,1.7760645,1.7764535,1.7768424,1.7772311,1.7776198,1.7780085,1.778397,1.7787853,1.7791737,1.779562,1.7799501,1.7803383,1.7807263,1.7811142,1.7815021,1.7818898,1.7822776,1.7826651,1.7830527,1.7834401,1.7838274,1.7842146,1.7846018,1.7849889,1.785376,1.7857628,1.7861496,1.7865365,1.786923,1.7873096,1.7876962,1.7880826,1.788469,1.7888552,1.7892413,1.7896274,1.7900134,1.7903993,1.7907852,1.791171,1.7915566,1.7919422,1.7923278,1.7927132,1.7930984,1.7934837,1.7938689,1.794254,1.794639,1.7950239,1.7954087,1.7957935,1.7961782,1.7965628,1.7969474,1.7973317,1.7977161,1.7981004,1.7984846,1.7988687,1.7992526,1.7996366,1.8000205,1.8004042,1.8007879,1.8011715,1.801555,1.8019385,1.8023219,1.8027052,1.8030883,1.8034714,1.8038545,1.8042375,1.8046204,1.8050032,1.8053858,1.8057685,1.806151,1.8065335,1.8069159,1.8072982,1.8076805,1.8080626,1.8084446,1.8088267,1.8092085,1.8095903,1.8099722,1.8103538,1.8107353,1.8111168,1.8114983,1.8118796,1.8122609,1.8126421,1.8130232,1.8134042,1.8137852,1.814166,1.8145468,1.8149275,1.8153081,1.8156886,1.8160691,1.8164495,1.8168298,1.8172101,1.8175901,1.8179703,1.8183502,1.8187301,1.8191099,1.8194897,1.8198694,1.820249,1.8206284,1.8210078,1.8213873,1.8217665,1.8221457,1.8225248,1.8229039,1.8232828,1.8236617,1.8240405,1.8244193,1.8247979,1.8251765,1.825555,1.8259333,1.8263116,1.8266898,1.8270681,1.8274461,1.8278241,1.8282021,1.82858,1.8289578,1.8293355,1.8297131,1.8300906,1.830468,1.8308455,1.8312228,1.8316001,1.8319772,1.8323543,1.8327312,1.8331082,1.833485,1.8338618,1.8342385,1.8346151,1.8349917,1.8353682,1.8357445,1.8361208,1.8364971,1.8368732,1.8372493,1.8376253,1.8380013,1.838377,1.8387529,1.8391285,1.8395041,1.8398796,1.8402551,1.8406305,1.8410058,1.8413811,1.8417562,1.8421313,1.8425063,1.8428812,1.843256,1.8436308,1.8440056,1.8443801,1.8447547,1.8451291,1.8455036,1.8458779,1.8462521,1.8466263,1.8470004,1.8473744,1.8477483,1.8481222,1.848496,1.8488697,1.8492433,1.8496169,1.8499904,1.8503637,1.8507371,1.8511103,1.8514836,1.8518567,1.8522297,1.8526026,1.8529755,1.8533484,1.853721,1.8540938,1.8544663,1.8548388,1.8552113,1.8555837,1.855956,1.8563281,1.8567003,1.8570724,1.8574443,1.8578162,1.858188,1.8585598,1.8589315,1.8593031,1.8596747,1.8600461,1.8604175,1.8607888,1.86116,1.8615313,1.8619024,1.8622733,1.8626443,1.8630152,1.8633859,1.8637567,1.8641274,1.8644979,1.8648684,1.8652389,1.8656092,1.8659796,1.8663497,1.8667198,1.8670899,1.8674599,1.8678298,1.8681997,1.8685695,1.8689392,1.8693087,1.8696783,1.8700478,1.8704172,1.8707865,1.8711557,1.8715249,1.8718941,1.8722631,1.8726321,1.873001,1.8733698,1.8737385,1.8741072,1.8744758,1.8748444,1.8752128,1.8755813,1.8759495,1.8763177,1.876686,1.8770541,1.8774221,1.8777901,1.878158,1.8785257,1.8788935,1.8792611,1.8796288,1.8799963,1.8803637,1.8807311,1.8810984,1.8814657,1.8818328,1.8821999,1.8825669,1.8829339,1.8833008,1.8836676,1.8840343,1.884401,1.8847675,1.8851341,1.8855006,1.8858669,1.8862332,1.8865994,1.8869656,1.8873317,1.8876977,1.8880637,1.8884295,1.8887954,1.8891611,1.8895267,1.8898923,1.8902578,1.8906233,1.8909887,1.8913541,1.8917193,1.8920845,1.8924496,1.8928146,1.8931795,1.8935444,1.8939093,1.894274,1.8946387,1.8950033,1.8953679,1.8957323,1.8960967,1.8964611,1.8968253,1.8971895,1.8975537,1.8979177,1.8982817,1.8986456,1.8990095,1.8993732,1.8997369,1.9001006,1.900464,1.9008276,1.901191,1.9015543,1.9019177,1.9022809,1.902644,1.9030071,1.9033701,1.903733,1.9040959,1.9044588,1.9048215,1.9051841,1.9055467,1.9059093,1.9062717,1.9066341,1.9069964,1.9073586,1.9077208,1.908083,1.908445,1.9088069,1.9091688,1.9095308,1.9098924,1.9102542,1.9106158,1.9109774,1.9113389,1.9117002,1.9120617,1.9124229,1.9127842,1.9131453,1.9135064,1.9138675,1.9142283,1.9145893,1.91495,1.9153109,1.9156715,1.9160321,1.9163927,1.9167532,1.9171135,1.9174739,1.9178342,1.9181943,1.9185544,1.9189146,1.9192746,1.9196345,1.9199944,1.9203541,1.9207139,1.9210736,1.9214331,1.9217926,1.9221522,1.9225115,1.9228709,1.92323,1.9235892,1.9239484,1.9243075,1.9246664,1.9250253,1.9253843,1.925743,1.9261018,1.9264604,1.926819,1.9271775,1.927536,1.9278944,1.9282527,1.9286109,1.9289691,1.9293272,1.9296854,1.9300433,1.9304012,1.9307591,1.9311169,1.9314746,1.9318323,1.9321898,1.9325473,1.9329048,1.9332622,1.9336196,1.9339769,1.934334,1.9346912,1.9350482,1.9354053,1.9357622,1.9361191,1.9364759,1.9368325,1.9371892,1.9375459,1.9379023,1.9382589,1.9386152,1.9389716,1.9393278,1.939684,1.9400402,1.9403963,1.9407524,1.9411082,1.9414642,1.94182,1.9421757,1.9425315,1.9428871,1.9432427,1.9435982,1.9439535,1.9443089,1.9446642,1.9450195,1.9453746,1.9457297,1.9460847,1.9464397,1.9467946,1.9471495,1.9475043,1.9478589,1.9482136,1.9485682,1.9489228,1.9492772,1.9496316,1.9499859,1.9503402,1.9506943,1.9510485,1.9514025,1.9517566,1.9521105,1.9524645,1.9528183,1.953172,1.9535257,1.9538792,1.9542328,1.9545864,1.9549397,1.9552932,1.9556464,1.9559997,1.9563528,1.9567059,1.957059,1.957412,1.957765,1.9581178,1.9584706,1.9588233,1.959176,1.9595286,1.9598811,1.9602336,1.9605861,1.9609383,1.9612906,1.9616429,1.961995,1.9623471,1.9626992,1.9630511,1.963403,1.9637549,1.9641067,1.9644583,1.96481,1.9651617,1.9655131,1.9658647,1.9662161,1.9665674,1.9669187,1.9672699,1.967621,1.9679722,1.9683231,1.9686741,1.969025,1.9693758,1.9697266,1.9700774,1.970428,1.9707786,1.9711291,1.9714795,1.97183,1.9721804,1.9725306,1.9728808,1.973231,1.9735811,1.9739311,1.9742811,1.974631,1.9749808,1.9753306,1.9756804,1.97603,1.9763795,1.9767292,1.9770786,1.977428,1.9777774,1.9781266,1.9784758,1.978825,1.9791741,1.9795232,1.9798721,1.980221,1.98057,1.9809186,1.9812675,1.9816161,1.9819647,1.9823133,1.9826617,1.9830102,1.9833585,1.9837068,1.984055,1.9844033,1.9847513,1.9850994,1.9854474,1.9857954,1.9861432,1.9864911,1.9868388,1.9871866,1.9875342,1.9878818,1.9882293,1.9885768,1.9889241,1.9892714,1.9896187,1.9899659,1.990313,1.9906602,1.9910072,1.9913541,1.991701,1.9920479,1.9923947,1.9927415,1.9930881,1.9934347,1.9937812,1.9941278,1.9944742,1.9948205,1.9951668,1.9955131,1.9958593,1.9962053,1.9965514,1.9968975,1.9972434,1.9975892,1.997935,1.9982809,1.9986266,1.9989722,1.9993178,1.9996634,2.0000088,2.000354,2.0006995,2.0010448,2.00139,2.0017352,2.0020802,2.0024254,2.0027704,2.0031152,2.0034602,2.003805,2.0041497,2.0044944,2.004839,2.0051837,2.0055282,2.0058725,2.006217,2.0065613,2.0069056,2.0072498,2.0075939,2.0079381,2.0082822,2.008626,2.00897,2.0093138,2.0096576,2.0100014,2.0103452,2.0106888,2.0110323,2.011376,2.0117192,2.0120628,2.012406,2.0127492,2.0130925,2.0134356,2.0137787,2.0141218,2.0144649,2.0148077,2.0151505,2.0154934,2.0158362,2.0161788,2.0165215,2.016864,2.0172067,2.017549,2.0178914,2.0182338,2.0185761,2.0189183,2.0192604,2.0196025,2.0199447,2.0202866,2.0206287,2.0209706,2.0213122,2.0216541,2.0219958,2.0223374,2.022679,2.0230205,2.023362,2.0237033,2.0240448,2.0243862,2.0247273,2.0250685,2.0254097,2.0257509,2.0260918,2.0264328,2.0267737,2.0271144,2.0274553,2.027796,2.0281367,2.0284772,2.028818,2.0291584,2.0294988,2.0298393,2.0301795,2.0305197,2.03086,2.0312002,2.0315402,2.0318804,2.0322204,2.0325603,2.0329,2.0332398,2.0335796,2.0339193,2.034259,2.0345986,2.034938,2.0352776,2.035617,2.0359564,2.0362957,2.036635,2.0369742,2.0373132,2.0376525,2.0379915,2.0383303,2.0386693,2.0390081,2.039347,2.0396857,2.0400245,2.040363,2.0407016,2.0410402,2.0413785,2.041717,2.0420554,2.0423937,2.042732,2.04307,2.0434082,2.0437462,2.0440843,2.0444221,2.0447602,2.045098,2.0454357,2.0457735,2.046111,2.0464487,2.0467863,2.047124,2.0474613,2.0477989,2.048136,2.0484734,2.0488107,2.0491478,2.049485,2.049822,2.050159,2.0504959,2.050833,2.0511696,2.0515065,2.0518432,2.05218,2.0525165,2.052853,2.0531898,2.0535262,2.0538626,2.054199,2.0545352,2.0548713,2.0552075,2.0555437,2.0558798,2.0562158,2.0565517,2.0568876,2.0572236,2.0575593,2.0578952,2.0582309,2.0585663,2.058902,2.0592375,2.059573,2.0599084,2.0602438,2.060579,2.0609143,2.0612495,2.0615847,2.0619197,2.062255,2.06259,2.0629246,2.0632596,2.0635943,2.063929,2.0642638,2.0645986,2.064933,2.0652678,2.0656023,2.0659366,2.066271,2.0666053,2.0669396,2.0672739,2.067608,2.0679421,2.0682762,2.0686102,2.0689442,2.069278,2.0696118,2.0699456,2.0702794,2.0706131,2.0709467,2.0712802,2.0716138,2.0719473,2.0722806,2.0726142,2.0729475,2.0732806,2.073614,2.073947,2.07428,2.074613,2.0749462,2.075279,2.0756118,2.0759447,2.0762775,2.0766103,2.076943,2.0772755,2.077608,2.0779407,2.078273,2.0786054,2.0789378,2.0792701,2.0796022,2.0799346,2.0802667,2.0805988,2.0809307,2.0812628,2.0815947,2.0819266,2.0822585,2.08259,2.0829217,2.0832534,2.083585,2.0839167,2.084248,2.0845797,2.0849109,2.0852423,2.0855737,2.0859048,2.086236,2.0865672,2.0868983,2.0872293,2.0875602,2.087891,2.088222,2.088553,2.0888836,2.0892143,2.089545,2.0898757,2.0902061,2.0905366,2.090867,2.0911975,2.091528,2.0918581,2.0921884,2.0925186,2.0928488,2.0931787,2.0935087,2.093839,2.0941687,2.0944986,2.0948284,2.0951583,2.0954878,2.0958176,2.0961473,2.0964768,2.0968063,2.0971358,2.0974653,2.0977945,2.0981238,2.098453,2.0987823,2.0991116,2.0994406,2.0997696,2.1000986,2.1004276,2.1007564,2.1010854,2.1014142,2.1017427,2.1020715,2.1024,2.1027288,2.1030574,2.1033857,2.1037142,2.1040425,2.1043708,2.1046991,2.1050274,2.1053555,2.1056838,2.1060119,2.10634,2.1066678,2.1069958,2.1073236,2.1076515,2.107979,2.108307,2.1086345,2.108962,2.1092896,2.1096172,2.1099448,2.1102722,2.1105995,2.1109269,2.111254,2.1115813,2.1119084,2.1122355,2.1125627,2.1128895,2.1132166,2.1135435,2.1138704,2.114197,2.114524,2.1148505,2.1151772,2.1155038,2.1158304,2.1161568,2.1164832,2.1168096,2.117136,2.1174624,2.1177886,2.1181147,2.1184409,2.118767,2.1190932,2.119419,2.119745,2.120071,2.1203969,2.1207225,2.1210485,2.1213741,2.1216998,2.1220253,2.122351,2.1226764,2.1230018,2.1233273,2.1236525,2.123978,2.124303,2.1246283,2.1249535,2.1252785,2.1256037,2.1259286,2.1262536,2.1265783,2.1269033,2.127228,2.1275527,2.1278775,2.1282022,2.1285267,2.1288514,2.129176,2.1295004,2.1298246,2.1301491,2.1304734,2.1307976,2.1311219,2.131446,2.1317701,2.1320941,2.1324182,2.1327422,2.133066,2.13339,2.1337137,2.1340375,2.1343613,2.1346848,2.1350086,2.135332,2.1356556,2.135979,2.1363025,2.1366258,2.136949,2.1372724,2.1375957,2.137919,2.138242,2.138565,2.1388881,2.1392112,2.139534,2.1398568,2.1401796,2.1405025,2.1408253,2.1411479,2.1414707,2.1417933,2.1421156,2.1424382,2.1427608,2.143083,2.1434054,2.1437278,2.14405,2.1443722,2.1446943,2.1450164,2.1453385,2.1456604,2.1459825,2.1463044,2.1466262,2.146948,2.1472697,2.1475916,2.1479132,2.1482348,2.1485565,2.1488779,2.1491995,2.1495209,2.1498423,2.1501637,2.1504848,2.1508062,2.1511273,2.1514485,2.1517696,2.1520905,2.1524117,2.1527326,2.1530535,2.1533742,2.153695,2.1540158,2.1543367,2.1546574,2.1549778,2.1552985,2.155619,2.1559393,2.1562598,2.1565802,2.1569006,2.1572208,2.157541,2.1578612,2.1581814,2.1585016,2.1588216,2.1591415,2.1594615,2.1597815,2.1601014,2.1604211,2.1607409,2.1610606,2.1613803,2.1616998,2.1620195,2.162339,2.1626585,2.162978,2.1632972,2.1636167,2.163936,2.1642551,2.1645744,2.1648934,2.1652126,2.1655316,2.1658506,2.1661696,2.1664886,2.1668074,2.1671262,2.167445,2.1677637,2.1680825,2.168401,2.1687195,2.169038,2.1693566,2.169675,2.1699934,2.170312,2.1706302,2.1709485,2.1712666,2.1715848,2.171903,2.172221,2.172539,2.172857,2.1731749,2.173493,2.1738107,2.1741285,2.174446,2.174764,2.1750815,2.175399,2.1757166,2.1760342,2.1763518,2.1766691,2.1769865,2.1773038,2.1776211,2.1779385,2.1782556,2.1785727,2.1788898,2.1792068,2.179524,2.1798408,2.1801577,2.1804745,2.1807914,2.1811082,2.1814249,2.1817417,2.1820583,2.182375,2.1826913,2.183008,2.1833243,2.1836407,2.183957,2.1842735,2.1845896,2.184906,2.1852221,2.1855383,2.1858544,2.1861703,2.1864865,2.1868024,2.1871183,2.1874342,2.1877499,2.1880658,2.1883814,2.188697,2.1890128,2.1893282,2.1896439,2.1899593,2.1902747,2.1905901,2.1909056,2.1912208,2.1915362,2.1918514,2.1921666,2.1924818,2.1927967,2.193112,2.1934268,2.1937418,2.1940567,2.1943715,2.1946864,2.1950011,2.1953158,2.1956306,2.1959453,2.1962597,2.1965742,2.1968887,2.1972032,2.1975176,2.197832,2.1981463,2.1984606,2.1987748,2.199089,2.1994033,2.1997173,2.2000313,2.2003453,2.2006593,2.2009733,2.201287,2.201601,2.2019148,2.2022285,2.202542,2.2028558,2.2031693,2.2034829,2.2037964,2.20411,2.2044234,2.2047367,2.20505,2.2053633,2.2056766,2.2059898,2.206303,2.2066162,2.2069292,2.2072423,2.207555,2.207868,2.208181,2.208494,2.2088068,2.2091193,2.2094321,2.2097447,2.2100575,2.21037,2.2106826,2.210995,2.2113075,2.2116199,2.2119322,2.2122445,2.2125568,2.2128692,2.2131813,2.2134933,2.2138054,2.2141175,2.2144296,2.2147415,2.2150536,2.2153654,2.2156773,2.2159889,2.2163007,2.2166123,2.216924,2.2172356,2.2175472,2.2178588,2.2181702,2.2184818,2.2187932,2.2191045,2.2194157,2.219727,2.2200382,2.2203493,2.2206604,2.2209716,2.2212827,2.2215936,2.2219048,2.2222157,2.2225263,2.2228372,2.223148,2.2234588,2.2237694,2.22408,2.2243907,2.2247014,2.2250118,2.2253222,2.2256327,2.225943,2.2262535,2.226564,2.226874,2.2271843,2.2274945,2.2278047,2.2281146,2.2284248,2.2287347,2.2290447,2.2293546,2.2296646,2.2299743,2.2302842,2.230594,2.2309036,2.2312133,2.2315228,2.2318325,2.232142,2.2324514,2.232761,2.2330704,2.2333796,2.233689,2.2339983,2.2343075,2.2346168,2.234926,2.235235,2.235544,2.235853,2.236162,2.236471,2.23678,2.2370887,2.2373974,2.2377062,2.238015,2.2383237,2.2386322,2.238941,2.2392495,2.239558,2.2398665,2.2401748,2.2404833,2.2407916,2.2410998,2.241408,2.2417164,2.2420244,2.2423327,2.2426407,2.2429488,2.2432568,2.2435646,2.2438726,2.2441804,2.2444882,2.244796,2.2451038,2.2454116,2.2457192,2.2460268,2.2463343,2.2466419,2.2469494,2.247257,2.2475643,2.2478716,2.248179,2.2484863,2.2487936,2.2491007,2.2494078,2.249715,2.2500222,2.250329,2.250636,2.250943,2.25125,2.2515569,2.2518637,2.2521703,2.2524772,2.2527838,2.2530904,2.2533972,2.2537036,2.2540102,2.2543168,2.2546232,2.2549295,2.255236,2.2555423,2.2558484,2.2561548,2.256461,2.256767,2.2570732,2.2573793,2.2576854,2.2579913,2.2582972,2.258603,2.258909,2.2592149,2.2595205,2.2598264,2.260132,2.2604377,2.2607434,2.261049,2.2613544,2.2616599,2.2619655,2.262271,2.262576,2.2628815,2.2631867,2.263492,2.2637973,2.2641025,2.2644076,2.2647126,2.2650177,2.2653227,2.2656276,2.2659326,2.2662375,2.2665422,2.2668471,2.2671518,2.2674565,2.2677612,2.2680657,2.2683704,2.2686749,2.2689795,2.269284,2.2695882,2.2698927,2.2701972,2.2705014,2.2708056,2.2711098,2.271414,2.2717183,2.2720222,2.2723262,2.2726305,2.2729344,2.2732382,2.2735422,2.273846,2.27415,2.2744536,2.2747574,2.2750611,2.2753646,2.2756684,2.275972,2.2762754,2.276579,2.2768824,2.2771857,2.2774892,2.2777925,2.2780957,2.278399,2.2787023,2.2790053,2.2793086,2.2796116,2.2799146,2.2802176,2.2805207,2.2808235,2.2811265,2.2814293,2.281732,2.2820349,2.2823374,2.2826402,2.2829428,2.2832456,2.283548,2.2838507,2.284153,2.2844555,2.2847579,2.2850602,2.2853625,2.2856648,2.285967,2.2862692,2.2865715,2.2868736,2.2871757,2.2874777,2.2877798,2.2880816,2.2883837,2.2886856,2.2889874,2.2892892,2.2895908,2.2898927,2.2901943,2.2904959,2.2907975,2.291099,2.2914007,2.2917023,2.2920036,2.292305,2.2926064,2.2929077,2.293209,2.2935102,2.2938116,2.2941127,2.2944138,2.294715,2.2950158,2.295317,2.2956178,2.295919,2.2962198,2.2965205,2.2968214,2.2971222,2.297423,2.2977235,2.2980242,2.2983248,2.2986255,2.298926,2.2992265,2.299527,2.2998273,2.3001277,2.3004282,2.3007283,2.3010287,2.301329,2.301629,2.3019292,2.3022294,2.3025293,2.3028295,2.3031294,2.3034294,2.3037293,2.3040292,2.304329,2.3046288,2.3049285,2.3052282,2.305528,2.3058276,2.3061273,2.3064268,2.3067262,2.3070257,2.3073251,2.3076246,2.307924,2.3082232,2.3085227,2.308822,2.3091211,2.3094203,2.3097193,2.3100185,2.3103175,2.3106165,2.3109155,2.3112144,2.3115134,2.3118122,2.3121111,2.3124099,2.3127086,2.3130074,2.313306,2.3136046,2.3139033,2.3142018,2.3145003,2.3147988,2.3150973,2.3153956,2.315694,2.3159924,2.3162906,2.3165889,2.3168871,2.3171852,2.3174834,2.3177814,2.3180795,2.3183775,2.3186755,2.3189735,2.3192713,2.319569,2.3198671,2.320165,2.3204627,2.3207603,2.321058,2.3213556,2.3216531,2.3219507,2.3222482,2.3225458,2.3228433,2.3231406,2.323438,2.3237352,2.3240325,2.3243299,2.3246272,2.3249242,2.3252213,2.3255186,2.3258157,2.3261125,2.3264096,2.3267066,2.3270035,2.3273003,2.3275971,2.327894,2.3281908,2.3284874,2.3287842,2.3290808,2.3293774,2.329674,2.3299706,2.330267,2.3305635,2.33086,2.3311563,2.3314526,2.331749,2.332045,2.3323414,2.3326375,2.3329337,2.33323,2.333526,2.333822,2.3341181,2.334414,2.33471,2.3350058,2.3353016,2.3355975,2.3358934,2.336189,2.3364847,2.3367803,2.337076,2.3373716,2.3376672,2.3379626,2.3382583,2.3385537,2.338849,2.3391445,2.3394399,2.339735,2.3400304,2.3403256,2.3406208,2.340916,2.341211,2.341506,2.3418012,2.342096,2.342391,2.342686,2.3429809,2.3432758,2.3435705,2.3438654,2.34416,2.3444548,2.3447495,2.3450441,2.3453386,2.3456333,2.3459277,2.3462222,2.3465166,2.346811,2.3471055,2.3473997,2.3476942,2.3479884,2.3482826,2.3485768,2.348871,2.349165,2.3494592,2.3497531,2.350047,2.350341,2.350635,2.3509288,2.3512228,2.3515165,2.3518105,2.3521042,2.3523977,2.3526914,2.3529851,2.3532786,2.3535724,2.3538659,2.3541594,2.3544526,2.354746,2.3550396,2.3553329,2.355626,2.3559194,2.3562126,2.3565059,2.3567991,2.3570921,2.3573852,2.3576782,2.3579712,2.3582642,2.3585572,2.35885,2.359143,2.3594358,2.3597286,2.3600214,2.3603141,2.3606067,2.3608994,2.361192,2.3614845,2.361777,2.3620696,2.3623621,2.3626544,2.362947,2.3632393,2.3635316,2.363824,2.3641162,2.3644085,2.3647006,2.3649926,2.365285,2.365577,2.365869,2.3661609,2.366453,2.3667448,2.3670368,2.3673286,2.3676205,2.367912,2.3682039,2.3684957,2.3687873,2.3690789,2.3693705,2.369662,2.3699536,2.3702452,2.3705366,2.370828,2.3711195,2.3714108,2.3717022,2.3719933,2.3722847,2.3725758,2.372867,2.3731582,2.3734493,2.3737402,2.3740313,2.3743224,2.3746133,2.3749042,2.375195,2.375486,2.3757768,2.3760676,2.3763583,2.376649,2.3769398,2.3772304,2.377521,2.3778114,2.378102,2.3783925,2.378683,2.3789735,2.3792639,2.3795543,2.3798444,2.3801348,2.380425,2.3807151,2.3810053,2.3812954,2.3815856,2.3818758,2.3821657,2.3824558,2.3827457,2.3830357,2.3833256,2.3836155,2.3839052,2.384195,2.3844848,2.3847744,2.3850641,2.3853538,2.3856435,2.385933,2.3862226,2.386512,2.3868015,2.387091,2.3873804,2.3876698,2.387959,2.3882484,2.3885376,2.3888268,2.389116,2.3894053,2.3896945,2.3899834,2.3902726,2.3905616,2.3908505,2.3911395,2.3914285,2.3917172,2.3920062,2.392295,2.3925836,2.3928723,2.393161,2.3934498,2.3937385,2.394027,2.3943155,2.3946042,2.3948927,2.3951812,2.3954694,2.395758,2.3960462,2.3963346,2.396623,2.3969111,2.3971994,2.3974874,2.3977757,2.3980637,2.398352,2.39864,2.398928,2.399216,2.3995037,2.3997917,2.4000795,2.4003675,2.4006553,2.400943,2.4012308,2.4015183,2.401806,2.4020936,2.4023814,2.402669,2.4029565,2.403244,2.4035313,2.4038188,2.4041061,2.4043934,2.404681,2.4049683,2.4052553,2.4055426,2.40583,2.406117,2.406404,2.406691,2.4069781,2.4072652,2.4075522,2.407839,2.408126,2.408413,2.4086998,2.4089866,2.4092734,2.40956,2.4098468,2.4101334,2.4104202,2.4107068,2.4109933,2.4112797,2.4115663,2.4118528,2.4121392,2.4124255,2.4127119,2.4129982,2.4132845,2.413571,2.413857,2.4141433,2.4144294,2.4147155,2.4150016,2.4152877,2.4155738,2.4158597,2.4161458,2.4164317,2.4167175,2.4170034,2.4172893,2.417575,2.4178607,2.4181464,2.4184322,2.4187179,2.4190035,2.4192889,2.4195745,2.4198601,2.4201455,2.420431,2.4207165,2.421002,2.421287,2.4215724,2.4218578,2.422143,2.4224281,2.4227133,2.4229984,2.4232836,2.4235687,2.4238539,2.4241388,2.4244237,2.4247088,2.4249938,2.4252784,2.4255633,2.4258482,2.426133,2.4264178,2.4267025,2.4269872,2.4272718,2.4275563,2.427841,2.4281254,2.42841,2.4286945,2.428979,2.4292634,2.4295478,2.429832,2.4301164,2.4304006,2.4306848,2.4309692,2.4312532,2.4315374,2.4318216,2.4321055,2.4323897,2.4326737,2.4329576,2.4332416,2.4335256,2.4338095,2.4340932,2.4343772,2.434661,2.4349446,2.4352283,2.435512,2.4357958,2.4360793,2.436363,2.4366465,2.43693,2.4372134,2.437497,2.4377804,2.4380636,2.438347,2.4386303,2.4389136,2.4391968,2.43948,2.4397633,2.4400465,2.4403296,2.4406128,2.4408958,2.4411788,2.4414618,2.4417448,2.4420276,2.4423106,2.4425933,2.4428763,2.443159,2.4434419,2.4437246,2.4440072,2.44429,2.4445724,2.4448552,2.4451377,2.4454203,2.4457028,2.445985,2.4462676,2.4465501,2.4468324,2.4471147,2.447397,2.4476793,2.4479616,2.4482439,2.448526,2.4488082,2.4490902,2.4493723,2.4496543,2.4499364,2.4502182,2.4505002,2.450782,2.451064,2.451346,2.4516277,2.4519095,2.4521914,2.452473,2.4527547,2.4530363,2.4533179,2.4535995,2.453881,2.4541626,2.4544442,2.4547255,2.455007,2.4552884,2.4555697,2.455851,2.4561324,2.4564137,2.4566948,2.4569762,2.4572573,2.4575384,2.4578195,2.4581006,2.4583817,2.4586627,2.4589436,2.4592247,2.4595056,2.4597864,2.4600673,2.4603481,2.460629,2.4609096,2.4611905,2.461471,2.4617517,2.4620323,2.462313,2.4625936,2.462874,2.4631546,2.463435,2.4637153,2.463996,2.464276,2.4645565,2.4648368,2.4651172,2.4653974,2.4656775,2.4659576,2.4662378,2.466518,2.466798,2.4670782,2.467358,2.4676383,2.4679182,2.468198,2.468478,2.4687579,2.4690375,2.4693174,2.469597,2.469877,2.4701567,2.4704363,2.470716,2.4709957,2.471275,2.4715548,2.4718342,2.4721136,2.472393,2.4726725,2.472952,2.4732313,2.4735107,2.47379,2.474069,2.4743483,2.4746275,2.4749067,2.4751859,2.475465,2.475744,2.4760232,2.4763021,2.476581,2.47686,2.477139,2.477418,2.4776967,2.4779756,2.4782543,2.478533,2.4788117,2.4790905,2.4793692,2.4796479,2.4799263,2.480205,2.4804835,2.480762,2.4810405,2.481319,2.4815974,2.4818757,2.4821541,2.4824324,2.4827108,2.482989,2.4832673,2.4835453,2.4838235,2.4841018,2.4843798,2.4846578,2.484936,2.485214,2.485492,2.4857697,2.4860477,2.4863257,2.4866035,2.4868813,2.487159,2.4874368,2.4877145,2.4879923,2.48827,2.4885476,2.4888253,2.4891028,2.4893804,2.4896579,2.4899354,2.4902127,2.4904902,2.4907675,2.491045,2.4913223,2.4915996,2.4918768,2.4921541,2.4924314,2.4927084,2.4929855,2.4932628,2.4935398,2.4938169,2.494094,2.494371,2.4946477,2.4949248,2.4952016,2.4954784,2.4957554,2.4960322,2.4963088,2.4965856,2.4968624,2.497139,2.4974158,2.4976923,2.497969,2.4982455,2.498522,2.4987986,2.499075,2.4993515,2.4996278,2.4999042,2.5001805,2.5004568,2.5007331,2.5010095,2.5012856,2.5015619,2.501838,2.502114,2.5023901,2.5026662,2.5029423,2.5032184,2.5034943,2.50377,2.5040462,2.504322,2.504598,2.5048738,2.5051496,2.5054252,2.505701,2.5059767,2.5062523,2.5065281,2.5068038,2.5070794,2.5073547,2.5076303,2.5079057,2.5081813,2.5084567,2.508732,2.5090075,2.5092828,2.5095582,2.5098333,2.5101087,2.5103838,2.510659,2.5109344,2.5112095,2.5114844,2.5117595,2.5120347,2.5123096,2.5125847,2.5128596,2.5131345,2.5134094,2.5136843,2.513959,2.5142338,2.5145087,2.5147834,2.515058,2.5153327,2.5156074,2.515882,2.5161567,2.516431,2.5167058,2.5169802,2.5172546,2.517529,2.5178034,2.5180779,2.5183523,2.5186265,2.5189009,2.519175,2.5194492,2.5197237,2.5199978,2.5202718,2.520546,2.5208201,2.521094,2.521368,2.5216422,2.5219162,2.52219,2.522464,2.5227377,2.5230117,2.5232854,2.5235593,2.523833,2.5241067,2.5243804,2.5246542,2.5249276,2.5252013,2.5254748,2.5257485,2.526022,2.5262954,2.526569,2.5268424,2.5271158,2.527389,2.5276625,2.5279357,2.528209,2.5284822,2.5287554,2.5290287,2.529302,2.529575,2.529848,2.530121,2.5303943,2.5306673,2.5309403,2.5312133,2.531486,2.531759,2.5320318,2.5323048,2.5325775,2.5328503,2.533123,2.5333958,2.5336685,2.533941,2.5342138,2.5344863,2.534759,2.5350316,2.535304,2.5355766,2.5358489,2.5361214,2.536394,2.5366662,2.5369384,2.5372107,2.537483,2.5377553,2.5380275,2.5382998,2.5385718,2.538844,2.5391161,2.5393882,2.5396602,2.5399323,2.5402043,2.5404763,2.5407481,2.5410202,2.541292,2.5415637,2.5418355,2.5421073,2.5423791,2.542651,2.5429225,2.5431943,2.5434659,2.5437374,2.5440092,2.5442808,2.544552,2.5448236,2.5450952,2.5453665,2.545638,2.5459094,2.5461807,2.546452,2.5467234,2.5469947,2.5472658,2.547537,2.5478082,2.5480795,2.5483506,2.5486217,2.5488927,2.5491636,2.5494347,2.5497057,2.5499766,2.5502474,2.5505185,2.5507894,2.5510602,2.551331,2.5516016,2.5518725,2.552143,2.552414,2.5526845,2.5529552,2.5532258,2.5534964,2.553767,2.5540373,2.554308,2.5545783,2.5548487,2.5551193,2.5553896,2.55566,2.5559301,2.5562005,2.5564709,2.556741,2.5570111,2.5572813,2.5575516,2.5578215,2.5580916,2.5583618,2.558632,2.5589018,2.5591717,2.5594418,2.5597117,2.5599816,2.5602515,2.5605211,2.560791,2.561061,2.5613306,2.5616002,2.5618699,2.5621395,2.5624092,2.5626788,2.5629485,2.5632179,2.5634875,2.563757,2.5640264,2.564296,2.5645654,2.5648346,2.565104,2.5653734,2.5656426,2.565912,2.5661812,2.5664504,2.5667195,2.5669887,2.567258,2.5675268,2.567796,2.568065,2.568334,2.568603,2.568872,2.569141,2.5694098,2.5696785,2.5699475,2.5702164,2.570485,2.5707538,2.5710225,2.5712912,2.57156,2.5718286,2.5720973,2.5723658,2.5726345,2.572903,2.5731714,2.5734398,2.5737083,2.5739768,2.5742452,2.5745134,2.574782,2.57505,2.5753183,2.5755868,2.575855,2.5761232,2.5763912,2.5766594,2.5769277,2.5771956,2.5774636,2.5777316,2.5779998,2.5782678,2.5785356,2.5788035,2.5790715,2.5793393,2.5796072,2.579875,2.5801427,2.5804105,2.5806782,2.580946,2.5812135,2.5814812,2.5817487,2.5820165,2.582284,2.5825515,2.582819,2.5830865,2.583354,2.5836213,2.5838888,2.584156,2.5844235,2.5846908,2.584958,2.5852253,2.5854926,2.5857596,2.586027,2.586294,2.5865612,2.5868282,2.5870953,2.5873623,2.5876293,2.5878963,2.5881631,2.5884302,2.588697,2.588964,2.5892308,2.5894976,2.5897644,2.5900311,2.590298,2.5905645,2.5908313,2.5910978,2.5913646,2.5916312,2.5918977,2.5921643,2.5924308,2.5926971,2.5929637,2.59323,2.5934966,2.5937629,2.5940292,2.5942955,2.5945618,2.5948281,2.5950942,2.5953605,2.5956266,2.595893,2.596159,2.596425,2.5966911,2.5969572,2.5972233,2.597489,2.5977552,2.598021,2.598287,2.598553,2.5988188,2.5990846,2.5993505,2.599616,2.599882,2.6001477,2.6004133,2.600679,2.6009445,2.60121,2.6014757,2.6017413,2.602007,2.6022725,2.6025379,2.6028032,2.6030688,2.6033342,2.6035995,2.603865,2.6041303,2.6043954,2.6046607,2.6049259,2.6051912,2.6054564,2.6057215,2.6059866,2.6062517,2.6065168,2.6067817,2.6070468,2.6073117,2.6075768,2.6078417,2.6081066,2.6083715,2.6086364,2.6089013,2.609166,2.6094308,2.6096954,2.6099603,2.610225,2.6104896,2.6107543,2.611019,2.6112833,2.611548,2.6118126,2.612077,2.6123414,2.612606,2.6128705,2.6131349,2.613399,2.6136634,2.6139278,2.614192,2.6144564,2.6147206,2.6149848,2.615249,2.615513,2.6157773,2.6160414,2.6163056,2.6165695,2.6168334,2.6170976,2.6173615,2.6176255,2.6178894,2.6181533,2.618417,2.618681,2.618945,2.6192086,2.6194723,2.619736,2.62,2.6202633,2.620527,2.6207907,2.6210544,2.6213179,2.6215816,2.621845,2.6221085,2.622372,2.6226354,2.6228988,2.6231623,2.6234255,2.623689,2.6239522,2.6242154,2.6244788,2.624742,2.6250052,2.6252682,2.6255314,2.6257946,2.6260576,2.6263208,2.6265838,2.6268468,2.6271098,2.6273727,2.6276357,2.6278987,2.6281614,2.6284244,2.6286871,2.62895,2.6292129,2.6294756,2.6297383,2.630001,2.6302636,2.6305263,2.630789,2.6310515,2.631314,2.6315768,2.6318393,2.6321018,2.632364,2.6326265,2.632889,2.6331513,2.6334138,2.633676,2.6339383,2.6342006,2.6344628,2.634725,2.6349874,2.6352496,2.6355116,2.635774,2.636036,2.636298,2.63656,2.636822,2.637084,2.637346,2.637608,2.6378698,2.6381319,2.6383936,2.6386554,2.6389172,2.6391792,2.6394408,2.6397026,2.6399643,2.6402261,2.6404877,2.6407492,2.641011,2.6412725,2.641534,2.6417956,2.6420572,2.6423185,2.64258,2.6428413,2.643103,2.6433642,2.6436255,2.6438868,2.644148,2.6444094,2.6446707,2.644932,2.645193,2.6454542,2.6457155,2.6459765,2.6462376,2.6464987,2.6467597,2.6470208,2.6472816,2.6475427,2.6478035,2.6480646,2.6483254,2.6485863,2.648847,2.649108,2.6493688,2.6496294,2.6498902,2.650151,2.6504116,2.6506722,2.6509328,2.6511934,2.651454,2.6517146,2.6519752,2.6522355,2.652496,2.6527565,2.653017,2.6532774,2.6535378,2.653798,2.6540585,2.6543188,2.654579,2.6548393,2.6550994,2.6553597,2.6556199,2.65588,2.65614,2.6564002,2.6566603,2.6569202,2.6571803,2.6574402,2.6577003,2.6579602,2.65822,2.65848,2.6587398,2.6589997,2.6592596,2.6595192,2.659779,2.6600387,2.6602986,2.6605582,2.6608179,2.6610775,2.6613371,2.6615965,2.6618562,2.6621158,2.6623752,2.6626348,2.6628942,2.6631536,2.663413,2.6636724,2.6639318,2.664191,2.6644504,2.6647096,2.664969,2.6652281,2.6654873,2.6657465,2.6660056,2.6662648,2.666524,2.666783,2.667042,2.6673012,2.66756,2.667819,2.668078,2.6683369,2.6685958,2.6688547,2.6691136,2.6693723,2.6696312,2.66989,2.6701488,2.6704075,2.6706662,2.670925,2.6711836,2.671442,2.6717007,2.6719594,2.6722178,2.6724763,2.672735,2.6729934,2.6732519,2.6735103,2.6737688,2.674027,2.6742854,2.6745436,2.674802,2.6750603,2.6753185,2.6755767,2.675835,2.676093,2.6763513,2.6766095,2.6768675,2.6771257,2.6773837,2.6776416,2.6778996,2.6781578,2.6784155,2.6786735,2.6789315,2.6791894,2.6794472,2.6797051,2.6799629,2.6802206,2.6804783,2.680736,2.6809938,2.6812515,2.6815093,2.6817667,2.6820245,2.682282,2.6825395,2.682797,2.6830547,2.683312,2.6835694,2.683827,2.6840844,2.6843417,2.6845992,2.6848564,2.6851137,2.685371,2.6856282,2.6858854,2.6861427,2.6864,2.6866572,2.6869142,2.6871712,2.6874285,2.6876855,2.6879425,2.6881995,2.6884565,2.6887136,2.6889703,2.6892273,2.6894844,2.6897411,2.689998,2.6902547,2.6905115,2.6907682,2.691025,2.6912818,2.6915386,2.691795,2.692052,2.6923084,2.692565,2.6928215,2.6930783,2.6933346,2.693591,2.6938477,2.6941042,2.6943605,2.694617,2.6948733,2.6951296,2.695386,2.6956422,2.6958985,2.6961548,2.6964111,2.6966672,2.6969235,2.6971796,2.6974359,2.697692,2.697948,2.698204,2.69846,2.6987162,2.698972,2.699228,2.6994839,2.69974,2.6999958,2.7002516,2.7005074,2.7007632,2.701019,2.7012749,2.7015307,2.7017863,2.702042,2.7022977,2.7025533,2.702809,2.7030647,2.7033203,2.7035756,2.7038312,2.7040868,2.7043421,2.7045977,2.704853,2.7051086,2.705364,2.7056193,2.7058747,2.70613,2.7063851,2.7066405,2.7068958,2.707151,2.707406,2.7076614,2.7079165,2.7081716,2.7084267,2.7086818,2.7089367,2.7091918,2.7094467,2.7097018,2.7099566,2.7102118,2.7104666,2.7107215,2.7109764,2.711231,2.7114859,2.7117407,2.7119954,2.7122502,2.7125049,2.7127595,2.7130144,2.713269,2.7135236,2.713778,2.7140326,2.7142873,2.7145417,2.7147963,2.7150507,2.715305,2.7155595,2.7158139,2.7160683,2.7163227,2.716577,2.7168314,2.7170856,2.71734,2.7175941,2.7178483,2.7181025,2.7183566,2.7186108,2.718865,2.719119,2.719373,2.7196271,2.719881,2.7201352,2.7203891,2.720643,2.720897,2.7211509,2.7214048,2.7216587,2.7219124,2.7221663,2.72242,2.722674,2.7229276,2.7231812,2.723435,2.7236886,2.7239423,2.724196,2.7244494,2.724703,2.7249565,2.7252102,2.7254636,2.725717,2.7259705,2.726224,2.7264774,2.7267308,2.726984,2.7272375,2.727491,2.727744,2.7279973,2.7282505,2.7285037,2.728757,2.72901,2.7292633,2.7295165,2.7297695,2.7300227,2.7302756,2.7305286,2.7307818,2.7310348,2.7312877,2.7315407,2.7317934,2.7320464,2.7322993,2.732552,2.732805,2.7330577,2.7333105,2.7335632,2.733816,2.7340686,2.7343214,2.734574,2.7348266,2.7350793,2.7353318,2.7355845,2.735837,2.7360895,2.736342,2.7365944,2.736847,2.7370992,2.7373517,2.7376041,2.7378564,2.7381086,2.7383611,2.7386134,2.7388656,2.7391179,2.73937,2.739622,2.7398744,2.7401266,2.7403786,2.7406309,2.7408829,2.741135,2.741387,2.741639,2.741891,2.742143,2.7423947,2.7426467,2.7428985,2.7431505,2.7434022,2.743654,2.743906,2.7441578,2.7444093,2.744661,2.7449129,2.7451646,2.7454162,2.745668,2.7459195,2.746171,2.7464225,2.746674,2.7469256,2.7471771,2.7474287,2.7476802,2.7479315,2.748183,2.7484343,2.7486856,2.748937,2.7491882,2.7494395,2.7496908,2.749942,2.7501934,2.7504444,2.7506957,2.7509468,2.751198,2.751449,2.7517002,2.7519512,2.7522023,2.7524533,2.7527044,2.7529552,2.7532063,2.753457,2.7537081,2.753959,2.7542098,2.7544606,2.7547114,2.7549622,2.755213,2.7554636,2.7557144,2.755965,2.7562158,2.7564664,2.756717,2.7569675,2.7572181,2.7574687,2.7577193,2.7579699,2.7582202,2.7584708,2.758721,2.7589717,2.759222,2.7594724,2.7597227,2.759973,2.7602234,2.7604737,2.760724,2.7609742,2.7612245,2.7614746,2.7617247,2.7619748,2.7622252,2.7624753,2.762725,2.7629752,2.7632253,2.7634754,2.7637253,2.7639754,2.7642252,2.764475,2.764725,2.7649748,2.7652247,2.7654746,2.7657244,2.7659743,2.766224,2.7664738,2.7667234,2.7669733,2.767223,2.7674725,2.7677221,2.7679718,2.7682214,2.7684708,2.7687204,2.76897,2.7692194,2.7694688,2.7697184,2.7699678,2.7702172,2.7704666,2.770716,2.7709653,2.7712145,2.7714639,2.771713,2.7719624,2.7722116,2.7724607,2.77271,2.7729592,2.7732084,2.7734573,2.7737064,2.7739556,2.7742045,2.7744536,2.7747025,2.7749517,2.7752006,2.7754495,2.7756984,2.7759473,2.7761962,2.776445,2.7766938,2.7769427,2.7771914,2.77744,2.777689,2.7779377,2.7781863,2.778435,2.7786837,2.7789323,2.7791808,2.7794294,2.7796779,2.7799265,2.780175,2.7804234,2.780672,2.7809205,2.781169,2.7814171,2.7816656,2.781914,2.7821622,2.7824106,2.7826588,2.7829072,2.7831554,2.7834036,2.7836518,2.7839,2.7841482,2.7843964,2.7846444,2.7848926,2.7851405,2.7853887,2.7856367,2.7858846,2.7861326,2.7863805,2.7866285,2.7868764,2.7871244,2.787372,2.78762,2.7878678,2.7881157,2.7883635,2.7886112,2.788859,2.7891066,2.7893543,2.789602,2.7898498,2.7900972,2.790345,2.7905924,2.7908401,2.7910876,2.791335,2.7915826,2.79183,2.7920775,2.792325,2.7925723,2.7928197,2.7930672,2.7933145,2.7935617,2.7938092,2.7940564,2.7943037,2.794551,2.7947981,2.7950451,2.7952924,2.7955396,2.7957866,2.7960339,2.7962809,2.7965279,2.7967749,2.7970219,2.7972689,2.7975159,2.7977629,2.7980099,2.7982566,2.7985036,2.7987504,2.7989974,2.7992442,2.799491,2.7997377,2.7999845,2.8002312,2.800478,2.8007245,2.8009713,2.8012178,2.8014646,2.801711,2.8019576,2.8022041,2.802451,2.8026972,2.8029437,2.8031902,2.8034368,2.803683,2.8039296,2.8041759,2.8044224,2.8046687,2.804915,2.8051612,2.8054075,2.8056538,2.8059,2.8061461,2.8063924,2.8066385,2.8068848,2.8071308,2.8073769,2.8076231,2.8078692,2.8081152,2.808361,2.808607,2.8088531,2.809099,2.809345,2.8095908,2.8098369,2.8100827,2.8103285,2.8105743,2.81082,2.811066,2.8113117,2.8115575,2.811803,2.812049,2.8122945,2.81254,2.8127859,2.8130314,2.813277,2.8135226,2.8137681,2.8140137,2.814259,2.8145046,2.81475,2.8149955,2.8152409,2.8154862,2.8157318,2.815977,2.8162224,2.8164678,2.8167129,2.8169582,2.8172035,2.8174486,2.817694,2.817939,2.8181841,2.8184295,2.8186746,2.8189197,2.8191648,2.8194096,2.8196547,2.8198998,2.8201447,2.8203897,2.8206346,2.8208795,2.8211246,2.8213694,2.8216143,2.8218591,2.822104,2.8223486,2.8225935,2.8228383,2.823083,2.8233275,2.8235724,2.823817,2.8240616,2.8243062,2.8245509,2.8247955,2.82504,2.8252845,2.825529,2.8257737,2.826018,2.8262625,2.826507,2.8267515,2.8269958,2.8272402,2.8274846,2.8277287,2.8279731,2.8282175,2.8284616,2.828706,2.8289502,2.8291943,2.8294387,2.8296828,2.829927,2.830171,2.830415,2.8306592,2.8309033,2.8311472,2.8313913,2.8316352,2.8318794,2.8321233,2.8323672,2.832611,2.832855,2.833099,2.8333426,2.8335865,2.8338304,2.834074,2.834318,2.8345616,2.8348053,2.835049,2.8352926,2.8355362,2.83578,2.8360236,2.8362672,2.8365107,2.8367543,2.8369977,2.8372414,2.8374848,2.8377283,2.8379717,2.838215,2.8384585,2.838702,2.8389454,2.8391888,2.839432,2.8396754,2.8399186,2.8401618,2.8404052,2.8406484,2.8408916,2.8411348,2.841378,2.841621,2.841864,2.8421073,2.8423502,2.8425934,2.8428364,2.8430793,2.8433225,2.8435655,2.8438084,2.8440514,2.844294,2.844537,2.84478,2.8450227,2.8452656,2.8455083,2.8457513,2.845994,2.8462367,2.8464794,2.8467221,2.8469648,2.8472075,2.84745,2.8476927,2.8479352,2.848178,2.8484204,2.848663,2.8489056,2.849148,2.8493905,2.849633,2.8498755,2.8501177,2.8503602,2.8506026,2.8508449,2.851087,2.8513296,2.8515718,2.851814,2.8520563,2.8522985,2.8525407,2.852783,2.8530252,2.8532672,2.8535094,2.8537514,2.8539937,2.8542356,2.8544776,2.8547196,2.8549616,2.8552036,2.8554456,2.8556876,2.8559294,2.8561714,2.8564134,2.8566551,2.8568969,2.8571389,2.8573806,2.8576224,2.8578641,2.858106,2.8583477,2.8585892,2.858831,2.8590727,2.8593142,2.8595557,2.8597975,2.860039,2.8602805,2.860522,2.8607635,2.861005,2.8612466,2.8614879,2.8617294,2.861971,2.8622122,2.8624535,2.862695,2.8629363,2.8631775,2.8634188,2.86366,2.8639014,2.8641427,2.8643837,2.864625,2.864866,2.8651073,2.8653483,2.8655894,2.8658307,2.8660717,2.8663127,2.8665538,2.8667948,2.8670356,2.8672767,2.8675177,2.8677585,2.8679993,2.8682404,2.8684812,2.868722,2.8689628,2.8692036,2.8694444,2.8696852,2.869926,2.8701665,2.8704073,2.870648,2.8708887,2.8711293,2.8713698,2.8716104,2.871851,2.8720915,2.872332,2.8725727,2.8728132,2.8730536,2.873294,2.8735344,2.873775,2.8740153,2.8742557,2.874496,2.8747365,2.8749766,2.875217,2.8754573,2.8756976,2.8759377,2.876178,2.876418,2.8766584,2.8768985,2.8771386,2.8773787,2.8776188,2.8778589,2.878099,2.878339,2.8785791,2.878819,2.879059,2.879299,2.879539,2.8797789,2.8800187,2.8802586,2.8804984,2.8807383,2.880978,2.881218,2.8814578,2.8816974,2.8819373,2.8821769,2.8824167,2.8826563,2.882896,2.8831356,2.8833752,2.8836148,2.8838544,2.884094,2.8843334,2.884573,2.8848124,2.885052,2.8852913,2.885531,2.8857703,2.8860097,2.886249,2.8864884,2.8867278,2.886967,2.8872063,2.8874457,2.8876848,2.8879242,2.8881633,2.8884025,2.8886418,2.888881,2.88912,2.8893592,2.8895981,2.8898373,2.8900764,2.8903155,2.8905544,2.8907933,2.8910325,2.8912714,2.8915102,2.8917491,2.891988,2.892227,2.8924658,2.8927047,2.8929436,2.8931823,2.8934212,2.8936598,2.8938987,2.8941374,2.894376,2.8946147,2.8948534,2.895092,2.8953307,2.8955693,2.895808,2.8960464,2.896285,2.8965235,2.8967621,2.8970006,2.897239,2.8974774,2.8977158,2.8979542,2.8981926,2.898431,2.8986695,2.8989077,2.899146,2.8993843,2.8996227,2.8998609,2.900099,2.9003372,2.9005756,2.9008138,2.9010518,2.90129,2.9015281,2.9017663,2.9020042,2.9022424,2.9024804,2.9027183,2.9029565,2.9031944,2.9034324,2.9036703,2.9039083,2.9041462,2.904384,2.9046218,2.9048598,2.9050975,2.9053354,2.9055731,2.9058108,2.9060485,2.9062862,2.906524,2.9067616,2.9069993,2.907237,2.9074748,2.9077122,2.90795,2.9081874,2.908425,2.9086626,2.9089,2.9091375,2.909375,2.9096124,2.90985,2.9100873,2.9103248,2.910562,2.9107995,2.9110367,2.9112742,2.9115114,2.9117486,2.9119859,2.912223,2.9124603,2.9126976,2.9129348,2.913172,2.9134092,2.9136462,2.9138834,2.9141204,2.9143574,2.9145947,2.9148316,2.9150686,2.9153056,2.9155426,2.9157796,2.9160166,2.9162533,2.9164903,2.916727,2.916964,2.9172008,2.9174376,2.9176745,2.9179113,2.918148,2.9183848,2.9186215,2.918858,2.9190948,2.9193316,2.919568,2.9198048,2.9200413,2.920278,2.9205146,2.920751,2.9209876,2.921224,2.9214606,2.9216971,2.9219337,2.92217,2.9224064,2.9226427,2.9228792,2.9231155,2.9233518,2.9235883,2.9238245,2.9240608,2.924297,2.9245334,2.9247694,2.9250057,2.925242,2.925478,2.9257143,2.9259503,2.9261866,2.9264226,2.9266586,2.9268947,2.9271307,2.9273667,2.9276028,2.9278388,2.9280746,2.9283106,2.9285464,2.9287825,2.9290183,2.929254,2.92949,2.929726,2.9299617,2.9301975,2.9304333,2.9306688,2.9309046,2.9311404,2.931376,2.9316118,2.9318473,2.9320831,2.9323187,2.9325542,2.9327898,2.9330254,2.933261,2.9334965,2.933732,2.9339674,2.934203,2.9344382,2.9346738,2.934909,2.9351447,2.93538,2.9356153,2.9358506,2.936086,2.9363213,2.9365566,2.9367917,2.937027,2.9372623,2.9374974,2.9377327,2.9379678,2.9382029,2.938438,2.938673,2.9389083,2.9391432,2.9393783,2.9396133,2.9398484,2.9400833,2.9403183,2.9405534,2.9407883,2.941023,2.941258,2.941493,2.9417279,2.9419627,2.9421976,2.9424324,2.942667,2.9429018,2.9431367,2.9433713,2.9436061,2.9438407,2.9440753,2.94431,2.9445448,2.9447794,2.945014,2.9452486,2.945483,2.9457176,2.9459522,2.9461865,2.9464211,2.9466555,2.94689,2.9471245,2.9473588,2.9475932,2.9478276,2.948062,2.9482963,2.9485307,2.948765,2.9489992,2.9492335,2.949468,2.949702,2.9499362,2.9501705,2.9504046,2.9506388,2.950873,2.951107,2.9513412,2.9515753,2.9518092,2.9520433,2.9522772,2.9525113,2.9527452,2.9529793,2.9532132,2.953447,2.953681,2.9539149,2.9541488,2.9543827,2.9546165,2.9548504,2.955084,2.955318,2.9555516,2.9557855,2.9560192,2.9562528,2.9564865,2.95672,2.9569538,2.9571874,2.957421,2.9576547,2.9578884,2.9581218,2.9583554,2.9585888,2.9588225,2.959056,2.9592893,2.9595227,2.9597564,2.9599898,2.960223,2.9604564,2.9606898,2.9609232,2.9611564,2.9613898,2.961623,2.9618564,2.9620895,2.9623227,2.9625561,2.9627893,2.9630225,2.9632556,2.9634886,2.9637218,2.963955,2.9641879,2.964421,2.964654,2.9648871,2.96512,2.965353,2.9655862,2.9658191,2.966052,2.966285,2.9665177,2.9667506,2.9669836,2.9672165,2.9674492,2.9676821,2.9679148,2.9681475,2.9683805,2.9686131,2.9688458,2.9690785,2.9693112,2.969544,2.9697764,2.970009,2.9702418,2.9704742,2.970707,2.9709394,2.9711719,2.9714046,2.971637,2.9718695,2.972102,2.9723344,2.9725668,2.9727993,2.9730315,2.973264,2.9734962,2.9737287,2.9739609,2.9741933,2.9744256,2.9746578,2.97489,2.9751222,2.9753544,2.9755867,2.9758189,2.976051,2.976283,2.9765153,2.9767473,2.9769795,2.9772115,2.9774435,2.9776757,2.9779077,2.9781396,2.9783716,2.9786036,2.9788353,2.9790673,2.9792993,2.979531,2.979763,2.9799948,2.9802268,2.9804585,2.9806902,2.980922,2.9811537,2.9813855,2.9816172,2.981849,2.9820807,2.9823122,2.982544,2.9827757,2.9830072,2.9832387,2.9834704,2.983702,2.9839334,2.984165,2.9843965,2.984628,2.9848595,2.985091,2.9853222,2.9855537,2.9857852,2.9860165,2.9862478,2.9864793,2.9867105,2.9869418,2.987173,2.9874043,2.9876356,2.9878669,2.9880981,2.9883294,2.9885604,2.9887917,2.9890227,2.989254,2.989485,2.989716,2.9899473,2.9901783,2.9904094,2.9906404,2.9908714,2.9911022,2.9913332,2.9915643,2.991795,2.992026,2.9922569,2.992488,2.9927187,2.9929495,2.9931803,2.9934113,2.993642,2.9938726,2.9941034,2.9943342,2.994565,2.9947956,2.9950264,2.995257,2.9954877,2.9957182,2.9959488,2.9961796,2.9964101,2.9966407,2.9968712,2.9971018,2.997332,2.9975626,2.9977932,2.9980235,2.998254,2.9984844,2.998715,2.9989452,2.9991755,2.9994059,2.9996362,2.9998665,3.0000968,3.000327,3.0005574,3.0007877,3.0010178,3.0012481,3.0014782,3.0017085,3.0019386,3.0021687,3.0023987,3.002629,3.002859,3.0030892,3.003319,3.003549,3.0037792,3.0040092,3.004239,3.0044692,3.004699,3.004929,3.005159,3.0053887,3.0056186,3.0058484,3.0060782,3.006308,3.006538,3.0067677,3.0069973,3.0072272,3.007457,3.0076866,3.0079165,3.008146,3.0083756,3.0086052,3.0088348,3.0090644,3.009294,3.0095236,3.0097532,3.0099828,3.0102124,3.0104418,3.0106714,3.0109007,3.0111303,3.0113597,3.011589,3.0118184,3.0120478,3.0122771,3.0125065,3.0127358,3.0129652,3.0131946,3.0134237,3.013653,3.0138822,3.0141115,3.0143406,3.0145698,3.014799,3.0150282,3.0152574,3.0154865,3.0157156,3.0159447,3.0161736,3.0164027,3.0166318,3.0168607,3.0170898,3.0173187,3.0175476,3.0177767,3.0180056,3.0182345,3.0184634,3.0186923,3.0189211,3.01915,3.0193787,3.0196075,3.0198364,3.020065,3.020294,3.0205226,3.0207512,3.0209801,3.0212088,3.0214374,3.021666,3.0218947,3.0221233,3.022352,3.0225804,3.022809,3.0230377,3.023266,3.0234947,3.0237231,3.0239515,3.02418,3.0244086,3.024637,3.0248654,3.0250938,3.025322,3.0255504,3.0257788,3.0260072,3.0262353,3.0264637,3.026692,3.02692,3.0271485,3.0273767,3.0276048,3.027833,3.0280612,3.0282893,3.0285175,3.0287457,3.0289736,3.0292017,3.02943,3.0296578,3.029886,3.030114,3.0303419,3.0305698,3.030798,3.031026,3.0312538,3.0314815,3.0317094,3.0319374,3.0321653,3.032393,3.032621,3.0328486,3.0330765,3.0333042,3.033532,3.0337598,3.0339875,3.0342152,3.034443,3.0346706,3.0348983,3.0351257,3.0353534,3.035581,3.0358086,3.0360363,3.0362637,3.0364912,3.0367188,3.0369463,3.0371737,3.0374012,3.0376287,3.037856,3.0380836,3.038311,3.0385382,3.0387657,3.0389931,3.0392203,3.0394475,3.039675,3.0399022,3.0401294,3.0403566,3.0405838,3.040811,3.0410383,3.0412655,3.0414927,3.04172,3.041947,3.042174,3.042401,3.0426283,3.0428553,3.0430822,3.0433095,3.0435364,3.0437634,3.0439904,3.0442173,3.044444,3.044671,3.044898,3.045125,3.0453517,3.0455787,3.0458055,3.0460322,3.0462592,3.046486,3.0467126,3.0469394,3.047166,3.0473928,3.0476196,3.0478463,3.0480728,3.0482996,3.0485263,3.0487528,3.0489793,3.049206,3.0494325,3.049659,3.0498857,3.0501122,3.0503387,3.0505652,3.0507915,3.051018,3.0512445,3.051471,3.0516973,3.0519238,3.05215,3.0523763,3.0526028,3.052829,3.0530553,3.0532815,3.0535078,3.053734,3.0539603,3.0541866,3.0544128,3.0546389,3.0548651,3.0550911,3.0553174,3.0555434,3.0557697,3.0559957,3.0562217,3.0564477,3.0566738,3.0568998,3.0571258,3.0573518,3.0575778,3.0578036,3.0580297,3.0582557,3.0584815,3.0587072,3.0589333,3.059159,3.0593848,3.0596106,3.0598364,3.0600622,3.060288,3.0605137,3.0607395,3.0609653,3.0611908,3.0614166,3.0616422,3.061868,3.0620935,3.062319,3.0625448,3.0627704,3.062996,3.0632215,3.063447,3.0636725,3.063898,3.0641234,3.064349,3.0645742,3.0647998,3.065025,3.0652506,3.065476,3.0657012,3.0659268,3.066152,3.0663774,3.0666027,3.066828,3.067053,3.0672784,3.0675037,3.067729,3.067954,3.0681794,3.0684044,3.0686295,3.0688548,3.0690799,3.069305,3.06953,3.069755,3.0699801],"x":[0.8,0.8004398240703718,0.8008796481407437,0.8013194722111155,0.8017592962814875,0.8021991203518593,0.8026389444222312,0.803078768492603,0.8035185925629749,0.8039584166333467,0.8043982407037185,0.8048380647740904,0.8052778888444622,0.8057177129148341,0.8061575369852059,0.8065973610555778,0.8070371851259496,0.8074770091963215,0.8079168332666933,0.8083566573370652,0.808796481407437,0.8092363054778089,0.8096761295481807,0.8101159536185526,0.8105557776889244,0.8109956017592963,0.8114354258296681,0.81187524990004,0.8123150739704118,0.8127548980407837,0.8131947221111555,0.8136345461815274,0.8140743702518992,0.8145141943222711,0.8149540183926429,0.8153938424630148,0.8158336665333866,0.8162734906037585,0.8167133146741303,0.8171531387445022,0.817592962814874,0.8180327868852459,0.8184726109556177,0.8189124350259896,0.8193522590963614,0.8197920831667334,0.8202319072371052,0.8206717313074771,0.8211115553778489,0.8215513794482208,0.8219912035185926,0.8224310275889645,0.8228708516593363,0.8233106757297081,0.82375049980008,0.8241903238704518,0.8246301479408237,0.8250699720111955,0.8255097960815674,0.8259496201519392,0.8263894442223111,0.8268292682926829,0.8272690923630548,0.8277089164334266,0.8281487405037985,0.8285885645741703,0.8290283886445422,0.829468212714914,0.8299080367852859,0.8303478608556577,0.8307876849260296,0.8312275089964014,0.8316673330667733,0.8321071571371451,0.832546981207517,0.8329868052778888,0.8334266293482607,0.8338664534186325,0.8343062774890044,0.8347461015593762,0.8351859256297481,0.8356257497001199,0.8360655737704918,0.8365053978408636,0.8369452219112355,0.8373850459816073,0.8378248700519793,0.838264694122351,0.838704518192723,0.8391443422630948,0.8395841663334667,0.8400239904038385,0.8404638144742104,0.8409036385445822,0.841343462614954,0.8417832866853259,0.8422231107556977,0.8426629348260696,0.8431027588964414,0.8435425829668133,0.8439824070371851,0.844422231107557,0.8448620551779288,0.8453018792483007,0.8457417033186725,0.8461815273890444,0.8466213514594162,0.8470611755297881,0.8475009996001599,0.8479408236705318,0.8483806477409036,0.8488204718112755,0.8492602958816473,0.8497001199520192,0.850139944022391,0.8505797680927629,0.8510195921631347,0.8514594162335066,0.8518992403038784,0.8523390643742503,0.8527788884446221,0.853218712514994,0.8536585365853658,0.8540983606557377,0.8545381847261095,0.8549780087964814,0.8554178328668532,0.8558576569372252,0.856297481007597,0.8567373050779689,0.8571771291483407,0.8576169532187126,0.8580567772890844,0.8584966013594563,0.8589364254298281,0.8593762495002,0.8598160735705718,0.8602558976409436,0.8606957217113155,0.8611355457816873,0.8615753698520592,0.862015193922431,0.8624550179928029,0.8628948420631747,0.8633346661335466,0.8637744902039184,0.8642143142742903,0.8646541383446621,0.865093962415034,0.8655337864854058,0.8659736105557777,0.8664134346261495,0.8668532586965214,0.8672930827668932,0.8677329068372651,0.8681727309076369,0.8686125549780088,0.8690523790483806,0.8694922031187525,0.8699320271891243,0.8703718512594962,0.870811675329868,0.8712514994002399,0.8716913234706117,0.8721311475409836,0.8725709716113554,0.8730107956817273,0.8734506197520991,0.873890443822471,0.8743302678928428,0.8747700919632148,0.8752099160335866,0.8756497401039585,0.8760895641743303,0.8765293882447022,0.876969212315074,0.8774090363854459,0.8778488604558177,0.8782886845261896,0.8787285085965614,0.8791683326669332,0.8796081567373051,0.8800479808076769,0.8804878048780488,0.8809276289484206,0.8813674530187925,0.8818072770891643,0.8822471011595362,0.882686925229908,0.8831267493002799,0.8835665733706517,0.8840063974410236,0.8844462215113954,0.8848860455817673,0.8853258696521391,0.885765693722511,0.8862055177928828,0.8866453418632547,0.8870851659336265,0.8875249900039984,0.8879648140743702,0.8884046381447421,0.8888444622151139,0.8892842862854858,0.8897241103558576,0.8901639344262295,0.8906037584966013,0.8910435825669732,0.891483406637345,0.891923230707717,0.8923630547780887,0.8928028788484607,0.8932427029188325,0.8936825269892044,0.8941223510595762,0.8945621751299481,0.8950019992003199,0.8954418232706918,0.8958816473410636,0.8963214714114355,0.8967612954818073,0.8972011195521792,0.897640943622551,0.8980807676929228,0.8985205917632947,0.8989604158336665,0.8994002399040384,0.8998400639744102,0.9002798880447821,0.9007197121151539,0.9011595361855258,0.9015993602558976,0.9020391843262695,0.9024790083966413,0.9029188324670132,0.903358656537385,0.9037984806077569,0.9042383046781287,0.9046781287485006,0.9051179528188724,0.9055577768892443,0.9059976009596161,0.906437425029988,0.9068772491003598,0.9073170731707317,0.9077568972411035,0.9081967213114754,0.9086365453818472,0.9090763694522191,0.9095161935225909,0.9099560175929629,0.9103958416633346,0.9108356657337066,0.9112754898040784,0.9117153138744503,0.9121551379448221,0.912594962015194,0.9130347860855658,0.9134746101559377,0.9139144342263095,0.9143542582966814,0.9147940823670532,0.9152339064374251,0.9156737305077969,0.9161135545781688,0.9165533786485406,0.9169932027189124,0.9174330267892843,0.9178728508596561,0.918312674930028,0.9187524990003998,0.9191923230707717,0.9196321471411435,0.9200719712115154,0.9205117952818872,0.9209516193522591,0.9213914434226309,0.9218312674930028,0.9222710915633746,0.9227109156337465,0.9231507397041183,0.9235905637744902,0.924030387844862,0.9244702119152339,0.9249100359856057,0.9253498600559776,0.9257896841263494,0.9262295081967213,0.9266693322670931,0.927109156337465,0.9275489804078368,0.9279888044782088,0.9284286285485805,0.9288684526189525,0.9293082766893243,0.9297481007596962,0.930187924830068,0.9306277489004399,0.9310675729708117,0.9315073970411836,0.9319472211115554,0.9323870451819273,0.9328268692522991,0.933266693322671,0.9337065173930428,0.9341463414634147,0.9345861655337865,0.9350259896041584,0.9354658136745302,0.935905637744902,0.9363454618152739,0.9367852858856457,0.9372251099560176,0.9376649340263894,0.9381047580967613,0.9385445821671331,0.938984406237505,0.9394242303078768,0.9398640543782487,0.9403038784486205,0.9407437025189924,0.9411835265893642,0.9416233506597361,0.9420631747301079,0.9425029988004798,0.9429428228708516,0.9433826469412235,0.9438224710115953,0.9442622950819672,0.944702119152339,0.945141943222711,0.9455817672930827,0.9460215913634547,0.9464614154338264,0.9469012395041984,0.9473410635745702,0.9477808876449421,0.9482207117153139,0.9486605357856858,0.9491003598560576,0.9495401839264295,0.9499800079968013,0.9504198320671732,0.950859656137545,0.9512994802079169,0.9517393042782887,0.9521791283486606,0.9526189524190324,0.9530587764894043,0.9534986005597761,0.9539384246301479,0.9543782487005198,0.9548180727708916,0.9552578968412635,0.9556977209116353,0.9561375449820072,0.956577369052379,0.9570171931227509,0.9574570171931227,0.9578968412634946,0.9583366653338664,0.9587764894042383,0.9592163134746101,0.959656137544982,0.9600959616153538,0.9605357856857257,0.9609756097560975,0.9614154338264694,0.9618552578968412,0.9622950819672131,0.9627349060375849,0.9631747301079568,0.9636145541783286,0.9640543782487005,0.9644942023190723,0.9649340263894443,0.965373850459816,0.965813674530188,0.9662534986005598,0.9666933226709317,0.9671331467413035,0.9675729708116754,0.9680127948820472,0.9684526189524191,0.9688924430227909,0.9693322670931628,0.9697720911635346,0.9702119152339065,0.9706517393042783,0.9710915633746502,0.971531387445022,0.9719712115153939,0.9724110355857657,0.9728508596561375,0.9732906837265094,0.9737305077968812,0.9741703318672531,0.9746101559376249,0.9750499800079968,0.9754898040783686,0.9759296281487405,0.9763694522191123,0.9768092762894842,0.977249100359856,0.9776889244302279,0.9781287485005997,0.9785685725709716,0.9790083966413434,0.9794482207117153,0.9798880447820871,0.980327868852459,0.9807676929228308,0.9812075169932027,0.9816473410635745,0.9820871651339464,0.9825269892043182,0.9829668132746902,0.983406637345062,0.9838464614154339,0.9842862854858057,0.9847261095561776,0.9851659336265494,0.9856057576969213,0.9860455817672931,0.986485405837665,0.9869252299080368,0.9873650539784087,0.9878048780487805,0.9882447021191524,0.9886845261895242,0.9891243502598961,0.9895641743302679,0.9900039984006398,0.9904438224710116,0.9908836465413835,0.9913234706117553,0.9917632946821271,0.992203118752499,0.9926429428228708,0.9930827668932427,0.9935225909636145,0.9939624150339864,0.9944022391043582,0.9948420631747301,0.9952818872451019,0.9957217113154738,0.9961615353858456,0.9966013594562175,0.9970411835265893,0.9974810075969612,0.997920831667333,0.9983606557377049,0.9988004798080767,0.9992403038784486,0.9996801279488204,1.0001199520191923,1.0005597760895641,1.000999600159936,1.001439424230308,1.0018792483006798,1.0023190723710516,1.0027588964414234,1.0031987205117954,1.0036385445821672,1.004078368652539,1.0045181927229108,1.0049580167932828,1.0053978408636546,1.0058376649340264,1.0062774890043982,1.0067173130747702,1.007157137145142,1.0075969612155138,1.0080367852858856,1.0084766093562576,1.0089164334266294,1.0093562574970012,1.009796081567373,1.010235905637745,1.0106757297081168,1.0111155537784886,1.0115553778488604,1.0119952019192322,1.0124350259896042,1.012874850059976,1.0133146741303478,1.0137544982007196,1.0141943222710916,1.0146341463414634,1.0150739704118352,1.015513794482207,1.015953618552579,1.0163934426229508,1.0168332666933226,1.0172730907636944,1.0177129148340665,1.0181527389044382,1.01859256297481,1.0190323870451818,1.0194722111155539,1.0199120351859257,1.0203518592562975,1.0207916833266693,1.0212315073970413,1.021671331467413,1.0221111555377849,1.0225509796081567,1.0229908036785287,1.0234306277489005,1.0238704518192723,1.024310275889644,1.024750099960016,1.025189924030388,1.0256297481007597,1.0260695721711315,1.0265093962415035,1.0269492203118753,1.027389044382247,1.027828868452619,1.028268692522991,1.0287085165933627,1.0291483406637345,1.0295881647341063,1.030027988804478,1.0304678128748501,1.030907636945222,1.0313474610155937,1.0317872850859655,1.0322271091563375,1.0326669332267093,1.0331067572970811,1.033546581367453,1.033986405437825,1.0344262295081967,1.0348660535785685,1.0353058776489403,1.0357457017193124,1.0361855257896841,1.036625349860056,1.0370651739304277,1.0375049980007998,1.0379448220711716,1.0383846461415434,1.0388244702119152,1.0392642942822872,1.039704118352659,1.0401439424230308,1.0405837664934026,1.0410235905637746,1.0414634146341464,1.0419032387045182,1.04234306277489,1.042782886845262,1.0432227109156338,1.0436625349860056,1.0441023590563774,1.0445421831267494,1.0449820071971212,1.045421831267493,1.0458616553378648,1.0463014794082368,1.0467413034786086,1.0471811275489804,1.0476209516193522,1.048060775689724,1.048500599760096,1.0489404238304678,1.0493802479008396,1.0498200719712114,1.0502598960415834,1.0506997201119552,1.051139544182327,1.0515793682526988,1.0520191923230708,1.0524590163934426,1.0528988404638144,1.0533386645341862,1.0537784886045582,1.05421831267493,1.0546581367453018,1.0550979608156736,1.0555377848860457,1.0559776089564175,1.0564174330267893,1.056857257097161,1.057297081167533,1.0577369052379049,1.0581767293082767,1.0586165533786485,1.0590563774490205,1.0594962015193923,1.059936025589764,1.0603758496601359,1.060815673730508,1.0612554978008797,1.0616953218712515,1.0621351459416233,1.0625749700119953,1.063014794082367,1.063454618152739,1.0638944422231107,1.0643342662934827,1.0647740903638545,1.0652139144342263,1.065653738504598,1.0660935625749701,1.066533386645342,1.0669732107157137,1.0674130347860855,1.0678528588564573,1.0682926829268293,1.0687325069972011,1.069172331067573,1.0696121551379447,1.0700519792083167,1.0704918032786885,1.0709316273490603,1.0713714514194321,1.0718112754898041,1.072251099560176,1.0726909236305477,1.0731307477009195,1.0735705717712916,1.0740103958416634,1.0744502199120352,1.074890043982407,1.075329868052779,1.0757696921231508,1.0762095161935226,1.0766493402638944,1.0770891643342664,1.0775289884046382,1.07796881247501,1.0784086365453818,1.0788484606157538,1.0792882846861256,1.0797281087564974,1.0801679328268692,1.0806077568972412,1.081047580967613,1.0814874050379848,1.0819272291083566,1.0823670531787286,1.0828068772491004,1.0832467013194722,1.083686525389844,1.084126349460216,1.0845661735305878,1.0850059976009596,1.0854458216713314,1.0858856457417032,1.0863254698120752,1.086765293882447,1.0872051179528188,1.0876449420231906,1.0880847660935626,1.0885245901639344,1.0889644142343062,1.089404238304678,1.08984406237505,1.0902838864454218,1.0907237105157936,1.0911635345861654,1.0916033586565375,1.0920431827269093,1.092483006797281,1.0929228308676529,1.0933626549380249,1.0938024790083967,1.0942423030787685,1.0946821271491403,1.0951219512195123,1.095561775289884,1.0960015993602559,1.0964414234306277,1.0968812475009997,1.0973210715713715,1.0977608956417433,1.098200719712115,1.098640543782487,1.099080367852859,1.0995201919232307,1.0999600159936025,1.1003998400639745,1.1008396641343463,1.101279488204718,1.10171931227509,1.102159136345462,1.1025989604158337,1.1030387844862055,1.1034786085565773,1.1039184326269493,1.1043582566973211,1.104798080767693,1.1052379048380647,1.1056777289084365,1.1061175529788085,1.1065573770491803,1.1069972011195521,1.107437025189924,1.107876849260296,1.1083166733306677,1.1087564974010395,1.1091963214714113,1.1096361455417834,1.1100759696121552,1.110515793682527,1.1109556177528987,1.1113954418232708,1.1118352658936426,1.1122750899640144,1.1127149140343862,1.1131547381047582,1.11359456217513,1.1140343862455018,1.1144742103158736,1.1149140343862456,1.1153538584566174,1.1157936825269892,1.116233506597361,1.116673330667733,1.1171131547381048,1.1175529788084766,1.1179928028788484,1.1184326269492204,1.1188724510195922,1.119312275089964,1.1197520991603358,1.1201919232307078,1.1206317473010796,1.1210715713714514,1.1215113954418232,1.1219512195121952,1.122391043582567,1.1228308676529388,1.1232706917233106,1.1237105157936824,1.1241503398640544,1.1245901639344262,1.125029988004798,1.1254698120751698,1.1259096361455418,1.1263494602159136,1.1267892842862854,1.1272291083566572,1.1276689324270293,1.128108756497401,1.1285485805677729,1.1289884046381446,1.1294282287085167,1.1298680527788885,1.1303078768492603,1.130747700919632,1.131187524990004,1.1316273490603759,1.1320671731307477,1.1325069972011195,1.1329468212714915,1.1333866453418633,1.133826469412235,1.1342662934826069,1.134706117552979,1.1351459416233507,1.1355857656937225,1.1360255897640943,1.1364654138344663,1.136905237904838,1.13734506197521,1.1377848860455817,1.1382247101159537,1.1386645341863255,1.1391043582566973,1.139544182327069,1.1399840063974411,1.140423830467813,1.1408636545381847,1.1413034786085565,1.1417433026789283,1.1421831267493003,1.1426229508196721,1.143062774890044,1.1435025989604157,1.1439424230307877,1.1443822471011595,1.1448220711715313,1.1452618952419031,1.1457017193122752,1.146141543382647,1.1465813674530188,1.1470211915233905,1.1474610155937626,1.1479008396641344,1.1483406637345062,1.148780487804878,1.14922031187525,1.1496601359456218,1.1500999600159936,1.1505397840863654,1.1509796081567374,1.1514194322271092,1.151859256297481,1.1522990803678528,1.1527389044382248,1.1531787285085966,1.1536185525789684,1.1540583766493402,1.1544982007197122,1.154938024790084,1.1553778488604558,1.1558176729308276,1.1562574970011996,1.1566973210715714,1.1571371451419432,1.157576969212315,1.158016793282687,1.1584566173530588,1.1588964414234306,1.1593362654938024,1.1597760895641744,1.1602159136345462,1.160655737704918,1.1610955617752898,1.1615353858456616,1.1619752099160336,1.1624150339864054,1.1628548580567772,1.163294682127149,1.163734506197521,1.1641743302678929,1.1646141543382647,1.1650539784086364,1.1654938024790085,1.1659336265493803,1.166373450619752,1.1668132746901239,1.1672530987604959,1.1676929228308677,1.1681327469012395,1.1685725709716113,1.1690123950419833,1.169452219112355,1.1698920431827269,1.1703318672530987,1.1707716913234707,1.1712115153938425,1.1716513394642143,1.172091163534586,1.172530987604958,1.17297081167533,1.1734106357457017,1.1738504598160735,1.1742902838864455,1.1747301079568173,1.1751699320271891,1.175609756097561,1.176049580167933,1.1764894042383047,1.1769292283086765,1.1773690523790483,1.1778088764494203,1.1782487005197921,1.178688524590164,1.1791283486605357,1.1795681727309075,1.1800079968012795,1.1804478208716513,1.1808876449420231,1.181327469012395,1.181767293082767,1.1822071171531388,1.1826469412235106,1.1830867652938823,1.1835265893642544,1.1839664134346262,1.184406237504998,1.1848460615753698,1.1852858856457418,1.1857257097161136,1.1861655337864854,1.1866053578568572,1.1870451819272292,1.187485005997601,1.1879248300679728,1.1883646541383446,1.1888044782087166,1.1892443022790884,1.1896841263494602,1.190123950419832,1.190563774490204,1.1910035985605758,1.1914434226309476,1.1918832467013194,1.1923230707716914,1.1927628948420632,1.193202718912435,1.1936425429828068,1.1940823670531788,1.1945221911235506,1.1949620151939224,1.1954018392642942,1.1958416633346662,1.196281487405038,1.1967213114754098,1.1971611355457816,1.1976009596161536,1.1980407836865254,1.1984806077568972,1.198920431827269,1.1993602558976408,1.1998000799680129,1.2002399040383847,1.2006797281087564,1.2011195521791282,1.2015593762495003,1.201999200319872,1.2024390243902439,1.2028788484606157,1.2033186725309877,1.2037584966013595,1.2041983206717313,1.204638144742103,1.205077968812475,1.2055177928828469,1.2059576169532187,1.2063974410235905,1.2068372650939625,1.2072770891643343,1.207716913234706,1.2081567373050779,1.20859656137545,1.2090363854458217,1.2094762095161935,1.2099160335865653,1.2103558576569373,1.2107956817273091,1.211235505797681,1.2116753298680527,1.2121151539384247,1.2125549780087965,1.2129948020791683,1.2134346261495401,1.2138744502199121,1.214314274290284,1.2147540983606557,1.2151939224310275,1.2156337465013995,1.2160735705717713,1.2165133946421431,1.216953218712515,1.2173930427828867,1.2178328668532588,1.2182726909236306,1.2187125149940023,1.2191523390643741,1.2195921631347462,1.220031987205118,1.2204718112754898,1.2209116353458616,1.2213514594162336,1.2217912834866054,1.2222311075569772,1.222670931627349,1.223110755697721,1.2235505797680928,1.2239904038384646,1.2244302279088364,1.2248700519792084,1.2253098760495802,1.225749700119952,1.2261895241903238,1.2266293482606958,1.2270691723310676,1.2275089964014394,1.2279488204718112,1.2283886445421832,1.228828468612555,1.2292682926829268,1.2297081167532986,1.2301479408236706,1.2305877648940424,1.2310275889644142,1.231467413034786,1.231907237105158,1.2323470611755298,1.2327868852459016,1.2332267093162734,1.2336665333866454,1.2341063574570172,1.234546181527389,1.2349860055977608,1.2354258296681329,1.2358656537385047,1.2363054778088765,1.2367453018792482,1.23718512594962,1.237624950019992,1.2380647740903639,1.2385045981607357,1.2389444222311075,1.2393842463014795,1.2398240703718513,1.240263894442223,1.2407037185125949,1.2411435425829669,1.2415833666533387,1.2420231907237105,1.2424630147940823,1.2429028388644543,1.243342662934826,1.243782487005198,1.2442223110755697,1.2446621351459417,1.2451019592163135,1.2455417832866853,1.245981607357057,1.2464214314274291,1.246861255497801,1.2473010795681727,1.2477409036385445,1.2481807277089165,1.2486205517792883,1.2490603758496601,1.249500199920032,1.249940023990404,1.2503798480607757,1.2508196721311475,1.2512594962015193,1.2516993202718913,1.2521391443422631,1.252578968412635,1.2530187924830067,1.2534586165533788,1.2538984406237506,1.2543382646941224,1.2547780887644941,1.255217912834866,1.255657736905238,1.2560975609756098,1.2565373850459816,1.2569772091163534,1.2574170331867254,1.2578568572570972,1.258296681327469,1.2587365053978408,1.2591763294682128,1.2596161535385846,1.2600559776089564,1.2604958016793282,1.2609356257497002,1.261375449820072,1.2618152738904438,1.2622550979608156,1.2626949220311876,1.2631347461015594,1.2635745701719312,1.264014394242303,1.264454218312675,1.2648940423830468,1.2653338664534186,1.2657736905237904,1.2662135145941624,1.2666533386645342,1.267093162734906,1.2675329868052778,1.2679728108756498,1.2684126349460216,1.2688524590163934,1.2692922830867652,1.2697321071571372,1.270171931227509,1.2706117552978808,1.2710515793682526,1.2714914034386247,1.2719312275089965,1.2723710515793683,1.27281087564974,1.2732506997201118,1.2736905237904839,1.2741303478608557,1.2745701719312275,1.2750099960015993,1.2754498200719713,1.275889644142343,1.2763294682127149,1.2767692922830867,1.2772091163534587,1.2776489404238305,1.2780887644942023,1.278528588564574,1.278968412634946,1.279408236705318,1.2798480607756897,1.2802878848460615,1.2807277089164335,1.2811675329868053,1.281607357057177,1.282047181127549,1.282487005197921,1.2829268292682927,1.2833666533386645,1.2838064774090363,1.2842463014794083,1.2846861255497801,1.285125949620152,1.2855657736905237,1.2860055977608957,1.2864454218312675,1.2868852459016393,1.2873250699720111,1.2877648940423831,1.288204718112755,1.2886445421831267,1.2890843662534985,1.2895241903238706,1.2899640143942424,1.2904038384646142,1.290843662534986,1.291283486605358,1.2917233106757298,1.2921631347461016,1.2926029588164734,1.2930427828868452,1.2934826069572172,1.293922431027589,1.2943622550979608,1.2948020791683326,1.2952419032387046,1.2956817273090764,1.2961215513794482,1.29656137544982,1.297001199520192,1.2974410235905638,1.2978808476609356,1.2983206717313074,1.2987604958016794,1.2992003198720512,1.299640143942423,1.3000799680127948,1.3005197920831668,1.3009596161535386,1.3013994402239104,1.3018392642942822,1.3022790883646542,1.302718912435026,1.3031587365053978,1.3035985605757696,1.3040383846461416,1.3044782087165134,1.3049180327868852,1.305357856857257,1.305797680927629,1.3062375049980008,1.3066773290683726,1.3071171531387444,1.3075569772091165,1.3079968012794883,1.30843662534986,1.3088764494202318,1.3093162734906039,1.3097560975609757,1.3101959216313475,1.3106357457017193,1.311075569772091,1.311515393842463,1.3119552179128349,1.3123950419832067,1.3128348660535785,1.3132746901239505,1.3137145141943223,1.314154338264694,1.3145941623350659,1.315033986405438,1.3154738104758097,1.3159136345461815,1.3163534586165533,1.3167932826869253,1.317233106757297,1.317672930827669,1.3181127548980407,1.3185525789684127,1.3189924030387845,1.3194322271091563,1.319872051179528,1.3203118752499001,1.320751699320272,1.3211915233906437,1.3216313474610155,1.3220711715313875,1.3225109956017593,1.3229508196721311,1.323390643742503,1.323830467812875,1.3242702918832467,1.3247101159536185,1.3251499400239903,1.3255897640943624,1.3260295881647342,1.326469412235106,1.3269092363054777,1.3273490603758498,1.3277888844462216,1.3282287085165934,1.3286685325869652,1.3291083566573372,1.329548180727709,1.3299880047980808,1.3304278288684526,1.3308676529388244,1.3313074770091964,1.3317473010795682,1.33218712514994,1.3326269492203118,1.3330667732906838,1.3335065973610556,1.3339464214314274,1.3343862455017992,1.3348260695721712,1.335265893642543,1.3357057177129148,1.3361455417832866,1.3365853658536586,1.3370251899240304,1.3374650139944022,1.337904838064774,1.338344662135146,1.3387844862055178,1.3392243102758896,1.3396641343462614,1.3401039584166334,1.3405437824870052,1.340983606557377,1.3414234306277488,1.3418632546981208,1.3423030787684926,1.3427429028388644,1.3431827269092362,1.3436225509796083,1.34406237504998,1.3445021991203518,1.3449420231907236,1.3453818472610957,1.3458216713314675,1.3462614954018393,1.346701319472211,1.347141143542583,1.3475809676129549,1.3480207916833267,1.3484606157536985,1.3489004398240703,1.3493402638944423,1.349780087964814,1.3502199120351859,1.3506597361055577,1.3510995601759297,1.3515393842463015,1.3519792083166733,1.352419032387045,1.352858856457417,1.353298680527789,1.3537385045981607,1.3541783286685325,1.3546181527389045,1.3550579768092763,1.355497800879648,1.35593762495002,1.356377449020392,1.3568172730907637,1.3572570971611355,1.3576969212315073,1.3581367453018793,1.3585765693722511,1.359016393442623,1.3594562175129947,1.3598960415833667,1.3603358656537385,1.3607756897241103,1.3612155137944821,1.3616553378648542,1.362095161935226,1.3625349860055977,1.3629748100759695,1.3634146341463416,1.3638544582167134,1.3642942822870852,1.364734106357457,1.365173930427829,1.3656137544982008,1.3660535785685726,1.3664934026389444,1.3669332267093162,1.3673730507796882,1.36781287485006,1.3682526989204318,1.3686925229908036,1.3691323470611756,1.3695721711315474,1.3700119952019192,1.370451819272291,1.370891643342663,1.3713314674130348,1.3717712914834066,1.3722111155537784,1.3726509396241504,1.3730907636945222,1.373530587764894,1.3739704118352658,1.3744102359056378,1.3748500599760096,1.3752898840463814,1.3757297081167532,1.3761695321871252,1.376609356257497,1.3770491803278688,1.3774890043982406,1.3779288284686126,1.3783686525389844,1.3788084766093562,1.379248300679728,1.3796881247501,1.3801279488204719,1.3805677728908436,1.3810075969612154,1.3814474210315875,1.3818872451019593,1.382327069172331,1.3827668932427029,1.3832067173130749,1.3836465413834467,1.3840863654538185,1.3845261895241903,1.3849660135945623,1.385405837664934,1.3858456617353059,1.3862854858056777,1.3867253098760495,1.3871651339464215,1.3876049580167933,1.388044782087165,1.3884846061575369,1.388924430227909,1.3893642542982807,1.3898040783686525,1.3902439024390243,1.3906837265093963,1.391123550579768,1.39156337465014,1.3920031987205117,1.3924430227908837,1.3928828468612555,1.3933226709316273,1.3937624950019991,1.3942023190723711,1.394642143142743,1.3950819672131147,1.3955217912834865,1.3959616153538585,1.3964014394242303,1.3968412634946021,1.397281087564974,1.397720911635346,1.3981607357057177,1.3986005597760895,1.3990403838464613,1.3994802079168334,1.3999200319872052,1.400359856057577,1.4007996801279488,1.4012395041983208,1.4016793282686926,1.4021191523390644,1.4025589764094362,1.4029988004798082,1.40343862455018,1.4038784486205518,1.4043182726909236,1.4047580967612954,1.4051979208316674,1.4056377449020392,1.406077568972411,1.4065173930427828,1.4069572171131548,1.4073970411835266,1.4078368652538984,1.4082766893242702,1.4087165133946422,1.409156337465014,1.4095961615353858,1.4100359856057576,1.4104758096761296,1.4109156337465014,1.4113554578168732,1.411795281887245,1.412235105957617,1.4126749300279888,1.4131147540983606,1.4135545781687324,1.4139944022391044,1.4144342263094762,1.414874050379848,1.4153138744502198,1.4157536985205919,1.4161935225909636,1.4166333466613354,1.4170731707317072,1.4175129948020793,1.417952818872451,1.4183926429428229,1.4188324670131947,1.4192722910835667,1.4197121151539385,1.4201519392243103,1.420591763294682,1.421031587365054,1.4214714114354259,1.4219112355057977,1.4223510595761695,1.4227908836465415,1.4232307077169133,1.423670531787285,1.4241103558576569,1.4245501799280287,1.4249900039984007,1.4254298280687725,1.4258696521391443,1.426309476209516,1.426749300279888,1.42718912435026,1.4276289484206317,1.4280687724910035,1.4285085965613755,1.4289484206317473,1.4293882447021191,1.429828068772491,1.430267892842863,1.4307077169132347,1.4311475409836065,1.4315873650539783,1.4320271891243503,1.4324670131947221,1.432906837265094,1.4333466613354657,1.4337864854058378,1.4342263094762095,1.4346661335465813,1.4351059576169531,1.4355457816873252,1.435985605757697,1.4364254298280688,1.4368652538984406,1.4373050779688126,1.4377449020391844,1.4381847261095562,1.438624550179928,1.4390643742503,1.4395041983206718,1.4399440223910436,1.4403838464614154,1.4408236705317874,1.4412634946021592,1.441703318672531,1.4421431427429028,1.4425829668132746,1.4430227908836466,1.4434626149540184,1.4439024390243902,1.444342263094762,1.444782087165134,1.4452219112355058,1.4456617353058776,1.4461015593762494,1.4465413834466214,1.4469812075169932,1.447421031587365,1.4478608556577368,1.4483006797281088,1.4487405037984806,1.4491803278688524,1.4496201519392242,1.4500599760095962,1.450499800079968,1.4509396241503398,1.4513794482207116,1.4518192722910837,1.4522590963614554,1.4526989204318272,1.453138744502199,1.453578568572571,1.4540183926429429,1.4544582167133147,1.4548980407836865,1.4553378648540585,1.4557776889244303,1.456217512994802,1.4566573370651739,1.4570971611355459,1.4575369852059177,1.4579768092762895,1.4584166333466613,1.4588564574170333,1.459296281487405,1.4597361055577769,1.4601759296281487,1.4606157536985207,1.4610555777688925,1.4614954018392643,1.461935225909636,1.462375049980008,1.46281487405038,1.4632546981207517,1.4636945221911235,1.4641343462614953,1.4645741703318673,1.4650139944022391,1.465453818472611,1.4658936425429827,1.4663334666133547,1.4667732906837265,1.4672131147540983,1.4676529388244701,1.4680927628948421,1.468532586965214,1.4689724110355857,1.4694122351059575,1.4698520591763296,1.4702918832467013,1.4707317073170731,1.471171531387445,1.471611355457817,1.4720511795281888,1.4724910035985606,1.4729308276689324,1.4733706517393044,1.4738104758096762,1.474250299880048,1.4746901239504198,1.4751299480207918,1.4755697720911636,1.4760095961615354,1.4764494202319072,1.4768892443022792,1.477329068372651,1.4777688924430228,1.4782087165133946,1.4786485405837666,1.4790883646541384,1.4795281887245102,1.479968012794882,1.4804078368652538,1.4808476609356258,1.4812874850059976,1.4817273090763694,1.4821671331467412,1.4826069572171132,1.483046781287485,1.4834866053578568,1.4839264294282286,1.4843662534986006,1.4848060775689724,1.4852459016393442,1.485685725709716,1.486125549780088,1.4865653738504598,1.4870051979208316,1.4874450219912034,1.4878848460615755,1.4883246701319472,1.488764494202319,1.4892043182726908,1.4896441423430629,1.4900839664134347,1.4905237904838065,1.4909636145541783,1.4914034386245503,1.491843262694922,1.4922830867652939,1.4927229108356657,1.4931627349060377,1.4936025589764095,1.4940423830467813,1.494482207117153,1.494922031187525,1.4953618552578969,1.4958016793282687,1.4962415033986405,1.4966813274690125,1.4971211515393843,1.497560975609756,1.498000799680128,1.4984406237504997,1.4988804478208717,1.4993202718912435,1.4997600959616153,1.500199920031987,1.5006397441023591,1.501079568172731,1.5015193922431027,1.5019592163134745,1.5023990403838465,1.5028388644542183,1.5032786885245901,1.503718512594962,1.504158336665334,1.5045981607357057,1.5050379848060775,1.5054778088764493,1.5059176329468213,1.5063574570171931,1.506797281087565,1.5072371051579367,1.5076769292283088,1.5081167532986806,1.5085565773690524,1.5089964014394242,1.5094362255097962,1.509876049580168,1.5103158736505398,1.5107556977209116,1.5111955217912836,1.5116353458616554,1.5120751699320272,1.512514994002399,1.512954818072771,1.5133946421431428,1.5138344662135146,1.5142742902838864,1.5147141143542584,1.5151539384246302,1.515593762495002,1.5160335865653738,1.5164734106357458,1.5169132347061176,1.5173530587764894,1.5177928828468612,1.518232706917233,1.518672530987605,1.5191123550579768,1.5195521791283486,1.5199920031987204,1.5204318272690924,1.5208716513394642,1.521311475409836,1.5217512994802078,1.5221911235505798,1.5226309476209516,1.5230707716913234,1.5235105957616952,1.5239504198320672,1.524390243902439,1.5248300679728108,1.5252698920431826,1.5257097161135547,1.5261495401839265,1.5265893642542983,1.52702918832467,1.527469012395042,1.5279088364654139,1.5283486605357857,1.5287884846061575,1.5292283086765295,1.5296681327469013,1.530107956817273,1.5305477808876449,1.530987604958017,1.5314274290283887,1.5318672530987605,1.5323070771691323,1.5327469012395043,1.533186725309876,1.533626549380248,1.5340663734506197,1.5345061975209917,1.5349460215913635,1.5353858456617353,1.535825669732107,1.536265493802479,1.536705317872851,1.5371451419432227,1.5375849660135945,1.5380247900839663,1.5384646141543383,1.5389044382247101,1.539344262295082,1.5397840863654537,1.5402239104358257,1.5406637345061975,1.5411035585765693,1.5415433826469411,1.5419832067173131,1.542423030787685,1.5428628548580567,1.5433026789284285,1.5437425029988006,1.5441823270691724,1.5446221511395442,1.545061975209916,1.545501799280288,1.5459416233506598,1.5463814474210316,1.5468212714914034,1.5472610955617754,1.5477009196321472,1.548140743702519,1.5485805677728908,1.5490203918432628,1.5494602159136346,1.5499000399840064,1.5503398640543782,1.5507796881247502,1.551219512195122,1.5516593362654938,1.5520991603358656,1.5525389844062376,1.5529788084766094,1.5534186325469812,1.553858456617353,1.554298280687725,1.5547381047580968,1.5551779288284686,1.5556177528988404,1.5560575769692122,1.5564974010395842,1.556937225109956,1.5573770491803278,1.5578168732506996,1.5582566973210716,1.5586965213914434,1.5591363454618152,1.559576169532187,1.560015993602559,1.5604558176729308,1.5608956417433026,1.5613354658136744,1.5617752898840465,1.5622151139544183,1.56265493802479,1.5630947620951618,1.5635345861655339,1.5639744102359057,1.5644142343062775,1.5648540583766493,1.5652938824470213,1.565733706517393,1.5661735305877649,1.5666133546581367,1.5670531787285087,1.5674930027988805,1.5679328268692523,1.568372650939624,1.568812475009996,1.569252299080368,1.5696921231507397,1.5701319472211115,1.5705717712914835,1.5710115953618553,1.571451419432227,1.571891243502599,1.572331067572971,1.5727708916433427,1.5732107157137145,1.5736505397840863,1.574090363854458,1.5745301879248301,1.574970011995202,1.5754098360655737,1.5758496601359455,1.5762894842063175,1.5767293082766893,1.5771691323470611,1.577608956417433,1.578048780487805,1.5784886045581767,1.5789284286285485,1.5793682526989203,1.5798080767692924,1.5802479008396642,1.580687724910036,1.5811275489804077,1.5815673730507798,1.5820071971211516,1.5824470211915234,1.5828868452618952,1.5833266693322672,1.583766493402639,1.5842063174730108,1.5846461415433826,1.5850859656137546,1.5855257896841264,1.5859656137544982,1.58640543782487,1.586845261895242,1.5872850859656138,1.5877249100359856,1.5881647341063574,1.5886045581767294,1.5890443822471012,1.589484206317473,1.5899240303878448,1.5903638544582168,1.5908036785285886,1.5912435025989604,1.5916833266693322,1.5921231507397042,1.592562974810076,1.5930027988804478,1.5934426229508196,1.5938824470211914,1.5943222710915634,1.5947620951619352,1.595201919232307,1.5956417433026788,1.5960815673730508,1.5965213914434226,1.5969612155137944,1.5974010395841662,1.5978408636545383,1.59828068772491,1.5987205117952819,1.5991603358656536,1.5996001599360257,1.6000399840063975,1.6004798080767693,1.600919632147141,1.601359456217513,1.6017992802878849,1.6022391043582567,1.6026789284286285,1.6031187524990005,1.6035585765693723,1.603998400639744,1.6044382247101159,1.604878048780488,1.6053178728508597,1.6057576969212315,1.6061975209916033,1.6066373450619753,1.607077169132347,1.607516993202719,1.6079568172730907,1.6083966413434627,1.6088364654138345,1.6092762894842063,1.609716113554578,1.6101559376249501,1.610595761695322,1.6110355857656937,1.6114754098360655,1.6119152339064373,1.6123550579768093,1.6127948820471811,1.613234706117553,1.6136745301879247,1.6141143542582967,1.6145541783286685,1.6149940023990403,1.6154338264694121,1.6158736505397842,1.616313474610156,1.6167532986805278,1.6171931227508995,1.6176329468212716,1.6180727708916434,1.6185125949620152,1.618952419032387,1.619392243102759,1.6198320671731308,1.6202718912435026,1.6207117153138744,1.6211515393842464,1.6215913634546182,1.62203118752499,1.6224710115953618,1.6229108356657338,1.6233506597361056,1.6237904838064774,1.6242303078768492,1.6246701319472212,1.625109956017593,1.6255497800879648,1.6259896041583366,1.6264294282287086,1.6268692522990804,1.6273090763694522,1.627748900439824,1.628188724510196,1.6286285485805678,1.6290683726509396,1.6295081967213114,1.6299480207916832,1.6303878448620552,1.630827668932427,1.6312674930027988,1.6317073170731706,1.6321471411435426,1.6325869652139144,1.6330267892842862,1.633466613354658,1.63390643742503,1.6343462614954019,1.6347860855657737,1.6352259096361454,1.6356657337065175,1.6361055577768893,1.636545381847261,1.6369852059176329,1.6374250299880049,1.6378648540583767,1.6383046781287485,1.6387445021991203,1.6391843262694923,1.639624150339864,1.6400639744102359,1.6405037984806077,1.6409436225509797,1.6413834466213515,1.6418232706917233,1.642263094762095,1.642702918832467,1.643142742902839,1.6435825669732107,1.6440223910435825,1.6444622151139545,1.6449020391843263,1.6453418632546981,1.64578168732507,1.646221511395442,1.6466613354658137,1.6471011595361855,1.6475409836065573,1.6479808076769293,1.6484206317473011,1.648860455817673,1.6493002798880447,1.6497401039584165,1.6501799280287885,1.6506197520991603,1.6510595761695321,1.651499400239904,1.651939224310276,1.6523790483806478,1.6528188724510195,1.6532586965213913,1.6536985205917634,1.6541383446621352,1.654578168732507,1.6550179928028788,1.6554578168732508,1.6558976409436226,1.6563374650139944,1.6567772890843662,1.6572171131547382,1.65765693722511,1.6580967612954818,1.6585365853658536,1.6589764094362256,1.6594162335065974,1.6598560575769692,1.660295881647341,1.660735705717713,1.6611755297880848,1.6616153538584566,1.6620551779288284,1.6624950019992004,1.6629348260695722,1.663374650139944,1.6638144742103158,1.6642542982806878,1.6646941223510596,1.6651339464214314,1.6655737704918032,1.6660135945621752,1.666453418632547,1.6668932427029188,1.6673330667732906,1.6677728908436624,1.6682127149140344,1.6686525389844062,1.669092363054778,1.6695321871251498,1.6699720111955219,1.6704118352658937,1.6708516593362654,1.6712914834066372,1.6717313074770093,1.672171131547381,1.6726109556177529,1.6730507796881247,1.6734906037584967,1.6739304278288685,1.6743702518992403,1.674810075969612,1.675249900039984,1.6756897241103559,1.6761295481807277,1.6765693722510995,1.6770091963214715,1.6774490203918433,1.677888844462215,1.6783286685325869,1.678768492602959,1.6792083166733307,1.6796481407437025,1.6800879648140743,1.6805277888844463,1.6809676129548181,1.68140743702519,1.6818472610955617,1.6822870851659337,1.6827269092363055,1.6831667333066773,1.6836065573770491,1.6840463814474211,1.684486205517793,1.6849260295881647,1.6853658536585365,1.6858056777289085,1.6862455017992803,1.6866853258696521,1.687125149940024,1.6875649740103957,1.6880047980807678,1.6884446221511396,1.6888844462215113,1.6893242702918831,1.6897640943622552,1.690203918432627,1.6906437425029988,1.6910835665733706,1.6915233906437426,1.6919632147141144,1.6924030387844862,1.692842862854858,1.69328268692523,1.6937225109956018,1.6941623350659736,1.6946021591363454,1.6950419832067174,1.6954818072770892,1.695921631347461,1.6963614554178328,1.6968012794882048,1.6972411035585766,1.6976809276289484,1.6981207516993202,1.6985605757696922,1.699000399840064,1.6994402239104358,1.6998800479808076,1.7003198720511796,1.7007596961215514,1.7011995201919232,1.701639344262295,1.702079168332667,1.7025189924030388,1.7029588164734106,1.7033986405437824,1.7038384646141544,1.7042782886845262,1.704718112754898,1.7051579368252698,1.7055977608956416,1.7060375849660137,1.7064774090363855,1.7069172331067572,1.707357057177129,1.707796881247501,1.7082367053178729,1.7086765293882447,1.7091163534586165,1.7095561775289885,1.7099960015993603,1.710435825669732,1.7108756497401039,1.7113154738104759,1.7117552978808477,1.7121951219512195,1.7126349460215913,1.7130747700919633,1.713514594162335,1.7139544182327069,1.7143942423030787,1.7148340663734507,1.7152738904438225,1.7157137145141943,1.716153538584566,1.7165933626549381,1.71703318672531,1.7174730107956817,1.7179128348660535,1.7183526589364255,1.7187924830067973,1.7192323070771691,1.719672131147541,1.720111955217913,1.7205517792882847,1.7209916033586565,1.7214314274290283,1.7218712514994003,1.7223110755697721,1.722750899640144,1.7231907237105157,1.7236305477808875,1.7240703718512596,1.7245101959216314,1.7249500199920031,1.725389844062375,1.725829668132747,1.7262694922031188,1.7267093162734906,1.7271491403438624,1.7275889644142344,1.7280287884846062,1.728468612554978,1.7289084366253498,1.7293482606957218,1.7297880847660936,1.7302279088364654,1.7306677329068372,1.7311075569772092,1.731547381047581,1.7319872051179528,1.7324270291883246,1.7328668532586966,1.7333066773290684,1.7337465013994402,1.734186325469812,1.734626149540184,1.7350659736105558,1.7355057976809276,1.7359456217512994,1.7363854458216714,1.7368252698920432,1.737265093962415,1.7377049180327868,1.7381447421031588,1.7385845661735306,1.7390243902439024,1.7394642143142742,1.7399040383846462,1.740343862455018,1.7407836865253898,1.7412235105957616,1.7416633346661337,1.7421031587365055,1.7425429828068772,1.742982806877249,1.7434226309476208,1.7438624550179929,1.7443022790883647,1.7447421031587365,1.7451819272291083,1.7456217512994803,1.746061575369852,1.7465013994402239,1.7469412235105957,1.7473810475809677,1.7478208716513395,1.7482606957217113,1.748700519792083,1.749140343862455,1.749580167932827,1.7500199920031987,1.7504598160735705,1.7508996401439425,1.7513394642143143,1.751779288284686,1.752219112355058,1.75265893642543,1.7530987604958017,1.7535385845661735,1.7539784086365453,1.7544182327069173,1.7548580567772891,1.755297880847661,1.7557377049180327,1.7561775289884047,1.7566173530587765,1.7570571771291483,1.7574970011995201,1.7579368252698921,1.758376649340264,1.7588164734106357,1.7592562974810075,1.7596961215513796,1.7601359456217514,1.7605757696921231,1.761015593762495,1.7614554178328667,1.7618952419032388,1.7623350659736106,1.7627748900439824,1.7632147141143542,1.7636545381847262,1.764094362255098,1.7645341863254698,1.7649740103958416,1.7654138344662136,1.7658536585365854,1.7662934826069572,1.766733306677329,1.767173130747701,1.7676129548180728,1.7680527788884446,1.7684926029588164,1.7689324270291884,1.7693722510995602,1.769812075169932,1.7702518992403038,1.7706917233106758,1.7711315473810476,1.7715713714514194,1.7720111955217912,1.7724510195921632,1.772890843662535,1.7733306677329068,1.7737704918032786,1.7742103158736506,1.7746501399440224,1.7750899640143942,1.775529788084766,1.775969612155138,1.7764094362255098,1.7768492602958816,1.7772890843662534,1.7777289084366255,1.7781687325069973,1.778608556577369,1.7790483806477408,1.7794882047181129,1.7799280287884847,1.7803678528588565,1.7808076769292283,1.7812475009996,1.781687325069972,1.7821271491403439,1.7825669732107157,1.7830067972810875,1.7834466213514595,1.7838864454218313,1.784326269492203,1.7847660935625749,1.785205917632947,1.7856457417033187,1.7860855657736905,1.7865253898440623,1.7869652139144343,1.787405037984806,1.787844862055178,1.7882846861255497,1.7887245101959217,1.7891643342662935,1.7896041583366653,1.790043982407037,1.7904838064774091,1.790923630547781,1.7913634546181527,1.7918032786885245,1.7922431027588965,1.7926829268292683,1.7931227508996401,1.793562574970012,1.794002399040384,1.7944422231107557,1.7948820471811275,1.7953218712514993,1.7957616953218714,1.7962015193922432,1.796641343462615,1.7970811675329867,1.7975209916033588,1.7979608156737306,1.7984006397441024,1.7988404638144742,1.799280287884846,1.799720111955218,1.8001599360255898,1.8005997600959616,1.8010395841663334,1.8014794082367054,1.8019192323070772,1.802359056377449,1.8027988804478208,1.8032387045181928,1.8036785285885646,1.8041183526589364,1.8045581767293082,1.8049980007996802,1.805437824870052,1.8058776489404238,1.8063174730107956,1.8067572970811676,1.8071971211515394,1.8076369452219112,1.808076769292283,1.808516593362655,1.8089564174330268,1.8093962415033986,1.8098360655737704,1.8102758896441424,1.8107157137145142,1.811155537784886,1.8115953618552578,1.8120351859256298,1.8124750099960016,1.8129148340663734,1.8133546581367452,1.8137944822071173,1.814234306277489,1.8146741303478608,1.8151139544182326,1.8155537784886047,1.8159936025589765,1.8164334266293483,1.81687325069972,1.817313074770092,1.8177528988404639,1.8181927229108357,1.8186325469812075,1.8190723710515793,1.8195121951219513,1.819952019192323,1.8203918432626949,1.8208316673330667,1.8212714914034387,1.8217113154738105,1.8221511395441823,1.822590963614554,1.823030787684926,1.823470611755298,1.8239104358256697,1.8243502598960415,1.8247900839664135,1.8252299080367853,1.825669732107157,1.826109556177529,1.826549380247901,1.8269892043182727,1.8274290283886445,1.8278688524590163,1.8283086765293883,1.8287485005997601,1.829188324670132,1.8296281487405037,1.8300679728108757,1.8305077968812475,1.8309476209516193,1.8313874450219911,1.8318272690923632,1.832267093162735,1.8327069172331067,1.8331467413034785,1.8335865653738506,1.8340263894442224,1.8344662135145942,1.834906037584966,1.835345861655338,1.8357856857257098,1.8362255097960816,1.8366653338664534,1.8371051579368252,1.8375449820071972,1.837984806077569,1.8384246301479408,1.8388644542183126,1.8393042782886846,1.8397441023590564,1.8401839264294282,1.8406237504998,1.841063574570172,1.8415033986405438,1.8419432227109156,1.8423830467812874,1.8428228708516594,1.8432626949220312,1.843702518992403,1.8441423430627748,1.8445821671331468,1.8450219912035186,1.8454618152738904,1.8459016393442622,1.8463414634146342,1.846781287485006,1.8472211115553778,1.8476609356257496,1.8481007596961216,1.8485405837664934,1.8489804078368652,1.849420231907237,1.849860055977609,1.8502998800479808,1.8507397041183526,1.8511795281887244,1.8516193522590965,1.8520591763294683,1.85249900039984,1.8529388244702119,1.8533786485405839,1.8538184726109557,1.8542582966813275,1.8546981207516993,1.855137944822071,1.855577768892443,1.8560175929628149,1.8564574170331867,1.8568972411035585,1.8573370651739305,1.8577768892443023,1.858216713314674,1.8586565373850459,1.859096361455418,1.8595361855257897,1.8599760095961615,1.8604158336665333,1.8608556577369053,1.861295481807277,1.861735305877649,1.8621751299480207,1.8626149540183927,1.8630547780887645,1.8634946021591363,1.8639344262295081,1.8643742502998801,1.864814074370252,1.8652538984406237,1.8656937225109955,1.8661335465813675,1.8665733706517393,1.8670131947221111,1.867453018792483,1.867892842862855,1.8683326669332267,1.8687724910035985,1.8692123150739703,1.8696521391443424,1.8700919632147142,1.870531787285086,1.8709716113554578,1.8714114354258298,1.8718512594962016,1.8722910835665734,1.8727309076369452,1.8731707317073172,1.873610555777689,1.8740503798480608,1.8744902039184326,1.8749300279888044,1.8753698520591764,1.8758096761295482,1.87624950019992,1.8766893242702918,1.8771291483406638,1.8775689724110356,1.8780087964814074,1.8784486205517792,1.8788884446221512,1.879328268692523,1.8797680927628948,1.8802079168332666,1.8806477409036386,1.8810875649740104,1.8815273890443822,1.881967213114754,1.882407037185126,1.8828468612554978,1.8832866853258696,1.8837265093962414,1.8841663334666134,1.8846061575369852,1.885045981607357,1.8854858056777288,1.8859256297481009,1.8863654538184726,1.8868052778888444,1.8872451019592162,1.8876849260295883,1.88812475009996,1.8885645741703319,1.8890043982407037,1.8894442223110757,1.8898840463814475,1.8903238704518193,1.890763694522191,1.891203518592563,1.8916433426629349,1.8920831667333067,1.8925229908036785,1.8929628148740503,1.8934026389444223,1.893842463014794,1.8942822870851659,1.8947221111555377,1.8951619352259097,1.8956017592962815,1.8960415833666533,1.896481407437025,1.896921231507397,1.897361055577769,1.8978008796481407,1.8982407037185125,1.8986805277888845,1.8991203518592563,1.8995601759296281,1.9,1.900439824070372,1.9008796481407437,1.9013194722111155,1.9017592962814873,1.9021991203518593,1.9026389444222311,1.903078768492603,1.9035185925629747,1.9039584166333468,1.9043982407037185,1.9048380647740903,1.9052778888444621,1.9057177129148342,1.906157536985206,1.9065973610555778,1.9070371851259496,1.9074770091963216,1.9079168332666934,1.9083566573370652,1.908796481407437,1.909236305477809,1.9096761295481808,1.9101159536185526,1.9105557776889244,1.9109956017592964,1.9114354258296682,1.91187524990004,1.9123150739704118,1.9127548980407836,1.9131947221111556,1.9136345461815274,1.9140743702518992,1.914514194322271,1.914954018392643,1.9153938424630148,1.9158336665333866,1.9162734906037584,1.9167133146741304,1.9171531387445022,1.917592962814874,1.9180327868852458,1.9184726109556178,1.9189124350259896,1.9193522590963614,1.9197920831667332,1.9202319072371052,1.920671731307477,1.9211115553778488,1.9215513794482206,1.9219912035185927,1.9224310275889644,1.9228708516593362,1.923310675729708,1.92375049980008,1.9241903238704519,1.9246301479408237,1.9250699720111955,1.9255097960815675,1.9259496201519393,1.926389444222311,1.9268292682926829,1.9272690923630549,1.9277089164334267,1.9281487405037985,1.9285885645741703,1.9290283886445423,1.929468212714914,1.9299080367852859,1.9303478608556577,1.9307876849260295,1.9312275089964015,1.9316673330667733,1.932107157137145,1.932546981207517,1.932986805277889,1.9334266293482607,1.9338664534186325,1.9343062774890043,1.9347461015593763,1.9351859256297481,1.93562574970012,1.9360655737704917,1.9365053978408637,1.9369452219112355,1.9373850459816073,1.9378248700519791,1.9382646941223511,1.938704518192723,1.9391443422630947,1.9395841663334665,1.9400239904038385,1.9404638144742103,1.9409036385445821,1.941343462614954,1.941783286685326,1.9422231107556978,1.9426629348260696,1.9431027588964414,1.9435425829668134,1.9439824070371852,1.944422231107557,1.9448620551779288,1.9453018792483008,1.9457417033186726,1.9461815273890444,1.9466213514594162,1.9470611755297882,1.94750099960016,1.9479408236705318,1.9483806477409036,1.9488204718112754,1.9492602958816474,1.9497001199520192,1.950139944022391,1.9505797680927628,1.9510195921631348,1.9514594162335066,1.9518992403038784,1.9523390643742502,1.9527788884446222,1.953218712514994,1.9536585365853658,1.9540983606557376,1.9545381847261096,1.9549780087964814,1.9554178328668532,1.955857656937225,1.956297481007597,1.9567373050779688,1.9571771291483406,1.9576169532187124,1.9580567772890844,1.9584966013594562,1.958936425429828,1.9593762495001998,1.9598160735705719,1.9602558976409437,1.9606957217113155,1.9611355457816873,1.9615753698520593,1.962015193922431,1.9624550179928029,1.9628948420631747,1.9633346661335467,1.9637744902039185,1.9642143142742903,1.964654138344662,1.965093962415034,1.9655337864854059,1.9659736105557777,1.9664134346261495,1.9668532586965215,1.9672930827668933,1.967732906837265,1.968172730907637,1.9686125549780087,1.9690523790483807,1.9694922031187525,1.9699320271891243,1.970371851259496,1.9708116753298681,1.97125149940024,1.9716913234706117,1.9721311475409835,1.9725709716113555,1.9730107956817273,1.9734506197520991,1.973890443822471,1.974330267892843,1.9747700919632147,1.9752099160335865,1.9756497401039583,1.9760895641743303,1.9765293882447021,1.976969212315074,1.9774090363854457,1.9778488604558178,1.9782886845261896,1.9787285085965614,1.9791683326669331,1.9796081567373052,1.980047980807677,1.9804878048780488,1.9809276289484206,1.9813674530187926,1.9818072770891644,1.9822471011595362,1.982686925229908,1.98312674930028,1.9835665733706518,1.9840063974410236,1.9844462215113954,1.9848860455817674,1.9853258696521392,1.985765693722511,1.9862055177928828,1.9866453418632546,1.9870851659336266,1.9875249900039984,1.9879648140743702,1.988404638144742,1.988844462215114,1.9892842862854858,1.9897241103558576,1.9901639344262294,1.9906037584966014,1.9910435825669732,1.991483406637345,1.9919232307077168,1.9923630547780888,1.9928028788484606,1.9932427029188324,1.9936825269892042,1.9941223510595762,1.994562175129948,1.9950019992003198,1.9954418232706916,1.9958816473410637,1.9963214714114355,1.9967612954818073,1.997201119552179,1.997640943622551,1.9980807676929229,1.9985205917632947,1.9989604158336665,1.9994002399040385,1.9998400639744103,2.000279888044782,2.000719712115154,2.0011595361855257,2.0015993602558977,2.0020391843262697,2.0024790083966413,2.0029188324670133,2.003358656537385,2.003798480607757,2.004238304678129,2.0046781287485005,2.0051179528188725,2.005557776889244,2.005997600959616,2.006437425029988,2.0068772491003597,2.0073170731707317,2.0077568972411037,2.0081967213114753,2.0086365453818473,2.009076369452219,2.009516193522591,2.009956017592963,2.0103958416633345,2.0108356657337065,2.0112754898040786,2.01171531387445,2.012155137944822,2.0125949620151937,2.0130347860855657,2.0134746101559378,2.0139144342263093,2.0143542582966814,2.0147940823670534,2.015233906437425,2.015673730507797,2.0161135545781685,2.0165533786485406,2.0169932027189126,2.017433026789284,2.017872850859656,2.018312674930028,2.0187524990003998,2.019192323070772,2.0196321471411434,2.0200719712115154,2.0205117952818874,2.020951619352259,2.021391443422631,2.021831267493003,2.0222710915633746,2.0227109156337466,2.023150739704118,2.02359056377449,2.0240303878448622,2.024470211915234,2.024910035985606,2.0253498600559774,2.0257896841263494,2.0262295081967214,2.026669332267093,2.027109156337465,2.027548980407837,2.0279888044782086,2.0284286285485806,2.028868452618952,2.0293082766893242,2.0297481007596962,2.030187924830068,2.03062774890044,2.031067572970812,2.0315073970411834,2.0319472211115555,2.032387045181927,2.032826869252299,2.033266693322671,2.0337065173930426,2.0341463414634147,2.0345861655337867,2.0350259896041583,2.0354658136745303,2.035905637744902,2.036345461815274,2.036785285885646,2.0372251099560175,2.0376649340263895,2.0381047580967615,2.038544582167133,2.038984406237505,2.0394242303078767,2.0398640543782487,2.0403038784486207,2.0407437025189923,2.0411835265893643,2.0416233506597363,2.042063174730108,2.04250299880048,2.0429428228708515,2.0433826469412235,2.0438224710115955,2.044262295081967,2.044702119152339,2.0451419432227107,2.0455817672930827,2.0460215913634547,2.0464614154338263,2.0469012395041983,2.0473410635745704,2.047780887644942,2.048220711715314,2.0486605357856855,2.0491003598560575,2.0495401839264296,2.049980007996801,2.050419832067173,2.050859656137545,2.0512994802079167,2.0517393042782888,2.0521791283486603,2.0526189524190324,2.0530587764894044,2.053498600559776,2.053938424630148,2.05437824870052,2.0548180727708916,2.0552578968412636,2.055697720911635,2.056137544982007,2.056577369052379,2.0570171931227508,2.057457017193123,2.057896841263495,2.0583366653338664,2.0587764894042384,2.05921631347461,2.059656137544982,2.060095961615354,2.0605357856857256,2.0609756097560976,2.0614154338264696,2.061855257896841,2.0622950819672132,2.062734906037585,2.063174730107957,2.063614554178329,2.0640543782487004,2.0644942023190724,2.064934026389444,2.065373850459816,2.065813674530188,2.0662534986005596,2.0666933226709316,2.0671331467413037,2.0675729708116752,2.0680127948820473,2.068452618952419,2.068892443022791,2.069332267093163,2.0697720911635344,2.0702119152339065,2.0706517393042785,2.07109156337465,2.071531387445022,2.0719712115153937,2.0724110355857657,2.0728508596561377,2.0732906837265093,2.0737305077968813,2.0741703318672533,2.074610155937625,2.075049980007997,2.0754898040783685,2.0759296281487405,2.0763694522191125,2.076809276289484,2.077249100359856,2.077688924430228,2.0781287485005997,2.0785685725709717,2.0790083966413433,2.0794482207117153,2.0798880447820873,2.080327868852459,2.080767692922831,2.0812075169932025,2.0816473410635745,2.0820871651339465,2.082526989204318,2.08296681327469,2.083406637345062,2.0838464614154337,2.0842862854858057,2.0847261095561773,2.0851659336265493,2.0856057576969214,2.086045581767293,2.086485405837665,2.086925229908037,2.0873650539784085,2.0878048780487806,2.088244702119152,2.088684526189524,2.089124350259896,2.0895641743302678,2.0900039984006398,2.090443822471012,2.0908836465413834,2.0913234706117554,2.091763294682127,2.092203118752499,2.092642942822871,2.0930827668932426,2.0935225909636146,2.0939624150339866,2.094402239104358,2.09484206317473,2.095281887245102,2.095721711315474,2.096161535385846,2.0966013594562174,2.0970411835265894,2.0974810075969614,2.097920831667333,2.098360655737705,2.0988004798080766,2.0992403038784486,2.0996801279488206,2.100119952019192,2.1005597760895642,2.100999600159936,2.101439424230308,2.10187924830068,2.1023190723710514,2.1027588964414234,2.1031987205117955,2.103638544582167,2.104078368652539,2.1045181927229106,2.1049580167932826,2.1053978408636547,2.1058376649340262,2.1062774890043983,2.1067173130747703,2.107157137145142,2.107596961215514,2.1080367852858855,2.1084766093562575,2.1089164334266295,2.109356257497001,2.109796081567373,2.110235905637745,2.1106757297081167,2.1111155537784887,2.1115553778488603,2.1119952019192323,2.1124350259896043,2.112874850059976,2.113314674130348,2.11375449820072,2.1141943222710915,2.1146341463414635,2.115073970411835,2.115513794482207,2.115953618552579,2.1163934426229507,2.1168332666933227,2.1172730907636947,2.1177129148340663,2.1181527389044383,2.11859256297481,2.119032387045182,2.119472211115554,2.1199120351859255,2.1203518592562975,2.120791683326669,2.121231507397041,2.121671331467413,2.1221111555377847,2.1225509796081568,2.1229908036785288,2.1234306277489003,2.1238704518192724,2.124310275889644,2.124750099960016,2.125189924030388,2.1256297481007596,2.1260695721711316,2.1265093962415036,2.126949220311875,2.127389044382247,2.1278288684526188,2.128268692522991,2.128708516593363,2.1291483406637344,2.1295881647341064,2.1300279888044784,2.13046781287485,2.130907636945222,2.1313474610155936,2.1317872850859656,2.1322271091563376,2.132666933226709,2.133106757297081,2.1335465813674532,2.133986405437825,2.134426229508197,2.1348660535785684,2.1353058776489404,2.1357457017193124,2.136185525789684,2.136625349860056,2.1370651739304276,2.1375049980007996,2.1379448220711716,2.138384646141543,2.1388244702119152,2.1392642942822873,2.139704118352659,2.140143942423031,2.1405837664934024,2.1410235905637744,2.1414634146341465,2.141903238704518,2.14234306277489,2.142782886845262,2.1432227109156337,2.1436625349860057,2.1441023590563772,2.1445421831267493,2.1449820071971213,2.145421831267493,2.145861655337865,2.146301479408237,2.1467413034786085,2.1471811275489805,2.147620951619352,2.148060775689724,2.148500599760096,2.1489404238304677,2.1493802479008397,2.1498200719712117,2.1502598960415833,2.1506997201119553,2.151139544182327,2.151579368252699,2.152019192323071,2.1524590163934425,2.1528988404638145,2.1533386645341865,2.153778488604558,2.15421831267493,2.1546581367453017,2.1550979608156737,2.1555377848860457,2.1559776089564173,2.1564174330267893,2.156857257097161,2.157297081167533,2.157736905237905,2.1581767293082765,2.1586165533786486,2.1590563774490206,2.159496201519392,2.159936025589764,2.1603758496601357,2.1608156737305078,2.1612554978008798,2.1616953218712514,2.1621351459416234,2.1625749700119954,2.163014794082367,2.163454618152739,2.1638944422231106,2.1643342662934826,2.1647740903638546,2.165213914434226,2.165653738504598,2.16609356257497,2.166533386645342,2.166973210715714,2.1674130347860854,2.1678528588564574,2.1682926829268294,2.168732506997201,2.169172331067573,2.169612155137945,2.1700519792083166,2.1704918032786886,2.17093162734906,2.171371451419432,2.1718112754898042,2.172251099560176,2.172690923630548,2.17313074770092,2.1735705717712914,2.1740103958416634,2.174450219912035,2.174890043982407,2.175329868052779,2.1757696921231506,2.1762095161935227,2.1766493402638942,2.1770891643342662,2.1775289884046383,2.17796881247501,2.178408636545382,2.178848460615754,2.1792882846861255,2.1797281087564975,2.180167932826869,2.180607756897241,2.181047580967613,2.1814874050379847,2.1819272291083567,2.1823670531787287,2.1828068772491003,2.1832467013194723,2.183686525389844,2.184126349460216,2.184566173530588,2.1850059976009595,2.1854458216713315,2.1858856457417035,2.186325469812075,2.186765293882447,2.1872051179528187,2.1876449420231907,2.1880847660935627,2.1885245901639343,2.1889644142343063,2.1894042383046783,2.18984406237505,2.190283886445422,2.1907237105157935,2.1911635345861655,2.1916033586565375,2.192043182726909,2.192483006797281,2.1929228308676527,2.1933626549380247,2.1938024790083968,2.1942423030787683,2.1946821271491403,2.1951219512195124,2.195561775289884,2.196001599360256,2.1964414234306275,2.1968812475009996,2.1973210715713716,2.197760895641743,2.198200719712115,2.198640543782487,2.1990803678528588,2.199520191923231,2.1999600159936024,2.2003998400639744,2.2008396641343464,2.201279488204718,2.20171931227509,2.202159136345462,2.2025989604158336,2.2030387844862056,2.203478608556577,2.203918432626949,2.204358256697321,2.204798080767693,2.205237904838065,2.205677728908437,2.2061175529788084,2.2065573770491804,2.206997201119552,2.207437025189924,2.207876849260296,2.2083166733306676,2.2087564974010396,2.2091963214714117,2.2096361455417832,2.2100759696121552,2.210515793682527,2.210955617752899,2.211395441823271,2.2118352658936424,2.2122750899640145,2.212714914034386,2.213154738104758,2.21359456217513,2.2140343862455016,2.2144742103158737,2.2149140343862457,2.2153538584566173,2.2157936825269893,2.216233506597361,2.216673330667733,2.217113154738105,2.2175529788084765,2.2179928028788485,2.2184326269492205,2.218872451019592,2.219312275089964,2.2197520991603357,2.2201919232307077,2.2206317473010797,2.2210715713714513,2.2215113954418233,2.2219512195121953,2.222391043582567,2.222830867652939,2.2232706917233105,2.2237105157936825,2.2241503398640545,2.224590163934426,2.225029988004798,2.22546981207517,2.2259096361455417,2.2263494602159137,2.2267892842862853,2.2272291083566573,2.2276689324270293,2.228108756497401,2.228548580567773,2.228988404638145,2.2294282287085165,2.2298680527788886,2.23030787684926,2.230747700919632,2.231187524990004,2.2316273490603757,2.2320671731307478,2.2325069972011193,2.2329468212714914,2.2333866453418634,2.233826469412235,2.234266293482607,2.234706117552979,2.2351459416233506,2.2355857656937226,2.236025589764094,2.236465413834466,2.236905237904838,2.2373450619752098,2.237784886045582,2.238224710115954,2.2386645341863254,2.2391043582566974,2.239544182327069,2.239984006397441,2.240423830467813,2.2408636545381846,2.2413034786085566,2.2417433026789286,2.2421831267493,2.2426229508196722,2.243062774890044,2.243502598960416,2.243942423030788,2.2443822471011594,2.2448220711715314,2.2452618952419034,2.245701719312275,2.246141543382647,2.2465813674530186,2.2470211915233906,2.2474610155937627,2.2479008396641342,2.2483406637345063,2.2487804878048783,2.24922031187525,2.249660135945622,2.2500999600159934,2.2505397840863655,2.2509796081567375,2.251419432227109,2.251859256297481,2.2522990803678526,2.2527389044382247,2.2531787285085967,2.2536185525789683,2.2540583766493403,2.2544982007197123,2.254938024790084,2.255377848860456,2.2558176729308275,2.2562574970011995,2.2566973210715715,2.257137145141943,2.257576969212315,2.258016793282687,2.2584566173530587,2.2588964414234307,2.2593362654938023,2.2597760895641743,2.2602159136345463,2.260655737704918,2.26109556177529,2.261535385845662,2.2619752099160335,2.2624150339864055,2.262854858056777,2.263294682127149,2.263734506197521,2.2641743302678927,2.2646141543382647,2.2650539784086368,2.2654938024790083,2.2659336265493804,2.266373450619752,2.266813274690124,2.267253098760496,2.2676929228308675,2.2681327469012396,2.268572570971611,2.269012395041983,2.269452219112355,2.2698920431827267,2.2703318672530988,2.270771691323471,2.2712115153938424,2.2716513394642144,2.272091163534586,2.272530987604958,2.27297081167533,2.2734106357457016,2.2738504598160736,2.2742902838864456,2.274730107956817,2.275169932027189,2.2756097560975608,2.276049580167933,2.276489404238305,2.2769292283086764,2.2773690523790484,2.2778088764494204,2.278248700519792,2.278688524590164,2.2791283486605356,2.2795681727309076,2.2800079968012796,2.280447820871651,2.2808876449420232,2.2813274690123952,2.281767293082767,2.282207117153139,2.2826469412235104,2.2830867652938824,2.2835265893642545,2.283966413434626,2.284406237504998,2.28484606157537,2.2852858856457416,2.2857257097161137,2.2861655337864852,2.2866053578568573,2.2870451819272293,2.287485005997601,2.287924830067973,2.2883646541383444,2.2888044782087165,2.2892443022790885,2.28968412634946,2.290123950419832,2.290563774490204,2.2910035985605757,2.2914434226309477,2.2918832467013193,2.2923230707716913,2.2927628948420633,2.293202718912435,2.293642542982807,2.294082367053179,2.2945221911235505,2.2949620151939225,2.295401839264294,2.295841663334666,2.296281487405038,2.2967213114754097,2.2971611355457817,2.2976009596161537,2.2980407836865253,2.2984806077568973,2.298920431827269,2.299360255897641,2.299800079968013,2.3002399040383845,2.3006797281087565,2.3011195521791286,2.3015593762495,2.301999200319872,2.3024390243902437,2.3028788484606157,2.3033186725309878,2.3037584966013593,2.3041983206717314,2.3046381447421034,2.305077968812475,2.305517792882847,2.3059576169532185,2.3063974410235906,2.3068372650939626,2.307277089164334,2.307716913234706,2.3081567373050778,2.3085965613754498,2.309036385445822,2.3094762095161934,2.3099160335865654,2.3103558576569374,2.310795681727309,2.311235505797681,2.3116753298680526,2.3121151539384246,2.3125549780087966,2.312994802079168,2.31343462614954,2.3138744502199122,2.314314274290284,2.314754098360656,2.3151939224310274,2.3156337465013994,2.3160735705717714,2.316513394642143,2.316953218712515,2.317393042782887,2.3178328668532586,2.3182726909236306,2.318712514994002,2.3191523390643742,2.3195921631347463,2.320031987205118,2.32047181127549,2.320911635345862,2.3213514594162334,2.3217912834866055,2.322231107556977,2.322670931627349,2.323110755697721,2.3235505797680926,2.3239904038384647,2.3244302279088362,2.3248700519792083,2.3253098760495803,2.325749700119952,2.326189524190324,2.326629348260696,2.3270691723310675,2.3275089964014395,2.327948820471811,2.328388644542183,2.328828468612555,2.3292682926829267,2.3297081167532987,2.3301479408236707,2.3305877648940423,2.3310275889644143,2.331467413034786,2.331907237105158,2.33234706117553,2.3327868852459015,2.3332267093162735,2.3336665333866455,2.334106357457017,2.334546181527389,2.3349860055977607,2.3354258296681327,2.3358656537385047,2.3363054778088763,2.3367453018792483,2.3371851259496204,2.337624950019992,2.338064774090364,2.3385045981607355,2.3389444222311075,2.3393842463014796,2.339824070371851,2.340263894442223,2.340703718512595,2.3411435425829668,2.3415833666533388,2.3420231907237103,2.3424630147940824,2.3429028388644544,2.343342662934826,2.343782487005198,2.3442223110755696,2.3446621351459416,2.3451019592163136,2.345541783286685,2.345981607357057,2.346421431427429,2.346861255497801,2.347301079568173,2.3477409036385444,2.3481807277089164,2.3486205517792884,2.34906037584966,2.349500199920032,2.349940023990404,2.3503798480607756,2.3508196721311476,2.351259496201519,2.351699320271891,2.3521391443422632,2.352578968412635,2.353018792483007,2.353458616553379,2.3538984406237504,2.3543382646941224,2.354778088764494,2.355217912834866,2.355657736905238,2.3560975609756096,2.3565373850459816,2.3569772091163537,2.3574170331867252,2.3578568572570973,2.358296681327469,2.358736505397841,2.359176329468213,2.3596161535385844,2.3600559776089565,2.3604958016793285,2.3609356257497,2.361375449820072,2.3618152738904437,2.3622550979608157,2.3626949220311877,2.3631347461015593,2.3635745701719313,2.364014394242303,2.364454218312675,2.364894042383047,2.3653338664534185,2.3657736905237905,2.3662135145941625,2.366653338664534,2.367093162734906,2.3675329868052777,2.3679728108756497,2.3684126349460217,2.3688524590163933,2.3692922830867653,2.3697321071571373,2.370171931227509,2.370611755297881,2.3710515793682525,2.3714914034386245,2.3719312275089965,2.372371051579368,2.37281087564974,2.373250699720112,2.3736905237904837,2.3741303478608557,2.3745701719312273,2.3750099960015993,2.3754498200719714,2.375889644142343,2.376329468212715,2.376769292283087,2.3772091163534586,2.3776489404238306,2.378088764494202,2.378528588564574,2.378968412634946,2.3794082367053178,2.3798480607756898,2.380287884846062,2.3807277089164334,2.3811675329868054,2.381607357057177,2.382047181127549,2.382487005197921,2.3829268292682926,2.3833666533386646,2.383806477409036,2.384246301479408,2.38468612554978,2.385125949620152,2.385565773690524,2.386005597760896,2.3864454218312674,2.3868852459016394,2.387325069972011,2.387764894042383,2.388204718112755,2.3886445421831266,2.3890843662534986,2.3895241903238706,2.389964014394242,2.3904038384646142,2.390843662534986,2.391283486605358,2.39172331067573,2.3921631347461014,2.3926029588164734,2.3930427828868455,2.393482606957217,2.393922431027589,2.3943622550979606,2.3948020791683327,2.3952419032387047,2.3956817273090762,2.3961215513794483,2.3965613754498203,2.397001199520192,2.397441023590564,2.3978808476609355,2.3983206717313075,2.3987604958016795,2.399200319872051,2.399640143942423,2.4000799680127947,2.4005197920831667,2.4009596161535387,2.4013994402239103,2.4018392642942823,2.4022790883646543,2.402718912435026,2.403158736505398,2.4035985605757695,2.4040383846461415,2.4044782087165135,2.404918032786885,2.405357856857257,2.405797680927629,2.4062375049980007,2.4066773290683727,2.4071171531387443,2.4075569772091163,2.4079968012794883,2.40843662534986,2.408876449420232,2.409316273490604,2.4097560975609755,2.4101959216313475,2.410635745701719,2.411075569772091,2.411515393842463,2.4119552179128347,2.4123950419832068,2.4128348660535788,2.4132746901239504,2.4137145141943224,2.414154338264694,2.414594162335066,2.415033986405438,2.4154738104758096,2.4159136345461816,2.4163534586165536,2.416793282686925,2.417233106757297,2.4176729308276688,2.418112754898041,2.418552578968413,2.4189924030387844,2.4194322271091564,2.419872051179528,2.4203118752499,2.420751699320272,2.4211915233906436,2.4216313474610156,2.4220711715313876,2.422510995601759,2.422950819672131,2.423390643742503,2.423830467812875,2.424270291883247,2.4247101159536184,2.4251499400239904,2.4255897640943624,2.426029588164734,2.426469412235106,2.4269092363054776,2.4273490603758496,2.4277888844462217,2.4282287085165932,2.4286685325869652,2.4291083566573373,2.429548180727709,2.429988004798081,2.4304278288684524,2.4308676529388245,2.4313074770091965,2.431747301079568,2.43218712514994,2.432626949220312,2.4330667732906837,2.4335065973610557,2.4339464214314273,2.4343862455017993,2.4348260695721713,2.435265893642543,2.435705717712915,2.436145541783287,2.4365853658536585,2.4370251899240305,2.437465013994402,2.437904838064774,2.438344662135146,2.4387844862055177,2.4392243102758897,2.4396641343462613,2.4401039584166333,2.4405437824870053,2.440983606557377,2.441423430627749,2.441863254698121,2.4423030787684925,2.4427429028388645,2.443182726909236,2.443622550979608,2.44406237504998,2.4445021991203517,2.4449420231907237,2.4453818472610958,2.4458216713314673,2.4462614954018393,2.446701319472211,2.447141143542583,2.447580967612955,2.4480207916833265,2.4484606157536986,2.4489004398240706,2.449340263894442,2.449780087964814,2.4502199120351857,2.4506597361055578,2.45109956017593,2.4515393842463014,2.4519792083166734,2.4524190323870454,2.452858856457417,2.453298680527789,2.4537385045981606,2.4541783286685326,2.4546181527389046,2.455057976809276,2.455497800879648,2.4559376249500198,2.456377449020392,2.456817273090764,2.4572570971611354,2.4576969212315074,2.4581367453018794,2.458576569372251,2.459016393442623,2.4594562175129946,2.4598960415833666,2.4603358656537386,2.46077568972411,2.4612155137944822,2.4616553378648542,2.462095161935226,2.462534986005598,2.4629748100759694,2.4634146341463414,2.4638544582167135,2.464294282287085,2.464734106357457,2.465173930427829,2.4656137544982006,2.4660535785685727,2.4664934026389442,2.4669332267093163,2.4673730507796883,2.46781287485006,2.468252698920432,2.468692522990804,2.4691323470611755,2.4695721711315475,2.470011995201919,2.470451819272291,2.470891643342663,2.4713314674130347,2.4717712914834067,2.4722111155537787,2.4726509396241503,2.4730907636945223,2.473530587764894,2.473970411835266,2.474410235905638,2.4748500599760095,2.4752898840463815,2.475729708116753,2.476169532187125,2.476609356257497,2.4770491803278687,2.4774890043982407,2.4779288284686127,2.4783686525389843,2.4788084766093563,2.479248300679728,2.4796881247501,2.480127948820472,2.4805677728908435,2.4810075969612155,2.4814474210315876,2.481887245101959,2.482327069172331,2.4827668932427027,2.4832067173130747,2.4836465413834468,2.4840863654538183,2.4845261895241904,2.4849660135945624,2.485405837664934,2.485845661735306,2.4862854858056775,2.4867253098760496,2.4871651339464216,2.487604958016793,2.488044782087165,2.488484606157537,2.4889244302279088,2.489364254298281,2.4898040783686524,2.4902439024390244,2.4906837265093964,2.491123550579768,2.49156337465014,2.492003198720512,2.4924430227908836,2.4928828468612556,2.493322670931627,2.493762495001999,2.494202319072371,2.494642143142743,2.495081967213115,2.4955217912834864,2.4959616153538584,2.4964014394242304,2.496841263494602,2.497281087564974,2.497720911635346,2.4981607357057176,2.4986005597760896,2.499040383846461,2.4994802079168332,2.4999200319872052,2.500359856057577,2.500799680127949,2.501239504198321,2.5016793282686924,2.5021191523390645,2.502558976409436,2.502998800479808,2.50343862455018,2.5038784486205516,2.5043182726909237,2.5047580967612957,2.5051979208316673,2.5056377449020393,2.506077568972411,2.506517393042783,2.506957217113155,2.5073970411835265,2.5078368652538985,2.5082766893242705,2.508716513394642,2.509156337465014,2.5095961615353857,2.5100359856057577,2.5104758096761297,2.5109156337465013,2.5113554578168733,2.5117952818872453,2.512235105957617,2.512674930027989,2.5131147540983605,2.5135545781687325,2.5139944022391045,2.514434226309476,2.514874050379848,2.5153138744502197,2.5157536985205917,2.5161935225909637,2.5166333466613353,2.5170731707317073,2.5175129948020794,2.517952818872451,2.518392642942823,2.5188324670131945,2.5192722910835665,2.5197121151539386,2.52015193922431,2.520591763294682,2.521031587365054,2.5214714114354257,2.5219112355057978,2.5223510595761693,2.5227908836465414,2.5232307077169134,2.523670531787285,2.524110355857657,2.524550179928029,2.5249900039984006,2.5254298280687726,2.525869652139144,2.526309476209516,2.526749300279888,2.5271891243502598,2.527628948420632,2.528068772491004,2.5285085965613754,2.5289484206317474,2.529388244702119,2.529828068772491,2.530267892842863,2.5307077169132346,2.5311475409836066,2.531587365053978,2.53202718912435,2.5324670131947222,2.532906837265094,2.533346661335466,2.533786485405838,2.5342263094762094,2.5346661335465814,2.535105957616953,2.535545781687325,2.535985605757697,2.5364254298280686,2.5368652538984406,2.5373050779688127,2.5377449020391842,2.5381847261095563,2.538624550179928,2.5390643742503,2.539504198320672,2.5399440223910434,2.5403838464614155,2.5408236705317875,2.541263494602159,2.541703318672531,2.5421431427429027,2.5425829668132747,2.5430227908836467,2.5434626149540183,2.5439024390243903,2.5443422630947623,2.544782087165134,2.545221911235506,2.5456617353058775,2.5461015593762495,2.5465413834466215,2.546981207516993,2.547421031587365,2.547860855657737,2.5483006797281087,2.5487405037984807,2.5491803278688523,2.5496201519392243,2.5500599760095963,2.550499800079968,2.55093962415034,2.5513794482207115,2.5518192722910835,2.5522590963614555,2.552698920431827,2.553138744502199,2.553578568572571,2.5540183926429427,2.5544582167133147,2.5548980407836863,2.5553378648540583,2.5557776889244304,2.556217512994802,2.556657337065174,2.557097161135546,2.5575369852059175,2.5579768092762896,2.558416633346661,2.558856457417033,2.559296281487405,2.5597361055577768,2.5601759296281488,2.560615753698521,2.5610555777688924,2.5614954018392644,2.561935225909636,2.562375049980008,2.56281487405038,2.5632546981207516,2.5636945221911236,2.5641343462614956,2.564574170331867,2.565013994402239,2.565453818472611,2.565893642542983,2.566333466613355,2.5667732906837264,2.5672131147540984,2.5676529388244704,2.568092762894842,2.568532586965214,2.5689724110355856,2.5694122351059576,2.5698520591763296,2.570291883246701,2.5707317073170732,2.571171531387445,2.571611355457817,2.572051179528189,2.5724910035985604,2.5729308276689324,2.5733706517393045,2.573810475809676,2.574250299880048,2.5746901239504196,2.5751299480207916,2.5755697720911637,2.5760095961615352,2.5764494202319073,2.5768892443022793,2.577329068372651,2.577768892443023,2.5782087165133944,2.5786485405837665,2.5790883646541385,2.57952818872451,2.579968012794882,2.580407836865254,2.5808476609356257,2.5812874850059977,2.5817273090763693,2.5821671331467413,2.5826069572171133,2.583046781287485,2.583486605357857,2.583926429428229,2.5843662534986005,2.5848060775689725,2.585245901639344,2.585685725709716,2.586125549780088,2.5865653738504597,2.5870051979208317,2.5874450219912033,2.5878848460615753,2.5883246701319473,2.588764494202319,2.589204318272691,2.589644142343063,2.5900839664134345,2.5905237904838065,2.590963614554178,2.59140343862455,2.591843262694922,2.5922830867652937,2.5927229108356658,2.5931627349060378,2.5936025589764093,2.5940423830467814,2.594482207117153,2.594922031187525,2.595361855257897,2.5958016793282686,2.5962415033986406,2.5966813274690126,2.597121151539384,2.597560975609756,2.5980007996801278,2.5984406237505,2.598880447820872,2.5993202718912434,2.5997600959616154,2.6001999200319874,2.600639744102359,2.601079568172731,2.6015193922431026,2.6019592163134746,2.6023990403838466,2.602838864454218,2.60327868852459,2.6037185125949622,2.604158336665334,2.604598160735706,2.6050379848060774,2.6054778088764494,2.6059176329468214,2.606357457017193,2.606797281087565,2.6072371051579366,2.6076769292283086,2.6081167532986806,2.608556577369052,2.6089964014394242,2.6094362255097963,2.609876049580168,2.61031587365054,2.6107556977209114,2.6111955217912834,2.6116353458616555,2.612075169932027,2.612514994002399,2.612954818072771,2.6133946421431427,2.6138344662135147,2.6142742902838862,2.6147141143542583,2.6151539384246303,2.615593762495002,2.616033586565374,2.616473410635746,2.6169132347061175,2.6173530587764895,2.617792882846861,2.618232706917233,2.618672530987605,2.6191123550579767,2.6195521791283487,2.6199920031987207,2.6204318272690923,2.6208716513394643,2.621311475409836,2.621751299480208,2.62219112355058,2.6226309476209515,2.6230707716913235,2.6235105957616955,2.623950419832067,2.624390243902439,2.6248300679728107,2.6252698920431827,2.6257097161135547,2.6261495401839263,2.6265893642542983,2.62702918832467,2.627469012395042,2.627908836465414,2.6283486605357855,2.6287884846061575,2.6292283086765296,2.629668132746901,2.630107956817273,2.6305477808876447,2.6309876049580168,2.6314274290283888,2.6318672530987604,2.6323070771691324,2.6327469012395044,2.633186725309876,2.633626549380248,2.6340663734506196,2.6345061975209916,2.6349460215913636,2.635385845661735,2.635825669732107,2.636265493802479,2.636705317872851,2.637145141943223,2.6375849660135944,2.6380247900839664,2.6384646141543384,2.63890443822471,2.639344262295082,2.639784086365454,2.6402239104358256,2.6406637345061976,2.641103558576569,2.641543382646941,2.6419832067173132,2.642423030787685,2.642862854858057,2.643302678928429,2.6437425029988004,2.6441823270691724,2.644622151139544,2.645061975209916,2.645501799280288,2.6459416233506596,2.6463814474210317,2.6468212714914032,2.6472610955617752,2.6477009196321473,2.648140743702519,2.648580567772891,2.649020391843263,2.6494602159136345,2.6499000399840065,2.650339864054378,2.65077968812475,2.651219512195122,2.6516593362654937,2.6520991603358657,2.6525389844062377,2.6529788084766093,2.6534186325469813,2.653858456617353,2.654298280687725,2.654738104758097,2.6551779288284685,2.6556177528988405,2.6560575769692125,2.656497401039584,2.656937225109956,2.6573770491803277,2.6578168732506997,2.6582566973210717,2.6586965213914433,2.6591363454618153,2.6595761695321873,2.660015993602559,2.660455817672931,2.6608956417433025,2.6613354658136745,2.6617752898840465,2.662215113954418,2.66265493802479,2.6630947620951617,2.6635345861655337,2.6639744102359058,2.6644142343062773,2.6648540583766493,2.6652938824470214,2.665733706517393,2.666173530587765,2.6666133546581365,2.6670531787285086,2.6674930027988806,2.667932826869252,2.668372650939624,2.668812475009996,2.6692522990803678,2.66969212315074,2.6701319472211114,2.6705717712914834,2.6710115953618554,2.671451419432227,2.671891243502599,2.672331067572971,2.6727708916433426,2.6732107157137146,2.673650539784086,2.674090363854458,2.67453018792483,2.674970011995202,2.675409836065574,2.675849660135946,2.6762894842063174,2.6767293082766894,2.677169132347061,2.677608956417433,2.678048780487805,2.6784886045581766,2.6789284286285486,2.6793682526989206,2.6798080767692922,2.6802479008396642,2.680687724910036,2.681127548980408,2.68156737305078,2.6820071971211514,2.6824470211915235,2.682886845261895,2.683326669332267,2.683766493402639,2.6842063174730106,2.6846461415433827,2.6850859656137547,2.6855257896841263,2.6859656137544983,2.68640543782487,2.686845261895242,2.687285085965614,2.6877249100359855,2.6881647341063575,2.6886045581767295,2.689044382247101,2.689484206317473,2.6899240303878447,2.6903638544582167,2.6908036785285887,2.6912435025989603,2.6916833266693323,2.6921231507397043,2.692562974810076,2.693002798880448,2.6934426229508195,2.6938824470211915,2.6943222710915635,2.694762095161935,2.695201919232307,2.695641743302679,2.6960815673730507,2.6965213914434227,2.6969612155137943,2.6974010395841663,2.6978408636545383,2.69828068772491,2.698720511795282,2.699160335865654,2.6996001599360255,2.7000399840063976,2.700479808076769,2.700919632147141,2.701359456217513,2.7017992802878847,2.7022391043582568,2.7026789284286283,2.7031187524990004,2.7035585765693724,2.703998400639744,2.704438224710116,2.704878048780488,2.7053178728508596,2.7057576969212316,2.706197520991603,2.706637345061975,2.707077169132347,2.7075169932027188,2.707956817273091,2.708396641343463,2.7088364654138344,2.7092762894842064,2.709716113554578,2.71015593762495,2.710595761695322,2.7110355857656936,2.7114754098360656,2.7119152339064376,2.712355057976809,2.712794882047181,2.713234706117553,2.713674530187925,2.714114354258297,2.7145541783286684,2.7149940023990404,2.7154338264694124,2.715873650539784,2.716313474610156,2.7167532986805276,2.7171931227508996,2.7176329468212717,2.7180727708916432,2.7185125949620152,2.718952419032387,2.719392243102759,2.719832067173131,2.7202718912435024,2.7207117153138745,2.7211515393842465,2.721591363454618,2.72203118752499,2.7224710115953616,2.7229108356657337,2.7233506597361057,2.7237904838064773,2.7242303078768493,2.7246701319472213,2.725109956017593,2.725549780087965,2.7259896041583365,2.7264294282287085,2.7268692522990805,2.727309076369452,2.727748900439824,2.728188724510196,2.7286285485805677,2.7290683726509397,2.7295081967213113,2.7299480207916833,2.7303878448620553,2.730827668932427,2.731267493002799,2.731707317073171,2.7321471411435425,2.7325869652139145,2.733026789284286,2.733466613354658,2.73390643742503,2.7343462614954017,2.7347860855657737,2.7352259096361458,2.7356657337065173,2.7361055577768894,2.736545381847261,2.736985205917633,2.737425029988005,2.7378648540583765,2.7383046781287486,2.73874450219912,2.739184326269492,2.739624150339864,2.7400639744102357,2.7405037984806078,2.74094362255098,2.7413834466213514,2.7418232706917234,2.742263094762095,2.742702918832467,2.743142742902839,2.7435825669732106,2.7440223910435826,2.7444622151139546,2.744902039184326,2.745341863254698,2.7457816873250698,2.746221511395442,2.746661335465814,2.7471011595361854,2.7475409836065574,2.7479808076769294,2.748420631747301,2.748860455817673,2.7493002798880446,2.7497401039584166,2.7501799280287886,2.75061975209916,2.7510595761695322,2.7514994002399042,2.751939224310276,2.752379048380648,2.7528188724510194,2.7532586965213914,2.7536985205917635,2.754138344662135,2.754578168732507,2.755017992802879,2.7554578168732506,2.7558976409436227,2.7563374650139942,2.7567772890843663,2.7572171131547383,2.75765693722511,2.758096761295482,2.7585365853658534,2.7589764094362255,2.7594162335065975,2.759856057576969,2.760295881647341,2.760735705717713,2.7611755297880847,2.7616153538584567,2.7620551779288283,2.7624950019992003,2.7629348260695723,2.763374650139944,2.763814474210316,2.764254298280688,2.7646941223510595,2.7651339464214315,2.765573770491803,2.766013594562175,2.766453418632547,2.7668932427029187,2.7673330667732907,2.7677728908436627,2.7682127149140343,2.7686525389844063,2.769092363054778,2.76953218712515,2.769972011195522,2.7704118352658935,2.7708516593362655,2.7712914834066376,2.771731307477009,2.772171131547381,2.7726109556177527,2.7730507796881247,2.7734906037584968,2.7739304278288683,2.7743702518992404,2.774810075969612,2.775249900039984,2.775689724110356,2.7761295481807275,2.7765693722510996,2.7770091963214716,2.777449020391843,2.777888844462215,2.7783286685325868,2.7787684926029588,2.779208316673331,2.7796481407437024,2.7800879648140744,2.7805277888844464,2.780967612954818,2.78140743702519,2.7818472610955616,2.7822870851659336,2.7827269092363056,2.783166733306677,2.783606557377049,2.7840463814474212,2.784486205517793,2.784926029588165,2.7853658536585364,2.7858056777289084,2.7862455017992804,2.786685325869652,2.787125149940024,2.787564974010396,2.7880047980807676,2.7884446221511396,2.788884446221511,2.7893242702918832,2.7897640943622553,2.790203918432627,2.790643742502999,2.791083566573371,2.7915233906437424,2.7919632147141145,2.792403038784486,2.792842862854858,2.79328268692523,2.7937225109956016,2.7941623350659737,2.7946021591363452,2.7950419832067173,2.7954818072770893,2.795921631347461,2.796361455417833,2.796801279488205,2.7972411035585765,2.7976809276289485,2.79812075169932,2.798560575769692,2.799000399840064,2.7994402239104357,2.7998800479808077,2.8003198720511797,2.8007596961215513,2.8011995201919233,2.801639344262295,2.802079168332667,2.802518992403039,2.8029588164734105,2.8033986405437825,2.8038384646141545,2.804278288684526,2.804718112754898,2.8051579368252697,2.8055977608956417,2.8060375849660137,2.8064774090363853,2.8069172331067573,2.8073570571771294,2.807796881247501,2.808236705317873,2.8086765293882445,2.8091163534586165,2.8095561775289886,2.80999600159936,2.810435825669732,2.810875649740104,2.8113154738104758,2.8117552978808478,2.8121951219512193,2.8126349460215914,2.8130747700919634,2.813514594162335,2.813954418232707,2.8143942423030786,2.8148340663734506,2.8152738904438226,2.815713714514194,2.816153538584566,2.816593362654938,2.81703318672531,2.817473010795682,2.8179128348660534,2.8183526589364254,2.8187924830067974,2.819232307077169,2.819672131147541,2.820111955217913,2.8205517792882846,2.8209916033586566,2.821431427429028,2.8218712514994,2.8223110755697722,2.822750899640144,2.823190723710516,2.823630547780888,2.8240703718512594,2.8245101959216314,2.824950019992003,2.825389844062375,2.825829668132747,2.8262694922031186,2.8267093162734906,2.8271491403438627,2.8275889644142342,2.8280287884846063,2.828468612554978,2.82890843662535,2.829348260695722,2.8297880847660934,2.8302279088364655,2.8306677329068375,2.831107556977209,2.831547381047581,2.8319872051179527,2.8324270291883247,2.8328668532586967,2.8333066773290683,2.8337465013994403,2.834186325469812,2.834626149540184,2.835065973610556,2.8355057976809275,2.8359456217512995,2.8363854458216715,2.836825269892043,2.837265093962415,2.8377049180327867,2.8381447421031587,2.8385845661735307,2.8390243902439023,2.8394642143142743,2.8399040383846463,2.840343862455018,2.84078368652539,2.8412235105957615,2.8416633346661335,2.8421031587365055,2.842542982806877,2.842982806877249,2.843422630947621,2.8438624550179927,2.8443022790883647,2.8447421031587363,2.8451819272291083,2.8456217512994804,2.846061575369852,2.846501399440224,2.846941223510596,2.8473810475809676,2.8478208716513396,2.848260695721711,2.848700519792083,2.849140343862455,2.8495801679328268,2.8500199920031988,2.8504598160735704,2.8508996401439424,2.8513394642143144,2.851779288284686,2.852219112355058,2.85265893642543,2.8530987604958016,2.8535385845661736,2.853978408636545,2.854418232706917,2.854858056777289,2.855297880847661,2.855737704918033,2.856177528988405,2.8566173530587764,2.8570571771291484,2.85749700119952,2.857936825269892,2.858376649340264,2.8588164734106356,2.8592562974810076,2.8596961215513796,2.860135945621751,2.8605757696921232,2.861015593762495,2.861455417832867,2.861895241903239,2.8623350659736104,2.8627748900439824,2.8632147141143545,2.863654538184726,2.864094362255098,2.8645341863254696,2.8649740103958417,2.8654138344662137,2.8658536585365852,2.8662934826069573,2.8667333066773293,2.867173130747701,2.867612954818073,2.8680527788884445,2.8684926029588165,2.8689324270291885,2.86937225109956,2.869812075169932,2.8702518992403037,2.8706917233106757,2.8711315473810477,2.8715713714514193,2.8720111955217913,2.8724510195921633,2.872890843662535,2.873330667732907,2.8737704918032785,2.8742103158736505,2.8746501399440225,2.875089964014394,2.875529788084766,2.875969612155138,2.8764094362255097,2.8768492602958817,2.8772890843662533,2.8777289084366253,2.8781687325069973,2.878608556577369,2.879048380647741,2.879488204718113,2.8799280287884845,2.8803678528588565,2.880807676929228,2.8812475009996,2.881687325069972,2.8821271491403437,2.8825669732107158,2.8830067972810878,2.8834466213514593,2.8838864454218314,2.884326269492203,2.884766093562575,2.885205917632947,2.8856457417033186,2.8860855657736906,2.8865253898440626,2.886965213914434,2.887405037984806,2.8878448620551778,2.88828468612555,2.888724510195922,2.8891643342662934,2.8896041583366654,2.890043982407037,2.890483806477409,2.890923630547781,2.8913634546181526,2.8918032786885246,2.8922431027588966,2.892682926829268,2.89312275089964,2.893562574970012,2.894002399040384,2.894442223110756,2.8948820471811274,2.8953218712514994,2.8957616953218714,2.896201519392243,2.896641343462615,2.8970811675329866,2.8975209916033586,2.8979608156737307,2.8984006397441022,2.8988404638144742,2.8992802878848463,2.899720111955218,2.90015993602559,2.9005997600959614,2.9010395841663335,2.9014794082367055,2.901919232307077,2.902359056377449,2.902798880447821,2.9032387045181927,2.9036785285885647,2.9041183526589363,2.9045581767293083,2.9049980007996803,2.905437824870052,2.905877648940424,2.9063174730107955,2.9067572970811675,2.9071971211515395,2.907636945221911,2.908076769292283,2.908516593362655,2.9089564174330267,2.9093962415033987,2.9098360655737703,2.9102758896441423,2.9107157137145143,2.911155537784886,2.911595361855258,2.91203518592563,2.9124750099960015,2.9129148340663735,2.913354658136745,2.913794482207117,2.914234306277489,2.9146741303478607,2.9151139544182327,2.9155537784886048,2.9159936025589763,2.9164334266293483,2.91687325069972,2.917313074770092,2.917752898840464,2.9181927229108355,2.9186325469812076,2.9190723710515796,2.919512195121951,2.919952019192323,2.9203918432626947,2.9208316673330668,2.921271491403439,2.9217113154738104,2.9221511395441824,2.9225909636145544,2.923030787684926,2.923470611755298,2.9239104358256696,2.9243502598960416,2.9247900839664136,2.925229908036785,2.925669732107157,2.9261095561775288,2.926549380247901,2.926989204318273,2.9274290283886444,2.9278688524590164,2.9283086765293884,2.92874850059976,2.929188324670132,2.9296281487405036,2.9300679728108756,2.9305077968812476,2.930947620951619,2.9313874450219912,2.9318272690923632,2.932267093162735,2.932706917233107,2.9331467413034784,2.9335865653738504,2.9340263894442224,2.934466213514594,2.934906037584966,2.935345861655338,2.9357856857257096,2.9362255097960817,2.9366653338664532,2.9371051579368253,2.9375449820071973,2.937984806077569,2.938424630147941,2.938864454218313,2.9393042782886845,2.9397441023590565,2.940183926429428,2.9406237504998,2.941063574570172,2.9415033986405437,2.9419432227109157,2.9423830467812877,2.9428228708516593,2.9432626949220313,2.943702518992403,2.944142343062775,2.944582167133147,2.9450219912035185,2.9454618152738905,2.945901639344262,2.946341463414634,2.946781287485006,2.9472211115553777,2.9476609356257497,2.9481007596961217,2.9485405837664933,2.9489804078368653,2.949420231907237,2.949860055977609,2.950299880047981,2.9507397041183525,2.9511795281887245,2.9516193522590966,2.952059176329468,2.95249900039984,2.9529388244702117,2.9533786485405837,2.9538184726109558,2.9542582966813273,2.9546981207516994,2.9551379448220714,2.955577768892443,2.956017592962815,2.9564574170331865,2.9568972411035586,2.9573370651739306,2.957776889244302,2.958216713314674,2.958656537385046,2.9590963614554178,2.95953618552579,2.9599760095961614,2.9604158336665334,2.9608556577369054,2.961295481807277,2.961735305877649,2.962175129948021,2.9626149540183926,2.9630547780887646,2.963494602159136,2.963934426229508,2.96437425029988,2.964814074370252,2.965253898440624,2.9656937225109954,2.9661335465813674,2.9665733706517394,2.967013194722111,2.967453018792483,2.967892842862855,2.9683326669332266,2.9687724910035986,2.96921231507397,2.9696521391443422,2.9700919632147142,2.970531787285086,2.970971611355458,2.97141143542583,2.9718512594962014,2.9722910835665735,2.972730907636945,2.973170731707317,2.973610555777689,2.9740503798480606,2.9744902039184327,2.9749300279888047,2.9753698520591763,2.9758096761295483,2.97624950019992,2.976689324270292,2.977129148340664,2.9775689724110355,2.9780087964814075,2.9784486205517795,2.978888444622151,2.979328268692523,2.9797680927628947,2.9802079168332667,2.9806477409036387,2.9810875649740103,2.9815273890443823,2.981967213114754,2.982407037185126,2.982846861255498,2.9832866853258695,2.9837265093962415,2.9841663334666135,2.984606157536985,2.985045981607357,2.9854858056777287,2.9859256297481007,2.9863654538184727,2.9868052778888443,2.9872451019592163,2.9876849260295884,2.98812475009996,2.988564574170332,2.9890043982407035,2.9894442223110755,2.9898840463814476,2.990323870451819,2.990763694522191,2.991203518592563,2.9916433426629347,2.9920831667333068,2.9925229908036783,2.9929628148740504,2.9934026389444224,2.993842463014794,2.994282287085166,2.994722111155538,2.9951619352259096,2.9956017592962816,2.996041583366653,2.996481407437025,2.996921231507397,2.9973610555777688,2.997800879648141,2.998240703718513,2.9986805277888844,2.9991203518592564,2.999560175929628,3.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/smaller.json b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/smaller.json new file mode 100644 index 00000000000..c13cc9d2c2d --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/smaller.json @@ -0,0 +1 @@ +{"expected":[0.0,0.022415482,0.03170028,0.038824756,0.044830963,0.05012254,0.054906495,0.05930579,0.06340056,0.067246445,0.07088398,0.07434374,0.07764951,0.08082017,0.08387105,0.08681479,0.089661926,0.0924214,0.095100835,0.097706825,0.10024508,0.10272064,0.10513793,0.10750087,0.10981299,0.11207741,0.11429698,0.11647426,0.11861158,0.120711066,0.12277465,0.124804124,0.12680112,0.12876715,0.1307036,0.13261178,0.13449289,0.13634805,0.13817832,0.13998464,0.14176796,0.14352912,0.14526893,0.14698815,0.14868748,0.15036763,0.1520292,0.1536728,0.15529902,0.15690838,0.1585014,0.16007856,0.16164035,0.16318718,0.16471948,0.16623767,0.1677421,0.16923317,0.17071122,0.17217658,0.17362958,0.17507051,0.17649968,0.17791738,0.17932385,0.18071939,0.18210424,0.18347862,0.1848428,0.18619698,0.18754138,0.18887621,0.19020167,0.19151796,0.19282527,0.19412377,0.19541365,0.19669506,0.19796818,0.19923316,0.20049016,0.20173934,0.20298083,0.20421477,0.20544128,0.20666054,0.20787263,0.2090777,0.21027586,0.21146724,0.21265194,0.21383007,0.21500175,0.21616708,0.21732616,0.2184791,0.21962598,0.2207669,0.22190195,0.22303124,0.22415482,0.2252728,0.22638528,0.2274923,0.22859396,0.22969034,0.23078151,0.23186755,0.23294853,0.23402451,0.23509556,0.23616175,0.23722316,0.23827985,0.23933186,0.24037927,0.24142213,0.2424605,0.24349447,0.24452405,0.2455493,0.2465703,0.2475871,0.24859972,0.24960825,0.2506127,0.25161317,0.25260967,0.25360224,0.25459093,0.2555758,0.25655693,0.2575343,0.25850794,0.25947797,0.26044437,0.2614072,0.2623665,0.2633223,0.26427463,0.26522356,0.2661691,0.2671113,0.2680502,0.26898578,0.26991814,0.2708473,0.27177328,0.2726961,0.27361584,0.27453247,0.27544606,0.27635664,0.2772642,0.27816883,0.2790705,0.27996927,0.2808652,0.28175825,0.28264847,0.28353593,0.28442058,0.28530252,0.28618172,0.28705823,0.28793207,0.28880328,0.28967187,0.29053786,0.29140127,0.29226214,0.29312047,0.2939763,0.29482964,0.29568052,0.29652897,0.29737496,0.2982186,0.29905984,0.2998987,0.30073527,0.30156946,0.3024014,0.30323103,0.3040584,0.3048835,0.3057064,0.3065271,0.3073456,0.30816194,0.3089761,0.30978814,0.31059805,0.31140584,0.31221154,0.31301516,0.31381676,0.3146163,0.3154138,0.3162093,0.3170028,0.31779432,0.31858385,0.31937146,0.3201571,0.32094085,0.3217227,0.32250264,0.3232807,0.32405686,0.3248312,0.3256037,0.32637435,0.3271432,0.32791024,0.32867548,0.32943895,0.33020067,0.33096063,0.33171883,0.33247533,0.3332301,0.33398315,0.33473453,0.3354842,0.33623224,0.33697858,0.33772328,0.33846635,0.3392078,0.3399476,0.34068584,0.34142244,0.34215748,0.34289095,0.34362283,0.34435317,0.34508196,0.34580922,0.34653494,0.34725916,0.34798187,0.34870306,0.34942278,0.35014102,0.3508578,0.3515731,0.35228696,0.35299936,0.35371035,0.3544199,0.35512802,0.35583475,0.35654008,0.357244,0.35794654,0.3586477,0.35934752,0.36004597,0.36074305,0.36143878,0.3621332,0.3628263,0.36351803,0.3642085,0.3648976,0.36558545,0.366272,0.36695725,0.36764124,0.36832395,0.3690054,0.3696856,0.37036455,0.37104225,0.37171873,0.37239397,0.37306798,0.37374076,0.37441236,0.37508276,0.37575194,0.37641996,0.3770868,0.37775242,0.3784169,0.3790802,0.37974235,0.38040334,0.3810632,0.3817219,0.38237947,0.38303593,0.38369125,0.38434544,0.38499856,0.38565055,0.38630143,0.3869512,0.38759992,0.38824755,0.38889408,0.38953954,0.39018396,0.3908273,0.39146957,0.3921108,0.39275098,0.39339012,0.39402822,0.3946653,0.39530134,0.39593637,0.39657035,0.39720336,0.39783534,0.39846632,0.3990963,0.39972532,0.4003533,0.40098032,0.40160638,0.40223145,0.40285555,0.40347868,0.40410087,0.40472206,0.40534234,0.40596166,0.40658003,0.40719745,0.40781397,0.40842953,0.40904418,0.4096579,0.4102707,0.41088256,0.41149354,0.41210362,0.41271278,0.41332108,0.41392845,0.41453493,0.41514054,0.41574526,0.4163491,0.41695207,0.41755417,0.4181554,0.41875577,0.41935527,0.4199539,0.42055172,0.4211487,0.4217448,0.42234004,0.42293447,0.42352808,0.4241208,0.42471275,0.42530388,0.42589417,0.42648363,0.4270723,0.42766014,0.42824718,0.42883343,0.42941886,0.4300035,0.43058735,0.4311704,0.43175268,0.43233415,0.43291488,0.4334948,0.43407395,0.43465233,0.43522993,0.43580678,0.43638286,0.4369582,0.43753275,0.43810657,0.43867964,0.43925196,0.4398235,0.44039434,0.44096443,0.4415338,0.4421024,0.44267032,0.44323745,0.4438039,0.4443696,0.4449346,0.44549888,0.44606248,0.44662532,0.44718745,0.4477489,0.44830963,0.44886968,0.44942904,0.44998768,0.4505456,0.45110288,0.45165944,0.45221534,0.45277056,0.45332506,0.4538789,0.4544321,0.4549846,0.45553643,0.4560876,0.4566381,0.45718792,0.4577371,0.45828563,0.4588335,0.4593807,0.45992723,0.46047315,0.4610184,0.46156302,0.462107,0.46265033,0.46319303,0.4637351,0.46427652,0.46481735,0.4653575,0.46589705,0.46643597,0.46697426,0.46751195,0.46804902,0.46858546,0.46912128,0.4696565,0.47019112,0.47072512,0.47125852,0.47179133,0.4723235,0.47285512,0.4733861,0.47391653,0.47444633,0.47497556,0.4755042,0.47603223,0.4765597,0.47708657,0.47761285,0.47813857,0.4786637,0.4791883,0.47971228,0.4802357,0.48075855,0.4812808,0.48180252,0.48232368,0.48284426,0.48336428,0.48388377,0.48440266,0.484921,0.48543882,0.48595607,0.4864728,0.48698893,0.48750454,0.4880196,0.48853412,0.4890481,0.48956153,0.49007443,0.4905868,0.4910986,0.4916099,0.49212068,0.4926309,0.4931406,0.49364978,0.49415845,0.49466658,0.4951742,0.4956813,0.49618784,0.4966939,0.49719945,0.49770448,0.498209,0.498713,0.4992165,0.49971947,0.50022197,0.50072396,0.5012254,0.5017264,0.5022269,0.50272685,0.50322634,0.5037253,0.5042238,0.5047218,0.50521934,0.5057163,0.50621283,0.5067089,0.5072045,0.50769955,0.50819415,0.5086883,0.50918186,0.509675,0.5101677,0.51065993,0.5111516,0.5116429,0.51213366,0.51262397,0.51311386,0.5136032,0.51409215,0.5145806,0.5150686,0.5155561,0.5160431,0.51652974,0.5170159,0.5175016,0.51798683,0.5184716,0.51895595,0.5194398,0.5199232,0.5204062,0.52088875,0.5213708,0.52185243,0.5223336,0.5228144,0.5232947,0.52377456,0.524254,0.524733,0.5252115,0.52568966,0.52616733,0.5266446,0.5271214,0.5275978,0.5280737,0.52854925,0.52902436,0.52949905,0.5299733,0.5304471,0.5309205,0.5313935,0.5318661,0.5323382,0.5328099,0.5332812,0.53375214,0.5342226,0.53469265,0.5351623,0.53563154,0.5361004,0.53656876,0.5370368,0.5375044,0.53797156,0.5384384,0.5389047,0.5393707,0.5398363,0.5403015,0.54076624,0.5412306,0.5416946,0.5421582,0.5426214,0.54308414,0.54354656,0.54400855,0.5444702,0.5449314,0.5453922,0.54585266,0.5463127,0.54677236,0.5472317,0.5476906,0.54814905,0.5486072,0.54906493,0.5495223,0.54997927,0.5504359,0.5508921,0.551348,0.5518034,0.55225855,0.5527133,0.5531676,0.5536216,0.5540752,0.5545284,0.5549813,0.55543375,0.5558859,0.55633765,0.55678904,0.55724007,0.55769074,0.558141,0.55859095,0.5590405,0.5594897,0.55993855,0.5603871,0.5608352,0.56128293,0.5617304,0.5621774,0.56262416,0.5630705,0.5635165,0.5639621,0.5644074,0.56485236,0.56529695,0.5657412,0.56618506,0.56662863,0.56707186,0.56751466,0.56795716,0.56839937,0.56884116,0.56928265,0.5697238,0.57016456,0.57060504,0.57104516,0.5714849,0.5719243,0.57236344,0.5728022,0.57324064,0.57367873,0.57411647,0.5745539,0.574991,0.5754277,0.57586414,0.57630026,0.57673603,0.57717144,0.57760656,0.5780414,0.57847583,0.57890993,0.57934374,0.57977724,0.5802104,0.5806432,0.5810757,0.5815079,0.58193976,0.5823713,0.58280253,0.5832334,0.58366406,0.5840943,0.5845243,0.5849539,0.58538324,0.5858122,0.58624095,0.5866693,0.5870974,0.5875251,0.5879526,0.58837974,0.58880657,0.58923304,0.5896593,0.59008515,0.5905108,0.59093606,0.59136105,0.5917857,0.59221005,0.59263414,0.59305793,0.59348136,0.59390455,0.5943274,0.5947499,0.5951722,0.59559417,0.5960158,0.5964372,0.59685826,0.597279,0.59769946,0.5981197,0.59853953,0.59895915,0.5993784,0.5997974,0.60021615,0.6006346,0.60105264,0.60147053,0.60188806,0.6023053,0.6027223,0.6031389,0.6035553,0.6039714,0.6043872,0.6048028,0.605218,0.60563296,0.60604763,0.60646206,0.60687613,0.60728997,0.6077035,0.6081168,0.60852975,0.60894245,0.6093549,0.609767,0.6101789,0.6105905,0.6110018,0.6114128,0.6118236,0.61223406,0.6126443,0.6130542,0.6134639,0.61387324,0.61428237,0.6146912,0.6150998,0.6155081,0.61591613,0.6163239,0.61673135,0.61713856,0.61754555,0.6179522,0.6183586,0.61876476,0.61917067,0.6195763,0.6199816,0.62038666,0.6207915,0.6211961,0.62160033,0.6220044,0.62240815,0.6228117,0.6232149,0.6236179,0.62402064,0.6244231,0.6248253,0.6252272,0.62562895,0.6260303,0.6264315,0.6268324,0.6272331,0.6276335,0.62803364,0.6284335,0.6288332,0.6292326,0.6296317,0.6300306,0.6304292,0.6308276,0.6312257,0.63162357,0.6320212,0.6324186,0.6328157,0.63321257,0.6336092,0.6340056,0.63440174,0.6347976,0.6351932,0.63558865,0.63598377,0.63637865,0.6367733,0.6371677,0.63756186,0.6379558,0.6383495,0.6387429,0.63913614,0.63952905,0.6399218,0.6403142,0.6407065,0.64109844,0.6414902,0.6418817,0.642273,0.642664,0.64305484,0.6434454,0.6438357,0.6442258,0.64461565,0.6450053,0.6453946,0.6457838,0.6461727,0.6465614,0.6469498,0.64733803,0.647726,0.6481137,0.6485012,0.6488885,0.6492756,0.6496624,0.650049,0.6504353,0.65082145,0.6512074,0.651593,0.6519785,0.6523637,0.6527487,0.65313345,0.653518,0.6539023,0.6542864,0.65467024,0.65505385,0.6554373,0.6558205,0.65620345,0.65658617,0.6569687,0.65735096,0.657733,0.6581149,0.6584965,0.6588779,0.6592591,0.6596401,0.6600208,0.66040134,0.6607816,0.6611617,0.6615416,0.66192126,0.6623007,0.6626799,0.6630589,0.66343766,0.6638163,0.6641946,0.6645727,0.66495067,0.6653284,0.66570586,0.66608316,0.6664602,0.66683704,0.6672137,0.66759014,0.6679663,0.66834235,0.6687181,0.66909367,0.66946906,0.6698442,0.6702192,0.6705939,0.6709684,0.67134273,0.67171687,0.67209077,0.6724645,0.672838,0.6732112,0.6735843,0.67395717,0.6743298,0.6747023,0.6750745,0.67544657,0.67581844,0.6761901,0.6765615,0.6769327,0.67730373,0.6776746,0.67804515,0.6784156,0.6787858,0.6791558,0.6795256,0.6798952,0.68026465,0.68063384,0.68100286,0.6813717,0.6817403,0.6821087,0.6824769,0.6828449,0.6832127,0.68358034,0.68394774,0.68431497,0.684682,0.6850488,0.68541545,0.6857819,0.6861481,0.6865142,0.68688,0.68724567,0.6876111,0.6879764,0.68834144,0.68870634,0.689071,0.68943554,0.68979985,0.6901639,0.69052786,0.69089156,0.6912551,0.69161844,0.6919816,0.69234455,0.6927073,0.6930699,0.6934323,0.6937945,0.69415647,0.6945183,0.69487995,0.6952414,0.69560266,0.69596374,0.6963246,0.6966853,0.6970458,0.6974061,0.6977663,0.6981262,0.698486,0.69884557,0.699205,0.69956416,0.6999232,0.70028204,0.70064074,0.7009992,0.7013575,0.7017156,0.7020735,0.70243126,0.70278883,0.7031462,0.70350343,0.7038604,0.70421726,0.7045739,0.70493037,0.7052867,0.7056428,0.7059987,0.7063545,0.70671004,0.70706546,0.7074207,0.7077757,0.7081306,0.7084853,0.7088398,0.7091941,0.7095483,0.7099022,0.71025604,0.7106097,0.71096313,0.7113164,0.7116695,0.7120224,0.71237516,0.7127277,0.71308017,0.7134324,0.7137844,0.7141363,0.714488,0.7148395,0.7151909,0.7155421,0.7158931,0.7162439,0.7165946,0.7169451,0.7172954,0.7176456,0.7179956,0.7183454,0.71869504,0.7190445,0.7193938,0.71974295,0.72009194,0.7204407,0.7207893,0.7211378,0.7214861,0.72183424,0.72218215,0.72252995,0.72287756,0.72322506,0.7235723,0.72391945,0.7242664,0.7246132,0.7249598,0.7253063,0.7256526,0.7259987,0.72634465,0.7266904,0.72703606,0.7273815,0.7277268,0.728072,0.728417,0.7287618,0.7291064,0.7294509,0.7297952,0.7301394,0.7304834,0.7308272,0.7311709,0.7315144,0.7318578,0.732201,0.732544,0.73288685,0.7332296,0.7335721,0.7339145,0.73425674,0.7345988,0.7349407,0.7352825,0.7356241,0.7359655,0.7363068,0.7366479,0.7369889,0.73732966,0.7376703,0.7380108,0.73835117,0.73869133,0.7390313,0.7393712,0.7397109,0.74005044,0.7403899,0.7407291,0.7410682,0.7414071,0.7417459,0.7420845,0.742423,0.74276125,0.74309945,0.74343747,0.7437753,0.74411297,0.7444505,0.74478793,0.7451252,0.74546224,0.7457992,0.74613595,0.7464726,0.74680907,0.74714535,0.7474815,0.7478176,0.74815345,0.74848914,0.7488247,0.7491602,0.74949545,0.74983054,0.7501655,0.7505003,0.750835,0.7511695,0.7515039,0.75183815,0.75217223,0.75250614,0.7528399,0.75317353,0.753507,0.7538404,0.7541736,0.7545066,0.7548395,0.75517225,0.75550485,0.7558373,0.7561696,0.7565018,0.7568338,0.7571657,0.7574974,0.75782895,0.7581604,0.7584917,0.75882286,0.75915384,0.7594847,0.7598154,0.76014596,0.7604764,0.7608067,0.76113683,0.76146686,0.7617967,0.7621264,0.76245594,0.7627854,0.7631147,0.7634438,0.7637728,0.7641017,0.7644304,0.76475894,0.7650874,0.76541567,0.76574385,0.76607186,0.76639974,0.76672745,0.76705503,0.7673825,0.7677098,0.76803696,0.768364,0.7686909,0.7690177,0.7693443,0.7696708,0.7699971,0.7703233,0.7706494,0.7709753,0.7713011,0.7716267,0.7719522,0.7722776,0.77260286,0.77292794,0.7732529,0.77357775,0.7739024,0.77422696,0.7745514,0.7748757,0.77519983,0.77552384,0.77584773,0.77617145,0.7764951,0.7768186,0.77714187,0.7774651,0.77778816,0.7781111,0.7784339,0.77875656,0.7790791,0.7794015,0.77972376,0.7800459,0.7803679,0.7806898,0.7810115,0.7813331,0.7816546,0.7819759,0.78229713,0.78261817,0.78293914,0.7832599,0.7835806,0.78390115,0.7842216,0.7845419,0.78486204,0.78518206,0.78550196,0.78582174,0.78614134,0.7864609,0.78678024,0.7870995,0.7874186,0.7877376,0.78805643,0.78837514,0.7886938,0.78901225,0.7893306,0.7896488,0.7899669,0.7902848,0.7906027,0.7909204,0.79123795,0.7915554,0.79187274,0.7921899,0.792507,0.7928239,0.7931407,0.7934574,0.79377395,0.7940904,0.7944067,0.7947229,0.79503894,0.7953549,0.7956707,0.79598635,0.7963019,0.7966173,0.79693264,0.7972478,0.7975629,0.79787785,0.7981926,0.79850733,0.79882187,0.7991363,0.79945064,0.7997648,0.80007887,0.8003928,0.8007066,0.8010203,0.8013339,0.80164737,0.80196065,0.80227387,0.802587,0.8028999,0.80321276,0.80352545,0.8038381,0.8041505,0.8044629,0.8047751,0.8050872,0.80539924,0.8057111,0.8060228,0.8063345,0.806646,0.80695736,0.8072686,0.80757976,0.8078908,0.80820173,0.8085125,0.80882317,0.8091337,0.8094441,0.80975443,0.8100646,0.81037474,0.8106847,0.8109945,0.8113042,0.8116138,0.8119233,0.8122327,0.8125419,0.812851,0.81316006,0.81346893,0.8137777,0.8140864,0.8143949,0.81470335,0.8150116,0.81531984,0.81562793,0.81593585,0.8162437,0.81655145,0.81685907,0.81716657,0.81747395,0.8177812,0.81808835,0.8183954,0.8187023,0.81900907,0.8193158,0.81962234,0.8199288,0.82023513,0.8205414,0.8208475,0.8211535,0.82145935,0.8217651,0.82207084,0.8223764,0.8226818,0.8229871,0.8232923,0.82359743,0.82390237,0.82420725,0.824512,0.82481664,0.82512116,0.82542557,0.8257299,0.82603407,0.8263382,0.82664216,0.826946,0.82724977,0.8275534,0.8278569,0.8281603,0.8284636,0.8287668,0.82906985,0.8293728,0.8296757,0.82997847,0.8302811,0.83058363,0.830886,0.8311883,0.8314905,0.8317926,0.8320946,0.83239645,0.8326982,0.8329998,0.83330137,0.83360285,0.83390415,0.8342053,0.83450645,0.83480746,0.83510834,0.8354091,0.8357098,0.83601034,0.8363108,0.83661115,0.8369114,0.8372115,0.83751154,0.83781147,0.8381113,0.838411,0.83871055,0.83901006,0.8393094,0.83960867,0.8399078,0.8402069,0.84050584,0.8408047,0.84110343,0.84140205,0.8417006,0.84199905,0.8422974,0.8425956,0.84289366,0.8431917,0.8434896,0.8437874,0.84408504,0.84438264,0.8446801,0.84497744,0.84527475,0.8455719,0.84586895,0.8461659,0.8464627,0.8467595,0.84705615,0.8473527,0.8476491,0.84794545,0.8482416,0.8485378,0.8488338,0.84912974,0.8494255,0.84972125,0.85001683,0.85031235,0.85060775,0.85090303,0.85119826,0.85149336,0.85178834,0.8520832,0.852378,0.8526727,0.85296726,0.85326177,0.85355616,0.8538504,0.8541446,0.85443866,0.85473263,0.85502654,0.8553203,0.85561395,0.85590756,0.856201,0.85649437,0.8567876,0.8570808,0.8573739,0.85766685,0.85795975,0.85825247,0.8585452,0.8588377,0.8591302,0.85942256,0.85971487,0.860007,0.8602991,0.86059105,0.86088294,0.8611747,0.8614664,0.86175793,0.86204946,0.8623408,0.8626321,0.86292326,0.8632144,0.86350536,0.86379623,0.86408705,0.86437774,0.8646683,0.8649588,0.8652492,0.86553955,0.86582977,0.86611986,0.86640984,0.86669976,0.8669896,0.8672793,0.8675689,0.86785847,0.8681479,0.86843723,0.8687265,0.86901563,0.86930466,0.8695936,0.86988246,0.8701712,0.87045985,0.87074846,0.8710369,0.8713253,0.87161356,0.87190175,0.8721898,0.8724778,0.8727657,0.87305355,0.87334126,0.87362885,0.8739164,0.8742038,0.87449116,0.8747784,0.8750655,0.87535256,0.8756395,0.8759264,0.87621313,0.87649983,0.8767864,0.8770729,0.8773593,0.87764555,0.8779318,0.8782179,0.8785039,0.87878984,0.87907565,0.8793614,0.879647,0.8799326,0.880218,0.8805034,0.8807887,0.8810739,0.881359,0.88164395,0.88192886,0.8822137,0.88249844,0.88278306,0.8830676,0.88335204,0.8836364,0.88392067,0.8842048,0.88448894,0.8847729,0.8850568,0.88534063,0.88562435,0.88590795,0.8861915,0.8864749,0.88675827,0.88704157,0.88732475,0.8876078,0.8878908,0.8881737,0.8884565,0.8887392,0.8890219,0.8893044,0.88958687,0.8898692,0.8901515,0.89043367,0.8907158,0.89099777,0.8912797,0.89156157,0.89184326,0.89212495,0.89240646,0.892688,0.89296937,0.89325064,0.89353186,0.89381295,0.894094,0.8943749,0.89465576,0.89493656,0.89521724,0.8954978,0.8957783,0.89605874,0.89633906,0.89661926,0.89689946,0.8971795,0.89745945,0.89773935,0.89801913,0.89829886,0.8985785,0.8988581,0.8991375,0.89941686,0.8996961,0.89997536,0.9002544,0.90053344,0.9008124,0.9010912,0.90137,0.90164864,0.90192723,0.90220577,0.9024842,0.9027625,0.90304077,0.9033189,0.903597,0.90387493,0.90415287,0.9044307,0.9047084,0.9049861,0.9052636,0.9055411,0.90581846,0.9060958,0.906373,0.9066501,0.90692717,0.90720415,0.9074811,0.9077578,0.90803456,0.9083112,0.90858775,0.9088642,0.9091406,0.90941685,0.90969306,0.9099692,0.91024524,0.9105212,0.91079706,0.91107285,0.9113486,0.9116242,0.91189975,0.9121752,0.91245055,0.91272587,0.91300106,0.9132762,0.9135512,0.91382617,0.91410106,0.91437584,0.91465056,0.9149252,0.91519976,0.9154742,0.9157486,0.9160229,0.9162971,0.91657126,0.91684526,0.91711926,0.91739315,0.917667,0.9179407,0.9182143,0.9184879,0.9187614,0.9190348,0.91930807,0.91958135,0.91985446,0.9201276,0.92040056,0.9206735,0.9209463,0.92121905,0.92149174,0.9217643,0.9220368,0.9223093,0.9225816,0.9228539,0.92312604,0.92339814,0.9236702,0.92394215,0.924214,0.9244858,0.9247575,0.92502916,0.92530066,0.92557216,0.92584354,0.92611486,0.92638606,0.9266572,0.9269283,0.9271993,0.9274702,0.92774105,0.9280118,0.92828244,0.92855304,0.9288236,0.929094,0.9293644,0.9296347,0.9299049,0.930175,0.930445,0.930715,0.9309849,0.9312547,0.93152446,0.9317941,0.9320637,0.9323332,0.9326026,0.93287194,0.93314123,0.9334104,0.9336795,0.9339485,0.9342175,0.9344864,0.93475515,0.9350239,0.93529254,0.9355611,0.9358296,0.93609804,0.9363664,0.9366346,0.9369028,0.9371709,0.93743896,0.9377069,0.93797475,0.93824255,0.9385103,0.9387779,0.93904555,0.939313,0.93958044,0.93984777,0.94011503,0.94038224,0.94064933,0.9409164,0.9411834,0.94145024,0.9417171,0.9419838,0.9422505,0.94251704,0.94278353,0.94305,0.94331634,0.94358265,0.94384885,0.944115,0.94438106,0.944647,0.94491297,0.9451788,0.9454445,0.94571024,0.94597584,0.9462414,0.94650686,0.9467722,0.9470375,0.94730276,0.94756794,0.94783306,0.94809806,0.948363,0.9486279,0.94889265,0.94915736,0.94942206,0.9496866,0.9499511,0.9502155,0.95047987,0.95074415,0.9510084,0.9512725,0.95153654,0.9518005,0.95206445,0.9523283,0.9525921,0.95285577,0.9531194,0.9533829,0.9536464,0.9539098,0.95417315,0.95443636,0.9546996,0.9549627,0.9552257,0.9554887,0.9557516,0.9560144,0.95627713,0.9565398,0.9568024,0.957065,0.9573274,0.9575898,0.9578521,0.9581144,0.9583766,0.95863867,0.9589007,0.95916265,0.95942456,0.95968634,0.9599481,0.9602098,0.9604714,0.9607329,0.96099436,0.9612557,0.9615171,0.96177834,0.9620395,0.9623006,0.9625616,0.9628226,0.9630835,0.9633443,0.96360505,0.96386576,0.96412635,0.9643869,0.96464735,0.96490777,0.96516806,0.96542835,0.9656885,0.96594864,0.9662087,0.9664687,0.96672857,0.96698844,0.9672482,0.9675079,0.96776754,0.96802706,0.9682866,0.968546,0.9688053,0.9690646,0.9693238,0.969583,0.969842,0.97010106,0.97036,0.97061884,0.97087765,0.9711364,0.971395,0.97165364,0.97191215,0.9721706,0.972429,0.9726873,0.9729456,0.9732037,0.97346187,0.9737199,0.97397786,0.9742358,0.9744936,0.97475135,0.9750091,0.9752667,0.97552425,0.97578174,0.9760392,0.97629654,0.97655386,0.97681105,0.97706825,0.9773253,0.97758234,0.9778393,0.9780962,0.97835296,0.97860974,0.9788664,0.97912306,0.9793796,0.9796361,0.9798925,0.98014885,0.9804051,0.98066133,0.98091745,0.9811736,0.9814296,0.9816855,0.9819414,0.9821972,0.982453,0.98270863,0.9829643,0.9832198,0.98347527,0.98373073,0.9839861,0.98424137,0.98449653,0.9847517,0.9850068,0.9852618,0.9855168,0.98577166,0.98602647,0.9862812,0.9865359,0.98679054,0.9870451,0.98729956,0.987554,0.98780835,0.9880627,0.9883169,0.98857105,0.98882514,0.9890792,0.98933315,0.98958707,0.98984087,0.99009466,0.9903484,0.990602,0.9908556,0.99110913,0.9913626,0.99161595,0.9918693,0.99212253,0.9923757,0.9926288,0.9928819,0.99313486,0.9933878,0.99364066,0.9938935,0.9941462,0.9943989,0.9946515,0.99490404,0.9951565,0.99540895,0.9956613,0.99591357,0.9961658,0.996418,0.99667007,0.99692214,0.9971741,0.997426,0.99767786,0.99792963,0.99818134,0.998433,0.9986846,0.9989361,0.9991876,0.99943894,0.9996903,0.9999416,1.0001928,1.0004439,1.000695,1.000946,1.001197,1.0014479,1.0016987,1.0019494,1.0022002,1.0024508,1.0027014,1.002952,1.0032024,1.0034528,1.0037031,1.0039533,1.0042036,1.0044538,1.0047039,1.0049539,1.0052038,1.0054537,1.0057036,1.0059533,1.006203,1.0064527,1.0067022,1.0069518,1.0072012,1.0074506,1.0077,1.0079492,1.0081985,1.0084476,1.0086967,1.0089457,1.0091947,1.0094436,1.0096924,1.0099412,1.01019,1.0104387,1.0106872,1.0109358,1.0111842,1.0114326,1.011681,1.0119293,1.0121776,1.0124257,1.0126739,1.0129219,1.0131699,1.0134178,1.0136657,1.0139135,1.0141612,1.014409,1.0146565,1.0149041,1.0151516,1.0153991,1.0156465,1.0158938,1.016141,1.0163883,1.0166354,1.0168825,1.0171295,1.0173765,1.0176234,1.0178702,1.0181171,1.0183637,1.0186105,1.018857,1.0191035,1.01935,1.0195965,1.0198429,1.0200891,1.0203354,1.0205816,1.0208278,1.0210738,1.0213199,1.0215658,1.0218117,1.0220575,1.0223032,1.022549,1.0227946,1.0230403,1.0232857,1.0235313,1.0237767,1.0240221,1.0242673,1.0245126,1.0247577,1.025003,1.0252479,1.025493,1.025738,1.0259829,1.0262277,1.0264724,1.0267172,1.0269618,1.0272064,1.027451,1.0276954,1.0279399,1.0281843,1.0284286,1.0286728,1.0289171,1.0291612,1.0294052,1.0296493,1.0298933,1.0301372,1.030381,1.0306247,1.0308685,1.0311122,1.0313559,1.0315994,1.0318428,1.0320863,1.0323297,1.032573,1.0328163,1.0330595,1.0333027,1.0335457,1.0337888,1.0340317,1.0342747,1.0345176,1.0347605,1.0350032,1.0352459,1.0354885,1.0357311,1.0359737,1.0362161,1.0364585,1.036701,1.0369432,1.0371854,1.0374277,1.0376698,1.0379119,1.0381539,1.0383959,1.0386378,1.0388796,1.0391214,1.0393631,1.0396048,1.0398464,1.040088,1.0403296,1.040571,1.0408124,1.0410538,1.041295,1.0415363,1.0417775,1.0420187,1.0422597,1.0425007,1.0427417,1.0429826,1.0432234,1.0434642,1.0437049,1.0439456,1.0441862,1.0444268,1.0446672,1.0449077,1.0451481,1.0453885,1.0456288,1.045869,1.0461092,1.0463493,1.0465894,1.0468295,1.0470694,1.0473093,1.0475491,1.047789,1.0480287,1.0482683,1.048508,1.0487475,1.0489872,1.0492265,1.049466,1.0497054,1.0499446,1.0501839,1.050423,1.0506622,1.0509013,1.0511403,1.0513793,1.0516182,1.0518571,1.0520959,1.0523347,1.0525733,1.052812,1.0530506,1.0532892,1.0535277,1.0537661,1.0540044,1.0542428,1.054481,1.0547193,1.0549575,1.0551956,1.0554336,1.0556717,1.0559096,1.0561475,1.0563854,1.0566231,1.0568609,1.0570985,1.0573362,1.0575738,1.0578113,1.0580487,1.0582862,1.0585235,1.0587609,1.0589981,1.0592353,1.0594724,1.0597095,1.0599467,1.0601836,1.0604205,1.0606574,1.0608943,1.061131,1.0613678,1.0616044,1.061841,1.0620776,1.0623142,1.0625505,1.062787,1.0630233,1.0632597,1.0634959,1.0637321,1.0639683,1.0642043,1.0644404,1.0646764,1.0649123,1.0651482,1.065384,1.0656198,1.0658556,1.0660913,1.0663269,1.0665624,1.066798,1.0670334,1.0672688,1.0675043,1.0677396,1.0679748,1.06821,1.0684452,1.0686803,1.0689154,1.0691503,1.0693853,1.0696203,1.0698551,1.0700898,1.0703247,1.0705593,1.070794,1.0710286,1.0712631,1.0714976,1.071732,1.0719664,1.0722008,1.072435,1.0726693,1.0729034,1.0731375,1.0733716,1.0736057,1.0738397,1.0740736,1.0743074,1.0745412,1.074775,1.0750087,1.0752424,1.075476,1.0757096,1.0759431,1.0761766,1.07641,1.0766433,1.0768768,1.0771099,1.0773432,1.0775764,1.0778095,1.0780425,1.0782756,1.0785085,1.0787414,1.0789744,1.0792071,1.0794399,1.0796726,1.0799053,1.0801378,1.0803704,1.080603,1.0808355,1.0810678,1.0813001,1.0815325,1.0817648,1.0819969,1.0822291,1.0824612,1.0826933,1.0829253,1.0831573,1.0833892,1.083621,1.0838529,1.0840846,1.0843164,1.084548,1.0847796,1.0850112,1.0852427,1.0854743,1.0857056,1.085937,1.0861683,1.0863996,1.0866308,1.086862,1.0870931,1.0873241,1.0875552,1.0877862,1.0880171,1.088248,1.0884788,1.0887096,1.0889404,1.089171,1.0894016,1.0896323,1.0898628,1.0900933,1.0903237,1.0905541,1.0907844,1.0910147,1.0912449,1.0914751,1.0917053,1.0919354,1.0921655,1.0923954,1.0926254,1.0928553,1.0930852,1.093315,1.0935447,1.0937744,1.0940042,1.0942338,1.0944633,1.0946928,1.0949223,1.0951518,1.0953811,1.0956104,1.0958397,1.096069,1.0962981,1.0965272,1.0967563,1.0969853,1.0972143,1.0974433,1.0976722,1.0979011,1.0981299,1.0983586,1.0985874,1.098816,1.0990446,1.0992732,1.0995017,1.0997301,1.0999585,1.100187,1.1004152,1.1006435,1.1008718,1.1011,1.1013281,1.1015562,1.1017842,1.1020123,1.1022402,1.102468,1.102696,1.1029238,1.1031514,1.1033792,1.1036068,1.1038345,1.1040621,1.1042895,1.1045171,1.1047444,1.1049719,1.1051992,1.1054265,1.1056538,1.105881,1.1061081,1.1063352,1.1065623,1.1067892,1.1070162,1.1072432,1.10747,1.1076969,1.1079236,1.1081504,1.108377,1.1086037,1.1088302,1.1090568,1.1092833,1.1095097,1.1097362,1.1099626,1.1101888,1.1104151,1.1106414,1.1108675,1.1110936,1.1113198,1.1115458,1.1117718,1.1119977,1.1122236,1.1124494,1.1126753,1.1129011,1.1131268,1.1133524,1.1135781,1.1138036,1.1140292,1.1142547,1.1144801,1.1147054,1.1149309,1.1151562,1.1153815,1.1156067,1.1158319,1.1160569,1.116282,1.116507,1.116732,1.116957,1.1171819,1.1174067,1.1176316,1.1178563,1.118081,1.1183057,1.1185303,1.1187549,1.1189795,1.1192039,1.1194284,1.1196527,1.1198771,1.1201015,1.1203257,1.1205499,1.1207741,1.1209983,1.1212224,1.1214464,1.1216704,1.1218944,1.1221182,1.1223421,1.1225659,1.1227897,1.1230134,1.1232371,1.1234608,1.1236843,1.1239079,1.1241314,1.1243548,1.1245782,1.1248016,1.125025,1.1252483,1.1254715,1.1256948,1.1259179,1.126141,1.126364,1.126587,1.1268101,1.127033,1.1272559,1.1274787,1.1277015,1.1279242,1.128147,1.1283697,1.1285923,1.1288148,1.1290374,1.1292598,1.1294823,1.1297047,1.129927,1.1301494,1.1303717,1.1305939,1.1308161,1.1310382,1.1312603,1.1314824,1.1317044,1.1319264,1.1321483,1.1323701,1.132592,1.1328138,1.1330355,1.1332573,1.1334789,1.1337005,1.1339221,1.1341437,1.1343652,1.1345866,1.134808,1.1350293,1.1352507,1.1354719,1.1356932,1.1359143,1.1361356,1.1363566,1.1365777,1.1367987,1.1370196,1.1372406,1.1374615,1.1376823,1.1379031,1.1381239,1.1383446,1.1385653,1.138786,1.1390065,1.139227,1.1394476,1.139668,1.1398884,1.1401088,1.1403291,1.1405494,1.1407697,1.1409899,1.1412101,1.1414301,1.1416502,1.1418703,1.1420903,1.1423103,1.1425301,1.14275,1.1429698,1.1431895,1.1434094,1.1436291,1.1438487,1.1440682,1.1442878,1.1445074,1.1447269,1.1449463,1.1451657,1.145385,1.1456044,1.1458237,1.146043,1.146262,1.1464813,1.1467004,1.1469194,1.1471385,1.1473575,1.1475763,1.1477953,1.1480141,1.1482329,1.1484517,1.1486704,1.1488892,1.1491078,1.1493264,1.149545,1.1497635,1.149982,1.1502004,1.1504188,1.1506371,1.1508554,1.1510737,1.151292,1.1515101,1.1517283,1.1519464,1.1521645,1.1523825,1.1526005,1.1528184,1.1530364,1.1532543,1.1534721,1.1536899,1.1539075,1.1541252,1.1543429,1.1545606,1.1547781,1.1549957,1.1552131,1.1554306,1.155648,1.1558654,1.1560827,1.1563,1.1565173,1.1567345,1.1569517,1.1571687,1.1573858,1.1576029,1.1578199,1.1580368,1.1582538,1.1584706,1.1586875,1.1589043,1.159121,1.1593378,1.1595545,1.1597711,1.1599877,1.1602042,1.1604208,1.1606373,1.1608536,1.1610701,1.1612864,1.1615027,1.161719,1.1619352,1.1621515,1.1623676,1.1625837,1.1627997,1.1630158,1.1632318,1.1634477,1.1636636,1.1638795,1.1640954,1.1643112,1.1645269,1.1647426,1.1649582,1.1651739,1.1653895,1.1656051,1.1658206,1.166036,1.1662515,1.1664668,1.1666822,1.1668975,1.1671128,1.1673281,1.1675433,1.1677585,1.1679735,1.1681886,1.1684036,1.1686187,1.1688336,1.1690485,1.1692634,1.1694783,1.169693,1.1699078,1.1701225,1.1703372,1.1705519,1.1707665,1.170981,1.1711955,1.1714101,1.1716244,1.1718389,1.1720532,1.1722676,1.1724819,1.1726961,1.1729103,1.1731246,1.1733387,1.1735528,1.1737667,1.1739808,1.1741948,1.1744087,1.1746227,1.1748365,1.1750503,1.1752641,1.1754779,1.1756915,1.1759052,1.1761189,1.1763324,1.176546,1.1767595,1.1769729,1.1771864,1.1773998,1.1776131,1.1778264,1.1780397,1.1782529,1.1784661,1.1786793,1.1788924,1.1791055,1.1793185,1.1795316,1.1797445,1.1799575,1.1801703,1.1803832,1.180596,1.1808088,1.1810216,1.1812342,1.1814469,1.1816596,1.1818721,1.1820847,1.1822971,1.1825097,1.1827221,1.1829345,1.1831468,1.1833591,1.1835715,1.1837837,1.1839958,1.184208,1.1844201,1.1846323,1.1848443,1.1850563,1.1852683,1.1854802,1.1856922,1.185904,1.1861159,1.1863276,1.1865394,1.1867511,1.1869627,1.1871744,1.187386,1.1875975,1.1878091,1.1880206,1.1882321,1.1884434,1.1886548,1.1888661,1.1890774,1.1892887,1.1894999,1.1897111,1.1899222,1.1901333,1.1903445,1.1905555,1.1907665,1.1909775,1.1911883,1.1913992,1.1916101,1.1918209,1.1920316,1.1922424,1.1924531,1.1926638,1.1928744,1.193085,1.1932955,1.193506,1.1937165,1.1939269,1.1941373,1.1943477,1.194558,1.1947683,1.1949786,1.1951888,1.1953989,1.1956091,1.1958193,1.1960293,1.1962394,1.1964493,1.1966593,1.1968693,1.1970791,1.197289,1.1974988,1.1977085,1.1979183,1.198128,1.1983377,1.1985472,1.1987568,1.1989664,1.199176,1.1993854,1.1995949,1.1998043,1.2000136,1.200223,1.2004323,1.2006415,1.2008507,1.2010599,1.2012691,1.2014782,1.2016873,1.2018963,1.2021053,1.2023143,1.2025232,1.2027321,1.2029411,1.2031498,1.2033587,1.2035674,1.2037761,1.2039847,1.2041935,1.204402,1.2046106,1.2048191,1.2050276,1.2052361,1.2054446,1.205653,1.2058613,1.2060696,1.2062778,1.2064861,1.2066944,1.2069025,1.2071106,1.2073188,1.2075268,1.2077348,1.2079428,1.2081509,1.2083588,1.2085667,1.2087744,1.2089823,1.2091901,1.2093978,1.2096056,1.2098132,1.2100209,1.2102284,1.210436,1.2106435,1.2108511,1.2110585,1.2112659,1.2114733,1.2116807,1.2118881,1.2120953,1.2123026,1.2125098,1.2127169,1.2129241,1.2131312,1.2133383,1.2135453,1.2137523,1.2139592,1.2141662,1.2143731,1.2145799,1.2147868,1.2149936,1.2152003,1.215407,1.2156137,1.2158204,1.216027,1.2162336,1.2164401,1.2166467,1.2168531,1.2170595,1.217266,1.2174723,1.2176787,1.2178849,1.2180912,1.2182975,1.2185036,1.2187098,1.2189159,1.219122,1.219328,1.219534,1.21974,1.219946,1.2201519,1.2203578,1.2205637,1.2207695,1.2209753,1.221181,1.2213867,1.2215924,1.2217981,1.2220036,1.2222092,1.2224147,1.2226202,1.2228256,1.2230312,1.2232366,1.2234418,1.2236472,1.2238525,1.2240578,1.224263,1.2244681,1.2246733,1.2248784,1.2250835,1.2252886,1.2254936,1.2256986,1.2259035,1.2261084,1.2263134,1.2265182,1.226723,1.2269278,1.2271324,1.2273372,1.2275419,1.2277465,1.2279512,1.2281557,1.2283603,1.2285647,1.2287692,1.2289736,1.2291781,1.2293824,1.2295867,1.229791,1.2299954,1.2301996,1.2304038,1.230608,1.2308121,1.2310162,1.2312202,1.2314242,1.2316283,1.2318323,1.2320361,1.2322401,1.2324439,1.2326478,1.2328515,1.2330552,1.233259,1.2334627,1.2336664,1.23387,1.2340735,1.2342771,1.2344806,1.2346841,1.2348876,1.2350911,1.2352945,1.2354978,1.2357011,1.2359045,1.2361077,1.2363108,1.2365141,1.2367172,1.2369204,1.2371235,1.2373265,1.2375295,1.2377325,1.2379354,1.2381384,1.2383413,1.2385441,1.238747,1.2389498,1.2391526,1.2393552,1.239558,1.2397606,1.2399632,1.2401658,1.2403684,1.2405709,1.2407733,1.2409759,1.2411783,1.2413807,1.241583,1.2417853,1.2419876,1.2421899,1.2423922,1.2425944,1.2427965,1.2429986,1.2432007,1.2434028,1.2436048,1.2438068,1.2440088,1.2442107,1.2444127,1.2446145,1.2448163,1.2450181,1.2452198,1.2454216,1.2456234,1.245825,1.2460266,1.2462282,1.2464298,1.2466314,1.2468328,1.2470343,1.2472358,1.2474372,1.2476386,1.2478399,1.2480413,1.2482425,1.2484437,1.248645,1.2488462,1.2490473,1.2492484,1.2494495,1.2496506,1.2498516,1.2500526,1.2502536,1.2504544,1.2506554,1.2508562,1.251057,1.2512579,1.2514586,1.2516593,1.25186,1.2520607,1.2522613,1.2524619,1.2526625,1.252863,1.2530636,1.2532641,1.2534645,1.2536649,1.2538652,1.2540656,1.2542659,1.2544662,1.2546664,1.2548667,1.2550669,1.255267,1.2554672,1.2556672,1.2558672,1.2560673,1.2562673,1.2564672,1.2566671,1.256867,1.257067,1.2572668,1.2574666,1.2576663,1.2578661,1.2580658,1.2582655,1.2584652,1.2586647,1.2588643,1.2590638,1.2592634,1.259463,1.2596624,1.2598618,1.2600611,1.2602606,1.2604599,1.2606591,1.2608584,1.2610576,1.2612568,1.261456,1.2616552,1.2618543,1.2620534,1.2622524,1.2624514,1.2626504,1.2628493,1.2630483,1.2632471,1.263446,1.2636448,1.2638437,1.2640424,1.2642411,1.2644398,1.2646385,1.2648371,1.2650357,1.2652344,1.2654328,1.2656314,1.2658299,1.2660283,1.2662268,1.2664251,1.2666235,1.2668219,1.2670201,1.2672184,1.2674166,1.2676148,1.267813,1.2680112,1.2682092,1.2684073,1.2686054,1.2688035,1.2690014,1.2691994,1.2693973,1.2695951,1.269793,1.2699909,1.2701887,1.2703865,1.2705842,1.2707819,1.2709796,1.2711773,1.2713748,1.2715725,1.27177,1.2719675,1.2721651,1.2723625,1.2725599,1.2727573,1.2729547,1.273152,1.2733493,1.2735466,1.2737439,1.273941,1.2741383,1.2743354,1.2745326,1.2747296,1.2749268,1.2751237,1.2753208,1.2755177,1.2757148,1.2759116,1.2761085,1.2763053,1.2765021,1.276699,1.2768958,1.2770925,1.2772892,1.2774858,1.2776825,1.2778791,1.2780757,1.2782723,1.2784687,1.2786652,1.2788618,1.2790581,1.2792546,1.2794509,1.2796472,1.2798436,1.2800398,1.2802361,1.2804323,1.2806284,1.2808247,1.2810208,1.2812169,1.281413,1.2816089,1.281805,1.282001,1.2821969,1.2823929,1.2825887,1.2827846,1.2829804,1.2831762,1.283372,1.2835678,1.2837634,1.2839592,1.2841548,1.2843504,1.284546,1.2847415,1.2849371,1.2851326,1.285328,1.2855235,1.2857189,1.2859143,1.2861097,1.286305,1.2865003,1.2866956,1.2868907,1.287086,1.2872812,1.2874763,1.2876714,1.2878665,1.2880616,1.2882566,1.2884516,1.2886466,1.2888415,1.2890364,1.2892313,1.2894261,1.289621,1.2898158,1.2900106,1.2902052,1.2903999,1.2905946,1.2907892,1.2909839,1.2911785,1.291373,1.2915676,1.2917621,1.2919565,1.292151,1.2923454,1.2925397,1.2927341,1.2929285,1.2931228,1.293317,1.2935113,1.2937055,1.2938997,1.2940937,1.2942879,1.294482,1.2946761,1.29487,1.2950641,1.295258,1.295452,1.295646,1.2958398,1.2960336,1.2962275,1.2964213,1.296615,1.2968088,1.2970024,1.2971961,1.2973899,1.2975835,1.297777,1.2979707,1.2981641,1.2983577,1.2985512,1.2987446,1.298938,1.2991314,1.2993248,1.2995181,1.2997115,1.2999047,1.300098,1.3002912,1.3004844,1.3006775,1.3008707,1.3010638,1.3012569,1.3014499,1.3016429,1.3018359,1.3020289,1.3022219,1.3024148,1.3026077,1.3028005,1.3029933,1.303186,1.3033788,1.3035716,1.3037643,1.303957,1.3041496,1.3043423,1.3045348,1.3047274,1.30492,1.3051125,1.3053049,1.3054974,1.3056898,1.3058822,1.3060746,1.3062669,1.3064592,1.3066515,1.3068438,1.307036,1.3072282,1.3074204,1.3076125,1.3078046,1.3079966,1.3081888,1.3083807,1.3085728,1.3087647,1.3089567,1.3091486,1.3093405,1.3095324,1.3097242,1.309916,1.3101077,1.3102995,1.3104912,1.3106829,1.3108746,1.3110662,1.3112578,1.3114494,1.311641,1.3118324,1.312024,1.3122154,1.3124069,1.3125982,1.3127897,1.312981,1.3131723,1.3133637,1.3135549,1.3137461,1.3139374,1.3141285,1.3143197,1.3145108,1.3147019,1.314893,1.3150841,1.3152751,1.315466,1.315657,1.315848,1.3160388,1.3162298,1.3164207,1.3166114,1.3168023,1.316993,1.3171837,1.3173745,1.3175652,1.3177558,1.3179464,1.318137,1.3183277,1.3185182,1.3187088,1.3188993,1.3190897,1.3192801,1.3194705,1.3196609,1.3198513,1.3200417,1.3202319,1.3204222,1.3206124,1.3208027,1.3209928,1.3211831,1.3213732,1.3215632,1.3217534,1.3219434,1.3221334,1.3223234,1.3225135,1.3227034,1.3228933,1.3230832,1.3232731,1.323463,1.3236527,1.3238425,1.3240323,1.324222,1.3244117,1.3246014,1.3247911,1.3249806,1.3251703,1.3253598,1.3255494,1.3257389,1.3259283,1.3261178,1.3263073,1.3264966,1.326686,1.3268753,1.3270648,1.327254,1.3274432,1.3276325,1.3278217,1.3280109,1.3282001,1.3283892,1.3285784,1.3287674,1.3289565,1.3291454,1.3293345,1.3295234,1.3297124,1.3299013,1.3300902,1.3302791,1.3304679,1.3306568,1.3308455,1.3310343,1.331223,1.3314117,1.3316004,1.331789,1.3319777,1.3321663,1.3323548,1.3325434,1.332732,1.3329204,1.3331089,1.3332973,1.3334857,1.3336741,1.3338624,1.3340508,1.3342391,1.3344274,1.3346156,1.3348038,1.334992,1.3351803,1.3353684,1.3355565,1.3357446,1.3359326,1.3361207,1.3363087,1.3364967,1.3366847,1.3368726,1.3370605,1.3372483,1.3374362,1.3376241,1.3378118,1.3379997,1.3381873,1.3383751,1.3385628,1.3387505,1.3389381,1.3391258,1.3393134,1.3395009,1.3396884,1.3398759,1.3400635,1.3402508,1.3404384,1.3406258,1.3408132,1.3410004,1.3411878,1.3413751,1.3415624,1.3417497,1.3419368,1.3421241,1.3423113,1.3424984,1.3426855,1.3428726,1.3430597,1.3432467,1.3434337,1.3436208,1.3438077,1.3439946,1.3441815,1.3443685,1.3445553,1.3447422,1.344929,1.3451157,1.3453025,1.3454891,1.345676,1.3458626,1.3460492,1.3462359,1.3464224,1.346609,1.3467956,1.3469821,1.3471686,1.3473551,1.3475416,1.347728,1.3479143,1.3481007,1.3482871,1.3484734,1.3486596,1.348846,1.3490322,1.3492184,1.3494046,1.3495908,1.3497769,1.349963,1.350149,1.3503351,1.3505212,1.3507072,1.3508931,1.3510791,1.3512651,1.3514509,1.3516369,1.3518227,1.3520086,1.3521943,1.3523802,1.3525659,1.3527516,1.3529373,1.353123,1.3533087,1.3534943,1.3536799,1.3538654,1.354051,1.3542365,1.354422,1.3546075,1.354793,1.3549783,1.3551637,1.3553492,1.3555344,1.3557198,1.355905,1.3560903,1.3562756,1.3564608,1.3566461,1.3568312,1.3570163,1.3572015,1.3573866,1.3575716,1.3577566,1.3579416,1.3581266,1.3583117,1.3584965,1.3586816,1.3588663,1.3590512,1.3592361,1.3594209,1.3596057,1.3597904,1.3599752,1.36016,1.3603446,1.3605293,1.360714,1.3608985,1.3610831,1.3612677,1.3614522,1.3616368,1.3618213,1.3620057,1.3621901,1.3623745,1.362559,1.3627434,1.3629277,1.363112,1.3632963,1.3634806,1.3636647,1.363849,1.3640332,1.3642174,1.3644015,1.3645856,1.3647697,1.3649538,1.3651378,1.3653219,1.3655058,1.3656898,1.3658738,1.3660576,1.3662416,1.3664254,1.3666093,1.3667932,1.3669769,1.3671607,1.3673444,1.3675281,1.3677118,1.3678955,1.3680792,1.3682628,1.3684464,1.3686299,1.3688135,1.368997,1.3691806,1.369364,1.3695475,1.3697308,1.3699143,1.3700976,1.370281,1.3704643,1.3706477,1.3708309,1.3710141,1.3711973,1.3713806,1.3715638,1.3717469,1.37193,1.3721132,1.3722962,1.3724793,1.3726623,1.3728454,1.3730284,1.3732113,1.3733943,1.3735771,1.37376,1.3739429,1.3741257,1.3743086,1.3744913,1.3746741,1.3748568,1.3750396,1.3752222,1.375405,1.3755876,1.3757702,1.3759528,1.3761353,1.3763179,1.3765005,1.3766829,1.3768654,1.3770479,1.3772303,1.3774127,1.3775951,1.3777775,1.3779597,1.378142,1.3783244,1.3785065,1.3786888,1.3788711,1.3790532,1.3792354,1.3794175,1.3795997,1.3797817,1.3799638,1.3801458,1.3803278,1.3805099,1.3806918,1.3808738,1.3810557,1.3812376,1.3814194,1.3816013,1.3817831,1.3819649,1.3821467,1.3823285,1.3825102,1.3826919,1.3828735,1.3830552,1.3832369,1.3834184,1.3836001,1.3837817,1.3839632,1.3841447,1.3843262,1.3845077,1.3846891,1.3848705,1.3850518,1.3852333,1.3854146,1.3855959,1.3857772,1.3859586,1.3861398,1.3863211,1.3865023,1.3866833,1.3868645,1.3870457,1.3872268,1.3874079,1.387589,1.38777,1.387951,1.388132,1.3883129,1.3884939,1.3886749,1.3888557,1.3890367,1.3892175,1.3893983,1.389579,1.3897599,1.3899406,1.3901213,1.3903021,1.3904828,1.3906635,1.3908441,1.3910247,1.3912053,1.3913859,1.3915664,1.391747,1.3919275,1.392108,1.3922883,1.3924688,1.3926492,1.3928297,1.3930099,1.3931903,1.3933706,1.3935509,1.3937311,1.3939114,1.3940916,1.3942719,1.394452,1.3946321,1.3948122,1.3949924,1.3951725,1.3953525,1.3955326,1.3957126,1.3958925,1.3960725,1.3962524,1.3964324,1.3966123,1.3967922,1.396972,1.3971518,1.3973316,1.3975114,1.3976911,1.3978709,1.3980505,1.3982303,1.39841,1.3985896,1.3987691,1.3989488,1.3991283,1.399308,1.3994874,1.3996669,1.3998464,1.4000258,1.4002053,1.4003847,1.4005641,1.4007435,1.4009228,1.4011021,1.4012815,1.4014606,1.4016399,1.4018191,1.4019984,1.4021776,1.4023567,1.4025358,1.402715,1.402894,1.4030731,1.4032521,1.4034312,1.4036102,1.4037892,1.4039681,1.404147,1.404326,1.4045048,1.4046837,1.4048625,1.4050413,1.4052202,1.4053988,1.4055777,1.4057564,1.405935,1.4061137,1.4062924,1.406471,1.4066496,1.4068283,1.4070069,1.4071853,1.4073639,1.4075423,1.4077208,1.4078993,1.4080777,1.4082562,1.4084345,1.4086128,1.4087912,1.4089695,1.4091479,1.4093261,1.4095043,1.4096825,1.4098607,1.410039,1.4102172,1.4103953,1.4105734,1.4107515,1.4109296,1.4111075,1.4112856,1.4114636,1.4116416,1.4118196,1.4119974,1.4121754,1.4123533,1.4125311,1.412709,1.4128869,1.4130646,1.4132423,1.4134201,1.4135978,1.4137756,1.4139533,1.4141309,1.4143085,1.4144862,1.4146638,1.4148414,1.4150189,1.4151964,1.4153739,1.4155514,1.4157289,1.4159063,1.4160838,1.4162612,1.4164386,1.416616,1.4167932,1.4169706,1.4171479,1.4173251,1.4175024,1.4176795,1.4178568,1.418034,1.4182111,1.4183882,1.4185654,1.4187424,1.4189194,1.4190966,1.4192736,1.4194505,1.4196275,1.4198045,1.4199815,1.4201584,1.4203353,1.4205121,1.420689,1.4208658,1.4210426,1.4212193,1.4213961,1.4215728,1.4217496,1.4219263,1.4221029,1.4222796,1.4224561,1.4226328,1.4228094,1.4229859,1.4231625,1.423339,1.4235154,1.423692,1.4238684,1.4240448,1.4242213,1.4243976,1.424574,1.4247503,1.4249266,1.425103,1.4252793,1.4254555,1.4256318,1.425808,1.4259841,1.4261603,1.4263364,1.4265126,1.4266887,1.4268647,1.4270408,1.4272169,1.4273928,1.4275688,1.4277449,1.4279208,1.4280967,1.4282726,1.4284484,1.4286244,1.4288002,1.428976,1.4291518,1.4293276,1.4295033,1.429679,1.4298548,1.4300305,1.4302062,1.4303818,1.4305574,1.430733,1.4309086,1.4310842,1.4312598,1.4314352,1.4316107,1.4317862,1.4319617,1.432137,1.4323125,1.4324878,1.4326632,1.4328386,1.4330139,1.4331892,1.4333645,1.4335397,1.433715,1.4338902,1.4340655,1.4342406,1.4344157,1.4345908,1.4347659,1.434941,1.4351162,1.4352912,1.4354662,1.4356412,1.4358162,1.4359912,1.436166,1.436341,1.4365159,1.4366908,1.4368657,1.4370404,1.4372153,1.4373901,1.4375648,1.4377396,1.4379143,1.438089,1.4382637,1.4384384,1.438613,1.4387876,1.4389622,1.4391369,1.4393114,1.4394859,1.4396604,1.439835,1.4400094,1.4401839,1.4403583,1.4405327,1.4407071,1.4408814,1.4410558,1.44123,1.4414043,1.4415786,1.4417529,1.4419272,1.4421014,1.4422756,1.4424498,1.442624,1.442798,1.4429722,1.4431462,1.4433204,1.4434944,1.4436685,1.4438424,1.4440165,1.4441904,1.4443643,1.4445382,1.4447122,1.4448861,1.4450599,1.4452337,1.4454076,1.4455814,1.4457551,1.4459289,1.4461026,1.4462764,1.4464501,1.4466238,1.4467974,1.446971,1.4471446,1.4473182,1.4474918,1.4476653,1.4478389,1.4480124,1.4481859,1.4483594,1.4485328,1.4487063,1.4488796,1.449053,1.4492264,1.4493997,1.449573,1.4497464,1.4499196,1.4500929,1.4502661,1.4504393,1.4506125,1.4507858,1.4509588,1.4511319,1.4513052,1.4514782,1.4516512,1.4518243,1.4519974,1.4521704,1.4523433,1.4525163,1.4526893,1.4528623,1.4530351,1.453208,1.4533808,1.4535537,1.4537265,1.4538994,1.4540721,1.4542449,1.4544176,1.4545903,1.454763,1.4549358,1.4551084,1.455281,1.4554536,1.4556262,1.4557989,1.4559714,1.456144,1.4563165,1.456489,1.4566615,1.456834,1.4570063,1.4571787,1.4573512,1.4575236,1.4576958,1.4578682,1.4580406,1.4582129,1.4583851,1.4585574,1.4587296,1.4589018,1.459074,1.4592462,1.4594183,1.4595904,1.4597626,1.4599347,1.4601067,1.4602787,1.4604508,1.4606228,1.4607948,1.4609668,1.4611387,1.4613106,1.4614825,1.4616544,1.4618263,1.4619982,1.46217,1.4623418,1.4625136,1.4626853,1.4628571,1.4630288,1.4632006,1.4633722,1.4635439,1.4637156,1.4638872,1.4640588,1.4642304,1.464402,1.4645735,1.464745,1.4649165,1.465088,1.4652594,1.4654309,1.4656023,1.4657737,1.4659451,1.4661164,1.4662879,1.4664592,1.4666305,1.4668018,1.4669731,1.4671443,1.4673154,1.4674867,1.4676579,1.467829,1.4680002,1.4681714,1.4683424,1.4685135,1.4686846,1.4688556,1.4690267,1.4691976,1.4693686,1.4695396,1.4697106,1.4698814,1.4700524,1.4702233,1.4703941,1.470565,1.4707358,1.4709066,1.4710774,1.4712481,1.4714189,1.4715897,1.4717604,1.471931,1.4721017,1.4722724,1.472443,1.4726136,1.4727842,1.4729548,1.4731253,1.4732958,1.4734664,1.4736369,1.4738073,1.4739778,1.4741482,1.4743186,1.474489,1.4746593,1.4748297,1.475,1.4751704,1.4753406,1.475511,1.4756812,1.4758514,1.4760216,1.4761919,1.476362,1.4765322,1.4767023,1.4768724,1.4770426,1.4772125,1.4773827,1.4775527,1.4777228,1.4778928,1.4780626,1.4782326,1.4784026,1.4785725,1.4787424,1.4789124,1.4790821,1.479252,1.4794219,1.4795916,1.4797614,1.4799312,1.4801009,1.4802706,1.4804404,1.48061,1.4807798,1.4809494,1.481119,1.4812886,1.4814582,1.4816278,1.4817973,1.4819669,1.4821364,1.4823059,1.4824753,1.4826448,1.4828142,1.4829836,1.483153,1.4833224,1.4834918,1.483661,1.4838305,1.4839997,1.484169,1.4843383,1.4845076,1.4846767,1.484846,1.4850152,1.4851843,1.4853535,1.4855225,1.4856917,1.4858607,1.4860299,1.4861989,1.486368,1.4865369,1.4867059,1.4868749,1.4870439,1.4872128,1.4873817,1.4875506,1.4877194,1.4878883,1.4880571,1.4882259,1.4883947,1.4885635,1.4887323,1.488901,1.4890698,1.4892385,1.4894072,1.4895759,1.4897444,1.4899131,1.4900817,1.4902503,1.4904189,1.4905875,1.4907559,1.4909245,1.4910929,1.4912615,1.4914299,1.4915984,1.4917668,1.4919351,1.4921036,1.4922719,1.4924402,1.4926085,1.4927769,1.4929452,1.4931134,1.4932817,1.4934499,1.4936181,1.4937863,1.4939544,1.4941226,1.4942907,1.4944589,1.494627,1.4947951,1.494963,1.4951311,1.4952992,1.4954672,1.4956352,1.4958031,1.4959711,1.4961389,1.4963069,1.4964747,1.4966427,1.4968106,1.4969783,1.4971461,1.497314,1.4974817,1.4976494,1.4978172,1.4979849,1.4981526,1.4983203,1.498488,1.4986557,1.4988233,1.4989909,1.4991585,1.499326,1.4994936,1.4996611,1.4998286,1.4999961,1.5001636,1.500331,1.5004985,1.5006659,1.5008333,1.5010006,1.501168,1.5013354,1.5015028,1.50167,1.5018373,1.5020046,1.5021719,1.502339,1.5025063,1.5026735,1.5028406,1.5030078,1.5031749,1.503342,1.5035092,1.5036763,1.5038433,1.5040103,1.5041775,1.5043445,1.5045114,1.5046784,1.5048454,1.5050123,1.5051792,1.5053461,1.505513,1.5056798,1.5058466,1.5060135,1.5061803,1.5063471,1.5065138,1.5066806,1.5068474,1.507014,1.5071808,1.5073475,1.5075141,1.5076808,1.5078473,1.508014,1.5081805,1.5083472,1.5085137,1.5086802,1.5088466,1.5090132,1.5091797,1.5093461,1.5095125,1.509679,1.5098454,1.5100118,1.5101781,1.5103445,1.5105108,1.5106771,1.5108434,1.5110097,1.511176,1.5113422,1.5115083,1.5116746,1.5118408,1.512007,1.512173,1.5123392,1.5125053,1.5126715,1.5128375,1.5130036,1.5131695,1.5133356,1.5135016,1.5136676,1.5138335,1.5139995,1.5141654,1.5143313,1.5144972,1.5146631,1.5148289,1.5149947,1.5151606,1.5153264,1.5154922,1.5156579,1.5158237,1.5159894,1.5161551,1.5163208,1.5164865,1.5166521,1.5168178,1.5169834,1.517149,1.5173146,1.5174801,1.5176457,1.5178112,1.5179768,1.5181422,1.5183077,1.5184731,1.5186386,1.518804,1.5189694,1.5191348,1.5193001,1.5194654,1.5196308,1.5197961,1.5199615,1.5201267,1.5202919,1.5204573,1.5206225,1.5207876,1.5209528,1.521118,1.5212831,1.5214483,1.5216134,1.5217785,1.5219436,1.5221087,1.5222737,1.5224386,1.5226038,1.5227687,1.5229337,1.5230986,1.5232636,1.5234284,1.5235934,1.5237583,1.5239232,1.5240879,1.5242528,1.5244176,1.5245824,1.5247471,1.5249119,1.5250766,1.5252414,1.5254061,1.5255708,1.5257355,1.5259001,1.5260648,1.5262294,1.5263939,1.5265585,1.526723,1.5268877,1.5270522,1.5272167,1.5273812,1.5275456,1.5277101,1.5278745,1.528039,1.5282034,1.5283678,1.5285321,1.5286964,1.5288608,1.5290251,1.5291893,1.5293536,1.5295179,1.5296822,1.5298464,1.5300106,1.5301749,1.530339,1.5305032,1.5306673,1.5308313,1.5309955,1.5311595,1.5313237,1.5314877,1.5316517,1.5318158,1.5319797,1.5321437,1.5323076,1.5324717,1.5326356,1.5327995,1.5329634,1.5331272,1.5332911,1.5334549,1.5336187,1.5337826,1.5339463,1.5341101,1.5342739,1.5344375,1.5346013,1.534765,1.5349287,1.5350924,1.535256,1.5354196,1.5355833,1.5357468,1.5359104,1.5360739,1.5362375,1.536401,1.5365646,1.536728,1.5368915,1.537055,1.5372185,1.5373818,1.5375452,1.5377086,1.537872,1.5380354,1.5381987,1.538362,1.5385253,1.5386885,1.5388519,1.539015,1.5391783,1.5393416,1.5395048,1.5396678,1.539831,1.5399942,1.5401573,1.5403204,1.5404835,1.5406466,1.5408096,1.5409727,1.5411357,1.5412987,1.5414617,1.5416247,1.5417876,1.5419506,1.5421135,1.5422764,1.5424393,1.5426022,1.542765,1.5429279,1.5430907,1.5432534,1.5434163,1.543579,1.5437417,1.5439044,1.5440671,1.5442299,1.5443926,1.5445552,1.5447179,1.5448805,1.5450431,1.5452057,1.5453683,1.5455308,1.5456934,1.5458559,1.5460184,1.5461808,1.5463433,1.5465058,1.5466683,1.5468307,1.5469931,1.5471555,1.5473179,1.5474802,1.5476426,1.5478048,1.5479672,1.5481294,1.5482917,1.5484539,1.5486162,1.5487784,1.5489407,1.5491028,1.549265,1.5494272,1.5495893,1.5497514,1.5499135,1.5500755,1.5502377,1.5503997,1.5505617,1.5507238,1.5508857,1.5510477,1.5512097,1.5513716,1.5515336,1.5516955,1.5518574,1.5520192,1.5521811,1.5523429,1.5525048,1.5526665,1.5528284,1.5529902,1.553152,1.5533136,1.5534754,1.5536371,1.5537988,1.5539604,1.5541221,1.5542837,1.5544454,1.554607,1.5547686,1.5549302,1.5550917,1.5552533,1.5554148,1.5555763,1.5557379,1.5558993,1.5560608,1.5562222,1.5563836,1.556545,1.5567064,1.5568678,1.5570291,1.5571905,1.5573518,1.5575131,1.5576744,1.5578357,1.557997,1.5581582,1.5583194,1.5584806,1.5586418,1.558803,1.5589641,1.5591253,1.5592865,1.5594475,1.5596086,1.5597697,1.5599308,1.5600919,1.5602528,1.5604138,1.5605748,1.5607358,1.5608968,1.5610577,1.5612186,1.5613796,1.5615405,1.5617013,1.5618621,1.562023,1.5621839,1.5623447,1.5625055,1.5626662,1.562827,1.5629877,1.5631484,1.5633092,1.5634699,1.5636305,1.5637912,1.5639518,1.5641124,1.5642731,1.5644337,1.5645943,1.5647548,1.5649153,1.5650759,1.5652363,1.5653969,1.5655574,1.5657178,1.5658783,1.5660387,1.5661991,1.5663595,1.5665199,1.5666803,1.5668406,1.567001,1.5671612,1.5673215,1.5674819,1.5676421,1.5678023,1.5679625,1.5681227,1.568283,1.5684432,1.5686034,1.5687635,1.5689236,1.5690838,1.5692439,1.5694039,1.569564,1.5697241,1.5698841,1.5700442,1.5702041,1.5703641,1.5705241,1.5706841,1.5708439,1.5710039,1.5711638,1.5713238,1.5714836,1.5716435,1.5718033,1.5719631,1.5721229,1.5722827,1.5724425,1.5726023,1.572762,1.5729218,1.5730814,1.5732411,1.5734009,1.5735605,1.5737201,1.5738797,1.5740393,1.574199,1.5743586,1.5745181,1.5746777,1.5748372,1.5749967,1.5751562,1.5753157,1.5754752,1.5756346,1.5757941,1.5759535,1.5761129,1.5762722,1.5764316,1.576591,1.5767503,1.5769097,1.5770689,1.5772283,1.5773876,1.5775468,1.577706,1.5778652,1.5780245,1.5781837,1.5783428,1.578502,1.5786612,1.5788203,1.5789794,1.5791385,1.5792975,1.5794567,1.5796157,1.5797747,1.5799338,1.5800928,1.5802517,1.5804107,1.5805696,1.5807287,1.5808876,1.5810465,1.5812054,1.5813642,1.5815231,1.581682,1.5818408,1.5819995,1.5821583,1.5823171,1.5824759,1.5826347,1.5827934,1.5829521,1.5831108,1.5832695,1.5834281,1.5835868,1.5837455,1.583904,1.5840627,1.5842212,1.5843798,1.5845383,1.5846969,1.5848554,1.585014,1.5851724,1.585331],"x":[0.0,0.0001599360255897641,0.0003198720511795282,0.0004798080767692923,0.0006397441023590564,0.0007996801279488205,0.0009596161535385846,0.0011195521791283487,0.0012794882047181128,0.0014394242303078768,0.001599360255897641,0.001759296281487405,0.0019192323070771691,0.0020791683326669332,0.0022391043582566973,0.0023990403838464614,0.0025589764094362255,0.0027189124350259896,0.0028788484606157537,0.003038784486205518,0.003198720511795282,0.003358656537385046,0.00351859256297481,0.003678528588564574,0.0038384646141543383,0.003998400639744102,0.0041583366653338664,0.0043182726909236305,0.004478208716513395,0.004638144742103159,0.004798080767692923,0.004958016793282687,0.005117952818872451,0.005277888844462215,0.005437824870051979,0.005597760895641743,0.005757696921231507,0.0059176329468212715,0.006077568972411036,0.0062375049980008,0.006397441023590564,0.006557377049180328,0.006717313074770092,0.006877249100359856,0.00703718512594962,0.007197121151539384,0.007357057177129148,0.007516993202718912,0.0076769292283086765,0.00783686525389844,0.007996801279488205,0.008156737305077969,0.008316673330667733,0.008476609356257497,0.008636545381847261,0.008796481407437025,0.00895641743302679,0.009116353458616553,0.009276289484206317,0.009436225509796082,0.009596161535385846,0.00975609756097561,0.009916033586565374,0.010075969612155138,0.010235905637744902,0.010395841663334666,0.01055577768892443,0.010715713714514194,0.010875649740103958,0.011035585765693723,0.011195521791283487,0.01135545781687325,0.011515393842463015,0.011675329868052779,0.011835265893642543,0.011995201919232307,0.012155137944822071,0.012315073970411835,0.0124750099960016,0.012634946021591363,0.012794882047181128,0.012954818072770892,0.013114754098360656,0.01327469012395042,0.013434626149540184,0.013594562175129948,0.013754498200719712,0.013914434226309476,0.01407437025189924,0.014234306277489004,0.014394242303078768,0.014554178328668533,0.014714114354258297,0.01487405037984806,0.015033986405437825,0.015193922431027589,0.015353858456617353,0.015513794482207117,0.01567373050779688,0.015833666533386647,0.01599360255897641,0.016153538584566175,0.016313474610155938,0.016473410635745703,0.016633346661335466,0.01679328268692523,0.016953218712514994,0.01711315473810476,0.017273090763694522,0.017433026789284288,0.01759296281487405,0.017752898840463816,0.01791283486605358,0.018072770891643344,0.018232706917233107,0.018392642942822873,0.018552578968412635,0.0187125149940024,0.018872451019592163,0.01903238704518193,0.01919232307077169,0.019352259096361457,0.01951219512195122,0.019672131147540985,0.019832067173130748,0.019992003198720514,0.020151939224310276,0.02031187524990004,0.020471811275489804,0.02063174730107957,0.020791683326669332,0.020951619352259098,0.02111155537784886,0.021271491403438626,0.02143142742902839,0.021591363454618154,0.021751299480207917,0.021911235505797683,0.022071171531387445,0.02223110755697721,0.022391043582566973,0.02255097960815674,0.0227109156337465,0.022870851659336267,0.02303078768492603,0.023190723710515795,0.023350659736105558,0.023510595761695324,0.023670531787285086,0.023830467812874852,0.023990403838464614,0.02415033986405438,0.024310275889644142,0.024470211915233908,0.02463014794082367,0.024790083966413436,0.0249500199920032,0.025109956017592965,0.025269892043182727,0.025429828068772493,0.025589764094362255,0.02574970011995202,0.025909636145541783,0.02606957217113155,0.02622950819672131,0.026389444222311077,0.02654938024790084,0.026709316273490605,0.026869252299080368,0.027029188324670134,0.027189124350259896,0.027349060375849662,0.027508996401439424,0.02766893242702919,0.027828868452618952,0.027988804478208718,0.02814874050379848,0.028308676529388246,0.02846861255497801,0.028628548580567775,0.028788484606157537,0.028948420631747303,0.029108356657337065,0.02926829268292683,0.029428228708516593,0.02958816473410636,0.02974810075969612,0.029908036785285887,0.03006797281087565,0.030227908836465416,0.030387844862055178,0.030547780887644944,0.030707716913234706,0.030867652938824472,0.031027588964414234,0.031187524990004,0.03134746101559376,0.03150739704118353,0.031667333066773294,0.03182726909236305,0.03198720511795282,0.032147141143542585,0.03230707716913235,0.03246701319472211,0.032626949220311875,0.03278688524590164,0.03294682127149141,0.033106757297081166,0.03326669332267093,0.0334266293482607,0.03358656537385046,0.03374650139944022,0.03390643742502999,0.034066373450619754,0.03422630947620952,0.03438624550179928,0.034546181527389044,0.03470611755297881,0.034866053578568576,0.035025989604158335,0.0351859256297481,0.03534586165533787,0.03550579768092763,0.03566573370651739,0.03582566973210716,0.03598560575769692,0.03614554178328669,0.03630547780887645,0.036465413834466213,0.03662534986005598,0.036785285885645745,0.036945221911235504,0.03710515793682527,0.037265093962415036,0.0374250299880048,0.03758496601359456,0.037744902039184326,0.03790483806477409,0.03806477409036386,0.03822471011595362,0.03838464614154338,0.03854458216713315,0.038704518192722914,0.03886445421831267,0.03902439024390244,0.039184326269492205,0.03934426229508197,0.03950419832067173,0.039664134346261495,0.03982407037185126,0.03998400639744103,0.040143942423030786,0.04030387844862055,0.04046381447421032,0.04062375049980008,0.04078368652538984,0.04094362255097961,0.041103558576569374,0.04126349460215914,0.0414234306277489,0.041583366653338664,0.04174330267892843,0.041903238704518196,0.042063174730107955,0.04222311075569772,0.04238304678128749,0.04254298280687725,0.04270291883246701,0.04286285485805678,0.04302279088364654,0.04318272690923631,0.04334266293482607,0.043502598960415834,0.0436625349860056,0.043822471011595365,0.043982407037185124,0.04414234306277489,0.044302279088364656,0.04446221511395442,0.04462215113954418,0.044782087165133946,0.04494202319072371,0.04510195921631348,0.04526189524190324,0.045421831267493,0.04558176729308277,0.045741703318672534,0.04590163934426229,0.04606157536985206,0.046221511395441825,0.04638144742103159,0.04654138344662135,0.046701319472211116,0.04686125549780088,0.04702119152339065,0.047181127548980406,0.04734106357457017,0.04750099960015994,0.047660935625749704,0.04782087165133946,0.04798080767692923,0.048140743702518994,0.04830067972810876,0.04846061575369852,0.048620551779288285,0.04878048780487805,0.048940423830467816,0.049100359856057575,0.04926029588164734,0.04942023190723711,0.04958016793282687,0.04974010395841663,0.0499000399840064,0.05005997600959616,0.05021991203518593,0.05037984806077569,0.050539784086365454,0.05069972011195522,0.050859656137544985,0.051019592163134744,0.05117952818872451,0.051339464214314276,0.05149940023990404,0.0516593362654938,0.051819272291083567,0.05197920831667333,0.0521391443422631,0.05229908036785286,0.05245901639344262,0.05261895241903239,0.052778888444622155,0.05293882447021191,0.05309876049580168,0.053258696521391445,0.05341863254698121,0.05357856857257097,0.053738504598160736,0.0538984406237505,0.05405837664934027,0.054218312674930026,0.05437824870051979,0.05453818472610956,0.054698120751699324,0.05485805677728908,0.05501799280287885,0.055177928828468614,0.05533786485405838,0.05549780087964814,0.055657736905237905,0.05581767293082767,0.055977608956417436,0.056137544982007195,0.05629748100759696,0.05645741703318673,0.05661735305877649,0.05677728908436625,0.05693722510995602,0.05709716113554578,0.05725709716113555,0.05741703318672531,0.057576969212315074,0.05773690523790484,0.057896841263494606,0.058056777289084364,0.05821671331467413,0.058376649340263896,0.05853658536585366,0.05869652139144342,0.05885645741703319,0.05901639344262295,0.05917632946821272,0.05933626549380248,0.05949620151939224,0.05965613754498201,0.059816073570571775,0.059976009596161534,0.0601359456217513,0.060295881647341065,0.06045581767293083,0.06061575369852059,0.060775689724110356,0.06093562574970012,0.06109556177528989,0.061255497800879646,0.06141543382646941,0.06157536985205918,0.061735305877648944,0.0618952419032387,0.06205517792882847,0.062215113954418234,0.062375049980008,0.06253498600559776,0.06269492203118752,0.06285485805677729,0.06301479408236706,0.06317473010795682,0.06333466613354659,0.06349460215913634,0.0636545381847261,0.06381447421031587,0.06397441023590564,0.0641343462614954,0.06429428228708517,0.06445421831267494,0.0646141543382647,0.06477409036385445,0.06493402638944422,0.06509396241503398,0.06525389844062375,0.06541383446621352,0.06557377049180328,0.06573370651739305,0.06589364254298281,0.06605357856857257,0.06621351459416233,0.0663734506197521,0.06653338664534186,0.06669332267093163,0.0668532586965214,0.06701319472211116,0.06717313074770093,0.06733306677329068,0.06749300279888044,0.06765293882447021,0.06781287485005998,0.06797281087564974,0.06813274690123951,0.06829268292682927,0.06845261895241904,0.06861255497800879,0.06877249100359856,0.06893242702918832,0.06909236305477809,0.06925229908036785,0.06941223510595762,0.06957217113154739,0.06973210715713715,0.0698920431827269,0.07005197920831667,0.07021191523390644,0.0703718512594962,0.07053178728508597,0.07069172331067573,0.0708516593362655,0.07101159536185526,0.07117153138744502,0.07133146741303478,0.07149140343862455,0.07165133946421431,0.07181127548980408,0.07197121151539385,0.07213114754098361,0.07229108356657338,0.07245101959216313,0.0726109556177529,0.07277089164334266,0.07293082766893243,0.07309076369452219,0.07325069972011196,0.07341063574570172,0.07357057177129149,0.07373050779688124,0.07389044382247101,0.07405037984806077,0.07421031587365054,0.0743702518992403,0.07453018792483007,0.07469012395041984,0.0748500599760096,0.07500999600159935,0.07516993202718912,0.07532986805277889,0.07548980407836865,0.07564974010395842,0.07580967612954818,0.07596961215513795,0.07612954818072772,0.07628948420631747,0.07644942023190723,0.076609356257497,0.07676929228308677,0.07692922830867653,0.0770891643342663,0.07724910035985606,0.07740903638544583,0.07756897241103558,0.07772890843662535,0.07788884446221511,0.07804878048780488,0.07820871651339464,0.07836865253898441,0.07852858856457418,0.07868852459016394,0.0788484606157537,0.07900839664134346,0.07916833266693322,0.07932826869252299,0.07948820471811276,0.07964814074370252,0.07980807676929229,0.07996801279488205,0.0801279488204718,0.08028788484606157,0.08044782087165134,0.0806077568972411,0.08076769292283087,0.08092762894842064,0.0810875649740104,0.08124750099960017,0.08140743702518992,0.08156737305077968,0.08172730907636945,0.08188724510195922,0.08204718112754898,0.08220711715313875,0.08236705317872851,0.08252698920431828,0.08268692522990803,0.0828468612554978,0.08300679728108756,0.08316673330667733,0.0833266693322671,0.08348660535785686,0.08364654138344663,0.08380647740903639,0.08396641343462614,0.08412634946021591,0.08428628548580568,0.08444622151139544,0.08460615753698521,0.08476609356257497,0.08492602958816474,0.0850859656137545,0.08524590163934426,0.08540583766493402,0.08556577369052379,0.08572570971611355,0.08588564574170332,0.08604558176729309,0.08620551779288285,0.08636545381847262,0.08652538984406237,0.08668532586965214,0.0868452618952419,0.08700519792083167,0.08716513394642143,0.0873250699720112,0.08748500599760096,0.08764494202319073,0.08780487804878048,0.08796481407437025,0.08812475009996001,0.08828468612554978,0.08844462215113955,0.08860455817672931,0.08876449420231908,0.08892443022790884,0.0890843662534986,0.08924430227908836,0.08940423830467813,0.08956417433026789,0.08972411035585766,0.08988404638144742,0.09004398240703719,0.09020391843262696,0.09036385445821671,0.09052379048380647,0.09068372650939624,0.090843662534986,0.09100359856057577,0.09116353458616554,0.0913234706117553,0.09148340663734507,0.09164334266293482,0.09180327868852459,0.09196321471411435,0.09212315073970412,0.09228308676529388,0.09244302279088365,0.09260295881647342,0.09276289484206318,0.09292283086765293,0.0930827668932427,0.09324270291883247,0.09340263894442223,0.093562574970012,0.09372251099560176,0.09388244702119153,0.0940423830467813,0.09420231907237105,0.09436225509796081,0.09452219112355058,0.09468212714914034,0.09484206317473011,0.09500199920031988,0.09516193522590964,0.09532187125149941,0.09548180727708916,0.09564174330267892,0.09580167932826869,0.09596161535385846,0.09612155137944822,0.09628148740503799,0.09644142343062775,0.09660135945621752,0.09676129548180727,0.09692123150739704,0.0970811675329868,0.09724110355857657,0.09740103958416634,0.0975609756097561,0.09772091163534587,0.09788084766093563,0.09804078368652538,0.09820071971211515,0.09836065573770492,0.09852059176329468,0.09868052778888445,0.09884046381447421,0.09900039984006398,0.09916033586565375,0.0993202718912435,0.09948020791683326,0.09964014394242303,0.0998000799680128,0.09996001599360256,0.10011995201919233,0.10027988804478209,0.10043982407037186,0.10059976009596161,0.10075969612155138,0.10091963214714114,0.10107956817273091,0.10123950419832067,0.10139944022391044,0.1015593762495002,0.10171931227508997,0.10187924830067972,0.10203918432626949,0.10219912035185925,0.10235905637744902,0.10251899240303879,0.10267892842862855,0.10283886445421832,0.10299880047980808,0.10315873650539784,0.1033186725309876,0.10347860855657737,0.10363854458216713,0.1037984806077569,0.10395841663334666,0.10411835265893643,0.1042782886845262,0.10443822471011595,0.10459816073570571,0.10475809676129548,0.10491803278688525,0.10507796881247501,0.10523790483806478,0.10539784086365454,0.10555777688924431,0.10571771291483406,0.10587764894042383,0.10603758496601359,0.10619752099160336,0.10635745701719312,0.10651739304278289,0.10667732906837266,0.10683726509396242,0.10699720111955217,0.10715713714514194,0.1073170731707317,0.10747700919632147,0.10763694522191124,0.107796881247501,0.10795681727309077,0.10811675329868053,0.10827668932427029,0.10843662534986005,0.10859656137544982,0.10875649740103958,0.10891643342662935,0.10907636945221912,0.10923630547780888,0.10939624150339865,0.1095561775289884,0.10971611355457817,0.10987604958016793,0.1100359856057577,0.11019592163134746,0.11035585765693723,0.110515793682527,0.11067572970811676,0.11083566573370651,0.11099560175929628,0.11115553778488604,0.11131547381047581,0.11147540983606558,0.11163534586165534,0.11179528188724511,0.11195521791283487,0.11211515393842462,0.11227508996401439,0.11243502598960416,0.11259496201519392,0.11275489804078369,0.11291483406637345,0.11307477009196322,0.11323470611755299,0.11339464214314274,0.1135545781687325,0.11371451419432227,0.11387445021991204,0.1140343862455018,0.11419432227109157,0.11435425829668133,0.1145141943222711,0.11467413034786085,0.11483406637345062,0.11499400239904038,0.11515393842463015,0.11531387445021991,0.11547381047580968,0.11563374650139945,0.11579368252698921,0.11595361855257896,0.11611355457816873,0.1162734906037585,0.11643342662934826,0.11659336265493803,0.11675329868052779,0.11691323470611756,0.11707317073170732,0.11723310675729708,0.11739304278288684,0.11755297880847661,0.11771291483406637,0.11787285085965614,0.1180327868852459,0.11819272291083567,0.11835265893642544,0.11851259496201519,0.11867253098760495,0.11883246701319472,0.11899240303878449,0.11915233906437425,0.11931227508996402,0.11947221111555378,0.11963214714114355,0.1197920831667333,0.11995201919232307,0.12011195521791283,0.1202718912435026,0.12043182726909236,0.12059176329468213,0.1207516993202719,0.12091163534586166,0.12107157137145141,0.12123150739704118,0.12139144342263095,0.12155137944822071,0.12171131547381048,0.12187125149940024,0.12203118752499001,0.12219112355057977,0.12235105957616953,0.12251099560175929,0.12267093162734906,0.12283086765293882,0.12299080367852859,0.12315073970411836,0.12331067572970812,0.12347061175529789,0.12363054778088764,0.1237904838064774,0.12395041983206717,0.12411035585765694,0.1242702918832467,0.12443022790883647,0.12459016393442623,0.124750099960016,0.12491003598560575,0.12506997201119552,0.1252299080367853,0.12538984406237505,0.1255497800879648,0.12570971611355458,0.12586965213914433,0.1260295881647341,0.12618952419032387,0.12634946021591364,0.1265093962415034,0.12666933226709318,0.12682926829268293,0.12698920431827268,0.12714914034386246,0.1273090763694522,0.127469012395042,0.12762894842063174,0.12778888444622152,0.12794882047181128,0.12810875649740103,0.1282686925229908,0.12842862854858056,0.12858856457417034,0.1287485005997601,0.12890843662534987,0.12906837265093962,0.1292283086765294,0.12938824470211915,0.1295481807277089,0.12970811675329869,0.12986805277888844,0.13002798880447822,0.13018792483006797,0.13034786085565775,0.1305077968812475,0.13066773290683725,0.13082766893242703,0.13098760495801678,0.13114754098360656,0.13130747700919632,0.1314674130347861,0.13162734906037585,0.13178728508596563,0.13194722111155538,0.13210715713714513,0.1322670931627349,0.13242702918832466,0.13258696521391444,0.1327469012395042,0.13290683726509397,0.13306677329068373,0.13322670931627348,0.13338664534186326,0.133546581367453,0.1337065173930428,0.13386645341863254,0.13402638944422232,0.13418632546981207,0.13434626149540185,0.1345061975209916,0.13466613354658136,0.13482606957217114,0.1349860055977609,0.13514594162335067,0.13530587764894042,0.1354658136745302,0.13562574970011995,0.1357856857257097,0.13594562175129948,0.13610555777688924,0.13626549380247902,0.13642542982806877,0.13658536585365855,0.1367453018792483,0.13690523790483808,0.13706517393042783,0.13722510995601758,0.13738504598160736,0.13754498200719711,0.1377049180327869,0.13786485405837665,0.13802479008396643,0.13818472610955618,0.13834466213514593,0.1385045981607357,0.13866453418632546,0.13882447021191524,0.138984406237505,0.13914434226309477,0.13930427828868452,0.1394642143142743,0.13962415033986406,0.1397840863654538,0.1399440223910436,0.14010395841663334,0.14026389444222312,0.14042383046781287,0.14058376649340265,0.1407437025189924,0.14090363854458215,0.14106357457017193,0.1412235105957617,0.14138344662135147,0.14154338264694122,0.141703318672531,0.14186325469812075,0.14202319072371053,0.14218312674930028,0.14234306277489003,0.1425029988004798,0.14266293482606957,0.14282287085165934,0.1429828068772491,0.14314274290283888,0.14330267892842863,0.14346261495401838,0.14362255097960816,0.1437824870051979,0.1439424230307877,0.14410235905637744,0.14426229508196722,0.14442223110755698,0.14458216713314676,0.1447421031587365,0.14490203918432626,0.14506197520991604,0.1452219112355058,0.14538184726109557,0.14554178328668532,0.1457017193122751,0.14586165533786485,0.1460215913634546,0.14618152738904439,0.14634146341463414,0.14650139944022392,0.14666133546581367,0.14682127149140345,0.1469812075169932,0.14714114354258298,0.14730107956817273,0.14746101559376248,0.14762095161935226,0.14778088764494202,0.1479408236705318,0.14810075969612155,0.14826069572171133,0.14842063174730108,0.14858056777289083,0.1487405037984806,0.14890043982407036,0.14906037584966014,0.1492203118752499,0.14938024790083967,0.14954018392642943,0.1497001199520192,0.14986005597760896,0.1500199920031987,0.1501799280287885,0.15033986405437824,0.15049980007996802,0.15065973610555777,0.15081967213114755,0.1509796081567373,0.15113954418232706,0.15129948020791684,0.1514594162335066,0.15161935225909637,0.15177928828468612,0.1519392243102759,0.15209916033586565,0.15225909636145543,0.15241903238704518,0.15257896841263494,0.15273890443822472,0.15289884046381447,0.15305877648940425,0.153218712514994,0.15337864854058378,0.15353858456617353,0.15369852059176328,0.15385845661735306,0.15401839264294281,0.1541783286685326,0.15433826469412235,0.15449820071971213,0.15465813674530188,0.15481807277089166,0.1549780087964814,0.15513794482207116,0.15529788084766094,0.1554578168732507,0.15561775289884047,0.15577768892443022,0.15593762495002,0.15609756097560976,0.1562574970011995,0.1564174330267893,0.15657736905237904,0.15673730507796882,0.15689724110355857,0.15705717712914835,0.1572171131547381,0.15737704918032788,0.15753698520591763,0.1576969212315074,0.15785685725709717,0.15801679328268692,0.1581767293082767,0.15833666533386645,0.15849660135945623,0.15865653738504598,0.15881647341063573,0.1589764094362255,0.15913634546181527,0.15929628148740504,0.1594562175129948,0.15961615353858458,0.15977608956417433,0.1599360255897641,0.16009596161535386,0.1602558976409436,0.1604158336665334,0.16057576969212314,0.16073570571771292,0.16089564174330268,0.16105557776889246,0.1612155137944822,0.16137544982007196,0.16153538584566174,0.1616953218712515,0.16185525789684127,0.16201519392243102,0.1621751299480208,0.16233506597361055,0.16249500199920033,0.16265493802479009,0.16281487405037984,0.16297481007596962,0.16313474610155937,0.16329468212714915,0.1634546181527389,0.16361455417832868,0.16377449020391843,0.16393442622950818,0.16409436225509796,0.16425429828068772,0.1644142343062775,0.16457417033186725,0.16473410635745703,0.16489404238304678,0.16505397840863656,0.1652139144342263,0.16537385045981606,0.16553378648540584,0.1656937225109956,0.16585365853658537,0.16601359456217513,0.1661735305877649,0.16633346661335466,0.1664934026389444,0.1666533386645342,0.16681327469012394,0.16697321071571372,0.16713314674130347,0.16729308276689325,0.167453018792483,0.16761295481807278,0.16777289084366254,0.1679328268692523,0.16809276289484207,0.16825269892043182,0.1684126349460216,0.16857257097161135,0.16873250699720113,0.16889244302279088,0.16905237904838064,0.16921231507397042,0.16937225109956017,0.16953218712514995,0.1696921231507397,0.16985205917632948,0.17001199520191923,0.170171931227509,0.17033186725309876,0.17049180327868851,0.1706517393042783,0.17081167532986805,0.17097161135545783,0.17113154738104758,0.17129148340663736,0.1714514194322271,0.17161135545781686,0.17177129148340664,0.1719312275089964,0.17209116353458617,0.17225109956017592,0.1724110355857657,0.17257097161135546,0.17273090763694524,0.172890843662535,0.17305077968812474,0.17321071571371452,0.17337065173930427,0.17353058776489405,0.1736905237904838,0.17385045981607358,0.17401039584166333,0.1741703318672531,0.17433026789284287,0.17449020391843262,0.1746501399440224,0.17481007596961215,0.17497001199520193,0.17512994802079168,0.17528988404638146,0.1754498200719712,0.17560975609756097,0.17576969212315074,0.1759296281487405,0.17608956417433028,0.17624950019992003,0.1764094362255098,0.17656937225109956,0.1767293082766893,0.1768892443022791,0.17704918032786884,0.17720911635345862,0.17736905237904838,0.17752898840463815,0.1776889244302279,0.1778488604558177,0.17800879648140744,0.1781687325069972,0.17832866853258697,0.17848860455817672,0.1786485405837665,0.17880847660935625,0.17896841263494603,0.17912834866053579,0.17928828468612554,0.17944822071171532,0.17960815673730507,0.17976809276289485,0.1799280287884846,0.18008796481407438,0.18024790083966413,0.1804078368652539,0.18056777289084366,0.18072770891643342,0.1808876449420232,0.18104758096761295,0.18120751699320273,0.18136745301879248,0.18152738904438226,0.181687325069972,0.18184726109556176,0.18200719712115154,0.1821671331467413,0.18232706917233107,0.18248700519792083,0.1826469412235106,0.18280687724910036,0.18296681327469014,0.1831267493002799,0.18328668532586964,0.18344662135145942,0.18360655737704917,0.18376649340263895,0.1839264294282287,0.18408636545381848,0.18424630147940824,0.184406237504998,0.18456617353058777,0.18472610955617752,0.1848860455817673,0.18504598160735705,0.18520591763294683,0.18536585365853658,0.18552578968412636,0.18568572570971612,0.18584566173530587,0.18600559776089565,0.1861655337864854,0.18632546981207518,0.18648540583766493,0.1866453418632547,0.18680527788884446,0.18696521391443421,0.187125149940024,0.18728508596561375,0.18744502199120353,0.18760495801679328,0.18776489404238306,0.1879248300679728,0.1880847660935626,0.18824470211915234,0.1884046381447421,0.18856457417033187,0.18872451019592162,0.1888844462215114,0.18904438224710116,0.18920431827269094,0.1893642542982807,0.18952419032387044,0.18968412634946022,0.18984406237504997,0.19000399840063975,0.1901639344262295,0.19032387045181928,0.19048380647740903,0.19064374250299881,0.19080367852858857,0.19096361455417832,0.1911235505797681,0.19128348660535785,0.19144342263094763,0.19160335865653738,0.19176329468212716,0.1919232307077169,0.19208316673330667,0.19224310275889644,0.1924030387844862,0.19256297481007598,0.19272291083566573,0.1928828468612555,0.19304278288684526,0.19320271891243504,0.1933626549380248,0.19352259096361454,0.19368252698920432,0.19384246301479408,0.19400239904038385,0.1941623350659736,0.1943222710915634,0.19448220711715314,0.1946421431427429,0.19480207916833267,0.19496201519392242,0.1951219512195122,0.19528188724510195,0.19544182327069173,0.19560175929628149,0.19576169532187127,0.19592163134746102,0.19608156737305077,0.19624150339864055,0.1964014394242303,0.19656137544982008,0.19672131147540983,0.1968812475009996,0.19704118352658936,0.19720111955217912,0.1973610555777689,0.19752099160335865,0.19768092762894843,0.19784086365453818,0.19800079968012796,0.1981607357057177,0.1983206717313075,0.19848060775689724,0.198640543782487,0.19880047980807677,0.19896041583366653,0.1991203518592563,0.19928028788484606,0.19944022391043584,0.1996001599360256,0.19976009596161534,0.19992003198720512,0.20007996801279487,0.20023990403838465,0.2003998400639744,0.20055977608956418,0.20071971211515394,0.20087964814074372,0.20103958416633347,0.20119952019192322,0.201359456217513,0.20151939224310275,0.20167932826869253,0.20183926429428228,0.20199920031987206,0.20215913634546182,0.20231907237105157,0.20247900839664135,0.2026389444222311,0.20279888044782088,0.20295881647341063,0.2031187524990004,0.20327868852459016,0.20343862455017994,0.2035985605757697,0.20375849660135945,0.20391843262694923,0.20407836865253898,0.20423830467812876,0.2043982407037185,0.2045581767293083,0.20471811275489804,0.2048780487804878,0.20503798480607757,0.20519792083166732,0.2053578568572571,0.20551779288284686,0.20567772890843664,0.2058376649340264,0.20599760095961617,0.20615753698520592,0.20631747301079567,0.20647740903638545,0.2066373450619752,0.20679728108756498,0.20695721711315473,0.20711715313874451,0.20727708916433427,0.20743702518992402,0.2075969612155138,0.20775689724110355,0.20791683326669333,0.20807676929228308,0.20823670531787286,0.2083966413434626,0.2085565773690524,0.20871651339464214,0.2088764494202319,0.20903638544582168,0.20919632147141143,0.2093562574970012,0.20951619352259096,0.20967612954818074,0.2098360655737705,0.20999600159936024,0.21015593762495002,0.21031587365053978,0.21047580967612955,0.2106357457017193,0.2107956817273091,0.21095561775289884,0.21111555377848862,0.21127548980407837,0.21143542582966812,0.2115953618552579,0.21175529788084765,0.21191523390643743,0.21207516993202719,0.21223510595761697,0.21239504198320672,0.21255497800879647,0.21271491403438625,0.212874850059976,0.21303478608556578,0.21319472211115553,0.2133546581367453,0.21351459416233506,0.21367453018792484,0.2138344662135146,0.21399440223910435,0.21415433826469413,0.21431427429028388,0.21447421031587366,0.2146341463414634,0.2147940823670532,0.21495401839264294,0.2151139544182327,0.21527389044382247,0.21543382646941223,0.215593762495002,0.21575369852059176,0.21591363454618154,0.2160735705717713,0.21623350659736107,0.21639344262295082,0.21655337864854057,0.21671331467413035,0.2168732506997201,0.21703318672530988,0.21719312275089964,0.21735305877648942,0.21751299480207917,0.21767293082766892,0.2178328668532587,0.21799280287884845,0.21815273890443823,0.21831267493002798,0.21847261095561776,0.21863254698120752,0.2187924830067973,0.21895241903238705,0.2191123550579768,0.21927229108356658,0.21943222710915633,0.2195921631347461,0.21975209916033586,0.21991203518592564,0.2200719712115154,0.22023190723710515,0.22039184326269493,0.22055177928828468,0.22071171531387446,0.2208716513394642,0.221031587365054,0.22119152339064374,0.22135145941623352,0.22151139544182327,0.22167133146741302,0.2218312674930028,0.22199120351859256,0.22215113954418234,0.2223110755697721,0.22247101159536187,0.22263094762095162,0.22279088364654137,0.22295081967213115,0.2231107556977209,0.22327069172331068,0.22343062774890043,0.22359056377449021,0.22375049980007997,0.22391043582566975,0.2240703718512595,0.22423030787684925,0.22439024390243903,0.22455017992802878,0.22471011595361856,0.2248700519792083,0.2250299880047981,0.22518992403038784,0.2253498600559776,0.22550979608156738,0.22566973210715713,0.2258296681327469,0.22598960415833666,0.22614954018392644,0.2263094762095162,0.22646941223510597,0.22662934826069572,0.22678928428628548,0.22694922031187525,0.227109156337465,0.2272690923630548,0.22742902838864454,0.22758896441423432,0.22774890043982407,0.22790883646541382,0.2280687724910036,0.22822870851659335,0.22838864454218313,0.22854858056777289,0.22870851659336267,0.22886845261895242,0.2290283886445422,0.22918832467013195,0.2293482606957217,0.22950819672131148,0.22966813274690123,0.229828068772491,0.22998800479808076,0.23014794082367054,0.2303078768492603,0.23046781287485005,0.23062774890043983,0.23078768492602958,0.23094762095161936,0.2311075569772091,0.2312674930027989,0.23142742902838864,0.23158736505397842,0.23174730107956817,0.23190723710515793,0.2320671731307477,0.23222710915633746,0.23238704518192724,0.232546981207517,0.23270691723310677,0.23286685325869652,0.23302678928428627,0.23318672530987605,0.2333466613354658,0.23350659736105558,0.23366653338664534,0.23382646941223512,0.23398640543782487,0.23414634146341465,0.2343062774890044,0.23446621351459415,0.23462614954018393,0.23478608556577368,0.23494602159136346,0.23510595761695322,0.235265893642543,0.23542582966813275,0.2355857656937225,0.23574570171931228,0.23590563774490203,0.2360655737704918,0.23622550979608156,0.23638544582167134,0.2365453818472611,0.23670531787285087,0.23686525389844063,0.23702518992403038,0.23718512594962016,0.2373450619752099,0.2375049980007997,0.23766493402638944,0.23782487005197922,0.23798480607756897,0.23814474210315872,0.2383046781287485,0.23846461415433826,0.23862455017992804,0.2387844862055178,0.23894442223110757,0.23910435825669732,0.2392642942822871,0.23942423030787685,0.2395841663334666,0.23974410235905638,0.23990403838464613,0.24006397441023591,0.24022391043582567,0.24038384646141545,0.2405437824870052,0.24070371851259495,0.24086365453818473,0.24102359056377448,0.24118352658936426,0.241343462614954,0.2415033986405438,0.24166333466613354,0.24182327069172332,0.24198320671731308,0.24214314274290283,0.2423030787684926,0.24246301479408236,0.24262295081967214,0.2427828868452619,0.24294282287085167,0.24310275889644142,0.24326269492203118,0.24342263094762095,0.2435825669732107,0.2437425029988005,0.24390243902439024,0.24406237504998002,0.24422231107556977,0.24438224710115955,0.2445421831267493,0.24470211915233905,0.24486205517792883,0.24502199120351859,0.24518192722910837,0.24534186325469812,0.2455017992802879,0.24566173530587765,0.2458216713314674,0.24598160735705718,0.24614154338264693,0.2463014794082367,0.24646141543382646,0.24662135145941624,0.246781287485006,0.24694122351059578,0.24710115953618553,0.24726109556177528,0.24742103158736506,0.2475809676129548,0.2477409036385446,0.24790083966413434,0.24806077568972412,0.24822071171531387,0.24838064774090363,0.2485405837664934,0.24870051979208316,0.24886045581767294,0.2490203918432627,0.24918032786885247,0.24934026389444222,0.249500199920032,0.24966013594562175,0.2498200719712115,0.24998000799680128,0.25013994402239104,0.2502998800479808,0.2504598160735706,0.2506197520991603,0.2507796881247501,0.2509396241503399,0.2510995601759296,0.2512594962015194,0.25141943222710916,0.25157936825269894,0.25173930427828867,0.25189924030387845,0.2520591763294682,0.25221911235505795,0.25237904838064773,0.2525389844062375,0.2526989204318273,0.252858856457417,0.2530187924830068,0.2531787285085966,0.25333866453418635,0.2534986005597761,0.25365853658536586,0.25381847261095564,0.25397840863654536,0.25413834466213514,0.2542982806877249,0.2544582167133147,0.2546181527389044,0.2547780887644942,0.254938024790084,0.2550979608156737,0.2552578968412635,0.25541783286685327,0.25557776889244305,0.25573770491803277,0.25589764094362255,0.25605757696921233,0.25621751299480205,0.25637744902039183,0.2565373850459816,0.2566973210715714,0.2568572570971611,0.2570171931227509,0.2571771291483407,0.2573370651739304,0.2574970011995202,0.25765693722510996,0.25781687325069974,0.25797680927628946,0.25813674530187924,0.258296681327469,0.2584566173530588,0.25861655337864853,0.2587764894042383,0.2589364254298281,0.2590963614554178,0.2592562974810076,0.25941623350659737,0.25957616953218715,0.2597361055577769,0.25989604158336665,0.26005597760895643,0.26021591363454616,0.26037584966013594,0.2605357856857257,0.2606957217113155,0.2608556577369052,0.261015593762495,0.2611755297880848,0.2613354658136745,0.2614954018392643,0.26165533786485407,0.26181527389044384,0.26197520991603357,0.26213514594162335,0.26229508196721313,0.26245501799280285,0.26261495401839263,0.2627748900439824,0.2629348260695722,0.2630947620951619,0.2632546981207517,0.2634146341463415,0.26357457017193126,0.263734506197521,0.26389444222311076,0.26405437824870054,0.26421431427429026,0.26437425029988004,0.2645341863254698,0.2646941223510596,0.2648540583766493,0.2650139944022391,0.2651739304278289,0.2653338664534186,0.2654938024790084,0.26565373850459817,0.26581367453018795,0.2659736105557777,0.26613354658136745,0.26629348260695723,0.26645341863254696,0.26661335465813674,0.2667732906837265,0.2669332267093163,0.267093162734906,0.2672530987604958,0.2674130347860856,0.2675729708116753,0.2677329068372651,0.26789284286285486,0.26805277888844464,0.26821271491403437,0.26837265093962415,0.2685325869652139,0.2686925229908037,0.26885245901639343,0.2690123950419832,0.269172331067573,0.2693322670931627,0.2694922031187525,0.2696521391443423,0.26981207516993205,0.2699720111955218,0.27013194722111156,0.27029188324670134,0.27045181927229106,0.27061175529788084,0.2707716913234706,0.2709316273490604,0.2710915633746501,0.2712514994002399,0.2714114354258297,0.2715713714514194,0.2717313074770092,0.27189124350259897,0.27205117952818875,0.27221111555377847,0.27237105157936825,0.27253098760495803,0.27269092363054775,0.27285085965613753,0.2730107956817273,0.2731707317073171,0.2733306677329068,0.2734906037584966,0.2736505397840864,0.27381047580967616,0.2739704118352659,0.27413034786085566,0.27429028388644544,0.27445021991203516,0.27461015593762494,0.2747700919632147,0.2749300279888045,0.27508996401439423,0.275249900039984,0.2754098360655738,0.2755697720911635,0.2757297081167533,0.27588964414234307,0.27604958016793285,0.2762095161935226,0.27636945221911235,0.27652938824470213,0.27668932427029186,0.27684926029588164,0.2770091963214714,0.2771691323470612,0.2773290683726509,0.2774890043982407,0.2776489404238305,0.2778088764494202,0.27796881247501,0.27812874850059977,0.27828868452618954,0.27844862055177927,0.27860855657736905,0.27876849260295883,0.2789284286285486,0.27908836465413833,0.2792483006797281,0.2794082367053179,0.2795681727309076,0.2797281087564974,0.2798880447820872,0.28004798080767696,0.2802079168332667,0.28036785285885646,0.28052778888444624,0.28068772491003596,0.28084766093562574,0.2810075969612155,0.2811675329868053,0.281327469012395,0.2814874050379848,0.2816473410635746,0.2818072770891643,0.2819672131147541,0.28212714914034387,0.28228708516593365,0.2824470211915234,0.28260695721711315,0.28276689324270293,0.28292682926829266,0.28308676529388244,0.2832467013194722,0.283406637345062,0.2835665733706517,0.2837265093962415,0.2838864454218313,0.28404638144742106,0.2842063174730108,0.28436625349860056,0.28452618952419034,0.28468612554978007,0.28484606157536985,0.2850059976009596,0.2851659336265494,0.28532586965213913,0.2854858056777289,0.2856457417033187,0.2858056777289084,0.2859656137544982,0.286125549780088,0.28628548580567775,0.2864454218312675,0.28660535785685726,0.28676529388244704,0.28692522990803676,0.28708516593362654,0.2872451019592163,0.2874050379848061,0.2875649740103958,0.2877249100359856,0.2878848460615754,0.2880447820871651,0.2882047181127549,0.28836465413834467,0.28852459016393445,0.28868452618952417,0.28884446221511395,0.28900439824070373,0.2891643342662935,0.28932427029188323,0.289484206317473,0.2896441423430628,0.2898040783686525,0.2899640143942423,0.2901239504198321,0.29028388644542186,0.2904438224710116,0.29060375849660136,0.29076369452219114,0.29092363054778086,0.29108356657337064,0.2912435025989604,0.2914034386245502,0.29156337465013993,0.2917233106757297,0.2918832467013195,0.2920431827269092,0.292203118752499,0.29236305477808877,0.29252299080367855,0.2926829268292683,0.29284286285485805,0.29300279888044783,0.29316273490603756,0.29332267093162734,0.2934826069572171,0.2936425429828069,0.2938024790083966,0.2939624150339864,0.2941223510595762,0.29428228708516596,0.2944422231107557,0.29460215913634547,0.29476209516193524,0.29492203118752497,0.29508196721311475,0.29524190323870453,0.2954018392642943,0.29556177528988403,0.2957217113154738,0.2958816473410636,0.2960415833666533,0.2962015193922431,0.2963614554178329,0.29652139144342265,0.2966813274690124,0.29684126349460216,0.29700119952019194,0.29716113554578166,0.29732107157137144,0.2974810075969612,0.297640943622551,0.2978008796481407,0.2979608156737305,0.2981207516993203,0.29828068772491,0.2984406237504998,0.29860055977608957,0.29876049580167935,0.2989204318272691,0.29908036785285885,0.29924030387844863,0.2994002399040384,0.29956017592962814,0.2997201119552179,0.2998800479808077,0.3000399840063974,0.3001999200319872,0.300359856057577,0.30051979208316676,0.3006797281087565,0.30083966413434626,0.30099960015993604,0.30115953618552577,0.30131947221111555,0.3014794082367053,0.3016393442622951,0.30179928028788483,0.3019592163134746,0.3021191523390644,0.3022790883646541,0.3024390243902439,0.3025989604158337,0.30275889644142345,0.3029188324670132,0.30307876849260296,0.30323870451819274,0.30339864054378246,0.30355857656937224,0.303718512594962,0.3038784486205518,0.3040383846461415,0.3041983206717313,0.3043582566973211,0.30451819272291086,0.3046781287485006,0.30483806477409037,0.30499800079968015,0.30515793682526987,0.30531787285085965,0.30547780887644943,0.3056377449020392,0.30579768092762893,0.3059576169532187,0.3061175529788085,0.3062774890043982,0.306437425029988,0.3065973610555778,0.30675729708116756,0.3069172331067573,0.30707716913234706,0.30723710515793684,0.30739704118352656,0.30755697720911634,0.3077169132347061,0.3078768492602959,0.30803678528588563,0.3081967213114754,0.3083566573370652,0.3085165933626549,0.3086765293882447,0.30883646541383447,0.30899640143942425,0.309156337465014,0.30931627349060375,0.30947620951619353,0.3096361455417833,0.30979608156737304,0.3099560175929628,0.3101159536185526,0.3102758896441423,0.3104358256697321,0.3105957616953219,0.31075569772091166,0.3109156337465014,0.31107556977209116,0.31123550579768094,0.31139544182327067,0.31155537784886045,0.31171531387445023,0.31187524990004,0.31203518592562973,0.3121951219512195,0.3123550579768093,0.312514994002399,0.3126749300279888,0.3128348660535786,0.31299480207916835,0.3131547381047581,0.31331467413034786,0.31347461015593764,0.31363454618152736,0.31379448220711714,0.3139544182327069,0.3141143542582967,0.3142742902838864,0.3144342263094762,0.314594162335066,0.31475409836065577,0.3149140343862455,0.31507397041183527,0.31523390643742505,0.3153938424630148,0.31555377848860455,0.31571371451419433,0.3158736505397841,0.31603358656537384,0.3161935225909636,0.3163534586165534,0.3165133946421431,0.3166733306677329,0.3168332666933227,0.31699320271891246,0.3171531387445022,0.31731307477009196,0.31747301079568174,0.31763294682127147,0.31779288284686125,0.317952818872451,0.3181127548980408,0.31827269092363053,0.3184326269492203,0.3185925629748101,0.3187524990003998,0.3189124350259896,0.3190723710515794,0.31923230707716915,0.3193922431027589,0.31955217912834866,0.31971211515393844,0.3198720511795282,0.32003198720511794,0.3201919232307077,0.3203518592562975,0.3205117952818872,0.320671731307477,0.3208316673330668,0.32099160335865656,0.3211515393842463,0.32131147540983607,0.32147141143542585,0.32163134746101557,0.32179128348660535,0.32195121951219513,0.3221111555377849,0.32227109156337463,0.3224310275889644,0.3225909636145542,0.3227508996401439,0.3229108356657337,0.3230707716913235,0.32323070771691326,0.323390643742503,0.32355057976809276,0.32371051579368254,0.32387045181927226,0.32403038784486204,0.3241903238704518,0.3243502598960416,0.32451019592163133,0.3246701319472211,0.3248300679728109,0.32499000399840067,0.3251499400239904,0.32530987604958017,0.32546981207516995,0.3256297481007597,0.32578968412634945,0.32594962015193923,0.326109556177529,0.32626949220311874,0.3264294282287085,0.3265893642542983,0.326749300279888,0.3269092363054778,0.3270691723310676,0.32722910835665736,0.3273890443822471,0.32754898040783686,0.32770891643342664,0.32786885245901637,0.32802878848460615,0.32818872451019593,0.3283486605357857,0.32850859656137543,0.3286685325869652,0.328828468612555,0.3289884046381447,0.3291483406637345,0.3293082766893243,0.32946821271491405,0.3296281487405038,0.32978808476609356,0.32994802079168334,0.3301079568172731,0.33026789284286284,0.3304278288684526,0.3305877648940424,0.3307477009196321,0.3309076369452219,0.3310675729708117,0.33122750899640147,0.3313874450219912,0.33154738104758097,0.33170731707317075,0.3318672530987605,0.33202718912435025,0.33218712514994003,0.3323470611755298,0.33250699720111954,0.3326669332267093,0.3328268692522991,0.3329868052778888,0.3331467413034786,0.3333066773290684,0.33346661335465816,0.3336265493802479,0.33378648540583766,0.33394642143142744,0.33410635745701717,0.33426629348260695,0.3344262295081967,0.3345861655337865,0.33474610155937623,0.334906037584966,0.3350659736105558,0.33522590963614557,0.3353858456617353,0.3355457816873251,0.33570571771291485,0.3358656537385046,0.33602558976409436,0.33618552578968414,0.3363454618152739,0.33650539784086364,0.3366653338664534,0.3368252698920432,0.3369852059176329,0.3371451419432227,0.3373050779688125,0.33746501399440226,0.337624950019992,0.33778488604558177,0.33794482207117155,0.33810475809676127,0.33826469412235105,0.33842463014794083,0.3385845661735306,0.33874450219912033,0.3389044382247101,0.3390643742502999,0.3392243102758896,0.3393842463014794,0.3395441823270692,0.33970411835265896,0.3398640543782487,0.34002399040383846,0.34018392642942824,0.340343862455018,0.34050379848060774,0.3406637345061975,0.3408236705317873,0.34098360655737703,0.3411435425829668,0.3413034786085566,0.34146341463414637,0.3416233506597361,0.34178328668532587,0.34194322271091565,0.3421031587365054,0.34226309476209515,0.34242303078768493,0.3425829668132747,0.34274290283886444,0.3429028388644542,0.343062774890044,0.3432227109156337,0.3433826469412235,0.3435425829668133,0.34370251899240306,0.3438624550179928,0.34402239104358256,0.34418232706917234,0.34434226309476207,0.34450219912035185,0.34466213514594163,0.3448220711715314,0.34498200719712113,0.3451419432227109,0.3453018792483007,0.34546181527389047,0.3456217512994802,0.34578168732507,0.34594162335065975,0.3461015593762495,0.34626149540183926,0.34642143142742904,0.3465813674530188,0.34674130347860854,0.3469012395041983,0.3470611755297881,0.3472211115553778,0.3473810475809676,0.3475409836065574,0.34770091963214717,0.3478608556577369,0.34802079168332667,0.34818072770891645,0.3483406637345062,0.34850059976009595,0.34866053578568573,0.3488204718112755,0.34898040783686524,0.349140343862455,0.3493002798880448,0.3494602159136345,0.3496201519392243,0.3497800879648141,0.34994002399040386,0.3500999600159936,0.35025989604158336,0.35041983206717314,0.3505797680927629,0.35073970411835265,0.3508996401439424,0.3510595761695322,0.35121951219512193,0.3513794482207117,0.3515393842463015,0.35169932027189127,0.351859256297481,0.3520191923230708,0.35217912834866055,0.3523390643742503,0.35249900039984006,0.35265893642542984,0.3528188724510196,0.35297880847660934,0.3531387445021991,0.3532986805277889,0.3534586165533786,0.3536185525789684,0.3537784886045582,0.35393842463014796,0.3540983606557377,0.35425829668132747,0.35441823270691725,0.35457816873250697,0.35473810475809675,0.35489804078368653,0.3550579768092763,0.35521791283486603,0.3553778488604558,0.3555377848860456,0.3556977209116354,0.3558576569372251,0.3560175929628149,0.35617752898840466,0.3563374650139944,0.35649740103958416,0.35665733706517394,0.3568172730907637,0.35697720911635344,0.3571371451419432,0.357297081167533,0.35745701719312273,0.3576169532187125,0.3577768892443023,0.35793682526989207,0.3580967612954818,0.35825669732107157,0.35841663334666135,0.3585765693722511,0.35873650539784085,0.35889644142343063,0.3590563774490204,0.35921631347461014,0.3593762495001999,0.3595361855257897,0.3596961215513794,0.3598560575769692,0.360015993602559,0.36017592962814876,0.3603358656537385,0.36049580167932826,0.36065573770491804,0.3608156737305078,0.36097560975609755,0.36113554578168733,0.3612954818072771,0.36145541783286683,0.3616153538584566,0.3617752898840464,0.36193522590963617,0.3620951619352259,0.3622550979608157,0.36241503398640545,0.3625749700119952,0.36273490603758496,0.36289484206317474,0.3630547780887645,0.36321471411435424,0.363374650139944,0.3635345861655338,0.3636945221911235,0.3638544582167133,0.3640143942423031,0.36417433026789287,0.3643342662934826,0.36449420231907237,0.36465413834466215,0.3648140743702519,0.36497401039584165,0.36513394642143143,0.3652938824470212,0.36545381847261094,0.3656137544982007,0.3657736905237905,0.3659336265493803,0.36609356257497,0.3662534986005598,0.36641343462614956,0.3665733706517393,0.36673330667732906,0.36689324270291884,0.3670531787285086,0.36721311475409835,0.3673730507796881,0.3675329868052779,0.36769292283086763,0.3678528588564574,0.3680127948820472,0.36817273090763697,0.3683326669332267,0.3684926029588165,0.36865253898440625,0.368812475009996,0.36897241103558576,0.36913234706117554,0.3692922830867653,0.36945221911235504,0.3696121551379448,0.3697720911635346,0.3699320271891243,0.3700919632147141,0.3702518992403039,0.37041183526589366,0.3705717712914834,0.37073170731707317,0.37089164334266295,0.3710515793682527,0.37121151539384245,0.37137145141943223,0.371531387445022,0.37169132347061173,0.3718512594962015,0.3720111955217913,0.3721711315473811,0.3723310675729708,0.3724910035985606,0.37265093962415036,0.3728108756497401,0.37297081167532986,0.37313074770091964,0.3732906837265094,0.37345061975209914,0.3736105557776889,0.3737704918032787,0.37393042782886843,0.3740903638544582,0.374250299880048,0.37441023590563777,0.3745701719312275,0.37473010795681727,0.37489004398240705,0.3750499800079968,0.37520991603358655,0.37536985205917633,0.3755297880847661,0.37568972411035584,0.3758496601359456,0.3760095961615354,0.3761695321871252,0.3763294682127149,0.3764894042383047,0.37664934026389446,0.3768092762894842,0.37696921231507396,0.37712914834066374,0.3772890843662535,0.37744902039184325,0.37760895641743303,0.3777688924430228,0.37792882846861253,0.3780887644942023,0.3782487005197921,0.37840863654538187,0.3785685725709716,0.3787285085965614,0.37888844462215115,0.3790483806477409,0.37920831667333066,0.37936825269892044,0.3795281887245102,0.37968812475009994,0.3798480607756897,0.3800079968012795,0.3801679328268692,0.380327868852459,0.3804878048780488,0.38064774090363857,0.3808076769292283,0.38096761295481807,0.38112754898040785,0.38128748500599763,0.38144742103158735,0.38160735705717713,0.3817672930827669,0.38192722910835664,0.3820871651339464,0.3822471011595362,0.382407037185126,0.3825669732107157,0.3827269092363055,0.38288684526189526,0.383046781287485,0.38320671731307476,0.38336665333866454,0.3835265893642543,0.38368652538984405,0.3838464614154338,0.3840063974410236,0.38416633346661333,0.3843262694922031,0.3844862055177929,0.38464614154338267,0.3848060775689724,0.3849660135945622,0.38512594962015195,0.3852858856457417,0.38544582167133146,0.38560575769692124,0.385765693722511,0.38592562974810074,0.3860855657736905,0.3862455017992803,0.3864054378248701,0.3865653738504598,0.3867253098760496,0.38688524590163936,0.3870451819272291,0.38720511795281887,0.38736505397840865,0.3875249900039984,0.38768492602958815,0.38784486205517793,0.3880047980807677,0.38816473410635743,0.3883246701319472,0.388484606157537,0.3886445421831268,0.3888044782087165,0.3889644142343063,0.38912435025989606,0.3892842862854858,0.38944422231107556,0.38960415833666534,0.3897640943622551,0.38992403038784484,0.3900839664134346,0.3902439024390244,0.39040383846461413,0.3905637744902039,0.3907237105157937,0.39088364654138347,0.3910435825669732,0.39120351859256297,0.39136345461815275,0.39152339064374253,0.39168332666933225,0.39184326269492203,0.3920031987205118,0.39216313474610154,0.3923230707716913,0.3924830067972811,0.3926429428228709,0.3928028788484606,0.3929628148740504,0.39312275089964016,0.3932826869252299,0.39344262295081966,0.39360255897640944,0.3937624950019992,0.39392243102758895,0.39408236705317873,0.3942423030787685,0.39440223910435823,0.394562175129948,0.3947221111555378,0.39488204718112757,0.3950419832067173,0.3952019192323071,0.39536185525789685,0.3955217912834866,0.39568172730907636,0.39584166333466614,0.3960015993602559,0.39616153538584564,0.3963214714114354,0.3964814074370252,0.396641343462615,0.3968012794882047,0.3969612155137945,0.39712115153938427,0.397281087564974,0.39744102359056377,0.39760095961615355,0.39776089564174333,0.39792083166733305,0.39808076769292283,0.3982407037185126,0.39840063974410234,0.3985605757696921,0.3987205117952819,0.3988804478208717,0.3990403838464614,0.3992003198720512,0.39936025589764096,0.3995201919232307,0.39968012794882046,0.39984006397441024,0.4,0.40015993602558975,0.4003198720511795,0.4004798080767693,0.40063974410235903,0.4007996801279488,0.4009596161535386,0.40111955217912837,0.4012794882047181,0.4014394242303079,0.40159936025589765,0.40175929628148743,0.40191923230707716,0.40207916833266694,0.4022391043582567,0.40239904038384644,0.4025589764094362,0.402718912435026,0.4028788484606158,0.4030387844862055,0.4031987205117953,0.40335865653738506,0.4035185925629748,0.40367852858856457,0.40383846461415435,0.4039984006397441,0.40415833666533385,0.40431827269092363,0.4044782087165134,0.40463814474210313,0.4047980807676929,0.4049580167932827,0.4051179528188725,0.4052778888444622,0.405437824870052,0.40559776089564176,0.4057576969212315,0.40591763294682126,0.40607756897241104,0.4062375049980008,0.40639744102359054,0.4065573770491803,0.4067173130747701,0.4068772491003599,0.4070371851259496,0.4071971211515394,0.40735705717712917,0.4075169932027189,0.40767692922830867,0.40783686525389845,0.40799680127948823,0.40815673730507795,0.40831667333066773,0.4084766093562575,0.40863654538184724,0.408796481407437,0.4089564174330268,0.4091163534586166,0.4092762894842063,0.4094362255097961,0.40959616153538586,0.4097560975609756,0.40991603358656536,0.41007596961215514,0.4102359056377449,0.41039584166333465,0.41055577768892443,0.4107157137145142,0.41087564974010393,0.4110355857656937,0.4111955217912835,0.41135545781687327,0.411515393842463,0.4116753298680528,0.41183526589364255,0.41199520191923233,0.41215513794482206,0.41231507397041184,0.4124750099960016,0.41263494602159134,0.4127948820471811,0.4129548180727709,0.4131147540983607,0.4132746901239504,0.4134346261495402,0.41359456217512997,0.4137544982007197,0.41391443422630947,0.41407437025189925,0.41423430627748903,0.41439424230307875,0.41455417832866853,0.4147141143542583,0.41487405037984804,0.4150339864054378,0.4151939224310276,0.4153538584566174,0.4155137944822071,0.4156737305077969,0.41583366653338666,0.4159936025589764,0.41615353858456616,0.41631347461015594,0.4164734106357457,0.41663334666133545,0.4167932826869252,0.416953218712515,0.4171131547381048,0.4172730907636945,0.4174330267892843,0.41759296281487407,0.4177528988404638,0.4179128348660536,0.41807277089164335,0.41823270691723313,0.41839264294282286,0.41855257896841264,0.4187125149940024,0.41887245101959214,0.4190323870451819,0.4191923230707717,0.4193522590963615,0.4195121951219512,0.419672131147541,0.41983206717313076,0.4199920031987205,0.42015193922431027,0.42031187524990005,0.4204718112754898,0.42063174730107955,0.42079168332666933,0.4209516193522591,0.42111155537784883,0.4212714914034386,0.4214314274290284,0.4215913634546182,0.4217512994802079,0.4219112355057977,0.42207117153138746,0.42223110755697724,0.42239104358256696,0.42255097960815674,0.4227109156337465,0.42287085165933624,0.423030787684926,0.4231907237105158,0.4233506597361056,0.4235105957616953,0.4236705317872851,0.42383046781287487,0.4239904038384646,0.42415033986405437,0.42431027588964415,0.42447021191523393,0.42463014794082365,0.42479008396641343,0.4249500199920032,0.42510995601759294,0.4252698920431827,0.4254298280687725,0.4255897640943623,0.425749700119952,0.4259096361455418,0.42606957217113156,0.4262295081967213,0.42638944422231106,0.42654938024790084,0.4267093162734906,0.42686925229908035,0.42702918832467013,0.4271891243502599,0.4273490603758497,0.4275089964014394,0.4276689324270292,0.42782886845261897,0.4279888044782087,0.4281487405037985,0.42830867652938825,0.42846861255497803,0.42862854858056776,0.42878848460615754,0.4289484206317473,0.42910835665733704,0.4292682926829268,0.4294282287085166,0.4295881647341064,0.4297481007596961,0.4299080367852859,0.43006797281087566,0.4302279088364654,0.43038784486205517,0.43054778088764495,0.43070771691323473,0.43086765293882445,0.43102758896441423,0.431187524990004,0.43134746101559374,0.4315073970411835,0.4316673330667733,0.4318272690923631,0.4319872051179528,0.4321471411435426,0.43230707716913236,0.43246701319472214,0.43262694922031186,0.43278688524590164,0.4329468212714914,0.43310675729708115,0.4332666933226709,0.4334266293482607,0.4335865653738505,0.4337465013994402,0.43390643742503,0.43406637345061977,0.4342263094762095,0.4343862455017993,0.43454618152738905,0.43470611755297883,0.43486605357856856,0.43502598960415834,0.4351859256297481,0.43534586165533784,0.4355057976809276,0.4356657337065174,0.4358256697321072,0.4359856057576969,0.4361455417832867,0.43630547780887646,0.4364654138344662,0.43662534986005597,0.43678528588564575,0.4369452219112355,0.43710515793682525,0.43726509396241503,0.4374250299880048,0.4375849660135946,0.4377449020391843,0.4379048380647741,0.4380647740903639,0.4382247101159536,0.4383846461415434,0.43854458216713316,0.43870451819272294,0.43886445421831266,0.43902439024390244,0.4391843262694922,0.43934426229508194,0.4395041983206717,0.4396641343462615,0.4398240703718513,0.439984006397441,0.4401439424230308,0.44030387844862057,0.4404638144742103,0.44062375049980007,0.44078368652538985,0.44094362255097963,0.44110355857656935,0.44126349460215913,0.4414234306277489,0.44158336665333864,0.4417433026789284,0.4419032387045182,0.442063174730108,0.4422231107556977,0.4423830467812875,0.44254298280687726,0.44270291883246704,0.44286285485805676,0.44302279088364654,0.4431827269092363,0.44334266293482605,0.44350259896041583,0.4436625349860056,0.4438224710115954,0.4439824070371851,0.4441423430627749,0.44430227908836467,0.4444622151139544,0.4446221511395442,0.44478208716513395,0.44494202319072373,0.44510195921631346,0.44526189524190324,0.445421831267493,0.44558176729308274,0.4457417033186725,0.4459016393442623,0.4460615753698521,0.4462215113954418,0.4463814474210316,0.44654138344662136,0.4467013194722111,0.44686125549780087,0.44702119152339065,0.44718112754898043,0.44734106357457015,0.44750099960015993,0.4476609356257497,0.4478208716513395,0.4479808076769292,0.448140743702519,0.4483006797281088,0.4484606157536985,0.4486205517792883,0.44878048780487806,0.44894042383046784,0.44910035985605756,0.44926029588164734,0.4494202319072371,0.44958016793282685,0.4497401039584166,0.4499000399840064,0.4500599760095962,0.4502199120351859,0.4503798480607757,0.45053978408636547,0.4506997201119552,0.450859656137545,0.45101959216313475,0.45117952818872453,0.45133946421431426,0.45149940023990404,0.4516593362654938,0.45181927229108354,0.4519792083166733,0.4521391443422631,0.4522990803678529,0.4524590163934426,0.4526189524190324,0.45277888844462216,0.45293882447021194,0.45309876049580167,0.45325869652139145,0.4534186325469812,0.45357856857257095,0.45373850459816073,0.4538984406237505,0.4540583766493403,0.45421831267493,0.4543782487005198,0.4545381847261096,0.4546981207516993,0.4548580567772891,0.45501799280287886,0.45517792882846864,0.45533786485405836,0.45549780087964814,0.4556577369052379,0.45581767293082764,0.4559776089564174,0.4561375449820072,0.456297481007597,0.4564574170331867,0.4566173530587765,0.45677728908436627,0.456937225109956,0.45709716113554577,0.45725709716113555,0.45741703318672533,0.45757696921231505,0.45773690523790483,0.4578968412634946,0.4580567772890844,0.4582167133146741,0.4583766493402639,0.4585365853658537,0.4586965213914434,0.4588564574170332,0.45901639344262296,0.45917632946821274,0.45933626549380246,0.45949620151939224,0.459656137544982,0.45981607357057175,0.45997600959616153,0.4601359456217513,0.4602958816473411,0.4604558176729308,0.4606157536985206,0.46077568972411037,0.4609356257497001,0.4610955617752899,0.46125549780087965,0.46141543382646943,0.46157536985205916,0.46173530587764894,0.4618952419032387,0.46205517792882844,0.4622151139544182,0.462375049980008,0.4625349860055978,0.4626949220311875,0.4628548580567773,0.46301479408236706,0.46317473010795684,0.46333466613354657,0.46349460215913635,0.46365453818472613,0.46381447421031585,0.46397441023590563,0.4641343462614954,0.4642942822870852,0.4644542183126749,0.4646141543382647,0.4647740903638545,0.4649340263894442,0.465093962415034,0.46525389844062376,0.46541383446621354,0.46557377049180326,0.46573370651739304,0.4658936425429828,0.46605357856857255,0.4662135145941623,0.4663734506197521,0.4665333866453419,0.4666933226709316,0.4668532586965214,0.46701319472211117,0.4671731307477009,0.4673330667732907,0.46749300279888045,0.46765293882447023,0.46781287485005996,0.46797281087564974,0.4681327469012395,0.4682926829268293,0.468452618952419,0.4686125549780088,0.4687724910035986,0.4689324270291883,0.4690923630547781,0.46925229908036786,0.46941223510595764,0.46957217113154737,0.46973210715713715,0.4698920431827269,0.47005197920831665,0.47021191523390643,0.4703718512594962,0.470531787285086,0.4706917233106757,0.4708516593362655,0.4710115953618553,0.471171531387445,0.4713314674130348,0.47149140343862456,0.47165133946421434,0.47181127548980406,0.47197121151539384,0.4721311475409836,0.47229108356657334,0.4724510195921631,0.4726109556177529,0.4727708916433427,0.4729308276689324,0.4730907636945222,0.47325069972011197,0.47341063574570175,0.47357057177129147,0.47373050779688125,0.47389044382247103,0.47405037984806075,0.47421031587365053,0.4743702518992403,0.4745301879248301,0.4746901239504198,0.4748500599760096,0.4750099960015994,0.4751699320271891,0.4753298680527789,0.47548980407836866,0.47564974010395844,0.47580967612954816,0.47596961215513794,0.4761295481807277,0.47628948420631745,0.47644942023190723,0.476609356257497,0.4767692922830868,0.4769292283086765,0.4770891643342663,0.47724910035985607,0.4774090363854458,0.4775689724110356,0.47772890843662535,0.47788884446221513,0.47804878048780486,0.47820871651339464,0.4783686525389844,0.4785285885645742,0.4786885245901639,0.4788484606157537,0.4790083966413435,0.4791683326669332,0.479328268692523,0.47948820471811276,0.47964814074370254,0.47980807676929227,0.47996801279488205,0.48012794882047183,0.48028788484606155,0.48044782087165133,0.4806077568972411,0.4807676929228309,0.4809276289484206,0.4810875649740104,0.4812475009996002,0.4814074370251899,0.4815673730507797,0.48172730907636946,0.48188724510195924,0.48204718112754896,0.48220711715313874,0.4823670531787285,0.48252698920431825,0.482686925229908,0.4828468612554978,0.4830067972810876,0.4831667333066773,0.4833266693322671,0.48348660535785687,0.48364654138344665,0.4838064774090364,0.48396641343462615,0.48412634946021593,0.48428628548580566,0.48444622151139544,0.4846061575369852,0.484766093562575,0.4849260295881647,0.4850859656137545,0.4852459016393443,0.485405837664934,0.4855657736905238,0.48572570971611356,0.48588564574170334,0.48604558176729307,0.48620551779288285,0.4863654538184726,0.48652538984406235,0.48668532586965213,0.4868452618952419,0.4870051979208317,0.4871651339464214,0.4873250699720112,0.487485005997601,0.4876449420231907,0.4878048780487805,0.48796481407437026,0.48812475009996004,0.48828468612554976,0.48844462215113954,0.4886045581767293,0.4887644942023191,0.4889244302279088,0.4890843662534986,0.4892443022790884,0.4894042383046781,0.4895641743302679,0.48972411035585767,0.48988404638144745,0.49004398240703717,0.49020391843262695,0.49036385445821673,0.49052379048380645,0.49068372650939623,0.490843662534986,0.4910035985605758,0.4911635345861655,0.4913234706117553,0.4914834066373451,0.4916433426629348,0.4918032786885246,0.49196321471411436,0.49212315073970414,0.49228308676529386,0.49244302279088364,0.4926029588164734,0.49276289484206315,0.49292283086765293,0.4930827668932427,0.4932427029188325,0.4934026389444222,0.493562574970012,0.49372251099560177,0.49388244702119155,0.4940423830467813,0.49420231907237105,0.49436225509796083,0.49452219112355056,0.49468212714914034,0.4948420631747301,0.4950019992003199,0.4951619352259096,0.4953218712514994,0.4954818072770892,0.4956417433026789,0.4958016793282687,0.49596161535385846,0.49612155137944824,0.49628148740503797,0.49644142343062775,0.49660135945621753,0.49676129548180725,0.49692123150739703,0.4970811675329868,0.4972411035585766,0.4974010395841663,0.4975609756097561,0.4977209116353459,0.4978808476609356,0.4980407836865254,0.49820071971211516,0.49836065573770494,0.49852059176329466,0.49868052778888444,0.4988404638144742,0.499000399840064,0.4991603358656537,0.4993202718912435,0.4994802079168333,0.499640143942423,0.4998000799680128,0.49996001599360257,0.5001199520191923,0.5002798880447821,0.5004398240703718,0.5005997600959616,0.5007596961215514,0.5009196321471412,0.5010795681727309,0.5012395041983206,0.5013994402239105,0.5015593762495002,0.5017193122750899,0.5018792483006798,0.5020391843262695,0.5021991203518592,0.502359056377449,0.5025189924030388,0.5026789284286286,0.5028388644542183,0.502998800479808,0.5031587365053979,0.5033186725309876,0.5034786085565773,0.5036385445821672,0.5037984806077569,0.5039584166333466,0.5041183526589365,0.5042782886845262,0.5044382247101159,0.5045981607357057,0.5047580967612955,0.5049180327868853,0.505077968812475,0.5052379048380647,0.5053978408636546,0.5055577768892443,0.505717712914834,0.5058776489404239,0.5060375849660136,0.5061975209916033,0.5063574570171931,0.5065173930427829,0.5066773290683727,0.5068372650939624,0.5069972011195522,0.507157137145142,0.5073170731707317,0.5074770091963214,0.5076369452219113,0.507796881247501,0.5079568172730907,0.5081167532986806,0.5082766893242703,0.50843662534986,0.5085965613754498,0.5087564974010396,0.5089164334266294,0.5090763694522191,0.5092363054778088,0.5093962415033987,0.5095561775289884,0.5097161135545781,0.509876049580168,0.5100359856057577,0.5101959216313474,0.5103558576569373,0.510515793682527,0.5106757297081167,0.5108356657337065,0.5109956017592963,0.5111555377848861,0.5113154738104758,0.5114754098360655,0.5116353458616554,0.5117952818872451,0.5119552179128348,0.5121151539384247,0.5122750899640144,0.5124350259896041,0.512594962015194,0.5127548980407837,0.5129148340663735,0.5130747700919632,0.513234706117553,0.5133946421431428,0.5135545781687325,0.5137145141943222,0.5138744502199121,0.5140343862455018,0.5141943222710915,0.5143542582966814,0.5145141943222711,0.5146741303478608,0.5148340663734506,0.5149940023990404,0.5151539384246302,0.5153138744502199,0.5154738104758096,0.5156337465013995,0.5157936825269892,0.5159536185525789,0.5161135545781688,0.5162734906037585,0.5164334266293482,0.516593362654938,0.5167532986805278,0.5169132347061176,0.5170731707317073,0.5172331067572971,0.5173930427828869,0.5175529788084766,0.5177129148340663,0.5178728508596562,0.5180327868852459,0.5181927229108356,0.5183526589364255,0.5185125949620152,0.5186725309876049,0.5188324670131947,0.5189924030387845,0.5191523390643743,0.519312275089964,0.5194722111155538,0.5196321471411436,0.5197920831667333,0.519952019192323,0.5201119552179129,0.5202718912435026,0.5204318272690923,0.5205917632946822,0.5207516993202719,0.5209116353458616,0.5210715713714514,0.5212315073970412,0.521391443422631,0.5215513794482207,0.5217113154738104,0.5218712514994003,0.52203118752499,0.5221911235505797,0.5223510595761696,0.5225109956017593,0.522670931627349,0.5228308676529388,0.5229908036785286,0.5231507397041184,0.5233106757297081,0.5234706117552979,0.5236305477808877,0.5237904838064774,0.5239504198320671,0.524110355857657,0.5242702918832467,0.5244302279088364,0.5245901639344263,0.524750099960016,0.5249100359856057,0.5250699720111955,0.5252299080367853,0.5253898440623751,0.5255497800879648,0.5257097161135545,0.5258696521391444,0.5260295881647341,0.5261895241903238,0.5263494602159137,0.5265093962415034,0.5266693322670931,0.526829268292683,0.5269892043182727,0.5271491403438625,0.5273090763694522,0.527469012395042,0.5276289484206318,0.5277888844462215,0.5279488204718112,0.5281087564974011,0.5282686925229908,0.5284286285485805,0.5285885645741704,0.5287485005997601,0.5289084366253498,0.5290683726509396,0.5292283086765294,0.5293882447021192,0.5295481807277089,0.5297081167532987,0.5298680527788885,0.5300279888044782,0.5301879248300679,0.5303478608556578,0.5305077968812475,0.5306677329068372,0.530827668932427,0.5309876049580168,0.5311475409836065,0.5313074770091963,0.5314674130347861,0.5316273490603759,0.5317872850859656,0.5319472211115553,0.5321071571371452,0.5322670931627349,0.5324270291883246,0.5325869652139145,0.5327469012395042,0.5329068372650939,0.5330667732906837,0.5332267093162735,0.5333866453418633,0.533546581367453,0.5337065173930428,0.5338664534186326,0.5340263894442223,0.534186325469812,0.5343462614954019,0.5345061975209916,0.5346661335465813,0.5348260695721712,0.5349860055977609,0.5351459416233506,0.5353058776489404,0.5354658136745302,0.53562574970012,0.5357856857257097,0.5359456217512995,0.5361055577768893,0.536265493802479,0.5364254298280687,0.5365853658536586,0.5367453018792483,0.536905237904838,0.5370651739304279,0.5372251099560176,0.5373850459816074,0.5375449820071971,0.5377049180327869,0.5378648540583767,0.5380247900839664,0.5381847261095561,0.538344662135146,0.5385045981607357,0.5386645341863254,0.5388244702119153,0.538984406237505,0.5391443422630947,0.5393042782886845,0.5394642143142743,0.5396241503398641,0.5397840863654538,0.5399440223910436,0.5401039584166334,0.5402638944422231,0.5404238304678128,0.5405837664934027,0.5407437025189924,0.5409036385445821,0.541063574570172,0.5412235105957617,0.5413834466213514,0.5415433826469412,0.541703318672531,0.5418632546981208,0.5420231907237105,0.5421831267493002,0.5423430627748901,0.5425029988004798,0.5426629348260695,0.5428228708516594,0.5429828068772491,0.5431427429028388,0.5433026789284287,0.5434626149540184,0.5436225509796082,0.5437824870051979,0.5439424230307877,0.5441023590563775,0.5442622950819672,0.5444222311075569,0.5445821671331468,0.5447421031587365,0.5449020391843262,0.5450619752099161,0.5452219112355058,0.5453818472610955,0.5455417832866853,0.5457017193122751,0.5458616553378649,0.5460215913634546,0.5461815273890444,0.5463414634146342,0.5465013994402239,0.5466613354658136,0.5468212714914035,0.5469812075169932,0.5471411435425829,0.5473010795681728,0.5474610155937625,0.5476209516193523,0.547780887644942,0.5479408236705318,0.5481007596961216,0.5482606957217113,0.548420631747301,0.5485805677728909,0.5487405037984806,0.5489004398240703,0.5490603758496602,0.5492203118752499,0.5493802479008396,0.5495401839264294,0.5497001199520192,0.549860055977609,0.5500199920031987,0.5501799280287885,0.5503398640543783,0.550499800079968,0.5506597361055577,0.5508196721311476,0.5509796081567373,0.551139544182327,0.5512994802079169,0.5514594162335066,0.5516193522590963,0.5517792882846861,0.5519392243102759,0.5520991603358657,0.5522590963614554,0.5524190323870452,0.552578968412635,0.5527389044382247,0.5528988404638144,0.5530587764894043,0.553218712514994,0.5533786485405837,0.5535385845661736,0.5536985205917633,0.5538584566173531,0.5540183926429428,0.5541783286685326,0.5543382646941224,0.5544982007197121,0.5546581367453018,0.5548180727708917,0.5549780087964814,0.5551379448220711,0.555297880847661,0.5554578168732507,0.5556177528988404,0.5557776889244302,0.55593762495002,0.5560975609756098,0.5562574970011995,0.5564174330267893,0.5565773690523791,0.5567373050779688,0.5568972411035585,0.5570571771291484,0.5572171131547381,0.5573770491803278,0.5575369852059177,0.5576969212315074,0.5578568572570972,0.5580167932826869,0.5581767293082767,0.5583366653338665,0.5584966013594562,0.558656537385046,0.5588164734106358,0.5589764094362255,0.5591363454618152,0.5592962814874051,0.5594562175129948,0.5596161535385845,0.5597760895641744,0.5599360255897641,0.5600959616153539,0.5602558976409436,0.5604158336665334,0.5605757696921232,0.5607357057177129,0.5608956417433026,0.5610555777688925,0.5612155137944822,0.5613754498200719,0.5615353858456618,0.5616953218712515,0.5618552578968412,0.562015193922431,0.5621751299480208,0.5623350659736106,0.5624950019992003,0.56265493802479,0.5628148740503799,0.5629748100759696,0.5631347461015593,0.5632946821271492,0.5634546181527389,0.5636145541783286,0.5637744902039185,0.5639344262295082,0.564094362255098,0.5642542982806877,0.5644142343062775,0.5645741703318673,0.564734106357457,0.5648940423830467,0.5650539784086366,0.5652139144342263,0.565373850459816,0.5655337864854059,0.5656937225109956,0.5658536585365853,0.5660135945621751,0.5661735305877649,0.5663334666133547,0.5664934026389444,0.5666533386645342,0.566813274690124,0.5669732107157137,0.5671331467413034,0.5672930827668933,0.567453018792483,0.5676129548180727,0.5677728908436626,0.5679328268692523,0.5680927628948421,0.5682526989204318,0.5684126349460216,0.5685725709716114,0.5687325069972011,0.5688924430227909,0.5690523790483807,0.5692123150739704,0.5693722510995601,0.56953218712515,0.5696921231507397,0.5698520591763294,0.5700119952019193,0.570171931227509,0.5703318672530988,0.5704918032786885,0.5706517393042783,0.5708116753298681,0.5709716113554578,0.5711315473810475,0.5712914834066374,0.5714514194322271,0.5716113554578168,0.5717712914834067,0.5719312275089964,0.5720911635345861,0.572251099560176,0.5724110355857657,0.5725709716113555,0.5727309076369452,0.572890843662535,0.5730507796881248,0.5732107157137145,0.5733706517393042,0.5735305877648941,0.5736905237904838,0.5738504598160735,0.5740103958416634,0.5741703318672531,0.5743302678928429,0.5744902039184326,0.5746501399440224,0.5748100759696122,0.5749700119952019,0.5751299480207916,0.5752898840463815,0.5754498200719712,0.5756097560975609,0.5757696921231508,0.5759296281487405,0.5760895641743302,0.57624950019992,0.5764094362255098,0.5765693722510996,0.5767293082766893,0.5768892443022791,0.5770491803278689,0.5772091163534586,0.5773690523790483,0.5775289884046382,0.5776889244302279,0.5778488604558176,0.5780087964814075,0.5781687325069972,0.578328668532587,0.5784886045581767,0.5786485405837665,0.5788084766093563,0.578968412634946,0.5791283486605358,0.5792882846861256,0.5794482207117153,0.579608156737305,0.5797680927628949,0.5799280287884846,0.5800879648140743,0.5802479008396642,0.5804078368652539,0.5805677728908437,0.5807277089164334,0.5808876449420232,0.581047580967613,0.5812075169932027,0.5813674530187924,0.5815273890443823,0.581687325069972,0.5818472610955617,0.5820071971211516,0.5821671331467413,0.582327069172331,0.5824870051979208,0.5826469412235106,0.5828068772491004,0.5829668132746901,0.5831267493002799,0.5832866853258697,0.5834466213514594,0.5836065573770491,0.583766493402639,0.5839264294282287,0.5840863654538184,0.5842463014794083,0.584406237504998,0.5845661735305878,0.5847261095561775,0.5848860455817673,0.5850459816073571,0.5852059176329468,0.5853658536585366,0.5855257896841264,0.5856857257097161,0.5858456617353058,0.5860055977608957,0.5861655337864854,0.5863254698120751,0.586485405837665,0.5866453418632547,0.5868052778888445,0.5869652139144342,0.587125149940024,0.5872850859656138,0.5874450219912035,0.5876049580167932,0.5877648940423831,0.5879248300679728,0.5880847660935625,0.5882447021191524,0.5884046381447421,0.5885645741703319,0.5887245101959216,0.5888844462215114,0.5890443822471012,0.5892043182726909,0.5893642542982807,0.5895241903238705,0.5896841263494602,0.5898440623750499,0.5900039984006398,0.5901639344262295,0.5903238704518192,0.5904838064774091,0.5906437425029988,0.5908036785285886,0.5909636145541783,0.5911235505797681,0.5912834866053579,0.5914434226309476,0.5916033586565373,0.5917632946821272,0.5919232307077169,0.5920831667333066,0.5922431027588965,0.5924030387844862,0.5925629748100759,0.5927229108356658,0.5928828468612555,0.5930427828868453,0.593202718912435,0.5933626549380248,0.5935225909636146,0.5936825269892043,0.593842463014794,0.5940023990403839,0.5941623350659736,0.5943222710915633,0.5944822071171532,0.5946421431427429,0.5948020791683327,0.5949620151939224,0.5951219512195122,0.595281887245102,0.5954418232706917,0.5956017592962815,0.5957616953218713,0.595921631347461,0.5960815673730507,0.5962415033986406,0.5964014394242303,0.59656137544982,0.5967213114754099,0.5968812475009996,0.5970411835265894,0.5972011195521791,0.5973610555777689,0.5975209916033587,0.5976809276289484,0.5978408636545381,0.598000799680128,0.5981607357057177,0.5983206717313074,0.5984806077568973,0.598640543782487,0.5988004798080768,0.5989604158336665,0.5991203518592563,0.5992802878848461,0.5994402239104358,0.5996001599360256,0.5997600959616154,0.5999200319872051,0.6000799680127948,0.6002399040383847,0.6003998400639744,0.6005597760895641,0.600719712115154,0.6008796481407437,0.6010395841663335,0.6011995201919232,0.601359456217513,0.6015193922431028,0.6016793282686925,0.6018392642942823,0.6019992003198721,0.6021591363454618,0.6023190723710515,0.6024790083966414,0.6026389444222311,0.6027988804478208,0.6029588164734107,0.6031187524990004,0.6032786885245902,0.6034386245501799,0.6035985605757697,0.6037584966013595,0.6039184326269492,0.6040783686525389,0.6042383046781288,0.6043982407037185,0.6045581767293082,0.6047181127548981,0.6048780487804878,0.6050379848060776,0.6051979208316673,0.6053578568572571,0.6055177928828469,0.6056777289084366,0.6058376649340264,0.6059976009596162,0.6061575369852059,0.6063174730107956,0.6064774090363855,0.6066373450619752,0.6067972810875649,0.6069572171131548,0.6071171531387445,0.6072770891643343,0.607437025189924,0.6075969612155138,0.6077568972411036,0.6079168332666933,0.608076769292283,0.6082367053178729,0.6083966413434626,0.6085565773690523,0.6087165133946422,0.6088764494202319,0.6090363854458217,0.6091963214714115,0.6093562574970012,0.609516193522591,0.6096761295481807,0.6098360655737705,0.6099960015993603,0.61015593762495,0.6103158736505397,0.6104758096761296,0.6106357457017193,0.610795681727309,0.6109556177528989,0.6111155537784886,0.6112754898040784,0.6114354258296681,0.6115953618552579,0.6117552978808477,0.6119152339064374,0.6120751699320272,0.612235105957617,0.6123950419832067,0.6125549780087964,0.6127149140343863,0.612874850059976,0.6130347860855657,0.6131947221111556,0.6133546581367453,0.6135145941623351,0.6136745301879248,0.6138344662135146,0.6139944022391044,0.6141543382646941,0.6143142742902838,0.6144742103158737,0.6146341463414634,0.6147940823670531,0.614954018392643,0.6151139544182327,0.6152738904438225,0.6154338264694122,0.615593762495002,0.6157536985205918,0.6159136345461815,0.6160735705717713,0.6162335065973611,0.6163934426229508,0.6165533786485405,0.6167133146741304,0.6168732506997201,0.6170331867253098,0.6171931227508997,0.6173530587764894,0.6175129948020792,0.6176729308276689,0.6178328668532587,0.6179928028788485,0.6181527389044382,0.618312674930028,0.6184726109556178,0.6186325469812075,0.6187924830067972,0.6189524190323871,0.6191123550579768,0.6192722910835666,0.6194322271091564,0.6195921631347461,0.6197520991603359,0.6199120351859256,0.6200719712115154,0.6202319072371052,0.6203918432626949,0.6205517792882846,0.6207117153138745,0.6208716513394642,0.6210315873650539,0.6211915233906438,0.6213514594162335,0.6215113954418233,0.621671331467413,0.6218312674930028,0.6219912035185926,0.6221511395441823,0.622311075569772,0.6224710115953619,0.6226309476209516,0.6227908836465413,0.6229508196721312,0.6231107556977209,0.6232706917233106,0.6234306277489005,0.6235905637744902,0.62375049980008,0.6239104358256697,0.6240703718512595,0.6242303078768493,0.624390243902439,0.6245501799280287,0.6247101159536186,0.6248700519792083,0.625029988004798,0.6251899240303879,0.6253498600559776,0.6255097960815674,0.6256697321071572,0.6258296681327469,0.6259896041583367,0.6261495401839264,0.6263094762095162,0.626469412235106,0.6266293482606957,0.6267892842862854,0.6269492203118753,0.627109156337465,0.6272690923630547,0.6274290283886446,0.6275889644142343,0.6277489004398241,0.6279088364654138,0.6280687724910036,0.6282287085165934,0.6283886445421831,0.6285485805677729,0.6287085165933627,0.6288684526189524,0.6290283886445421,0.629188324670132,0.6293482606957217,0.6295081967213115,0.6296681327469013,0.629828068772491,0.6299880047980808,0.6301479408236705,0.6303078768492603,0.6304678128748501,0.6306277489004398,0.6307876849260295,0.6309476209516194,0.6311075569772091,0.6312674930027988,0.6314274290283887,0.6315873650539784,0.6317473010795682,0.631907237105158,0.6320671731307477,0.6322271091563375,0.6323870451819272,0.632546981207517,0.6327069172331068,0.6328668532586965,0.6330267892842862,0.6331867253098761,0.6333466613354658,0.6335065973610555,0.6336665333866454,0.6338264694122351,0.6339864054378249,0.6341463414634146,0.6343062774890044,0.6344662135145942,0.6346261495401839,0.6347860855657737,0.6349460215913635,0.6351059576169532,0.6352658936425429,0.6354258296681328,0.6355857656937225,0.6357457017193123,0.635905637744902,0.6360655737704918,0.6362255097960816,0.6363854458216713,0.6365453818472611,0.6367053178728509,0.6368652538984406,0.6370251899240303,0.6371851259496202,0.6373450619752099,0.6375049980007996,0.6376649340263895,0.6378248700519792,0.637984806077569,0.6381447421031587,0.6383046781287485,0.6384646141543383,0.638624550179928,0.6387844862055178,0.6389444222311076,0.6391043582566973,0.639264294282287,0.6394242303078769,0.6395841663334666,0.6397441023590564,0.6399040383846462,0.6400639744102359,0.6402239104358257,0.6403838464614154,0.6405437824870052,0.640703718512595,0.6408636545381847,0.6410235905637744,0.6411835265893643,0.641343462614954,0.6415033986405437,0.6416633346661336,0.6418232706917233,0.6419832067173131,0.6421431427429029,0.6423030787684926,0.6424630147940824,0.6426229508196721,0.6427828868452619,0.6429428228708517,0.6431027588964414,0.6432626949220311,0.643422630947621,0.6435825669732107,0.6437425029988004,0.6439024390243903,0.64406237504998,0.6442223110755698,0.6443822471011595,0.6445421831267493,0.6447021191523391,0.6448620551779288,0.6450219912035186,0.6451819272291084,0.6453418632546981,0.6455017992802878,0.6456617353058777,0.6458216713314674,0.6459816073570572,0.646141543382647,0.6463014794082367,0.6464614154338265,0.6466213514594162,0.646781287485006,0.6469412235105958,0.6471011595361855,0.6472610955617752,0.6474210315873651,0.6475809676129548,0.6477409036385445,0.6479008396641344,0.6480607756897241,0.6482207117153139,0.6483806477409036,0.6485405837664934,0.6487005197920832,0.6488604558176729,0.6490203918432627,0.6491803278688525,0.6493402638944422,0.6495001999200319,0.6496601359456218,0.6498200719712115,0.6499800079968013,0.6501399440223911,0.6502998800479808,0.6504598160735706,0.6506197520991603,0.6507796881247501,0.6509396241503399,0.6510995601759296,0.6512594962015194,0.6514194322271092,0.6515793682526989,0.6517393042782886,0.6518992403038785,0.6520591763294682,0.652219112355058,0.6523790483806478,0.6525389844062375,0.6526989204318273,0.652858856457417,0.6530187924830068,0.6531787285085966,0.6533386645341863,0.653498600559776,0.6536585365853659,0.6538184726109556,0.6539784086365453,0.6541383446621352,0.6542982806877249,0.6544582167133147,0.6546181527389044,0.6547780887644942,0.654938024790084,0.6550979608156737,0.6552578968412635,0.6554178328668533,0.655577768892443,0.6557377049180327,0.6558976409436226,0.6560575769692123,0.6562175129948021,0.6563774490203919,0.6565373850459816,0.6566973210715714,0.6568572570971611,0.6570171931227509,0.6571771291483407,0.6573370651739304,0.6574970011995201,0.65765693722511,0.6578168732506997,0.6579768092762894,0.6581367453018793,0.658296681327469,0.6584566173530588,0.6586165533786486,0.6587764894042383,0.6589364254298281,0.6590963614554178,0.6592562974810076,0.6594162335065974,0.6595761695321871,0.6597361055577768,0.6598960415833667,0.6600559776089564,0.6602159136345462,0.660375849660136,0.6605357856857257,0.6606957217113155,0.6608556577369052,0.661015593762495,0.6611755297880848,0.6613354658136745,0.6614954018392643,0.6616553378648541,0.6618152738904438,0.6619752099160335,0.6621351459416234,0.6622950819672131,0.6624550179928029,0.6626149540183927,0.6627748900439824,0.6629348260695722,0.6630947620951619,0.6632546981207517,0.6634146341463415,0.6635745701719312,0.663734506197521,0.6638944422231108,0.6640543782487005,0.6642143142742902,0.6643742502998801,0.6645341863254698,0.6646941223510596,0.6648540583766493,0.6650139944022391,0.6651739304278289,0.6653338664534186,0.6654938024790084,0.6656537385045982,0.6658136745301879,0.6659736105557776,0.6661335465813675,0.6662934826069572,0.666453418632547,0.6666133546581368,0.6667732906837265,0.6669332267093163,0.667093162734906,0.6672530987604958,0.6674130347860856,0.6675729708116753,0.667732906837265,0.6678928428628549,0.6680527788884446,0.6682127149140343,0.6683726509396242,0.6685325869652139,0.6686925229908037,0.6688524590163935,0.6690123950419832,0.669172331067573,0.6693322670931627,0.6694922031187525,0.6696521391443423,0.669812075169932,0.6699720111955217,0.6701319472211116,0.6702918832467013,0.6704518192722911,0.6706117552978809,0.6707716913234706,0.6709316273490604,0.6710915633746501,0.6712514994002399,0.6714114354258297,0.6715713714514194,0.6717313074770092,0.671891243502599,0.6720511795281887,0.6722111155537784,0.6723710515793683,0.672530987604958,0.6726909236305478,0.6728508596561376,0.6730107956817273,0.6731707317073171,0.6733306677329068,0.6734906037584966,0.6736505397840864,0.6738104758096761,0.6739704118352658,0.6741303478608557,0.6742902838864454,0.6744502199120351,0.674610155937625,0.6747700919632147,0.6749300279888045,0.6750899640143943,0.675249900039984,0.6754098360655738,0.6755697720911635,0.6757297081167533,0.6758896441423431,0.6760495801679328,0.6762095161935225,0.6763694522191124,0.6765293882447021,0.6766893242702919,0.6768492602958817,0.6770091963214714,0.6771691323470612,0.6773290683726509,0.6774890043982407,0.6776489404238305,0.6778088764494202,0.67796881247501,0.6781287485005998,0.6782886845261895,0.6784486205517792,0.6786085565773691,0.6787684926029588,0.6789284286285486,0.6790883646541384,0.6792483006797281,0.6794082367053179,0.6795681727309076,0.6797281087564974,0.6798880447820872,0.6800479808076769,0.6802079168332666,0.6803678528588565,0.6805277888844462,0.680687724910036,0.6808476609356258,0.6810075969612155,0.6811675329868053,0.681327469012395,0.6814874050379848,0.6816473410635746,0.6818072770891643,0.6819672131147541,0.6821271491403439,0.6822870851659336,0.6824470211915233,0.6826069572171132,0.6827668932427029,0.6829268292682927,0.6830867652938825,0.6832467013194722,0.683406637345062,0.6835665733706517,0.6837265093962415,0.6838864454218313,0.684046381447421,0.6842063174730107,0.6843662534986006,0.6845261895241903,0.68468612554978,0.6848460615753699,0.6850059976009596,0.6851659336265494,0.6853258696521392,0.6854858056777289,0.6856457417033187,0.6858056777289084,0.6859656137544982,0.686125549780088,0.6862854858056777,0.6864454218312674,0.6866053578568573,0.686765293882447,0.6869252299080368,0.6870851659336266,0.6872451019592163,0.6874050379848061,0.6875649740103958,0.6877249100359856,0.6878848460615754,0.6880447820871651,0.6882047181127549,0.6883646541383447,0.6885245901639344,0.6886845261895241,0.688844462215114,0.6890043982407037,0.6891643342662935,0.6893242702918833,0.689484206317473,0.6896441423430628,0.6898040783686525,0.6899640143942423,0.6901239504198321,0.6902838864454218,0.6904438224710115,0.6906037584966014,0.6907636945221911,0.6909236305477809,0.6910835665733707,0.6912435025989604,0.6914034386245502,0.69156337465014,0.6917233106757297,0.6918832467013195,0.6920431827269092,0.692203118752499,0.6923630547780888,0.6925229908036785,0.6926829268292682,0.6928428628548581,0.6930027988804478,0.6931627349060376,0.6933226709316274,0.6934826069572171,0.6936425429828069,0.6938024790083966,0.6939624150339864,0.6941223510595762,0.6942822870851659,0.6944422231107557,0.6946021591363455,0.6947620951619352,0.6949220311875249,0.6950819672131148,0.6952419032387045,0.6954018392642943,0.695561775289884,0.6957217113154738,0.6958816473410636,0.6960415833666533,0.6962015193922431,0.6963614554178329,0.6965213914434226,0.6966813274690123,0.6968412634946022,0.6970011995201919,0.6971611355457817,0.6973210715713715,0.6974810075969612,0.697640943622551,0.6978008796481407,0.6979608156737305,0.6981207516993203,0.69828068772491,0.6984406237504998,0.6986005597760896,0.6987604958016793,0.698920431827269,0.6990803678528589,0.6992403038784486,0.6994002399040384,0.6995601759296282,0.6997201119552179,0.6998800479808077,0.7000399840063974,0.7001999200319872,0.700359856057577,0.7005197920831667,0.7006797281087564,0.7008396641343463,0.700999600159936,0.7011595361855258,0.7013194722111156,0.7014794082367053,0.7016393442622951,0.7017992802878849,0.7019592163134746,0.7021191523390644,0.7022790883646541,0.7024390243902439,0.7025989604158337,0.7027588964414234,0.7029188324670131,0.703078768492603,0.7032387045181927,0.7033986405437825,0.7035585765693723,0.703718512594962,0.7038784486205518,0.7040383846461415,0.7041983206717313,0.7043582566973211,0.7045181927229108,0.7046781287485006,0.7048380647740904,0.7049980007996801,0.7051579368252698,0.7053178728508597,0.7054778088764494,0.7056377449020392,0.705797680927629,0.7059576169532187,0.7061175529788085,0.7062774890043982,0.706437425029988,0.7065973610555778,0.7067572970811675,0.7069172331067572,0.7070771691323471,0.7072371051579368,0.7073970411835266,0.7075569772091164,0.7077169132347061,0.7078768492602959,0.7080367852858857,0.7081967213114754,0.7083566573370652,0.7085165933626549,0.7086765293882447,0.7088364654138345,0.7089964014394242,0.7091563374650139,0.7093162734906038,0.7094762095161935,0.7096361455417833,0.7097960815673731,0.7099560175929628,0.7101159536185526,0.7102758896441423,0.7104358256697321,0.7105957616953219,0.7107556977209116,0.7109156337465014,0.7110755697720912,0.7112355057976809,0.7113954418232707,0.7115553778488605,0.7117153138744502,0.71187524990004,0.7120351859256298,0.7121951219512195,0.7123550579768093,0.712514994002399,0.7126749300279888,0.7128348660535786,0.7129948020791683,0.713154738104758,0.7133146741303479,0.7134746101559376,0.7136345461815274,0.7137944822071172,0.7139544182327069,0.7141143542582967,0.7142742902838864,0.7144342263094762,0.714594162335066,0.7147540983606557,0.7149140343862455,0.7150739704118353,0.715233906437425,0.7153938424630147,0.7155537784886046,0.7157137145141943,0.7158736505397841,0.7160335865653739,0.7161935225909636,0.7163534586165534,0.7165133946421431,0.7166733306677329,0.7168332666933227,0.7169932027189124,0.7171531387445021,0.717313074770092,0.7174730107956817,0.7176329468212715,0.7177928828468613,0.717952818872451,0.7181127548980408,0.7182726909236306,0.7184326269492203,0.7185925629748101,0.7187524990003998,0.7189124350259896,0.7190723710515794,0.7192323070771691,0.7193922431027588,0.7195521791283487,0.7197121151539384,0.7198720511795282,0.720031987205118,0.7201919232307077,0.7203518592562975,0.7205117952818872,0.720671731307477,0.7208316673330668,0.7209916033586565,0.7211515393842463,0.7213114754098361,0.7214714114354258,0.7216313474610156,0.7217912834866054,0.7219512195121951,0.7221111555377849,0.7222710915633747,0.7224310275889644,0.7225909636145542,0.7227508996401439,0.7229108356657337,0.7230707716913235,0.7232307077169132,0.723390643742503,0.7235505797680928,0.7237105157936825,0.7238704518192723,0.7240303878448621,0.7241903238704518,0.7243502598960416,0.7245101959216314,0.7246701319472211,0.7248300679728109,0.7249900039984006,0.7251499400239904,0.7253098760495802,0.7254698120751699,0.7256297481007596,0.7257896841263495,0.7259496201519392,0.726109556177529,0.7262694922031188,0.7264294282287085,0.7265893642542983,0.726749300279888,0.7269092363054778,0.7270691723310676,0.7272291083566573,0.727389044382247,0.7275489804078369,0.7277089164334266,0.7278688524590164,0.7280287884846062,0.7281887245101959,0.7283486605357857,0.7285085965613755,0.7286685325869652,0.728828468612555,0.7289884046381447,0.7291483406637345,0.7293082766893243,0.729468212714914,0.7296281487405037,0.7297880847660936,0.7299480207916833,0.7301079568172731,0.7302678928428629,0.7304278288684526,0.7305877648940424,0.7307477009196321,0.7309076369452219,0.7310675729708117,0.7312275089964014,0.7313874450219912,0.731547381047581,0.7317073170731707,0.7318672530987606,0.7320271891243503,0.73218712514994,0.7323470611755298,0.7325069972011196,0.7326669332267093,0.7328268692522991,0.7329868052778888,0.7331467413034786,0.7333066773290684,0.7334666133546581,0.7336265493802478,0.7337864854058377,0.7339464214314274,0.7341063574570172,0.734266293482607,0.7344262295081967,0.7345861655337865,0.7347461015593763,0.734906037584966,0.7350659736105558,0.7352259096361455,0.7353858456617353,0.7355457816873251,0.7357057177129148,0.7358656537385045,0.7360255897640944,0.7361855257896841,0.7363454618152739,0.7365053978408637,0.7366653338664534,0.7368252698920432,0.736985205917633,0.7371451419432227,0.7373050779688125,0.7374650139944022,0.737624950019992,0.7377848860455818,0.7379448220711715,0.7381047580967613,0.7382646941223511,0.7384246301479408,0.7385845661735306,0.7387445021991204,0.7389044382247101,0.7390643742502999,0.7392243102758896,0.7393842463014794,0.7395441823270692,0.7397041183526589,0.7398640543782486,0.7400239904038385,0.7401839264294282,0.740343862455018,0.7405037984806078,0.7406637345061975,0.7408236705317873,0.740983606557377,0.7411435425829668,0.7413034786085566,0.7414634146341463,0.7416233506597361,0.7417832866853259,0.7419432227109156,0.7421031587365055,0.7422630947620952,0.7424230307876849,0.7425829668132747,0.7427429028388645,0.7429028388644542,0.743062774890044,0.7432227109156337,0.7433826469412235,0.7435425829668133,0.743702518992403,0.7438624550179928,0.7440223910435826,0.7441823270691723,0.7443422630947621,0.7445021991203519,0.7446621351459416,0.7448220711715314,0.7449820071971212,0.7451419432227109,0.7453018792483007,0.7454618152738904,0.7456217512994802,0.74578168732507,0.7459416233506597,0.7461015593762494,0.7462614954018393,0.746421431427429,0.7465813674530188,0.7467413034786086,0.7469012395041983,0.7470611755297881,0.7472211115553778,0.7473810475809676,0.7475409836065574,0.7477009196321471,0.7478608556577369,0.7480207916833267,0.7481807277089164,0.7483406637345063,0.748500599760096,0.7486605357856857,0.7488204718112755,0.7489804078368653,0.749140343862455,0.7493002798880448,0.7494602159136345,0.7496201519392243,0.7497800879648141,0.7499400239904038,0.7500999600159935,0.7502598960415834,0.7504198320671731,0.750579768092763,0.7507397041183527,0.7508996401439424,0.7510595761695322,0.751219512195122,0.7513794482207117,0.7515393842463015,0.7516993202718912,0.751859256297481,0.7520191923230708,0.7521791283486605,0.7523390643742504,0.7524990003998401,0.7526589364254298,0.7528188724510196,0.7529788084766094,0.7531387445021991,0.7532986805277889,0.7534586165533786,0.7536185525789684,0.7537784886045582,0.7539384246301479,0.7540983606557377,0.7542582966813275,0.7544182327069172,0.754578168732507,0.7547381047580968,0.7548980407836865,0.7550579768092763,0.7552179128348661,0.7553778488604558,0.7555377848860456,0.7556977209116353,0.7558576569372251,0.7560175929628149,0.7561775289884046,0.7563374650139943,0.7564974010395842,0.7566573370651739,0.7568172730907637,0.7569772091163535,0.7571371451419432,0.757297081167533,0.7574570171931228,0.7576169532187125,0.7577768892443023,0.757936825269892,0.7580967612954818,0.7582566973210716,0.7584166333466613,0.7585765693722512,0.7587365053978409,0.7588964414234306,0.7590563774490204,0.7592163134746102,0.7593762495001999,0.7595361855257897,0.7596961215513794,0.7598560575769692,0.760015993602559,0.7601759296281487,0.7603358656537385,0.7604958016793283,0.760655737704918,0.7608156737305078,0.7609756097560976,0.7611355457816873,0.7612954818072771,0.7614554178328669,0.7616153538584566,0.7617752898840464,0.7619352259096361,0.7620951619352259,0.7622550979608157,0.7624150339864054,0.7625749700119953,0.762734906037585,0.7628948420631747,0.7630547780887645,0.7632147141143543,0.763374650139944,0.7635345861655338,0.7636945221911235,0.7638544582167133,0.7640143942423031,0.7641743302678928,0.7643342662934826,0.7644942023190724,0.7646541383446621,0.764814074370252,0.7649740103958417,0.7651339464214314,0.7652938824470212,0.765453818472611,0.7656137544982007,0.7657736905237905,0.7659336265493802,0.76609356257497,0.7662534986005598,0.7664134346261495,0.7665733706517392,0.7667333066773291,0.7668932427029188,0.7670531787285086,0.7672131147540984,0.7673730507796881,0.7675329868052779,0.7676929228308677,0.7678528588564574,0.7680127948820472,0.7681727309076369,0.7683326669332267,0.7684926029588165,0.7686525389844062,0.768812475009996,0.7689724110355858,0.7691323470611755,0.7692922830867653,0.7694522191123551,0.7696121551379448,0.7697720911635346,0.7699320271891243,0.7700919632147141,0.7702518992403039,0.7704118352658936,0.7705717712914834,0.7707317073170732,0.7708916433426629,0.7710515793682527,0.7712115153938425,0.7713714514194322,0.771531387445022,0.7716913234706118,0.7718512594962015,0.7720111955217913,0.772171131547381,0.7723310675729708,0.7724910035985606,0.7726509396241503,0.7728108756497402,0.7729708116753299,0.7731307477009196,0.7732906837265094,0.7734506197520992,0.7736105557776889,0.7737704918032787,0.7739304278288685,0.7740903638544582,0.774250299880048,0.7744102359056377,0.7745701719312275,0.7747301079568173,0.774890043982407,0.7750499800079969,0.7752099160335866,0.7753698520591763,0.7755297880847661,0.7756897241103559,0.7758496601359456,0.7760095961615354,0.7761695321871251,0.7763294682127149,0.7764894042383047,0.7766493402638944,0.7768092762894842,0.776969212315074,0.7771291483406637,0.7772890843662535,0.7774490203918433,0.777608956417433,0.7777688924430228,0.7779288284686126,0.7780887644942023,0.7782487005197921,0.7784086365453818,0.7785685725709716,0.7787285085965614,0.7788884446221511,0.779048380647741,0.7792083166733307,0.7793682526989204,0.7795281887245102,0.7796881247501,0.7798480607756897,0.7800079968012795,0.7801679328268692,0.780327868852459,0.7804878048780488,0.7806477409036385,0.7808076769292283,0.7809676129548181,0.7811275489804078,0.7812874850059977,0.7814474210315874,0.7816073570571771,0.7817672930827669,0.7819272291083567,0.7820871651339464,0.7822471011595362,0.7824070371851259,0.7825669732107157,0.7827269092363055,0.7828868452618952,0.7830467812874851,0.7832067173130748,0.7833666533386645,0.7835265893642543,0.7836865253898441,0.7838464614154338,0.7840063974410236,0.7841663334666134,0.7843262694922031,0.7844862055177929,0.7846461415433826,0.7848060775689724,0.7849660135945622,0.7851259496201519,0.7852858856457418,0.7854458216713315,0.7856057576969212,0.785765693722511,0.7859256297481008,0.7860855657736905,0.7862455017992803,0.78640543782487,0.7865653738504598,0.7867253098760496,0.7868852459016393,0.787045181927229,0.7872051179528189,0.7873650539784086,0.7875249900039984,0.7876849260295882,0.7878448620551779,0.7880047980807677,0.7881647341063575,0.7883246701319472,0.788484606157537,0.7886445421831267,0.7888044782087165,0.7889644142343063,0.789124350259896,0.7892842862854859,0.7894442223110756,0.7896041583366653,0.7897640943622551,0.7899240303878449,0.7900839664134346,0.7902439024390244,0.7904038384646142,0.7905637744902039,0.7907237105157937,0.7908836465413834,0.7910435825669732,0.791203518592563,0.7913634546181527,0.7915233906437426,0.7916833266693323,0.791843262694922,0.7920031987205118,0.7921631347461016,0.7923230707716913,0.7924830067972811,0.7926429428228708,0.7928028788484606,0.7929628148740504,0.7931227508996401,0.79328268692523,0.7934426229508197,0.7936025589764094,0.7937624950019992,0.793922431027589,0.7940823670531787,0.7942423030787685,0.7944022391043583,0.794562175129948,0.7947221111555378,0.7948820471811275,0.7950419832067173,0.7952019192323071,0.7953618552578968,0.7955217912834867,0.7956817273090764,0.7958416633346661,0.7960015993602559,0.7961615353858457,0.7963214714114354,0.7964814074370252,0.796641343462615,0.7968012794882047,0.7969612155137945,0.7971211515393842,0.797281087564974,0.7974410235905638,0.7976009596161535,0.7977608956417434,0.7979208316673331,0.7980807676929228,0.7982407037185126,0.7984006397441024,0.7985605757696921,0.7987205117952819,0.7988804478208716,0.7990403838464614,0.7992003198720512,0.7993602558976409,0.7995201919232308,0.7996801279488205,0.7998400639744102,0.8]} diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/subnormal.json b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/subnormal.json new file mode 100644 index 00000000000..8ed54744753 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/subnormal.json @@ -0,0 +1 @@ +{"expected":[1.7724538e-19,3.0694687e-19,3.9625348e-19,4.6884675e-19,5.31618e-19,5.877229e-19,6.389199e-19,6.863083e-19,7.3062956e-19,7.724118e-19,8.1204703e-19,8.498358e-19,8.860142e-19,9.207724e-19,9.542652e-19,9.866218e-19,1.0179505e-18,1.0483433e-18,1.0778794e-18,1.1066276e-18,1.1346475e-18,1.161992e-18,1.1887077e-18,1.2148359e-18,1.2404139e-18,1.2654751e-18,1.2900495e-18,1.3141644e-18,1.3378447e-18,1.3611132e-18,1.3839904e-18,1.4064956e-18,1.4286463e-18,1.4504588e-18,1.4719482e-18,1.4931281e-18,1.5140119e-18,1.5346115e-18,1.5549383e-18,1.5750027e-18,1.5948147e-18,1.6143836e-18,1.6337181e-18,1.6528265e-18,1.6717164e-18,1.6903953e-18,1.7088699e-18,1.7271471e-18,1.7452328e-18,1.763133e-18,1.7808533e-18,1.798399e-18,1.8157752e-18,1.8329865e-18,1.8500378e-18,1.8669334e-18,1.8836776e-18,1.9002742e-18,1.916727e-18,1.9330396e-18,1.949216e-18,1.9652591e-18,1.9811724e-18,1.9969588e-18,2.0126214e-18,2.028163e-18,2.0435865e-18,2.0588943e-18,2.0740894e-18,2.0891737e-18,2.10415e-18,2.1190204e-18,2.1337872e-18,2.1484525e-18,2.1630186e-18,2.177487e-18,2.1918599e-18,2.2061393e-18,2.2203267e-18,2.2344241e-18,2.2484332e-18,2.2623555e-18,2.2761926e-18,2.2899461e-18,2.3036176e-18,2.3172083e-18,2.3307197e-18,2.3441533e-18,2.3575104e-18,2.3707923e-18,2.384e-18,2.397135e-18,2.4101985e-18,2.4231917e-18,2.4361154e-18,2.448971e-18,2.4617594e-18,2.4744816e-18,2.487139e-18,2.4997322e-18,2.512262e-18,2.52473e-18,2.5371364e-18,2.5494827e-18,2.5617695e-18,2.5739975e-18,2.5861678e-18,2.598281e-18,2.610338e-18,2.6223396e-18,2.6342865e-18,2.6461795e-18,2.6580192e-18,2.6698065e-18,2.681542e-18,2.6932262e-18,2.7048601e-18,2.7164442e-18,2.727979e-18,2.7394652e-18,2.7509035e-18,2.7622944e-18,2.7736385e-18,2.7849366e-18,2.7961887e-18,2.807396e-18,2.8185586e-18,2.8296771e-18,2.8407523e-18,2.8517844e-18,2.8627739e-18,2.8737214e-18,2.8846274e-18,2.8954924e-18,2.9063167e-18,2.9171008e-18,2.927845e-18,2.9385502e-18,2.9492165e-18,2.9598443e-18,2.9704341e-18,2.9809863e-18,2.9915012e-18,3.0019795e-18,3.012421e-18,3.0228267e-18,3.0331967e-18,3.0435312e-18,3.0538309e-18,3.0640958e-18,3.0743266e-18,3.0845232e-18,3.0946864e-18,3.1048164e-18,3.1149134e-18,3.1249777e-18,3.1350098e-18,3.1450098e-18,3.1549781e-18,3.164915e-18,3.174821e-18,3.184696e-18,3.1945405e-18,3.2043548e-18,3.2141391e-18,3.2238936e-18,3.2336188e-18,3.2433148e-18,3.2529819e-18,3.2626204e-18,3.2722306e-18,3.2818124e-18,3.2913665e-18,3.3008928e-18,3.310392e-18,3.3198637e-18,3.3293085e-18,3.3387266e-18,3.3481184e-18,3.3574837e-18,3.366823e-18,3.3761364e-18,3.3854242e-18,3.3946868e-18,3.403924e-18,3.4131362e-18,3.4223237e-18,3.4314866e-18,3.440625e-18,3.4497392e-18,3.4588295e-18,3.4678958e-18,3.4769387e-18,3.485958e-18,3.494954e-18,3.5039267e-18,3.512877e-18,3.521804e-18,3.5307088e-18,3.539591e-18,3.5484514e-18,3.557289e-18,3.566105e-18,3.5748997e-18,3.5836723e-18,3.592424e-18,3.601154e-18,3.609863e-18,3.618551e-18,3.627218e-18,3.6358645e-18,3.6444904e-18,3.653096e-18,3.6616817e-18,3.6702467e-18,3.6787923e-18,3.687318e-18,3.695824e-18,3.70431e-18,3.712777e-18,3.721225e-18,3.7296536e-18,3.738063e-18,3.746454e-18,3.754826e-18,3.763179e-18,3.771514e-18,3.7798303e-18,3.7881286e-18,3.7964087e-18,3.8046706e-18,3.8129147e-18,3.8211414e-18,3.82935e-18,3.837541e-18,3.845715e-18,3.853871e-18,3.8620103e-18,3.870132e-18,3.878237e-18,3.8863253e-18,3.8943965e-18,3.902451e-18,3.9104893e-18,3.9185105e-18,3.926516e-18,3.9345044e-18,3.9424772e-18,3.950434e-18,3.9583744e-18,3.966299e-18,3.974208e-18,3.9821012e-18,3.9899785e-18,3.997841e-18,4.0056875e-18,4.0135184e-18,4.0213344e-18,4.0291356e-18,4.036921e-18,4.044692e-18,4.052448e-18,4.0601887e-18,4.067915e-18,4.075627e-18,4.083324e-18,4.0910066e-18,4.098675e-18,4.106329e-18,4.1139687e-18,4.121594e-18,4.1292054e-18,4.136803e-18,4.1443862e-18,4.151956e-18,4.159512e-18,4.1670543e-18,4.174583e-18,4.1820978e-18,4.189599e-18,4.197087e-18,4.204562e-18,4.2120235e-18,4.219472e-18,4.226907e-18,4.2343293e-18,4.2417383e-18,4.2491346e-18,4.256518e-18,4.2638886e-18,4.2712464e-18,4.2785917e-18,4.2859243e-18,4.2932444e-18,4.300552e-18,4.3078474e-18,4.3151304e-18,4.322401e-18,4.3296594e-18,4.3369055e-18,4.34414e-18,4.351362e-18,4.3585722e-18,4.3657704e-18,4.372957e-18,4.3801314e-18,4.3872944e-18,4.394446e-18,4.4015856e-18,4.4087134e-18,4.41583e-18,4.422935e-18,4.430029e-18,4.4371114e-18,4.4441825e-18,4.451242e-18,4.458291e-18,4.4653286e-18,4.472355e-18,4.4793704e-18,4.486375e-18,4.4933683e-18,4.500351e-18,4.507323e-18,4.514284e-18,4.5212344e-18,4.5281744e-18,4.5351033e-18,4.542022e-18,4.54893e-18,4.5558275e-18,4.5627146e-18,4.5695914e-18,4.576458e-18,4.583314e-18,4.5901596e-18,4.5969955e-18,4.603821e-18,4.6106365e-18,4.6174417e-18,4.624237e-18,4.6310224e-18,4.637798e-18,4.6445633e-18,4.6513193e-18,4.658065e-18,4.6648015e-18,4.6715277e-18,4.6782444e-18,4.6849516e-18,4.6916493e-18,4.6983375e-18,4.7050157e-18,4.711685e-18,4.7183445e-18,4.7249946e-18,4.7316356e-18,4.738267e-18,4.7448896e-18,4.7515025e-18,4.7581067e-18,4.7647014e-18,4.771287e-18,4.7778635e-18,4.784431e-18,4.7909896e-18,4.797539e-18,4.8040797e-18,4.8106115e-18,4.8171343e-18,4.8236483e-18,4.8301537e-18,4.83665e-18,4.843138e-18,4.849617e-18,4.8560874e-18,4.8625494e-18,4.8690026e-18,4.875447e-18,4.8818835e-18,4.888311e-18,4.8947304e-18,4.9011415e-18,4.907544e-18,4.9139384e-18,4.9203242e-18,4.9267018e-18,4.933071e-18,4.939432e-18,4.9457853e-18,4.95213e-18,4.9584668e-18,4.964795e-18,4.971116e-18,4.9774282e-18,4.983733e-18,4.9900295e-18,4.996318e-18,5.002599e-18,5.008872e-18,5.0151365e-18,5.0213937e-18,5.027643e-18,5.033885e-18,5.040119e-18,5.046345e-18,5.0525635e-18,5.0587744e-18,5.064978e-18,5.0711734e-18,5.0773616e-18,5.0835423e-18,5.089715e-18,5.095881e-18,5.102039e-18,5.1081898e-18,5.1143332e-18,5.1204693e-18,5.126598e-18,5.132719e-18,5.138833e-18,5.1449397e-18,5.1510394e-18,5.1571316e-18,5.1632167e-18,5.169295e-18,5.1753655e-18,5.181429e-18,5.1874858e-18,5.1935354e-18,5.199578e-18,5.2056134e-18,5.211642e-18,5.2176634e-18,5.223678e-18,5.2296856e-18,5.2356864e-18,5.24168e-18,5.2476673e-18,5.253648e-18,5.259621e-18,5.2655878e-18,5.2715476e-18,5.277501e-18,5.2834474e-18,5.289387e-18,5.2953204e-18,5.3012467e-18,5.3071664e-18,5.31308e-18,5.3189864e-18,5.3248867e-18,5.3307803e-18,5.3366674e-18,5.3425482e-18,5.348422e-18,5.35429e-18,5.360151e-18,5.3660062e-18,5.371855e-18,5.3776968e-18,5.3835325e-18,5.389362e-18,5.3951855e-18,5.401002e-18,5.4068127e-18,5.412617e-18,5.4184156e-18,5.4242075e-18,5.4299932e-18,5.4357727e-18,5.4415464e-18,5.447314e-18,5.4530753e-18,5.4588304e-18,5.4645797e-18,5.470323e-18,5.4760597e-18,5.481791e-18,5.4875158e-18,5.493235e-18,5.4989482e-18,5.5046554e-18,5.5103567e-18,5.5160523e-18,5.521742e-18,5.5274256e-18,5.5331033e-18,5.5387757e-18,5.544442e-18,5.5501023e-18,5.555757e-18,5.561406e-18,5.567049e-18,5.572687e-18,5.5783187e-18,5.5839448e-18,5.589565e-18,5.59518e-18,5.600789e-18,5.6063928e-18,5.6119907e-18,5.6175833e-18,5.62317e-18,5.6287515e-18,5.634327e-18,5.6398973e-18,5.645462e-18,5.6510217e-18,5.6565754e-18,5.6621237e-18,5.6676666e-18,5.673204e-18,5.6787364e-18,5.684263e-18,5.6897846e-18,5.6953006e-18,5.7008113e-18,5.7063166e-18,5.7118165e-18,5.7173115e-18,5.722801e-18,5.7282853e-18,5.733764e-18,5.739238e-18,5.7447065e-18,5.7501696e-18,5.7556278e-18,5.761081e-18,5.7665288e-18,5.7719716e-18,5.777409e-18,5.7828416e-18,5.7882687e-18,5.793691e-18,5.799108e-18,5.8045203e-18,5.8099276e-18,5.8153295e-18,5.8207265e-18,5.826119e-18,5.831506e-18,5.836888e-18,5.842265e-18,5.847637e-18,5.8530043e-18,5.858367e-18,5.863724e-18,5.869077e-18,5.8744245e-18,5.8797673e-18,5.885105e-18,5.8904383e-18,5.8957666e-18,5.9010904e-18,5.9064087e-18,5.911723e-18,5.9170318e-18,5.922336e-18,5.927636e-18,5.9329306e-18,5.938221e-18,5.9435065e-18,5.9487872e-18,5.9540634e-18,5.9593346e-18,5.9646013e-18,5.9698634e-18,5.975121e-18,5.980374e-18,5.985622e-18,5.990866e-18,5.996105e-18,6.0013393e-18,6.006569e-18,6.0117944e-18,6.0170156e-18,6.0222318e-18,6.0274434e-18,6.032651e-18,6.0378535e-18,6.043052e-18,6.0482458e-18,6.053435e-18,6.0586203e-18,6.0638005e-18,6.068977e-18,6.0741485e-18,6.079316e-18,6.0844788e-18,6.089637e-18,6.0947912e-18,6.0999413e-18,6.1050867e-18,6.1102277e-18,6.1153645e-18,6.120497e-18,6.1256252e-18,6.130749e-18,6.1358686e-18,6.140984e-18,6.146095e-18,6.151202e-18,6.1563045e-18,6.161403e-18,6.166497e-18,6.171587e-18,6.176673e-18,6.1817544e-18,6.186832e-18,6.191905e-18,6.1969745e-18,6.2020393e-18,6.2071e-18,6.2121566e-18,6.2172094e-18,6.2222577e-18,6.2273023e-18,6.2323427e-18,6.237379e-18,6.242411e-18,6.247439e-18,6.252463e-18,6.257483e-18,6.2624992e-18,6.267511e-18,6.2725193e-18,6.2775233e-18,6.282523e-18,6.2875194e-18,6.2925114e-18,6.2974993e-18,6.3024835e-18,6.307464e-18,6.3124402e-18,6.3174124e-18,6.322381e-18,6.3273456e-18,6.3323062e-18,6.337263e-18,6.342216e-18,6.347165e-18,6.35211e-18,6.3570518e-18,6.361989e-18,6.366923e-18,6.3718525e-18,6.3767788e-18,6.381701e-18,6.3866193e-18,6.391534e-18,6.396445e-18,6.4013522e-18,6.4062554e-18,6.411155e-18,6.416051e-18,6.420943e-18,6.4258314e-18,6.4307163e-18,6.435597e-18,6.4404746e-18,6.4453483e-18,6.450218e-18,6.4550842e-18,6.459947e-18,6.4648057e-18,6.4696612e-18,6.4745126e-18,6.4793607e-18,6.484205e-18,6.4890458e-18,6.493883e-18,6.4987168e-18,6.5035467e-18,6.508373e-18,6.5131957e-18,6.518015e-18,6.5228307e-18,6.527643e-18,6.5324513e-18,6.5372564e-18,6.542058e-18,6.5468558e-18,6.5516505e-18,6.5564416e-18,6.561229e-18,6.566013e-18,6.570793e-18,6.5755705e-18,6.5803438e-18,6.585114e-18,6.5898808e-18,6.5946437e-18,6.5994037e-18,6.60416e-18,6.608913e-18,6.613662e-18,6.6184086e-18,6.623151e-18,6.6278905e-18,6.632626e-18,6.637359e-18,6.642088e-18,6.6468135e-18,6.651536e-18,6.656255e-18,6.6609707e-18,6.665683e-18,6.6703923e-18,6.675098e-18,6.6798007e-18,6.6844995e-18,6.6891954e-18,6.693888e-18,6.6985773e-18,6.7032632e-18,6.707946e-18,6.7126253e-18,6.7173013e-18,6.7219745e-18,6.726644e-18,6.7313104e-18,6.7359737e-18,6.7406336e-18,6.7452902e-18,6.749944e-18,6.7545943e-18,6.7592414e-18,6.7638852e-18,6.768526e-18,6.7731637e-18,6.777798e-18,6.782429e-18,6.787057e-18,6.7916822e-18,6.7963037e-18,6.8009227e-18,6.805538e-18,6.8101503e-18,6.8147597e-18,6.819366e-18,6.8239687e-18,6.8285687e-18,6.8331653e-18,6.837759e-18,6.84235e-18,6.8469375e-18,6.8515217e-18,6.8561035e-18,6.8606815e-18,6.865257e-18,6.8698293e-18,6.8743986e-18,6.8789647e-18,6.883528e-18,6.888088e-18,6.892645e-18,6.897199e-18,6.90175e-18,6.9062984e-18,6.9108434e-18,6.9153854e-18,6.9199246e-18,6.924461e-18,6.928994e-18,6.9335243e-18,6.938052e-18,6.942576e-18,6.947097e-18,6.951616e-18,6.9561315e-18,6.960644e-18,6.9651536e-18,6.96966e-18,6.974164e-18,6.978665e-18,6.983163e-18,6.987658e-18,6.99215e-18,6.996639e-18,7.001126e-18,7.005609e-18,7.01009e-18,7.0145685e-18,7.0190436e-18,7.023515e-18,7.0279846e-18,7.032451e-18,7.036915e-18,7.041376e-18,7.0458335e-18,7.050289e-18,7.054741e-18,7.059191e-18,7.063638e-18,7.068081e-18,7.0725225e-18,7.076961e-18,7.0813964e-18,7.085829e-18,7.090259e-18,7.094687e-18,7.099111e-18,7.103533e-18,7.1079514e-18,7.112368e-18,7.1167816e-18,7.121192e-18,7.1256e-18,7.130006e-18,7.134408e-18,7.138808e-18,7.143205e-18,7.1476e-18,7.151991e-18,7.15638e-18,7.160767e-18,7.165151e-18,7.169532e-18,7.17391e-18,7.178286e-18,7.182658e-18,7.187029e-18,7.1913966e-18,7.195762e-18,7.200124e-18,7.204484e-18,7.208841e-18,7.213195e-18,7.217547e-18,7.221896e-18,7.226243e-18,7.230587e-18,7.234929e-18,7.239267e-18,7.243603e-18,7.247937e-18,7.252268e-18,7.256597e-18,7.260922e-18,7.265246e-18,7.269566e-18,7.273885e-18,7.2782e-18,7.282513e-18,7.2868234e-18,7.291131e-18,7.295437e-18,7.29974e-18,7.3040396e-18,7.3083376e-18,7.312633e-18,7.316925e-18,7.321216e-18,7.325503e-18,7.329789e-18,7.334071e-18,7.338351e-18,7.342629e-18,7.346904e-18,7.351177e-18,7.355447e-18,7.359715e-18,7.36398e-18,7.368243e-18,7.372504e-18,7.376761e-18,7.381017e-18,7.3852695e-18,7.38952e-18,7.393768e-18,7.398014e-18,7.402257e-18,7.4064974e-18,7.410736e-18,7.414972e-18,7.4192054e-18,7.4234365e-18,7.427665e-18,7.431892e-18,7.4361155e-18,7.4403366e-18,7.444556e-18,7.448773e-18,7.452987e-18,7.457199e-18,7.461408e-18,7.465615e-18,7.469821e-18,7.474023e-18,7.478223e-18,7.48242e-18,7.486616e-18,7.490809e-18,7.494999e-18,7.499188e-18,7.5033735e-18,7.5075574e-18,7.511739e-18,7.515918e-18,7.520094e-18,7.524269e-18,7.528441e-18,7.53261e-18,7.536778e-18,7.540943e-18,7.545106e-18,7.549266e-18,7.5534246e-18,7.55758e-18,7.5617344e-18,7.565886e-18,7.570034e-18,7.574182e-18,7.578326e-18,7.5824685e-18,7.5866086e-18,7.590746e-18,7.594882e-18,7.599015e-18,7.603146e-18,7.607275e-18,7.611402e-18,7.615526e-18,7.619648e-18,7.623767e-18,7.627885e-18,7.632001e-18,7.636114e-18,7.640225e-18,7.644333e-18,7.64844e-18,7.652544e-18,7.656647e-18,7.660746e-18,7.664844e-18,7.6689395e-18,7.673033e-18,7.6771245e-18,7.681213e-18,7.6853e-18,7.689385e-18,7.693467e-18,7.6975476e-18,7.7016256e-18,7.705702e-18,7.709776e-18,7.713847e-18,7.717917e-18,7.721984e-18,7.72605e-18,7.730113e-18,7.7341735e-18,7.7382324e-18,7.74229e-18,7.746344e-18,7.750396e-18,7.754447e-18,7.758495e-18,7.762542e-18,7.766586e-18,7.770627e-18,7.774667e-18,7.778705e-18,7.7827406e-18,7.786774e-18,7.7908056e-18,7.794835e-18,7.798862e-18,7.802887e-18,7.806911e-18,7.810932e-18,7.814951e-18,7.818968e-18,7.822982e-18,7.8269955e-18,7.831006e-18,7.835015e-18,7.839021e-18,7.843026e-18,7.847028e-18,7.851029e-18,7.855028e-18,7.859024e-18,7.8630184e-18,7.86701e-18,7.8710015e-18,7.874989e-18,7.8789756e-18,7.88296e-18,7.886942e-18,7.8909225e-18,7.894901e-18,7.8988775e-18,7.902851e-18,7.906824e-18,7.910794e-18,7.914763e-18,7.918729e-18,7.922693e-18,7.926655e-18,7.930616e-18,7.9345745e-18,7.938531e-18,7.942485e-18,7.946437e-18,7.950388e-18,7.954337e-18,7.958283e-18,7.962228e-18,7.96617e-18,7.970111e-18,7.97405e-18,7.977987e-18,7.9819215e-18,7.985855e-18,7.9897855e-18,7.993715e-18,7.997642e-18,8.001567e-18,8.00549e-18,8.009412e-18,8.013331e-18,8.017249e-18,8.021165e-18,8.025078e-18,8.02899e-18,8.0329e-18,8.0368074e-18,8.040714e-18,8.044618e-18,8.04852e-18,8.0524205e-18,8.056319e-18,8.060216e-18,8.064111e-18,8.068004e-18,8.071895e-18,8.075783e-18,8.079671e-18,8.083556e-18,8.08744e-18,8.091322e-18,8.095201e-18,8.099079e-18,8.102955e-18,8.10683e-18,8.110702e-18,8.114572e-18,8.118441e-18,8.122308e-18,8.126173e-18,8.1300365e-18,8.133898e-18,8.137757e-18,8.1416145e-18,8.145471e-18,8.149325e-18,8.153177e-18,8.157027e-18,8.1608754e-18,8.164723e-18,8.168567e-18,8.1724104e-18,8.176252e-18,8.180092e-18,8.183929e-18,8.187765e-18,8.191599e-18,8.195432e-18,8.199262e-18,8.2030906e-18,8.206918e-18,8.210743e-18,8.214566e-18,8.218388e-18,8.2222075e-18,8.226026e-18,8.2298424e-18,8.2336566e-18,8.237469e-18,8.241281e-18,8.24509e-18,8.248897e-18,8.252702e-18,8.256507e-18,8.260309e-18,8.264109e-18,8.2679085e-18,8.271705e-18,8.2755e-18,8.279294e-18,8.2830856e-18,8.286876e-18,8.290664e-18,8.29445e-18,8.298235e-18,8.302018e-18,8.3058e-18,8.309579e-18,8.313357e-18,8.317134e-18,8.320908e-18,8.324681e-18,8.328452e-18,8.332222e-18,8.335989e-18,8.339755e-18,8.343519e-18,8.347282e-18,8.3510426e-18,8.354802e-18,8.358559e-18,8.362315e-18,8.366069e-18,8.369822e-18,8.3735725e-18,8.377321e-18,8.381069e-18,8.384815e-18,8.3885585e-18,8.3923015e-18,8.396042e-18,8.399781e-18,8.403518e-18,8.4072545e-18,8.410988e-18,8.414721e-18,8.418451e-18,8.42218e-18,8.425908e-18,8.429634e-18,8.433358e-18,8.43708e-18,8.440802e-18,8.444521e-18,8.448238e-18,8.451954e-18,8.4556685e-18,8.459381e-18,8.4630925e-18,8.4668015e-18,8.47051e-18,8.4742156e-18,8.4779205e-18,8.481623e-18,8.485325e-18,8.4890246e-18,8.492722e-18,8.496419e-18,8.500114e-18,8.503807e-18,8.507499e-18,8.511189e-18,8.514877e-18,8.518564e-18,8.522249e-18,8.525933e-18,8.529615e-18,8.533296e-18,8.536975e-18,8.540652e-18,8.544328e-18,8.548002e-18,8.5516744e-18,8.5553454e-18,8.559015e-18,8.562683e-18,8.5663494e-18,8.570014e-18,8.5736774e-18,8.5773385e-18,8.580999e-18,8.5846574e-18,8.588314e-18,8.59197e-18,8.595623e-18,8.599276e-18,8.6029265e-18,8.606576e-18,8.610223e-18,8.613869e-18,8.617514e-18,8.621157e-18,8.624799e-18,8.6284384e-18,8.632076e-18,8.6357135e-18,8.639349e-18,8.642983e-18,8.646615e-18,8.650245e-18,8.653875e-18,8.657503e-18,8.661129e-18,8.664753e-18,8.668376e-18,8.671999e-18,8.675618e-18,8.679237e-18,8.6828545e-18,8.68647e-18,8.690084e-18,8.693696e-18,8.697308e-18,8.700917e-18,8.704525e-18,8.7081315e-18,8.711737e-18,8.71534e-18,8.718943e-18,8.7225435e-18,8.7261425e-18,8.72974e-18,8.7333365e-18,8.736931e-18,8.740524e-18,8.744116e-18,8.747706e-18,8.751295e-18,8.754882e-18,8.758468e-18,8.762053e-18,8.7656354e-18,8.769217e-18,8.772797e-18,8.7763755e-18,8.779952e-18,8.783528e-18,8.7871024e-18,8.790675e-18,8.794247e-18,8.797816e-18,8.8013845e-18,8.804951e-18,8.808517e-18,8.812081e-18,8.8156435e-18,8.8192045e-18,8.822765e-18,8.826322e-18,8.829879e-18,8.833435e-18,8.836989e-18,8.840542e-18,8.844093e-18,8.847642e-18,8.851191e-18,8.854738e-18,8.858283e-18,8.861827e-18,8.8653694e-18,8.868911e-18,8.872451e-18,8.875989e-18,8.879526e-18,8.883061e-18,8.886596e-18,8.890129e-18,8.89366e-18,8.897189e-18,8.900718e-18,8.904245e-18,8.907771e-18,8.911295e-18,8.914818e-18,8.91834e-18,8.92186e-18,8.925379e-18,8.928896e-18,8.9324124e-18,8.935927e-18,8.93944e-18,8.9429515e-18,8.946462e-18,8.949972e-18,8.953479e-18,8.9569855e-18,8.96049e-18,8.963994e-18,8.9674965e-18,8.970997e-18,8.974497e-18,8.977995e-18,8.9814915e-18,8.984987e-18,8.988481e-18,8.9919736e-18,8.995465e-18,8.998955e-18,9.002444e-18,9.005931e-18,9.009417e-18,9.012902e-18,9.016385e-18,9.019867e-18,9.023348e-18,9.026827e-18,9.030304e-18,9.033781e-18,9.037256e-18,9.04073e-18,9.0442026e-18,9.047674e-18,9.0511434e-18,9.054613e-18,9.058079e-18,9.061545e-18,9.06501e-18,9.068473e-18,9.071935e-18,9.0753955e-18,9.078855e-18,9.0823124e-18,9.085769e-18,9.089225e-18,9.092679e-18,9.096131e-18,9.099583e-18,9.103033e-18,9.106482e-18,9.1099295e-18,9.1133755e-18,9.11682e-18,9.1202635e-18,9.123706e-18,9.127147e-18,9.130587e-18,9.134025e-18,9.137462e-18,9.1408975e-18,9.144333e-18,9.1477656e-18,9.1511976e-18,9.154628e-18,9.158057e-18,9.161485e-18,9.164912e-18,9.1683376e-18,9.171762e-18,9.175185e-18,9.178606e-18,9.1820266e-18,9.185446e-18,9.188864e-18,9.19228e-18,9.195696e-18,9.1991095e-18,9.2025225e-18,9.205934e-18,9.209344e-18,9.212753e-18,9.216161e-18,9.219567e-18,9.222973e-18,9.226377e-18,9.229779e-18,9.233181e-18,9.236581e-18,9.23998e-18,9.243378e-18,9.246774e-18,9.250169e-18,9.253563e-18,9.256956e-18,9.260347e-18,9.263737e-18,9.267126e-18,9.270514e-18,9.273901e-18,9.2772855e-18,9.2806695e-18,9.284053e-18,9.287434e-18,9.290815e-18,9.294194e-18,9.297571e-18,9.300948e-18,9.3043236e-18,9.307698e-18,9.311071e-18,9.3144425e-18,9.317813e-18,9.321182e-18,9.324551e-18,9.327917e-18,9.331283e-18,9.334647e-18,9.3380105e-18,9.341372e-18,9.344733e-18,9.348093e-18,9.351451e-18,9.354809e-18,9.358165e-18,9.361519e-18,9.364873e-18,9.368225e-18,9.371577e-18,9.374927e-18,9.378275e-18,9.381623e-18,9.3849695e-18,9.388315e-18,9.391658e-18,9.395002e-18,9.3983426e-18,9.4016836e-18,9.405023e-18,9.4083606e-18,9.411697e-18,9.4150334e-18,9.418368e-18,9.421701e-18,9.425033e-18,9.428364e-18,9.431694e-18,9.435023e-18,9.43835e-18,9.441676e-18,9.445001e-18,9.448326e-18,9.4516486e-18,9.45497e-18,9.45829e-18,9.4616095e-18,9.464928e-18,9.468244e-18,9.4715605e-18,9.474875e-18,9.478189e-18,9.481501e-18,9.484812e-18,9.488122e-18,9.491431e-18,9.494739e-18,9.498045e-18,9.5013505e-18,9.504655e-18,9.507958e-18,9.51126e-18,9.514561e-18,9.51786e-18,9.521159e-18,9.524456e-18,9.5277525e-18,9.531047e-18,9.534342e-18,9.537634e-18,9.540926e-18,9.544217e-18,9.5475056e-18,9.5507944e-18,9.554082e-18,9.557367e-18,9.560652e-18,9.563936e-18,9.567219e-18,9.5705e-18,9.57378e-18,9.57706e-18,9.580338e-18,9.5836145e-18,9.586891e-18,9.590166e-18,9.593439e-18,9.596712e-18,9.599983e-18,9.603253e-18,9.6065224e-18,9.609791e-18,9.613058e-18,9.616324e-18,9.6195886e-18,9.622852e-18,9.626114e-18,9.629376e-18,9.6326365e-18,9.635896e-18,9.639154e-18,9.6424105e-18,9.645666e-18,9.648921e-18,9.652175e-18,9.655428e-18,9.6586795e-18,9.6619295e-18,9.665179e-18,9.668427e-18,9.6716745e-18,9.67492e-18,9.678165e-18,9.6814096e-18,9.684652e-18,9.687894e-18,9.691135e-18,9.694374e-18,9.697612e-18,9.70085e-18,9.704086e-18,9.707322e-18,9.710555e-18,9.713789e-18,9.7170205e-18,9.7202515e-18,9.723482e-18,9.72671e-18,9.729938e-18,9.733165e-18,9.736391e-18,9.739615e-18,9.7428385e-18,9.74606e-18,9.749282e-18,9.7525024e-18,9.755721e-18,9.7589396e-18,9.7621565e-18,9.7653725e-18,9.768587e-18,9.771801e-18,9.775014e-18,9.778226e-18,9.781436e-18,9.784646e-18,9.7878545e-18,9.791062e-18,9.794269e-18,9.797475e-18,9.800679e-18,9.803882e-18,9.807085e-18,9.810286e-18,9.8134855e-18,9.816685e-18,9.819883e-18,9.82308e-18,9.826276e-18,9.829472e-18,9.832665e-18,9.835858e-18,9.83905e-18,9.842241e-18,9.845431e-18,9.84862e-18,9.851807e-18,9.854994e-18,9.85818e-18,9.861364e-18,9.864548e-18,9.867731e-18,9.8709125e-18,9.874093e-18,9.877273e-18,9.880451e-18,9.883629e-18,9.886805e-18,9.889981e-18,9.893155e-18,9.8963285e-18,9.899501e-18,9.902672e-18,9.905843e-18,9.909012e-18,9.9121806e-18,9.915348e-18,9.918514e-18,9.921679e-18,9.924844e-18,9.928007e-18,9.931169e-18,9.934331e-18,9.937491e-18,9.9406505e-18,9.943809e-18,9.946966e-18,9.950122e-18,9.953277e-18,9.956431e-18,9.959585e-18,9.962737e-18,9.9658886e-18,9.9690385e-18,9.9721875e-18,9.975336e-18,9.978483e-18,9.98163e-18,9.984775e-18,9.987919e-18,9.991062e-18,9.994205e-18,9.997346e-18,1.0000486e-17,1.0003626e-17,1.00067645e-17,1.0009902e-17,1.0013038e-17,1.0016174e-17,1.0019308e-17,1.0022441e-17,1.0025574e-17,1.00287055e-17,1.0031836e-17,1.0034966e-17,1.0038094e-17,1.00412216e-17,1.0044348e-17,1.0047474e-17,1.0050599e-17,1.0053723e-17,1.0056845e-17,1.0059967e-17,1.0063088e-17,1.0066208e-17,1.0069327e-17,1.0072444e-17,1.0075562e-17,1.0078678e-17,1.0081792e-17,1.0084907e-17,1.008802e-17,1.0091132e-17,1.0094243e-17,1.0097353e-17,1.01004626e-17,1.0103571e-17,1.0106678e-17,1.0109785e-17,1.011289e-17,1.01159945e-17,1.0119098e-17,1.0122201e-17,1.0125303e-17,1.0128403e-17,1.01315025e-17,1.0134602e-17,1.01377e-17,1.0140797e-17,1.0143892e-17,1.0146987e-17,1.0150082e-17,1.0153175e-17,1.0156267e-17,1.0159358e-17,1.0162448e-17,1.0165538e-17,1.0168626e-17,1.01717134e-17,1.01748005e-17,1.0177886e-17,1.018097e-17,1.0184054e-17,1.0187137e-17,1.0190219e-17,1.01932995e-17,1.019638e-17,1.0199459e-17,1.0202537e-17,1.0205615e-17,1.0208691e-17,1.02117655e-17,1.021484e-17,1.0217914e-17,1.0220986e-17,1.0224058e-17,1.0227129e-17,1.0230198e-17,1.0233267e-17,1.0236335e-17,1.02394025e-17,1.0242469e-17,1.0245534e-17,1.0248598e-17,1.0251662e-17,1.0254724e-17,1.0257786e-17,1.0260846e-17,1.0263906e-17,1.0266965e-17,1.0270023e-17,1.027308e-17,1.0276136e-17,1.02791915e-17,1.02822454e-17,1.02852986e-17,1.0288352e-17,1.0291403e-17,1.0294454e-17,1.0297504e-17,1.0300553e-17,1.03036e-17,1.0306647e-17,1.0309693e-17,1.0312739e-17,1.0315783e-17,1.0318827e-17,1.0321869e-17,1.0324911e-17,1.0327951e-17,1.0330991e-17,1.033403e-17,1.03370685e-17,1.0340105e-17,1.0343142e-17,1.0346177e-17,1.03492115e-17,1.0352246e-17,1.0355278e-17,1.035831e-17,1.03613405e-17,1.0364371e-17,1.03674e-17,1.0370429e-17,1.0373456e-17,1.0376482e-17,1.0379508e-17,1.0382533e-17,1.0385557e-17,1.03885795e-17,1.0391602e-17,1.0394623e-17,1.0397644e-17,1.0400663e-17,1.0403681e-17,1.04067e-17,1.04097165e-17,1.0412732e-17,1.04157474e-17,1.0418762e-17,1.0421775e-17,1.0424788e-17,1.04277995e-17,1.04308096e-17,1.043382e-17,1.0436829e-17,1.04398366e-17,1.0442844e-17,1.0445851e-17,1.0448856e-17,1.0451861e-17,1.0454865e-17,1.04578675e-17,1.046087e-17,1.0463871e-17,1.0466871e-17,1.0469871e-17,1.047287e-17,1.0475868e-17,1.0478865e-17,1.0481861e-17,1.0484856e-17,1.048785e-17,1.0490844e-17,1.0493837e-17,1.04968285e-17,1.049982e-17,1.0502809e-17,1.05057984e-17,1.0508787e-17,1.0511775e-17,1.0514762e-17,1.0517747e-17,1.0520732e-17,1.0523717e-17,1.05267e-17,1.05296825e-17,1.0532664e-17,1.0535645e-17,1.0538625e-17,1.0541604e-17,1.05445825e-17,1.05475595e-17,1.05505365e-17,1.0553512e-17,1.05564864e-17,1.0559461e-17,1.0562434e-17,1.0565407e-17,1.0568378e-17,1.0571349e-17,1.0574319e-17,1.05772875e-17,1.0580256e-17,1.0583223e-17,1.058619e-17,1.0589156e-17,1.05921205e-17,1.0595084e-17,1.0598048e-17,1.060101e-17,1.06039716e-17,1.0606933e-17,1.06098925e-17,1.0612851e-17,1.061581e-17,1.0618767e-17,1.06217245e-17,1.062468e-17,1.0627635e-17,1.0630589e-17,1.06335424e-17,1.0636495e-17,1.0639447e-17,1.0642397e-17,1.0645348e-17,1.0648297e-17,1.0651246e-17,1.0654193e-17,1.0657139e-17,1.0660086e-17,1.0663031e-17,1.0665975e-17,1.0668919e-17,1.06718616e-17,1.0674804e-17,1.06777445e-17,1.0680685e-17,1.0683625e-17,1.0686563e-17,1.0689501e-17,1.06924385e-17,1.0695374e-17,1.069831e-17,1.0701245e-17,1.0704179e-17,1.0707112e-17,1.0710043e-17,1.0712975e-17,1.0715906e-17,1.07188355e-17,1.07217646e-17,1.0724693e-17,1.072762e-17,1.0730547e-17,1.0733473e-17,1.0736398e-17,1.0739322e-17,1.07422455e-17,1.0745168e-17,1.074809e-17,1.0751011e-17,1.0753932e-17,1.0756851e-17,1.0759769e-17,1.0762688e-17,1.0765605e-17,1.0768521e-17,1.0771437e-17,1.0774352e-17,1.0777265e-17,1.0780178e-17,1.0783091e-17,1.07860026e-17,1.07889134e-17,1.07918234e-17,1.0794733e-17,1.0797641e-17,1.08005485e-17,1.0803455e-17,1.0806362e-17,1.0809267e-17,1.0812171e-17,1.08150755e-17,1.0817978e-17,1.0820881e-17,1.08237816e-17,1.08266825e-17,1.08295826e-17,1.0832482e-17,1.08353795e-17,1.0838277e-17,1.0841174e-17,1.084407e-17,1.0846966e-17,1.084986e-17,1.08527536e-17,1.0855646e-17,1.0858539e-17,1.086143e-17,1.0864321e-17,1.086721e-17,1.08700995e-17,1.0872988e-17,1.0875875e-17,1.0878762e-17,1.0881648e-17,1.0884533e-17,1.0887417e-17,1.0890302e-17,1.08931845e-17,1.0896066e-17,1.0898948e-17,1.09018285e-17,1.0904709e-17,1.0907587e-17,1.0910466e-17,1.0913344e-17,1.0916221e-17,1.0919097e-17,1.0921972e-17,1.09248465e-17,1.092772e-17,1.0930594e-17,1.0933466e-17,1.0936337e-17,1.0939208e-17,1.0942078e-17,1.0944948e-17,1.0947816e-17,1.09506835e-17,1.09535505e-17,1.09564175e-17,1.0959283e-17,1.0962147e-17,1.0965011e-17,1.0967875e-17,1.0970738e-17,1.0973599e-17,1.097646e-17,1.09793205e-17,1.098218e-17,1.0985039e-17,1.0987897e-17,1.0990755e-17,1.0993611e-17,1.0996467e-17,1.0999322e-17,1.1002176e-17,1.100503e-17,1.1007883e-17,1.1010735e-17,1.10135864e-17,1.1016437e-17,1.1019287e-17,1.1022136e-17,1.1024985e-17,1.1027832e-17,1.1030679e-17,1.1033526e-17,1.1036371e-17,1.1039216e-17,1.104206e-17,1.10449035e-17,1.1047746e-17,1.1050588e-17,1.1053429e-17,1.1056269e-17,1.1059109e-17,1.10619475e-17,1.10647864e-17,1.1067624e-17,1.107046e-17,1.10732965e-17,1.1076132e-17,1.1078966e-17,1.10818e-17,1.1084633e-17,1.1087466e-17,1.10902975e-17,1.1093128e-17,1.1095959e-17,1.10987885e-17,1.1101617e-17,1.1104445e-17,1.1107272e-17,1.1110099e-17,1.1112925e-17,1.111575e-17,1.1118575e-17,1.1121399e-17,1.1124221e-17,1.1127043e-17,1.1129866e-17,1.1132686e-17,1.1135506e-17,1.1138326e-17,1.1141144e-17,1.11439625e-17,1.114678e-17,1.11495964e-17,1.1152413e-17,1.1155228e-17,1.1158042e-17,1.1160856e-17,1.1163669e-17,1.1166482e-17,1.1169293e-17,1.1172104e-17,1.1174914e-17,1.1177724e-17,1.1180533e-17,1.11833404e-17,1.1186148e-17,1.11889545e-17,1.1191761e-17,1.1194566e-17,1.1197371e-17,1.1200174e-17,1.1202978e-17,1.120578e-17,1.1208582e-17,1.12113835e-17,1.12141835e-17,1.12169835e-17,1.1219783e-17,1.1222581e-17,1.12253786e-17,1.1228175e-17,1.1230971e-17,1.1233767e-17,1.1236562e-17,1.1239356e-17,1.124215e-17,1.1244942e-17,1.1247734e-17,1.1250526e-17,1.1253316e-17,1.1256106e-17,1.1258895e-17,1.12616835e-17,1.1264472e-17,1.1267259e-17,1.12700455e-17,1.12728314e-17,1.12756166e-17,1.1278401e-17,1.1281184e-17,1.1283968e-17,1.12867504e-17,1.1289531e-17,1.1292313e-17,1.1295093e-17,1.1297873e-17,1.1300652e-17,1.130343e-17,1.1306207e-17,1.1308984e-17,1.1311761e-17,1.1314536e-17,1.13173114e-17,1.1320086e-17,1.13228585e-17,1.1325632e-17,1.1328404e-17,1.1331175e-17,1.1333946e-17,1.1336716e-17,1.1339486e-17,1.1342254e-17,1.1345023e-17,1.134779e-17,1.1350557e-17,1.1353323e-17,1.1356088e-17,1.1358853e-17,1.1361617e-17,1.13643805e-17,1.1367143e-17,1.1369905e-17,1.1372666e-17,1.13754275e-17,1.1378187e-17,1.13809464e-17,1.1383705e-17,1.1386463e-17,1.1389221e-17,1.1391977e-17,1.1394733e-17,1.1397488e-17,1.1400243e-17,1.14029974e-17,1.140575e-17,1.1408503e-17,1.1411255e-17,1.1414006e-17,1.14167576e-17,1.1419507e-17,1.1422257e-17,1.1425005e-17,1.1427753e-17,1.1430501e-17,1.1433247e-17,1.1435994e-17,1.1438739e-17,1.1441484e-17,1.1444228e-17,1.1446971e-17,1.1449714e-17,1.1452456e-17,1.14551975e-17,1.1457939e-17,1.1460678e-17,1.1463418e-17,1.1466157e-17,1.1468896e-17,1.1471633e-17,1.147437e-17,1.1477106e-17,1.1479842e-17,1.1482576e-17,1.1485311e-17,1.1488044e-17,1.1490777e-17,1.1493509e-17,1.1496241e-17,1.1498972e-17,1.1501702e-17,1.1504432e-17,1.1507162e-17,1.150989e-17,1.1512618e-17,1.1515345e-17,1.15180715e-17,1.1520797e-17,1.1523523e-17,1.15262465e-17,1.152897e-17,1.1531694e-17,1.15344166e-17,1.1537139e-17,1.153986e-17,1.1542581e-17,1.1545301e-17,1.154802e-17,1.1550739e-17,1.15534574e-17,1.1556175e-17,1.1558891e-17,1.1561608e-17,1.1564323e-17,1.1567038e-17,1.1569753e-17,1.1572466e-17,1.1575179e-17,1.15778915e-17,1.1580604e-17,1.15833145e-17,1.1586025e-17,1.1588735e-17,1.1591444e-17,1.1594153e-17,1.15968604e-17,1.1599568e-17,1.1602275e-17,1.1604981e-17,1.16076866e-17,1.16103915e-17,1.16130955e-17,1.1615799e-17,1.1618502e-17,1.1621204e-17,1.1623906e-17,1.1626607e-17,1.16293074e-17,1.16320065e-17,1.16347064e-17,1.1637405e-17,1.1640102e-17,1.16427996e-17,1.1645496e-17,1.1648193e-17,1.1650888e-17,1.1653583e-17,1.1656277e-17,1.165897e-17,1.1661663e-17,1.1664356e-17,1.16670475e-17,1.1669738e-17,1.1672428e-17,1.1675118e-17,1.16778075e-17,1.1680497e-17,1.1683184e-17,1.1685872e-17,1.1688558e-17,1.1691244e-17,1.169393e-17,1.1696615e-17,1.1699299e-17,1.1701983e-17,1.1704665e-17,1.1707348e-17,1.17100295e-17,1.1712711e-17,1.1715391e-17,1.1718071e-17,1.17207506e-17,1.172343e-17,1.1726107e-17,1.1728785e-17,1.1731462e-17,1.17341385e-17,1.1736814e-17,1.1739489e-17,1.1742164e-17,1.1744837e-17,1.1747511e-17,1.1750183e-17,1.1752855e-17,1.1755527e-17,1.1758197e-17,1.1760867e-17,1.1763537e-17,1.1766206e-17,1.1768874e-17,1.1771542e-17,1.177421e-17,1.1776876e-17,1.1779542e-17,1.1782208e-17,1.1784872e-17,1.1787536e-17,1.17902e-17,1.17928625e-17,1.1795525e-17,1.1798187e-17,1.1800848e-17,1.1803508e-17,1.18061686e-17,1.1808828e-17,1.18114865e-17,1.1814145e-17,1.1816802e-17,1.1819459e-17,1.1822116e-17,1.1824771e-17,1.1827426e-17,1.1830081e-17,1.1832735e-17,1.1835389e-17,1.18380415e-17,1.18406934e-17,1.1843345e-17,1.1845996e-17,1.1848647e-17,1.1851296e-17,1.1853946e-17,1.1856594e-17,1.1859242e-17,1.186189e-17,1.1864536e-17,1.1867183e-17,1.1869828e-17,1.1872474e-17,1.1875118e-17,1.1877762e-17,1.18804055e-17,1.18830476e-17,1.188569e-17,1.18883316e-17,1.1890973e-17,1.1893613e-17,1.1896253e-17,1.1898892e-17,1.1901531e-17,1.1904169e-17,1.1906806e-17,1.1909443e-17,1.1912079e-17,1.1914715e-17,1.191735e-17,1.19199845e-17,1.1922618e-17,1.1925252e-17,1.1927885e-17,1.1930517e-17,1.1933148e-17,1.19357795e-17,1.193841e-17,1.194104e-17,1.1943669e-17,1.1946298e-17,1.1948926e-17,1.1951554e-17,1.1954181e-17,1.1956807e-17,1.1959433e-17,1.1962058e-17,1.1964683e-17,1.19673075e-17,1.19699305e-17,1.19725535e-17,1.19751764e-17,1.1977798e-17,1.1980419e-17,1.198304e-17,1.198566e-17,1.198828e-17,1.1990899e-17,1.1993517e-17,1.1996135e-17,1.1998752e-17,1.2001368e-17,1.2003985e-17,1.20066e-17,1.2009215e-17,1.201183e-17,1.20144435e-17,1.2017057e-17,1.201967e-17,1.2022281e-17,1.2024893e-17,1.2027504e-17,1.20301145e-17,1.2032724e-17,1.2035333e-17,1.2037942e-17,1.204055e-17,1.2043158e-17,1.2045765e-17,1.2048371e-17,1.2050978e-17,1.20535824e-17,1.2056187e-17,1.2058792e-17,1.2061395e-17,1.2063998e-17,1.20666006e-17,1.2069203e-17,1.2071804e-17,1.2074405e-17,1.2077006e-17,1.20796055e-17,1.20822045e-17,1.2084803e-17,1.2087401e-17,1.2089998e-17,1.20925956e-17,1.2095192e-17,1.2097788e-17,1.2100383e-17,1.21029775e-17,1.21055715e-17,1.21081656e-17,1.2110758e-17,1.211335e-17,1.2115943e-17,1.2118534e-17,1.2121125e-17,1.2123715e-17,1.2126305e-17,1.2128894e-17,1.2131483e-17,1.213407e-17,1.2136658e-17,1.2139245e-17,1.2141832e-17,1.2144418e-17,1.21470025e-17,1.21495875e-17,1.2152172e-17,1.2154755e-17,1.2157338e-17,1.2159921e-17,1.2162503e-17,1.2165084e-17,1.21676655e-17,1.21702455e-17,1.21728255e-17,1.2175405e-17,1.2177983e-17,1.2180561e-17,1.2183139e-17,1.2185716e-17,1.2188293e-17,1.2190869e-17,1.2193444e-17,1.2196019e-17,1.2198594e-17,1.2201167e-17,1.22037405e-17,1.2206313e-17,1.22088856e-17,1.2211457e-17,1.2214028e-17,1.2216599e-17,1.2219169e-17,1.2221738e-17,1.22243075e-17,1.2226876e-17,1.22294435e-17,1.2232011e-17,1.2234578e-17,1.2237144e-17,1.223971e-17,1.2242275e-17,1.2244839e-17,1.2247403e-17,1.2249967e-17,1.225253e-17,1.2255093e-17,1.22576545e-17,1.22602154e-17,1.2262776e-17,1.2265337e-17,1.2267897e-17,1.2270456e-17,1.2273015e-17,1.2275573e-17,1.22781305e-17,1.2280688e-17,1.2283244e-17,1.2285801e-17,1.2288356e-17,1.2290911e-17,1.2293466e-17,1.229602e-17,1.2298573e-17,1.2301126e-17,1.2303678e-17,1.230623e-17,1.2308782e-17,1.2311332e-17,1.2313882e-17,1.2316432e-17,1.2318982e-17,1.232153e-17,1.2324078e-17,1.2326626e-17,1.23291725e-17,1.23317194e-17,1.23342655e-17,1.2336811e-17,1.2339356e-17,1.23419e-17,1.2344445e-17,1.23469875e-17,1.234953e-17,1.2352073e-17,1.2354615e-17,1.2357156e-17,1.2359697e-17,1.23622374e-17,1.2364777e-17,1.2367316e-17,1.2369855e-17,1.23723935e-17,1.23749305e-17,1.2377468e-17,1.23800044e-17,1.23825406e-17,1.2385076e-17,1.2387611e-17,1.2390146e-17,1.239268e-17,1.2395214e-17,1.2397747e-17,1.2400279e-17,1.2402811e-17,1.2405343e-17,1.2407873e-17,1.2410403e-17,1.2412934e-17,1.2415463e-17,1.2417992e-17,1.242052e-17,1.2423048e-17,1.24255755e-17,1.24281025e-17,1.2430629e-17,1.2433154e-17,1.24356795e-17,1.2438204e-17,1.24407286e-17,1.2443252e-17,1.2445775e-17,1.2448298e-17,1.245082e-17,1.2453342e-17,1.24558635e-17,1.2458384e-17,1.2460904e-17,1.2463424e-17,1.2465943e-17,1.24684615e-17,1.2470979e-17,1.2473497e-17,1.24760145e-17,1.2478531e-17,1.2481047e-17,1.24835625e-17,1.2486078e-17,1.2488592e-17,1.2491106e-17,1.2493619e-17,1.2496133e-17,1.2498645e-17,1.25011574e-17,1.2503669e-17,1.250618e-17,1.25086906e-17,1.25112e-17,1.251371e-17,1.2516219e-17,1.25187276e-17,1.2521236e-17,1.2523743e-17,1.252625e-17,1.2528756e-17,1.2531263e-17,1.2533768e-17,1.2536273e-17,1.2538778e-17,1.25412815e-17,1.2543785e-17,1.2546288e-17,1.2548791e-17,1.2551293e-17,1.2553794e-17,1.2556295e-17,1.2558795e-17,1.2561296e-17,1.2563795e-17,1.2566294e-17,1.2568793e-17,1.2571291e-17,1.2573788e-17,1.2576285e-17,1.2578782e-17,1.2581277e-17,1.2583773e-17,1.25862685e-17,1.25887625e-17,1.2591257e-17,1.259375e-17,1.25962435e-17,1.2598736e-17,1.2601228e-17,1.26037196e-17,1.2606211e-17,1.2608702e-17,1.26111915e-17,1.2613681e-17,1.261617e-17,1.2618659e-17,1.26211474e-17,1.2623635e-17,1.2626122e-17,1.2628609e-17,1.2631095e-17,1.2633581e-17,1.2636066e-17,1.26385505e-17,1.26410345e-17,1.26435185e-17,1.2646002e-17,1.2648485e-17,1.26509665e-17,1.2653449e-17,1.26559295e-17,1.2658411e-17,1.2660891e-17,1.2663371e-17,1.266585e-17,1.2668329e-17,1.2670807e-17,1.26732855e-17,1.2675763e-17,1.267824e-17,1.2680716e-17,1.2683193e-17,1.26856675e-17,1.26881424e-17,1.2690617e-17,1.26930915e-17,1.2695565e-17,1.2698038e-17,1.27005104e-17,1.2702983e-17,1.27054545e-17,1.2707925e-17,1.2710396e-17,1.2712866e-17,1.2715336e-17,1.2717805e-17,1.2720274e-17,1.27227426e-17,1.272521e-17,1.27276775e-17,1.2730144e-17,1.2732611e-17,1.2735077e-17,1.2737542e-17,1.2740007e-17,1.2742472e-17,1.2744935e-17,1.2747399e-17,1.2749862e-17,1.2752324e-17,1.2754787e-17,1.27572484e-17,1.2759709e-17,1.276217e-17,1.276463e-17,1.276709e-17,1.27695494e-17,1.2772008e-17,1.2774466e-17,1.2776924e-17,1.2779381e-17,1.2781838e-17,1.2784295e-17,1.2786751e-17,1.2789206e-17,1.2791661e-17,1.2794115e-17,1.2796569e-17,1.2799023e-17,1.2801476e-17,1.2803929e-17,1.28063805e-17,1.2808832e-17,1.2811284e-17,1.2813734e-17,1.2816185e-17,1.2818634e-17,1.2821084e-17,1.2823533e-17,1.2825981e-17,1.2828429e-17,1.2830877e-17,1.2833323e-17,1.283577e-17,1.2838216e-17,1.2840662e-17,1.2843107e-17,1.2845552e-17,1.2847996e-17,1.2850439e-17,1.2852883e-17,1.28553256e-17,1.2857768e-17,1.286021e-17,1.2862651e-17,1.2865092e-17,1.2867533e-17,1.2869973e-17,1.2872413e-17,1.2874851e-17,1.28772905e-17,1.2879728e-17,1.2882166e-17,1.2884604e-17,1.28870405e-17,1.28894765e-17,1.2891913e-17,1.2894348e-17,1.2896783e-17,1.28992174e-17,1.2901651e-17,1.29040846e-17,1.2906518e-17,1.2908951e-17,1.2911383e-17,1.2913815e-17,1.2916246e-17,1.2918677e-17,1.2921107e-17,1.2923537e-17,1.2925967e-17,1.2928395e-17,1.2930824e-17,1.2933253e-17,1.29356795e-17,1.2938107e-17,1.29405334e-17,1.294296e-17,1.2945386e-17,1.2947811e-17,1.2950236e-17,1.2952661e-17,1.2955084e-17,1.2957508e-17,1.2959932e-17,1.2962354e-17,1.29647765e-17,1.2967198e-17,1.2969619e-17,1.297204e-17,1.297446e-17,1.2976881e-17,1.29793e-17,1.2981719e-17,1.29841374e-17,1.2986555e-17,1.2988973e-17,1.299139e-17,1.2993807e-17,1.2996223e-17,1.29986396e-17,1.3001055e-17,1.30034695e-17,1.3005884e-17,1.30082986e-17,1.3010712e-17,1.3013125e-17,1.3015538e-17,1.301795e-17,1.3020362e-17,1.3022773e-17,1.3025185e-17,1.3027595e-17,1.30300054e-17,1.3032415e-17,1.3034824e-17,1.30372325e-17,1.30396404e-17,1.3042048e-17,1.3044456e-17,1.3046863e-17,1.304927e-17,1.3051676e-17,1.3054081e-17,1.3056486e-17,1.3058891e-17,1.3061295e-17,1.3063699e-17,1.3066103e-17,1.3068506e-17,1.3070908e-17,1.307331e-17,1.3075712e-17,1.30781134e-17,1.3080514e-17,1.3082914e-17,1.3085314e-17,1.3087714e-17,1.30901125e-17,1.3092511e-17,1.3094909e-17,1.30973065e-17,1.3099704e-17,1.3102101e-17,1.3104497e-17,1.3106893e-17,1.3109288e-17,1.3111684e-17,1.31140784e-17,1.3116472e-17,1.3118866e-17,1.3121259e-17,1.3123652e-17,1.3126044e-17,1.3128437e-17,1.3130828e-17,1.3133219e-17,1.313561e-17,1.31380005e-17,1.314039e-17,1.3142779e-17,1.3145169e-17,1.3147557e-17,1.3149945e-17,1.3152333e-17,1.315472e-17,1.3157107e-17,1.3159493e-17,1.3161879e-17,1.3164264e-17,1.3166649e-17,1.3169034e-17,1.31714186e-17,1.3173802e-17,1.3176186e-17,1.3178568e-17,1.3180951e-17,1.31833325e-17,1.3185714e-17,1.3188095e-17,1.3190476e-17,1.3192857e-17,1.31952364e-17,1.3197616e-17,1.3199995e-17,1.3202373e-17,1.32047515e-17,1.320713e-17,1.3209507e-17,1.32118834e-17,1.321426e-17,1.32166356e-17,1.3219011e-17,1.3221387e-17,1.3223762e-17,1.3226136e-17,1.322851e-17,1.3230883e-17,1.3233256e-17,1.32356285e-17,1.3238001e-17,1.3240373e-17,1.3242744e-17,1.3245115e-17,1.3247485e-17,1.3249856e-17,1.3252225e-17,1.3254594e-17,1.3256963e-17,1.3259331e-17,1.32616996e-17,1.3264067e-17,1.3266434e-17,1.3268801e-17,1.32711675e-17,1.3273533e-17,1.3275898e-17,1.3278263e-17,1.3280628e-17,1.3282992e-17,1.3285356e-17,1.3287719e-17,1.3290082e-17,1.3292444e-17,1.3294807e-17,1.3297168e-17,1.3299529e-17,1.3301891e-17,1.33042505e-17,1.33066105e-17,1.33089704e-17,1.33113296e-17,1.3313688e-17,1.3316046e-17,1.33184044e-17,1.3320761e-17,1.33231185e-17,1.3325475e-17,1.3327831e-17,1.3330187e-17,1.3332543e-17,1.3334898e-17,1.3337252e-17,1.3339606e-17,1.334196e-17,1.3344313e-17,1.3346666e-17,1.3349018e-17,1.335137e-17,1.3353722e-17,1.33560734e-17,1.3358424e-17,1.3360774e-17,1.3363124e-17,1.3365474e-17,1.33678235e-17,1.3370172e-17,1.337252e-17,1.3374868e-17,1.3377215e-17,1.3379563e-17,1.33819096e-17,1.33842555e-17,1.3386601e-17,1.3388947e-17,1.3391292e-17,1.33936365e-17,1.3395981e-17,1.3398325e-17,1.34006675e-17,1.3403011e-17,1.34053535e-17,1.3407695e-17,1.3410037e-17,1.3412379e-17,1.341472e-17,1.3417061e-17,1.3419401e-17,1.342174e-17,1.3424079e-17,1.34264185e-17,1.3428757e-17,1.34310946e-17,1.3433432e-17,1.343577e-17,1.34381066e-17,1.3440443e-17,1.3442779e-17,1.34451144e-17,1.34474496e-17,1.3449785e-17,1.3452119e-17,1.3454453e-17,1.3456787e-17,1.345912e-17,1.3461453e-17,1.34637856e-17,1.3466117e-17,1.3468449e-17,1.347078e-17,1.3473111e-17,1.3475441e-17,1.34777715e-17,1.3480101e-17,1.348243e-17,1.3484759e-17,1.3487087e-17,1.3489415e-17,1.3491743e-17,1.34940695e-17,1.3496396e-17,1.3498723e-17,1.3501049e-17,1.35033744e-17,1.35057e-17,1.3508024e-17,1.3510348e-17,1.3512673e-17,1.3514996e-17,1.3517319e-17,1.3519642e-17,1.35219645e-17,1.3524286e-17,1.3526608e-17,1.3528929e-17,1.35312504e-17,1.3533571e-17,1.353589e-17,1.353821e-17,1.3540529e-17,1.35428475e-17,1.3545166e-17,1.3547485e-17,1.3549802e-17,1.3552119e-17,1.35544355e-17,1.3556752e-17,1.35590685e-17,1.3561384e-17,1.3563699e-17,1.35660135e-17,1.3568328e-17,1.3570642e-17,1.3572956e-17,1.357527e-17,1.35775825e-17,1.35798944e-17,1.3582206e-17,1.3584518e-17,1.35868295e-17,1.3589141e-17,1.3591451e-17,1.3593761e-17,1.3596071e-17,1.359838e-17,1.3600689e-17,1.36029976e-17,1.36053054e-17,1.3607613e-17,1.3609921e-17,1.3612228e-17,1.3614534e-17,1.36168404e-17,1.3619147e-17,1.3621452e-17,1.36237565e-17,1.3626061e-17,1.36283656e-17,1.3630669e-17,1.3632973e-17,1.3635276e-17,1.3637579e-17,1.3639881e-17,1.3642183e-17,1.3644484e-17,1.3646785e-17,1.36490864e-17,1.3651386e-17,1.3653686e-17,1.3655986e-17,1.3658285e-17,1.3660584e-17,1.3662882e-17,1.366518e-17,1.3667478e-17,1.3669775e-17,1.3672072e-17,1.3674368e-17,1.3676665e-17,1.367896e-17,1.36812555e-17,1.3683551e-17,1.36858455e-17,1.3688139e-17,1.3690433e-17,1.3692727e-17,1.369502e-17,1.3697312e-17,1.3699604e-17,1.3701896e-17,1.3704187e-17,1.3706479e-17,1.3708769e-17,1.371106e-17,1.371335e-17,1.371564e-17,1.37179285e-17,1.3720217e-17,1.3722506e-17,1.3724794e-17,1.3727081e-17,1.37293684e-17,1.3731656e-17,1.3733942e-17,1.3736228e-17,1.3738514e-17,1.3740799e-17,1.3743085e-17,1.3745369e-17,1.3747653e-17,1.3749937e-17,1.375222e-17,1.3754504e-17,1.3756786e-17,1.3759068e-17,1.37613506e-17,1.3763632e-17,1.3765913e-17,1.3768195e-17,1.3770474e-17,1.3772755e-17,1.3775035e-17,1.37773135e-17,1.3779592e-17,1.3781871e-17,1.3784149e-17,1.3786427e-17,1.3788705e-17,1.3790982e-17,1.3793258e-17,1.3795535e-17,1.3797811e-17,1.3800087e-17,1.3802361e-17,1.3804636e-17,1.3806911e-17,1.3809185e-17,1.3811459e-17,1.3813732e-17,1.3816005e-17,1.3818277e-17,1.3820549e-17,1.3822821e-17,1.3825092e-17,1.3827364e-17,1.3829634e-17,1.3831905e-17,1.3834175e-17,1.38364445e-17,1.38387135e-17,1.3840982e-17,1.38432505e-17,1.3845519e-17,1.3847787e-17,1.3850054e-17,1.38523206e-17,1.3854587e-17,1.38568535e-17,1.3859119e-17,1.3861385e-17,1.386365e-17,1.38659145e-17,1.3868179e-17,1.3870443e-17,1.38727064e-17,1.38749704e-17,1.3877233e-17,1.3879495e-17,1.3881758e-17,1.388402e-17,1.3886281e-17,1.3888541e-17,1.3890803e-17,1.3893063e-17,1.3895322e-17,1.3897582e-17,1.3899842e-17,1.39021e-17,1.3904359e-17,1.3906617e-17,1.3908875e-17,1.3911133e-17,1.391339e-17,1.3915646e-17,1.3917903e-17,1.3920158e-17,1.3922414e-17,1.3924669e-17,1.3926924e-17,1.3929179e-17,1.3931432e-17,1.3933685e-17,1.3935939e-17,1.3938192e-17,1.3940445e-17,1.3942697e-17,1.394495e-17,1.3947201e-17,1.3949451e-17,1.3951703e-17,1.3953953e-17,1.3956203e-17,1.3958453e-17,1.3960703e-17,1.3962951e-17,1.39652e-17,1.3967448e-17,1.3969696e-17,1.3971944e-17,1.397419e-17,1.3976437e-17,1.3978684e-17,1.398093e-17,1.3983176e-17,1.3985422e-17,1.3987667e-17,1.398991e-17,1.3992155e-17,1.3994399e-17,1.3996644e-17,1.3998887e-17,1.4001129e-17,1.4003372e-17,1.4005614e-17,1.4007855e-17,1.4010097e-17,1.4012339e-17,1.4014579e-17,1.4016819e-17,1.4019059e-17,1.4021299e-17,1.4023539e-17,1.4025777e-17,1.4028015e-17,1.4030254e-17,1.4032492e-17,1.4034729e-17,1.4036967e-17,1.4039204e-17,1.4041439e-17,1.4043676e-17,1.4045912e-17,1.4048147e-17,1.4050382e-17,1.4052616e-17,1.405485e-17,1.4057084e-17,1.4059318e-17,1.4061551e-17,1.4063784e-17,1.4066018e-17,1.406825e-17,1.4070481e-17,1.4072713e-17,1.4074943e-17,1.4077175e-17,1.4079405e-17,1.4081635e-17,1.4083865e-17,1.4086093e-17,1.4088323e-17,1.4090552e-17,1.409278e-17,1.4095007e-17,1.4097236e-17,1.4099462e-17,1.4101689e-17,1.4103916e-17,1.4106143e-17,1.4108368e-17,1.4110593e-17,1.4112818e-17,1.4115043e-17,1.4117268e-17,1.4119492e-17,1.4121715e-17,1.4123939e-17,1.4126162e-17,1.4128384e-17,1.4130607e-17,1.4132829e-17,1.4135051e-17,1.4137271e-17,1.4139493e-17,1.4141713e-17,1.4143933e-17,1.4146153e-17,1.4148373e-17,1.4150592e-17,1.415281e-17,1.4155029e-17,1.4157247e-17,1.4159464e-17,1.4161683e-17,1.41639e-17,1.4166116e-17,1.4168333e-17,1.4170549e-17,1.4172764e-17,1.417498e-17,1.4177194e-17,1.417941e-17,1.4181624e-17,1.4183838e-17,1.4186052e-17,1.4188265e-17,1.4190477e-17,1.419269e-17,1.4194902e-17,1.4197114e-17,1.4199326e-17,1.4201538e-17,1.4203748e-17,1.4205958e-17,1.4208169e-17,1.4210379e-17,1.4212588e-17,1.4214798e-17,1.4217006e-17,1.4219215e-17,1.4221423e-17,1.422363e-17,1.4225837e-17,1.4228044e-17,1.4230251e-17,1.4232458e-17,1.4234665e-17,1.423687e-17,1.4239075e-17,1.424128e-17,1.4243484e-17,1.424569e-17,1.4247893e-17,1.4250097e-17,1.42523e-17,1.4254504e-17,1.4256706e-17,1.4258908e-17,1.426111e-17,1.4263312e-17,1.4265514e-17,1.4267714e-17,1.4269914e-17,1.4272115e-17,1.4274315e-17,1.4276515e-17,1.4278714e-17,1.4280913e-17,1.4283111e-17,1.428531e-17,1.4287509e-17,1.4289706e-17,1.4291903e-17,1.42941e-17,1.4296297e-17,1.4298492e-17,1.4300689e-17,1.4302884e-17,1.430508e-17,1.4307273e-17,1.4309469e-17,1.4311662e-17,1.4313856e-17,1.431605e-17,1.4318243e-17,1.4320435e-17,1.4322629e-17,1.4324821e-17,1.4327013e-17,1.4329203e-17,1.4331395e-17,1.4333586e-17,1.4335776e-17,1.4337967e-17,1.4340157e-17,1.4342346e-17,1.4344534e-17,1.4346725e-17,1.4348912e-17,1.43511e-17,1.435329e-17,1.4355476e-17,1.4357663e-17,1.435985e-17,1.4362036e-17,1.4364223e-17,1.4366408e-17,1.4368594e-17,1.437078e-17,1.4372965e-17,1.4375148e-17,1.4377332e-17,1.4379516e-17,1.43817e-17,1.4383883e-17,1.4386065e-17,1.438825e-17,1.4390431e-17,1.4392613e-17,1.4394794e-17,1.4396976e-17,1.4399156e-17,1.4401337e-17,1.4403517e-17,1.4405696e-17,1.4407877e-17,1.4410055e-17,1.4412234e-17,1.4414413e-17,1.4416592e-17,1.4418769e-17,1.4420946e-17,1.4423123e-17,1.44253e-17,1.4427477e-17,1.4429653e-17,1.443183e-17,1.4434006e-17,1.4436181e-17,1.4438355e-17,1.444053e-17,1.4442704e-17,1.4444878e-17,1.4447052e-17,1.4449226e-17,1.4451398e-17,1.4453572e-17,1.4455744e-17,1.4457916e-17,1.4460087e-17,1.4462259e-17,1.446443e-17,1.44666e-17,1.446877e-17,1.447094e-17,1.447311e-17,1.447528e-17,1.4477449e-17,1.4479618e-17,1.4481785e-17,1.4483954e-17,1.4486121e-17,1.4488288e-17,1.4490456e-17,1.4492623e-17,1.449479e-17,1.4496956e-17,1.4499121e-17,1.4501287e-17,1.4503452e-17,1.4505616e-17,1.4507782e-17,1.4509946e-17,1.451211e-17,1.4514274e-17,1.4516436e-17,1.45186e-17,1.4520762e-17,1.4522924e-17,1.4525086e-17,1.4527247e-17,1.452941e-17,1.453157e-17,1.453373e-17,1.4535891e-17,1.4538052e-17,1.454021e-17,1.454237e-17,1.4544528e-17,1.4546687e-17,1.4548846e-17,1.4551005e-17,1.4553163e-17,1.455532e-17,1.4557477e-17,1.4559634e-17,1.456179e-17,1.4563946e-17,1.4566103e-17,1.4568259e-17,1.4570413e-17,1.4572568e-17,1.4574722e-17,1.4576876e-17,1.457903e-17,1.4581184e-17,1.4583338e-17,1.458549e-17,1.4587643e-17,1.4589795e-17,1.4591947e-17,1.45941e-17,1.459625e-17,1.4598403e-17,1.4600553e-17,1.4602704e-17,1.4604853e-17,1.4607004e-17,1.4609153e-17,1.4611302e-17,1.461345e-17,1.46156e-17,1.4617747e-17,1.4619896e-17,1.4622044e-17,1.4624191e-17,1.4626338e-17,1.4628484e-17,1.463063e-17,1.4632777e-17,1.4634923e-17,1.4637068e-17,1.4639213e-17,1.4641358e-17,1.4643502e-17,1.4645646e-17,1.464779e-17,1.4649933e-17,1.4652077e-17,1.465422e-17,1.4656362e-17,1.4658504e-17,1.4660646e-17,1.4662789e-17,1.466493e-17,1.466707e-17,1.4669211e-17,1.4671352e-17,1.4673491e-17,1.4675632e-17,1.467777e-17,1.467991e-17,1.4682049e-17,1.4684188e-17,1.4686325e-17,1.4688463e-17,1.46906e-17,1.4692738e-17,1.4694875e-17,1.4697013e-17,1.4699148e-17,1.4701284e-17,1.470342e-17,1.4705556e-17,1.470769e-17,1.4709826e-17,1.471196e-17,1.4714094e-17,1.4716228e-17,1.4718362e-17,1.4720495e-17,1.4722627e-17,1.4724761e-17,1.4726892e-17,1.4729024e-17,1.4731157e-17,1.4733288e-17,1.4735419e-17,1.473755e-17,1.473968e-17,1.4741811e-17,1.474394e-17,1.474607e-17,1.4748199e-17,1.4750328e-17,1.4752457e-17,1.4754584e-17,1.4756714e-17,1.4758841e-17,1.4760969e-17,1.4763094e-17,1.4765222e-17,1.4767348e-17,1.4769475e-17,1.4771601e-17,1.4773725e-17,1.4775851e-17,1.4777975e-17,1.4780101e-17,1.4782225e-17,1.478435e-17,1.4786472e-17,1.4788596e-17,1.4790719e-17,1.4792841e-17,1.4794964e-17,1.4797087e-17,1.4799209e-17,1.480133e-17,1.4803453e-17,1.4805573e-17,1.4807693e-17,1.4809814e-17,1.4811934e-17,1.4814054e-17,1.4816173e-17,1.4818292e-17,1.4820411e-17,1.4822529e-17,1.4824648e-17,1.4826766e-17,1.4828883e-17,1.4831001e-17,1.4833119e-17,1.4835234e-17,1.4837352e-17,1.4839468e-17,1.4841584e-17,1.4843698e-17,1.4845814e-17,1.4847928e-17,1.4850044e-17,1.4852159e-17,1.4854271e-17,1.4856385e-17,1.48585e-17,1.4860612e-17,1.4862725e-17,1.4864838e-17,1.486695e-17,1.4869061e-17,1.4871174e-17,1.4873285e-17,1.4875396e-17,1.4877507e-17,1.4879618e-17,1.4881727e-17,1.4883836e-17,1.4885947e-17,1.4888055e-17,1.4890164e-17,1.4892274e-17,1.4894381e-17,1.4896489e-17,1.4898598e-17,1.4900704e-17,1.4902812e-17,1.490492e-17,1.4907025e-17,1.4909131e-17,1.4911237e-17,1.4913343e-17,1.4915448e-17,1.4917554e-17,1.4919658e-17,1.4921763e-17,1.4923867e-17,1.4925971e-17,1.4928074e-17,1.4930178e-17,1.4932281e-17,1.4934384e-17,1.4936486e-17,1.4938587e-17,1.494069e-17,1.4942791e-17,1.4944892e-17,1.4946993e-17,1.4949094e-17,1.4951195e-17,1.4953295e-17,1.4955394e-17,1.4957493e-17,1.4959593e-17,1.4961692e-17,1.496379e-17,1.496589e-17,1.4967987e-17,1.4970085e-17,1.4972181e-17,1.4974279e-17,1.4976375e-17,1.4978472e-17,1.4980568e-17,1.4982665e-17,1.4984759e-17,1.4986855e-17,1.498895e-17,1.4991046e-17,1.499314e-17,1.4995233e-17,1.4997327e-17,1.4999422e-17,1.5001514e-17,1.5003607e-17,1.50057e-17,1.5007793e-17,1.5009884e-17,1.5011977e-17,1.5014068e-17,1.5016159e-17,1.501825e-17,1.5020341e-17,1.502243e-17,1.5024522e-17,1.5026611e-17,1.50287e-17,1.503079e-17,1.5032878e-17,1.5034967e-17,1.5037055e-17,1.5039143e-17,1.504123e-17,1.5043318e-17,1.5045406e-17,1.5047492e-17,1.504958e-17,1.5051666e-17,1.5053752e-17,1.5055837e-17,1.5057923e-17,1.5060008e-17,1.5062092e-17,1.5064178e-17,1.5066261e-17,1.5068346e-17,1.507043e-17,1.5072513e-17,1.5074596e-17,1.5076679e-17,1.5078761e-17,1.5080844e-17,1.5082925e-17,1.5085007e-17,1.508709e-17,1.508917e-17,1.509125e-17,1.5093331e-17,1.5095411e-17,1.5097492e-17,1.5099572e-17,1.5101651e-17,1.5103729e-17,1.5105809e-17,1.5107886e-17,1.5109966e-17,1.5112044e-17,1.5114122e-17,1.5116198e-17,1.5118276e-17,1.5120352e-17,1.5122428e-17,1.5124505e-17,1.512658e-17,1.5128657e-17,1.5130732e-17,1.5132808e-17,1.5134882e-17,1.5136957e-17,1.5139031e-17,1.5141104e-17,1.5143179e-17,1.5145252e-17,1.5147325e-17,1.5149398e-17,1.515147e-17,1.5153544e-17,1.5155615e-17,1.5157686e-17,1.5159757e-17,1.5161829e-17,1.51639e-17,1.5165971e-17,1.516804e-17,1.517011e-17,1.517218e-17,1.517425e-17,1.5176319e-17,1.5178389e-17,1.5180457e-17,1.5182525e-17,1.5184593e-17,1.518666e-17,1.5188728e-17,1.5190795e-17,1.5192863e-17,1.5194929e-17,1.5196995e-17,1.5199062e-17,1.5201128e-17,1.5203193e-17,1.5205259e-17,1.5207323e-17,1.5209388e-17,1.5211453e-17,1.5213516e-17,1.521558e-17,1.5217643e-17,1.5219706e-17,1.522177e-17,1.5223832e-17,1.5225895e-17,1.5227957e-17,1.523002e-17,1.5232081e-17,1.5234142e-17,1.5236204e-17,1.5238263e-17,1.5240325e-17,1.5242384e-17,1.5244444e-17,1.5246504e-17,1.5248563e-17,1.5250623e-17,1.5252681e-17,1.5254739e-17,1.5256797e-17,1.5258855e-17,1.5260913e-17,1.5262971e-17,1.5265028e-17,1.5267086e-17,1.5269142e-17,1.5271198e-17,1.5273255e-17,1.527531e-17,1.5277366e-17,1.527942e-17,1.5281475e-17,1.528353e-17,1.5285585e-17,1.5287638e-17,1.5289692e-17,1.5291746e-17,1.5293799e-17,1.5295852e-17,1.5297905e-17,1.5299958e-17,1.530201e-17,1.530406e-17,1.5306114e-17,1.5308165e-17,1.5310215e-17,1.5312266e-17,1.5314316e-17,1.5316367e-17,1.5318417e-17,1.5320467e-17,1.5322517e-17,1.5324565e-17,1.5326615e-17,1.5328663e-17,1.533071e-17,1.5332759e-17,1.5334807e-17,1.5336855e-17,1.5338901e-17,1.5340948e-17,1.5342996e-17,1.5345042e-17,1.5347087e-17,1.5349134e-17,1.5351178e-17,1.5353225e-17,1.535527e-17,1.5357314e-17,1.535936e-17,1.5361402e-17,1.5363447e-17,1.536549e-17,1.5367533e-17,1.5369577e-17,1.537162e-17,1.5373663e-17,1.5375704e-17,1.5377747e-17,1.5379789e-17,1.538183e-17,1.5383872e-17,1.5385913e-17,1.5387953e-17,1.5389993e-17,1.5392035e-17,1.5394074e-17,1.5396114e-17,1.5398152e-17,1.5400192e-17,1.540223e-17,1.5404269e-17,1.5406308e-17,1.5408345e-17,1.5410383e-17,1.5412421e-17,1.5414458e-17,1.5416494e-17,1.5418532e-17,1.5420567e-17,1.5422604e-17,1.542464e-17,1.5426675e-17,1.542871e-17,1.5430747e-17,1.5432781e-17,1.5434815e-17,1.543685e-17,1.5438883e-17,1.5440918e-17,1.5442951e-17,1.5444984e-17,1.5447017e-17,1.5449049e-17,1.5451082e-17,1.5453114e-17,1.5455145e-17,1.5457177e-17,1.5459208e-17,1.546124e-17,1.546327e-17,1.5465301e-17,1.5467331e-17,1.5469361e-17,1.5471391e-17,1.5473421e-17,1.5475449e-17,1.5477479e-17,1.5479507e-17,1.5481536e-17,1.5483564e-17,1.548559e-17,1.5487619e-17,1.5489647e-17,1.5491673e-17,1.54937e-17,1.5495727e-17,1.5497753e-17,1.5499778e-17,1.5501805e-17,1.550383e-17,1.5505855e-17,1.550788e-17,1.5509904e-17,1.551193e-17,1.5513953e-17,1.5515978e-17,1.5518001e-17,1.5520024e-17,1.5522048e-17,1.5524069e-17,1.5526092e-17,1.5528114e-17,1.5530137e-17,1.5532159e-17,1.553418e-17,1.55362e-17,1.5538222e-17,1.5540242e-17,1.5542264e-17,1.5544284e-17,1.5546304e-17,1.5548324e-17,1.5550342e-17,1.5552362e-17,1.555438e-17,1.5556399e-17,1.5558417e-17,1.5560435e-17,1.5562454e-17,1.556447e-17,1.5566489e-17,1.5568505e-17,1.5570522e-17,1.5572539e-17,1.5574555e-17,1.557657e-17,1.5578587e-17,1.5580602e-17,1.5582617e-17,1.5584632e-17,1.5586647e-17,1.558866e-17,1.5590675e-17,1.5592689e-17,1.5594702e-17,1.5596715e-17,1.5598729e-17,1.5600742e-17,1.5602756e-17,1.5604767e-17,1.5606779e-17,1.560879e-17,1.5610802e-17,1.5612814e-17,1.5614826e-17,1.5616836e-17,1.5618846e-17,1.5620856e-17,1.5622866e-17,1.5624876e-17,1.5626886e-17,1.5628894e-17,1.5630904e-17,1.5632913e-17,1.5634921e-17,1.563693e-17,1.5638938e-17,1.5640945e-17,1.5642953e-17,1.564496e-17,1.5646967e-17,1.5648973e-17,1.565098e-17,1.5652985e-17,1.5654992e-17,1.5656997e-17,1.5659002e-17,1.5661007e-17,1.5663012e-17,1.5665017e-17,1.5667022e-17,1.5669026e-17,1.567103e-17,1.5673033e-17,1.5675036e-17,1.567704e-17,1.5679043e-17,1.5681045e-17,1.5683047e-17,1.568505e-17,1.5687052e-17,1.5689054e-17,1.5691054e-17,1.5693056e-17,1.5695056e-17,1.5697056e-17,1.5699056e-17,1.5701056e-17,1.5703056e-17,1.5705056e-17,1.5707055e-17,1.5709055e-17,1.5711053e-17,1.5713052e-17,1.571505e-17,1.5717047e-17,1.5719046e-17,1.5721042e-17,1.5723039e-17,1.5725038e-17,1.5727034e-17,1.572903e-17,1.5731026e-17,1.5733022e-17,1.5735018e-17,1.5737014e-17,1.5739009e-17,1.5741004e-17,1.5742997e-17,1.5744993e-17,1.5746986e-17,1.5748981e-17,1.5750975e-17,1.5752968e-17,1.5754962e-17,1.5756954e-17,1.5758947e-17,1.5760939e-17,1.576293e-17,1.5764923e-17,1.5766914e-17,1.5768906e-17,1.5770897e-17,1.5772888e-17,1.5774879e-17,1.5776869e-17,1.5778859e-17,1.5780849e-17,1.578284e-17,1.5784828e-17,1.5786818e-17,1.5788807e-17,1.5790795e-17,1.5792784e-17,1.579477e-17,1.5796759e-17,1.5798748e-17,1.5800735e-17,1.5802721e-17,1.5804708e-17,1.5806695e-17,1.5808682e-17,1.5810667e-17,1.5812653e-17,1.581464e-17,1.5816625e-17,1.581861e-17,1.5820595e-17,1.5822579e-17,1.5824564e-17,1.5826548e-17,1.5828531e-17,1.5830515e-17,1.5832498e-17,1.5834482e-17,1.5836464e-17,1.5838447e-17,1.584043e-17,1.5842411e-17,1.5844393e-17,1.5846375e-17,1.5848357e-17,1.5850337e-17,1.585232e-17,1.58543e-17,1.585628e-17,1.585826e-17,1.586024e-17,1.586222e-17,1.58642e-17,1.5866178e-17,1.5868158e-17,1.5870137e-17,1.5872115e-17,1.5874092e-17,1.5876071e-17,1.5878048e-17,1.5880026e-17,1.5882003e-17,1.588398e-17,1.5885957e-17,1.5887933e-17,1.588991e-17,1.5891885e-17,1.5893862e-17,1.5895837e-17,1.5897812e-17,1.5899788e-17,1.5901761e-17,1.5903737e-17,1.590571e-17,1.5907684e-17,1.5909658e-17,1.5911631e-17,1.5913605e-17,1.5915579e-17,1.591755e-17,1.5919524e-17,1.5921496e-17,1.5923468e-17,1.592544e-17,1.592741e-17,1.5929383e-17,1.5931353e-17,1.5933325e-17,1.5935295e-17,1.5937266e-17,1.5939236e-17,1.5941206e-17,1.5943175e-17,1.5945145e-17,1.5947114e-17,1.5949083e-17,1.5951051e-17,1.595302e-17,1.5954987e-17,1.5956956e-17,1.5958923e-17,1.5960892e-17,1.5962859e-17,1.5964826e-17,1.5966791e-17,1.5968758e-17,1.5970725e-17,1.597269e-17,1.5974656e-17,1.5976621e-17,1.5978587e-17,1.5980552e-17,1.5982517e-17,1.5984481e-17,1.5986445e-17,1.598841e-17,1.5990374e-17,1.5992338e-17,1.59943e-17,1.5996264e-17,1.5998226e-17,1.600019e-17,1.6002151e-17,1.6004113e-17,1.6006076e-17,1.6008038e-17,1.6009998e-17,1.601196e-17,1.601392e-17,1.6015881e-17,1.6017841e-17,1.6019802e-17,1.6021762e-17,1.6023721e-17,1.6025681e-17,1.602764e-17,1.6029599e-17,1.6031558e-17,1.6033516e-17,1.6035475e-17,1.6037432e-17,1.6039391e-17,1.6041348e-17,1.6043305e-17,1.6045262e-17,1.604722e-17,1.6049177e-17,1.6051132e-17,1.605309e-17,1.6055045e-17,1.6057e-17,1.6058956e-17,1.6060911e-17,1.6062866e-17,1.606482e-17,1.6066776e-17,1.606873e-17,1.6070683e-17,1.6072637e-17,1.6074591e-17,1.6076545e-17,1.6078497e-17,1.608045e-17,1.6082403e-17,1.6084355e-17,1.6086307e-17,1.608826e-17,1.609021e-17,1.6092162e-17,1.6094112e-17,1.6096065e-17,1.6098015e-17,1.6099966e-17,1.6101916e-17,1.6103865e-17,1.6105815e-17,1.6107764e-17,1.6109713e-17,1.6111663e-17,1.611361e-17,1.611556e-17,1.6117508e-17,1.6119457e-17,1.6121404e-17,1.6123352e-17,1.6125299e-17,1.6127246e-17,1.6129193e-17,1.613114e-17,1.6133086e-17,1.6135033e-17,1.6136979e-17,1.6138924e-17,1.614087e-17,1.6142815e-17,1.614476e-17,1.6146705e-17,1.614865e-17,1.6150594e-17,1.6152538e-17,1.6154482e-17,1.6156426e-17,1.615837e-17,1.6160312e-17,1.6162256e-17,1.6164198e-17,1.616614e-17,1.6168082e-17,1.6170024e-17,1.6171967e-17,1.6173907e-17,1.617585e-17,1.617779e-17,1.617973e-17,1.6181671e-17,1.6183612e-17,1.6185552e-17,1.6187491e-17,1.6189432e-17,1.619137e-17,1.619331e-17,1.6195248e-17,1.6197187e-17,1.6199126e-17,1.6201065e-17,1.6203002e-17,1.620494e-17,1.6206879e-17,1.6208816e-17,1.6210753e-17,1.6212689e-17,1.6214626e-17,1.6216563e-17,1.6218499e-17,1.6220434e-17,1.622237e-17,1.6224306e-17,1.6226241e-17,1.6228177e-17,1.623011e-17,1.6232045e-17,1.623398e-17,1.6235914e-17,1.6237848e-17,1.6239782e-17,1.6241714e-17,1.6243648e-17,1.624558e-17,1.6247513e-17,1.6249447e-17,1.625138e-17,1.625331e-17,1.6255242e-17,1.6257174e-17,1.6259105e-17,1.6261036e-17,1.6262968e-17,1.6264899e-17,1.626683e-17,1.6268758e-17,1.6270689e-17,1.6272618e-17,1.6274549e-17,1.6276478e-17,1.6278407e-17,1.6280336e-17,1.6282265e-17,1.6284192e-17,1.6286121e-17,1.6288048e-17,1.6289976e-17,1.6291903e-17,1.629383e-17,1.6295758e-17,1.6297685e-17,1.629961e-17,1.6301538e-17,1.6303464e-17,1.630539e-17,1.6307315e-17,1.630924e-17,1.6311166e-17,1.631309e-17,1.6315016e-17,1.631694e-17,1.6318864e-17,1.6320788e-17,1.6322712e-17,1.6324636e-17,1.6326558e-17,1.6328482e-17,1.6330405e-17,1.6332327e-17,1.633425e-17,1.6336172e-17,1.6338094e-17,1.6340017e-17,1.6341937e-17,1.634386e-17,1.634578e-17,1.6347701e-17,1.6349622e-17,1.6351543e-17,1.6353462e-17,1.6355382e-17,1.6357301e-17,1.6359222e-17,1.6361141e-17,1.636306e-17,1.636498e-17,1.6366897e-17,1.6368816e-17,1.6370735e-17,1.6372652e-17,1.637457e-17,1.6376487e-17,1.6378404e-17,1.6380322e-17,1.638224e-17,1.6384155e-17,1.638607e-17,1.6387988e-17,1.6389904e-17,1.639182e-17,1.6393735e-17,1.639565e-17,1.6397565e-17,1.639948e-17,1.6401395e-17,1.640331e-17,1.6405223e-17,1.6407137e-17,1.6409051e-17,1.6410964e-17,1.6412878e-17,1.641479e-17,1.6416703e-17,1.6418615e-17,1.6420528e-17,1.642244e-17,1.6424353e-17,1.6426263e-17,1.6428176e-17,1.6430087e-17,1.6431997e-17,1.6433908e-17,1.6435819e-17,1.643773e-17,1.6439639e-17,1.644155e-17,1.6443459e-17,1.6445368e-17,1.6447279e-17,1.6449186e-17,1.6451095e-17,1.6453005e-17,1.6454912e-17,1.6456821e-17,1.6458729e-17,1.6460636e-17,1.6462544e-17,1.6464451e-17,1.6466359e-17,1.6468264e-17,1.6470172e-17,1.6472078e-17,1.6473983e-17,1.6475891e-17,1.6477795e-17,1.6479701e-17,1.6481607e-17,1.6483513e-17,1.6485417e-17,1.6487321e-17,1.6489225e-17,1.649113e-17,1.6493033e-17,1.6494938e-17,1.6496842e-17,1.6498744e-17,1.6500647e-17,1.6502551e-17,1.6504454e-17,1.6506356e-17,1.6508257e-17,1.651016e-17,1.6512062e-17,1.6513963e-17,1.6515864e-17,1.6517765e-17,1.6519665e-17,1.6521566e-17,1.6523467e-17,1.6525368e-17,1.6527267e-17,1.6529168e-17,1.6531067e-17,1.6532966e-17,1.6534866e-17,1.6536765e-17,1.6538662e-17,1.6540562e-17,1.6542459e-17,1.6544358e-17,1.6546256e-17,1.6548153e-17,1.6550051e-17,1.6551949e-17,1.6553844e-17,1.6555742e-17,1.6557638e-17,1.6559534e-17,1.656143e-17,1.6563326e-17,1.6565222e-17,1.6567117e-17,1.6569013e-17,1.6570908e-17,1.6572802e-17,1.6574698e-17,1.6576592e-17,1.6578486e-17,1.6580379e-17,1.6582273e-17,1.6584167e-17,1.658606e-17,1.6587952e-17,1.6589847e-17,1.659174e-17,1.659363e-17,1.6595523e-17,1.6597415e-17,1.6599306e-17,1.6601199e-17,1.660309e-17,1.660498e-17,1.6606872e-17,1.6608763e-17,1.6610654e-17,1.6612543e-17,1.6614434e-17,1.6616323e-17,1.6618212e-17,1.6620102e-17,1.6621991e-17,1.662388e-17,1.662577e-17,1.6627657e-17,1.6629546e-17,1.6631434e-17,1.6633322e-17,1.663521e-17,1.6637097e-17,1.6638985e-17,1.6640872e-17,1.6642758e-17,1.6644644e-17,1.6646532e-17,1.6648418e-17,1.6650304e-17,1.665219e-17,1.6654074e-17,1.665596e-17,1.6657846e-17,1.665973e-17,1.6661615e-17,1.6663499e-17,1.6665383e-17,1.6667267e-17,1.6669152e-17,1.6671034e-17,1.6672919e-17,1.6674801e-17,1.6676684e-17,1.6678567e-17,1.668045e-17,1.6682332e-17,1.6684215e-17,1.6686096e-17,1.6687978e-17,1.668986e-17,1.669174e-17,1.6693621e-17,1.6695502e-17,1.6697383e-17,1.6699264e-17,1.6701144e-17,1.6703025e-17,1.6704904e-17,1.6706784e-17,1.6708663e-17,1.6710542e-17,1.6712422e-17,1.67143e-17,1.6716179e-17,1.6718056e-17,1.6719934e-17,1.6721813e-17,1.6723691e-17,1.6725567e-17,1.6727445e-17,1.6729323e-17,1.6731199e-17,1.6733076e-17,1.6734952e-17,1.6736828e-17,1.6738704e-17,1.674058e-17,1.6742455e-17,1.6744331e-17,1.6746207e-17,1.6748081e-17,1.6749956e-17,1.675183e-17,1.6753705e-17,1.6755579e-17,1.6757453e-17,1.6759326e-17,1.67612e-17,1.6763073e-17,1.6764946e-17,1.6766819e-17,1.6768691e-17,1.6770564e-17,1.6772437e-17,1.6774308e-17,1.677618e-17,1.6778052e-17,1.6779923e-17,1.6781794e-17,1.6783665e-17,1.6785536e-17,1.6787407e-17,1.6789277e-17,1.6791148e-17,1.6793017e-17,1.6794887e-17,1.6796756e-17,1.6798625e-17,1.6800495e-17,1.6802364e-17,1.6804232e-17,1.6806101e-17,1.680797e-17,1.6809837e-17,1.6811705e-17,1.6813573e-17,1.681544e-17,1.6817308e-17,1.6819174e-17,1.6821042e-17,1.6822908e-17,1.6824774e-17,1.682664e-17,1.6828506e-17,1.6830373e-17,1.6832239e-17,1.6834103e-17,1.683597e-17,1.6837834e-17,1.6839698e-17,1.6841563e-17,1.6843427e-17,1.6845292e-17,1.6847156e-17,1.6849019e-17,1.6850883e-17,1.6852746e-17,1.6854609e-17,1.6856472e-17,1.6858335e-17,1.6860197e-17,1.686206e-17,1.6863921e-17,1.6865784e-17,1.6867645e-17,1.6869507e-17,1.6871368e-17,1.6873229e-17,1.687509e-17,1.6876951e-17,1.687881e-17,1.6880672e-17,1.6882531e-17,1.688439e-17,1.688625e-17,1.688811e-17,1.688997e-17,1.6891829e-17,1.6893687e-17,1.6895546e-17,1.6897404e-17,1.6899262e-17,1.690112e-17,1.6902978e-17,1.6904835e-17,1.6906693e-17,1.690855e-17,1.6910407e-17,1.6912263e-17,1.691412e-17,1.6915976e-17,1.6917832e-17,1.6919688e-17,1.6921544e-17,1.69234e-17,1.6925255e-17,1.692711e-17,1.6928966e-17,1.693082e-17,1.6932675e-17,1.693453e-17,1.6936382e-17,1.6938237e-17,1.694009e-17,1.6941944e-17,1.6943797e-17,1.694565e-17,1.6947503e-17,1.6949356e-17,1.6951209e-17,1.6953062e-17,1.6954913e-17,1.6956764e-17,1.6958617e-17,1.6960468e-17,1.696232e-17,1.696417e-17,1.6966022e-17,1.6967872e-17,1.6969723e-17,1.6971572e-17,1.6973422e-17,1.6975273e-17,1.6977123e-17,1.6978972e-17,1.698082e-17,1.698267e-17,1.698452e-17,1.6986367e-17,1.6988215e-17,1.6990065e-17,1.6991913e-17,1.699376e-17,1.6995609e-17,1.6997455e-17,1.6999303e-17,1.7001149e-17,1.7002997e-17,1.7004843e-17,1.700669e-17,1.7008536e-17,1.7010382e-17,1.7012228e-17,1.7014073e-17,1.7015919e-17,1.7017764e-17,1.7019608e-17,1.7021455e-17,1.70233e-17,1.7025142e-17,1.7026987e-17,1.7028831e-17,1.7030674e-17,1.7032519e-17,1.7034362e-17,1.7036205e-17,1.7038048e-17,1.7039891e-17,1.7041734e-17,1.7043577e-17,1.7045418e-17,1.7047261e-17,1.7049102e-17,1.7050944e-17,1.7052785e-17,1.7054626e-17,1.7056468e-17,1.7058309e-17,1.706015e-17,1.706199e-17,1.706383e-17,1.706567e-17,1.706751e-17,1.706935e-17,1.707119e-17,1.707303e-17,1.7074867e-17,1.7076707e-17,1.7078545e-17,1.7080383e-17,1.7082223e-17,1.708406e-17,1.7085899e-17,1.7087735e-17,1.7089573e-17,1.7091411e-17,1.7093247e-17,1.7095084e-17,1.7096922e-17,1.7098758e-17,1.7100594e-17,1.710243e-17,1.7104265e-17,1.7106102e-17,1.7107936e-17,1.7109773e-17,1.7111607e-17,1.7113442e-17,1.7115277e-17,1.7117111e-17,1.7118946e-17,1.7120781e-17,1.7122614e-17,1.7124449e-17,1.7126282e-17,1.7128115e-17,1.7129948e-17,1.713178e-17,1.7133614e-17,1.7135447e-17,1.7137278e-17,1.7139111e-17,1.7140943e-17,1.7142774e-17,1.7144607e-17,1.7146438e-17,1.7148268e-17,1.71501e-17,1.715193e-17,1.715376e-17,1.7155592e-17,1.7157422e-17,1.7159251e-17,1.7161081e-17,1.716291e-17,1.716474e-17,1.716657e-17,1.7168398e-17,1.7170228e-17,1.7172056e-17,1.7173886e-17,1.7175714e-17,1.7177542e-17,1.717937e-17,1.7181196e-17,1.7183025e-17,1.7184853e-17,1.7186679e-17,1.7188505e-17,1.7190332e-17,1.7192158e-17,1.7193985e-17,1.7195811e-17,1.7197637e-17,1.7199464e-17,1.7201289e-17,1.7203113e-17,1.720494e-17,1.7206765e-17,1.720859e-17,1.7210414e-17,1.7212237e-17,1.7214062e-17,1.7215887e-17,1.721771e-17,1.7219533e-17,1.7221358e-17,1.7223181e-17,1.7225004e-17,1.7226825e-17,1.7228648e-17,1.7230472e-17,1.7232293e-17,1.7234116e-17,1.7235938e-17,1.7237759e-17,1.723958e-17,1.7241402e-17,1.7243223e-17,1.7245045e-17,1.7246865e-17,1.7248686e-17,1.7250506e-17,1.7252326e-17,1.7254146e-17,1.7255965e-17,1.7257785e-17,1.7259605e-17,1.7261423e-17,1.7263243e-17,1.7265061e-17,1.726688e-17,1.7268699e-17,1.7270517e-17,1.7272335e-17,1.7274153e-17,1.727597e-17,1.7277788e-17,1.7279604e-17,1.7281423e-17,1.7283239e-17,1.7285056e-17,1.7286872e-17,1.7288689e-17,1.7290505e-17,1.7292322e-17,1.7294136e-17,1.7295953e-17,1.7297768e-17,1.7299583e-17,1.7301397e-17,1.7303212e-17,1.7305027e-17,1.7306842e-17,1.7308655e-17,1.731047e-17,1.7312283e-17,1.7314098e-17,1.7315911e-17,1.7317724e-17,1.7319537e-17,1.732135e-17,1.7323162e-17,1.7324975e-17,1.7326787e-17,1.73286e-17,1.7330412e-17,1.7332223e-17,1.7334035e-17,1.7335846e-17,1.7337658e-17,1.733947e-17,1.7341279e-17,1.734309e-17,1.73449e-17,1.734671e-17,1.734852e-17,1.735033e-17,1.735214e-17,1.735395e-17,1.735576e-17,1.7357568e-17,1.7359378e-17,1.7361186e-17,1.7362994e-17,1.7364802e-17,1.736661e-17,1.7368419e-17,1.7370227e-17,1.7372034e-17,1.7373842e-17,1.7375648e-17,1.7377457e-17,1.7379263e-17,1.738107e-17,1.7382876e-17,1.7384683e-17,1.7386488e-17,1.7388294e-17,1.7390101e-17,1.7391906e-17,1.739371e-17,1.7395516e-17,1.739732e-17,1.7399125e-17,1.740093e-17,1.7402735e-17,1.7404539e-17,1.7406343e-17,1.7408147e-17,1.7409952e-17,1.7411755e-17,1.7413558e-17,1.7415361e-17,1.7417163e-17,1.7418966e-17,1.742077e-17,1.7422571e-17,1.7424373e-17,1.7426176e-17,1.7427978e-17,1.7429779e-17,1.743158e-17,1.7433382e-17,1.7435182e-17,1.7436984e-17,1.7438784e-17,1.7440585e-17,1.7442385e-17,1.7444185e-17,1.7445985e-17,1.7447785e-17,1.7449585e-17,1.7451383e-17,1.7453183e-17,1.7454982e-17,1.7456782e-17,1.745858e-17,1.7460378e-17,1.7462176e-17,1.7463975e-17,1.7465773e-17,1.746757e-17,1.7469368e-17,1.7471165e-17,1.7472961e-17,1.747476e-17,1.7476556e-17,1.7478353e-17,1.748015e-17,1.7481944e-17,1.7483741e-17,1.7485538e-17,1.7487333e-17,1.7489128e-17,1.7490924e-17,1.749272e-17,1.7494514e-17,1.7496308e-17,1.7498103e-17,1.7499898e-17,1.7501691e-17,1.7503486e-17,1.750528e-17,1.7507073e-17,1.7508866e-17,1.751066e-17,1.7512453e-17,1.7514246e-17,1.7516039e-17,1.7517831e-17,1.7519624e-17,1.7521416e-17,1.7523208e-17,1.7525e-17,1.7526791e-17,1.7528583e-17,1.7530374e-17,1.7532166e-17,1.7533956e-17,1.7535748e-17,1.7537538e-17,1.7539328e-17,1.7541118e-17,1.7542908e-17,1.7544698e-17,1.7546488e-17,1.7548276e-17,1.7550066e-17,1.7551854e-17,1.7553644e-17,1.7555433e-17,1.7557221e-17,1.755901e-17,1.7560798e-17,1.7562586e-17,1.7564373e-17,1.7566161e-17,1.7567948e-17,1.7569736e-17,1.7571523e-17,1.757331e-17,1.7575097e-17,1.7576883e-17,1.757867e-17,1.7580457e-17,1.7582242e-17,1.7584028e-17,1.7585814e-17,1.7587599e-17,1.7589384e-17,1.7591169e-17,1.7592954e-17,1.7594739e-17,1.7596524e-17,1.7598307e-17,1.7600092e-17,1.7601876e-17,1.7603659e-17,1.7605444e-17,1.7607228e-17,1.760901e-17,1.7610793e-17,1.7612576e-17,1.761436e-17,1.7616141e-17,1.7617923e-17,1.7619706e-17,1.7621488e-17,1.762327e-17,1.7625052e-17,1.7626833e-17,1.7628613e-17,1.7630395e-17,1.7632177e-17,1.7633957e-17,1.7635737e-17,1.7637517e-17,1.7639299e-17,1.7641079e-17,1.7642858e-17,1.7644638e-17,1.7646418e-17,1.7648196e-17,1.7649976e-17,1.7651755e-17,1.7653533e-17,1.7655312e-17,1.765709e-17,1.7658868e-17,1.7660647e-17,1.7662425e-17,1.7664202e-17,1.766598e-17,1.7667757e-17,1.7669534e-17,1.7671311e-17,1.7673088e-17,1.7674864e-17,1.7676641e-17,1.7678418e-17,1.7680193e-17,1.768197e-17,1.7683745e-17,1.7685522e-17,1.7687297e-17,1.7689072e-17,1.7690847e-17,1.7692622e-17,1.7694396e-17,1.7696171e-17,1.7697944e-17,1.769972e-17,1.7701493e-17,1.7703267e-17,1.770504e-17,1.7706813e-17,1.7708587e-17,1.771036e-17,1.7712134e-17,1.7713906e-17,1.771568e-17,1.7717451e-17,1.7719223e-17,1.7720995e-17,1.7722766e-17,1.7724538e-17],"x":[1.0e-38,2.9990003998400636e-38,4.998000799680128e-38,6.997001199520192e-38,8.996001599360255e-38,1.099500199920032e-37,1.2994002399040382e-37,1.4993002798880447e-37,1.699200319872051e-37,1.8991003598560576e-37,2.099000399840064e-37,2.29890043982407e-37,2.4988004798080765e-37,2.698700519792083e-37,2.8986005597760895e-37,3.098500599760096e-37,3.298400639744102e-37,3.4983006797281085e-37,3.6982007197121148e-37,3.898100759696121e-37,4.098000799680127e-37,4.297900839664134e-37,4.49780087964814e-37,4.697700919632147e-37,4.8976009596161535e-37,5.09750099960016e-37,5.297401039584166e-37,5.4973010795681724e-37,5.697201119552179e-37,5.897101159536185e-37,6.097001199520191e-37,6.296901239504198e-37,6.496801279488204e-37,6.69670131947221e-37,6.8966013594562174e-37,7.096501399440224e-37,7.29640143942423e-37,7.496301479408236e-37,7.696201519392242e-37,7.896101559376248e-37,8.096001599360256e-37,8.295901639344262e-37,8.495801679328269e-37,8.695701719312275e-37,8.895601759296281e-37,9.095501799280288e-37,9.295401839264294e-37,9.4953018792483e-37,9.695201919232307e-37,9.895101959216313e-37,1.009500199920032e-36,1.0294902039184326e-36,1.0494802079168332e-36,1.0694702119152338e-36,1.0894602159136344e-36,1.109450219912035e-36,1.1294402239104357e-36,1.1494302279088363e-36,1.169420231907237e-36,1.1894102359056376e-36,1.2094002399040382e-36,1.2293902439024389e-36,1.2493802479008395e-36,1.2693702518992403e-36,1.289360255897641e-36,1.3093502598960416e-36,1.3293402638944422e-36,1.3493302678928428e-36,1.3693202718912435e-36,1.389310275889644e-36,1.4093002798880447e-36,1.4292902838864453e-36,1.449280287884846e-36,1.4692702918832466e-36,1.4892602958816472e-36,1.509250299880048e-36,1.5292403038784487e-36,1.549230307876849e-36,1.56922031187525e-36,1.5892103158736504e-36,1.6092003198720512e-36,1.6291903238704517e-36,1.6491803278688525e-36,1.669170331867253e-36,1.6891603358656537e-36,1.7091503398640542e-36,1.729140343862455e-36,1.7491303478608554e-36,1.7691203518592562e-36,1.7891103558576567e-36,1.8091003598560575e-36,1.829090363854458e-36,1.8490803678528588e-36,1.8690703718512592e-36,1.88906037584966e-36,1.9090503798480605e-36,1.9290403838464613e-36,1.9490303878448618e-36,1.9690203918432625e-36,1.9890103958416633e-36,2.0090003998400638e-36,2.0289904038384646e-36,2.048980407836865e-36,2.068970411835266e-36,2.0889604158336663e-36,2.108950419832067e-36,2.1289404238304676e-36,2.1489304278288684e-36,2.168920431827269e-36,2.1889104358256697e-36,2.20890043982407e-36,2.228890443822471e-36,2.2488804478208714e-36,2.2688704518192722e-36,2.2888604558176726e-36,2.3088504598160734e-36,2.328840463814474e-36,2.3488304678128747e-36,2.3688204718112752e-36,2.388810475809676e-36,2.4088004798080764e-36,2.4287904838064772e-36,2.448780487804878e-36,2.4687704918032785e-36,2.4887604958016793e-36,2.5087504998000798e-36,2.5287405037984806e-36,2.548730507796881e-36,2.5687205117952818e-36,2.5887105157936823e-36,2.608700519792083e-36,2.6286905237904835e-36,2.6486805277888843e-36,2.6686705317872848e-36,2.6886605357856856e-36,2.708650539784086e-36,2.728640543782487e-36,2.7486305477808873e-36,2.768620551779288e-36,2.7886105557776886e-36,2.8086005597760894e-36,2.82859056377449e-36,2.8485805677728907e-36,2.868570571771291e-36,2.888560575769692e-36,2.9085505797680927e-36,2.9285405837664932e-36,2.948530587764894e-36,2.9685205917632944e-36,2.9885105957616952e-36,3.0085005997600957e-36,3.028490603758496e-36,3.048480607756897e-36,3.068470611755298e-36,3.0884606157536986e-36,3.108450619752099e-36,3.1284406237504995e-36,3.1484306277489e-36,3.168420631747301e-36,3.188410635745701e-36,3.208400639744102e-36,3.228390643742503e-36,3.2483806477409036e-36,3.268370651739304e-36,3.2883606557377045e-36,3.308350659736105e-36,3.328340663734506e-36,3.348330667732907e-36,3.368320671731307e-36,3.388310675729708e-36,3.4083006797281087e-36,3.4282906837265095e-36,3.4482806877249096e-36,3.4682706917233104e-36,3.488260695721711e-36,3.508250699720112e-36,3.528240703718512e-36,3.548230707716913e-36,3.568220711715314e-36,3.5882107157137145e-36,3.6082007197121146e-36,3.6281907237105154e-36,3.648180727708916e-36,3.668170731707317e-36,3.688160735705717e-36,3.708150739704118e-36,3.728140743702519e-36,3.7481307477009196e-36,3.76812075169932e-36,3.7881107556977205e-36,3.808100759696121e-36,3.828090763694522e-36,3.848080767692923e-36,3.868070771691323e-36,3.888060775689724e-36,3.9080507796881246e-36,3.9280407836865254e-36,3.9480307876849255e-36,3.968020791683326e-36,3.988010795681727e-36,4.008000799680128e-36,4.027990803678528e-36,4.047980807676929e-36,4.0679708116753296e-36,4.0879608156737304e-36,4.1079508196721306e-36,4.1279408236705314e-36,4.147930827668932e-36,4.167920831667333e-36,4.187910835665733e-36,4.207900839664134e-36,4.227890843662535e-36,4.2478808476609355e-36,4.2678708516593356e-36,4.2878608556577364e-36,4.307850859656137e-36,4.327840863654538e-36,4.347830867652939e-36,4.367820871651339e-36,4.38781087564974e-36,4.4078008796481405e-36,4.4277908836465413e-36,4.4477808876449415e-36,4.467770891643342e-36,4.487760895641743e-36,4.507750899640144e-36,4.527740903638544e-36,4.547730907636945e-36,4.5677209116353456e-36,4.5877109156337464e-36,4.6077009196321465e-36,4.627690923630547e-36,4.647680927628948e-36,4.667670931627349e-36,4.687660935625749e-36,4.70765093962415e-36,4.7276409436225506e-36,4.7476309476209514e-36,4.767620951619352e-36,4.7876109556177524e-36,4.807600959616153e-36,4.827590963614554e-36,4.847580967612955e-36,4.867570971611355e-36,4.887560975609756e-36,4.9075509796081565e-36,4.927540983606557e-36,4.9475309876049574e-36,4.967520991603358e-36,4.987510995601759e-36,5.00750099960016e-36,5.02749100359856e-36,5.047481007596961e-36,5.0674710115953615e-36,5.0874610155937623e-36,5.1074510195921625e-36,5.127441023590563e-36,5.147431027588964e-36,5.167421031587365e-36,5.187411035585765e-36,5.207401039584166e-36,5.2273910435825666e-36,5.2473810475809674e-36,5.267371051579368e-36,5.287361055577768e-36,5.307351059576169e-36,5.32734106357457e-36,5.347331067572971e-36,5.367321071571371e-36,5.3873110755697716e-36,5.4073010795681724e-36,5.427291083566573e-36,5.4472810875649734e-36,5.467271091563374e-36,5.487261095561775e-36,5.507251099560176e-36,5.527241103558576e-36,5.547231107556977e-36,5.5672211115553775e-36,5.587211115553778e-36,5.6072011195521784e-36,5.627191123550579e-36,5.64718112754898e-36,5.667171131547381e-36,5.6871611355457816e-36,5.707151139544182e-36,5.7271411435425825e-36,5.747131147540983e-36,5.767121151539384e-36,5.787111155537784e-36,5.807101159536185e-36,5.827091163534586e-36,5.8470811675329866e-36,5.867071171531387e-36,5.8870611755297876e-36,5.9070511795281884e-36,5.927041183526589e-36,5.947031187524989e-36,5.96702119152339e-36,5.987011195521791e-36,6.007001199520192e-36,6.026991203518592e-36,6.046981207516993e-36,6.066971211515393e-36,6.086961215513794e-36,6.106951219512195e-36,6.126941223510596e-36,6.146931227508997e-36,6.166921231507396e-36,6.186911235505797e-36,6.206901239504198e-36,6.226891243502598e-36,6.246881247500999e-36,6.2668712514994e-36,6.286861255497801e-36,6.306851259496202e-36,6.326841263494601e-36,6.346831267493002e-36,6.366821271491403e-36,6.386811275489804e-36,6.406801279488204e-36,6.426791283486605e-36,6.446781287485006e-36,6.466771291483407e-36,6.486761295481806e-36,6.506751299480207e-36,6.526741303478608e-36,6.546731307477009e-36,6.56672131147541e-36,6.58671131547381e-36,6.606701319472211e-36,6.626691323470612e-36,6.646681327469013e-36,6.666671331467412e-36,6.686661335465813e-36,6.706651339464214e-36,6.726641343462614e-36,6.746631347461015e-36,6.766621351459416e-36,6.786611355457817e-36,6.806601359456218e-36,6.826591363454617e-36,6.846581367453018e-36,6.866571371451419e-36,6.88656137544982e-36,6.90655137944822e-36,6.926541383446621e-36,6.946531387445022e-36,6.966521391443423e-36,6.986511395441822e-36,7.006501399440223e-36,7.026491403438624e-36,7.046481407437025e-36,7.066471411435425e-36,7.086461415433826e-36,7.106451419432227e-36,7.126441423430628e-36,7.146431427429029e-36,7.166421431427428e-36,7.186411435425829e-36,7.20640143942423e-36,7.22639144342263e-36,7.246381447421031e-36,7.266371451419432e-36,7.286361455417833e-36,7.306351459416234e-36,7.326341463414633e-36,7.346331467413034e-36,7.366321471411435e-36,7.386311475409835e-36,7.406301479408236e-36,7.426291483406637e-36,7.446281487405038e-36,7.466271491403439e-36,7.486261495401838e-36,7.506251499400239e-36,7.52624150339864e-36,7.54623150739704e-36,7.566221511395441e-36,7.586211515393842e-36,7.606201519392243e-36,7.626191523390644e-36,7.646181527389044e-36,7.666171531387444e-36,7.686161535385845e-36,7.706151539384246e-36,7.726141543382646e-36,7.746131547381047e-36,7.766121551379448e-36,7.786111555377849e-36,7.80610155937625e-36,7.826091563374649e-36,7.84608156737305e-36,7.86607157137145e-36,7.886061575369851e-36,7.906051579368252e-36,7.926041583366653e-36,7.946031587365054e-36,7.966021591363455e-36,7.986011595361855e-36,8.006001599360255e-36,8.025991603358656e-36,8.045981607357056e-36,8.065971611355457e-36,8.085961615353858e-36,8.105951619352259e-36,8.12594162335066e-36,8.14593162734906e-36,8.16592163134746e-36,8.18591163534586e-36,8.205901639344261e-36,8.225891643342662e-36,8.245881647341063e-36,8.265871651339464e-36,8.285861655337865e-36,8.305851659336265e-36,8.325841663334665e-36,8.345831667333066e-36,8.365821671331466e-36,8.385811675329867e-36,8.405801679328268e-36,8.425791683326669e-36,8.44578168732507e-36,8.46577169132347e-36,8.485761695321871e-36,8.505751699320271e-36,8.525741703318672e-36,8.545731707317072e-36,8.565721711315473e-36,8.585711715313874e-36,8.605701719312275e-36,8.625691723310676e-36,8.645681727309076e-36,8.665671731307476e-36,8.685661735305877e-36,8.705651739304277e-36,8.725641743302678e-36,8.745631747301079e-36,8.76562175129948e-36,8.78561175529788e-36,8.805601759296281e-36,8.825591763294681e-36,8.845581767293082e-36,8.865571771291482e-36,8.885561775289883e-36,8.905551779288284e-36,8.925541783286685e-36,8.945531787285086e-36,8.965521791283486e-36,8.985511795281887e-36,9.005501799280287e-36,9.025491803278687e-36,9.045481807277088e-36,9.065471811275489e-36,9.08546181527389e-36,9.105451819272291e-36,9.125441823270691e-36,9.145431827269092e-36,9.165421831267492e-36,9.185411835265893e-36,9.205401839264293e-36,9.225391843262694e-36,9.245381847261095e-36,9.265371851259496e-36,9.285361855257897e-36,9.305351859256297e-36,9.325341863254697e-36,9.345331867253098e-36,9.365321871251498e-36,9.385311875249899e-36,9.4053018792483e-36,9.425291883246701e-36,9.445281887245102e-36,9.465271891243502e-36,9.485261895241903e-36,9.505251899240303e-36,9.525241903238703e-36,9.545231907237104e-36,9.565221911235505e-36,9.585211915233906e-36,9.605201919232307e-36,9.625191923230707e-36,9.645181927229108e-36,9.665171931227508e-36,9.685161935225908e-36,9.705151939224309e-36,9.72514194322271e-36,9.745131947221111e-36,9.765121951219512e-36,9.785111955217912e-36,9.805101959216313e-36,9.825091963214714e-36,9.845081967213114e-36,9.865071971211514e-36,9.885061975209915e-36,9.905051979208316e-36,9.925041983206717e-36,9.945031987205118e-36,9.965021991203518e-36,9.985011995201919e-36,1.0005001999200319e-35,1.002499200319872e-35,1.004498200719712e-35,1.0064972011195521e-35,1.0084962015193922e-35,1.0104952019192323e-35,1.0124942023190723e-35,1.0144932027189124e-35,1.0164922031187524e-35,1.0184912035185924e-35,1.0204902039184325e-35,1.0224892043182726e-35,1.0244882047181127e-35,1.0264872051179528e-35,1.0284862055177928e-35,1.0304852059176329e-35,1.032484206317473e-35,1.034483206717313e-35,1.036482207117153e-35,1.0384812075169931e-35,1.0404802079168332e-35,1.0424792083166733e-35,1.0444782087165133e-35,1.0464772091163534e-35,1.0484762095161935e-35,1.0504752099160335e-35,1.0524742103158735e-35,1.0544732107157136e-35,1.0564722111155537e-35,1.0584712115153938e-35,1.0604702119152339e-35,1.0624692123150739e-35,1.064468212714914e-35,1.066467213114754e-35,1.068466213514594e-35,1.0704652139144341e-35,1.0724642143142742e-35,1.0744632147141143e-35,1.0764622151139544e-35,1.0784612155137944e-35,1.0804602159136345e-35,1.0824592163134746e-35,1.0844582167133145e-35,1.0864572171131546e-35,1.0884562175129947e-35,1.0904552179128348e-35,1.0924542183126749e-35,1.094453218712515e-35,1.096452219112355e-35,1.0984512195121951e-35,1.100450219912035e-35,1.1024492203118751e-35,1.1044482207117152e-35,1.1064472211115553e-35,1.1084462215113954e-35,1.1104452219112354e-35,1.1124442223110755e-35,1.1144432227109156e-35,1.1164422231107556e-35,1.1184412235105956e-35,1.1204402239104357e-35,1.1224392243102758e-35,1.1244382247101159e-35,1.126437225109956e-35,1.128436225509796e-35,1.1304352259096361e-35,1.1324342263094762e-35,1.1344332267093161e-35,1.1364322271091562e-35,1.1384312275089963e-35,1.1404302279088364e-35,1.1424292283086765e-35,1.1444282287085165e-35,1.1464272291083566e-35,1.1484262295081967e-35,1.1504252299080366e-35,1.1524242303078767e-35,1.1544232307077168e-35,1.1564222311075569e-35,1.158421231507397e-35,1.160420231907237e-35,1.1624192323070771e-35,1.1644182327069172e-35,1.1664172331067571e-35,1.1684162335065972e-35,1.1704152339064373e-35,1.1724142343062774e-35,1.1744132347061175e-35,1.1764122351059575e-35,1.1784112355057976e-35,1.1804102359056377e-35,1.1824092363054778e-35,1.1844082367053177e-35,1.1864072371051578e-35,1.1884062375049979e-35,1.190405237904838e-35,1.192404238304678e-35,1.1944032387045181e-35,1.1964022391043582e-35,1.1984012395041983e-35,1.2004002399040382e-35,1.2023992403038783e-35,1.2043982407037184e-35,1.2063972411035585e-35,1.2083962415033986e-35,1.2103952419032386e-35,1.2123942423030787e-35,1.2143932427029188e-35,1.216392243102759e-35,1.218391243502599e-35,1.220390243902439e-35,1.222389244302279e-35,1.2243882447021192e-35,1.226387245101959e-35,1.228386245501799e-35,1.2303852459016392e-35,1.2323842463014792e-35,1.2343832467013193e-35,1.2363822471011594e-35,1.2383812475009995e-35,1.2403802479008396e-35,1.2423792483006796e-35,1.2443782487005197e-35,1.2463772491003598e-35,1.2483762495002e-35,1.25037524990004e-35,1.25237425029988e-35,1.25437325069972e-35,1.2563722510995602e-35,1.2583712514994e-35,1.26037025189924e-35,1.2623692522990802e-35,1.2643682526989203e-35,1.2663672530987603e-35,1.2683662534986004e-35,1.2703652538984405e-35,1.2723642542982806e-35,1.2743632546981207e-35,1.2763622550979607e-35,1.2783612554978008e-35,1.280360255897641e-35,1.282359256297481e-35,1.284358256697321e-35,1.286357257097161e-35,1.2883562574970012e-35,1.2903552578968413e-35,1.292354258296681e-35,1.2943532586965212e-35,1.2963522590963613e-35,1.2983512594962013e-35,1.3003502598960414e-35,1.3023492602958815e-35,1.3043482606957216e-35,1.3063472610955617e-35,1.3083462614954017e-35,1.3103452618952418e-35,1.312344262295082e-35,1.314343262694922e-35,1.316342263094762e-35,1.3183412634946021e-35,1.3203402638944422e-35,1.3223392642942823e-35,1.3243382646941224e-35,1.3263372650939622e-35,1.3283362654938023e-35,1.3303352658936424e-35,1.3323342662934824e-35,1.3343332666933225e-35,1.3363322670931626e-35,1.3383312674930027e-35,1.3403302678928428e-35,1.3423292682926828e-35,1.344328268692523e-35,1.346327269092363e-35,1.348326269492203e-35,1.3503252698920432e-35,1.3523242702918832e-35,1.3543232706917233e-35,1.3563222710915634e-35,1.3583212714914035e-35,1.3603202718912433e-35,1.3623192722910834e-35,1.3643182726909234e-35,1.3663172730907635e-35,1.3683162734906036e-35,1.3703152738904437e-35,1.3723142742902838e-35,1.3743132746901238e-35,1.376312275089964e-35,1.378311275489804e-35,1.380310275889644e-35,1.3823092762894842e-35,1.3843082766893242e-35,1.3863072770891643e-35,1.3883062774890044e-35,1.3903052778888445e-35,1.3923042782886843e-35,1.3943032786885244e-35,1.3963022790883645e-35,1.3983012794882045e-35,1.4003002798880446e-35,1.4022992802878847e-35,1.4042982806877248e-35,1.4062972810875649e-35,1.408296281487405e-35,1.410295281887245e-35,1.412294282287085e-35,1.4142932826869252e-35,1.4162922830867653e-35,1.4182912834866053e-35,1.4202902838864454e-35,1.4222892842862855e-35,1.4242882846861256e-35,1.4262872850859654e-35,1.4282862854858055e-35,1.4302852858856455e-35,1.4322842862854856e-35,1.4342832866853257e-35,1.4362822870851658e-35,1.4382812874850059e-35,1.440280287884846e-35,1.442279288284686e-35,1.444278288684526e-35,1.4462772890843662e-35,1.4482762894842063e-35,1.4502752898840463e-35,1.4522742902838864e-35,1.4542732906837265e-35,1.4562722910835666e-35,1.4582712914834067e-35,1.4602702918832465e-35,1.4622692922830866e-35,1.4642682926829266e-35,1.4662672930827667e-35,1.4682662934826068e-35,1.470265293882447e-35,1.472264294282287e-35,1.474263294682127e-35,1.476262295081967e-35,1.4782612954818072e-35,1.4802602958816473e-35,1.4822592962814874e-35,1.4842582966813274e-35,1.4862572970811675e-35,1.4882562974810076e-35,1.4902552978808477e-35,1.4922542982806878e-35,1.4942532986805276e-35,1.4962522990803676e-35,1.4982512994802077e-35,1.5002502998800478e-35,1.502249300279888e-35,1.504248300679728e-35,1.506247301079568e-35,1.508246301479408e-35,1.5102453018792482e-35,1.5122443022790883e-35,1.5142433026789284e-35,1.5162423030787684e-35,1.5182413034786085e-35,1.5202403038784486e-35,1.5222393042782887e-35,1.5242383046781288e-35,1.5262373050779686e-35,1.5282363054778087e-35,1.5302353058776487e-35,1.5322343062774888e-35,1.534233306677329e-35,1.536232307077169e-35,1.538231307477009e-35,1.540230307876849e-35,1.5422293082766892e-35,1.5442283086765293e-35,1.5462273090763694e-35,1.5482263094762095e-35,1.5502253098760495e-35,1.5522243102758896e-35,1.5542233106757297e-35,1.5562223110755698e-35,1.5582213114754098e-35,1.5602203118752497e-35,1.5622193122750897e-35,1.5642183126749298e-35,1.56621731307477e-35,1.56821631347461e-35,1.57021531387445e-35,1.5722143142742901e-35,1.5742133146741302e-35,1.5762123150739703e-35,1.5782113154738104e-35,1.5802103158736505e-35,1.5822093162734905e-35,1.5842083166733306e-35,1.5862073170731707e-35,1.5882063174730108e-35,1.5902053178728509e-35,1.592204318272691e-35,1.5942033186725308e-35,1.5962023190723708e-35,1.598201319472211e-35,1.600200319872051e-35,1.602199320271891e-35,1.6041983206717312e-35,1.6061973210715712e-35,1.6081963214714113e-35,1.6101953218712514e-35,1.6121943222710915e-35,1.6141933226709315e-35,1.6161923230707716e-35,1.6181913234706117e-35,1.6201903238704518e-35,1.622189324270292e-35,1.624188324670132e-35,1.6261873250699718e-35,1.6281863254698118e-35,1.630185325869652e-35,1.632184326269492e-35,1.634183326669332e-35,1.6361823270691722e-35,1.6381813274690122e-35,1.6401803278688523e-35,1.6421793282686924e-35,1.6441783286685325e-35,1.6461773290683726e-35,1.6481763294682126e-35,1.6501753298680527e-35,1.6521743302678928e-35,1.654173330667733e-35,1.656172331067573e-35,1.658171331467413e-35,1.6601703318672529e-35,1.662169332267093e-35,1.664168332666933e-35,1.666167333066773e-35,1.6681663334666132e-35,1.6701653338664532e-35,1.6721643342662933e-35,1.6741633346661334e-35,1.6761623350659735e-35,1.6781613354658136e-35,1.6801603358656536e-35,1.6821593362654937e-35,1.6841583366653338e-35,1.686157337065174e-35,1.688156337465014e-35,1.690155337864854e-35,1.692154338264694e-35,1.694153338664534e-35,1.696152339064374e-35,1.698151339464214e-35,1.7001503398640542e-35,1.7021493402638943e-35,1.7041483406637343e-35,1.7061473410635744e-35,1.7081463414634145e-35,1.7101453418632546e-35,1.7121443422630947e-35,1.7141433426629347e-35,1.7161423430627748e-35,1.718141343462615e-35,1.720140343862455e-35,1.722139344262295e-35,1.7241383446621351e-35,1.7261373450619752e-35,1.728136345461815e-35,1.730135345861655e-35,1.7321343462614952e-35,1.7341333466613353e-35,1.7361323470611753e-35,1.7381313474610154e-35,1.7401303478608555e-35,1.7421293482606956e-35,1.7441283486605357e-35,1.7461273490603757e-35,1.7481263494602158e-35,1.750125349860056e-35,1.752124350259896e-35,1.754123350659736e-35,1.7561223510595761e-35,1.7581213514594162e-35,1.760120351859256e-35,1.762119352259096e-35,1.7641183526589362e-35,1.7661173530587763e-35,1.7681163534586164e-35,1.7701153538584564e-35,1.7721143542582965e-35,1.7741133546581366e-35,1.7761123550579767e-35,1.7781113554578168e-35,1.7801103558576568e-35,1.782109356257497e-35,1.784108356657337e-35,1.786107357057177e-35,1.7881063574570172e-35,1.7901053578568572e-35,1.7921043582566973e-35,1.794103358656537e-35,1.7961023590563772e-35,1.7981013594562173e-35,1.8001003598560574e-35,1.8020993602558974e-35,1.8040983606557375e-35,1.8060973610555776e-35,1.8080963614554177e-35,1.8100953618552578e-35,1.8120943622550978e-35,1.814093362654938e-35,1.816092363054778e-35,1.818091363454618e-35,1.8200903638544582e-35,1.8220893642542982e-35,1.8240883646541383e-35,1.8260873650539784e-35,1.8280863654538182e-35,1.8300853658536583e-35,1.8320843662534984e-35,1.8340833666533385e-35,1.8360823670531785e-35,1.8380813674530186e-35,1.8400803678528587e-35,1.8420793682526988e-35,1.8440783686525389e-35,1.846077369052379e-35,1.848076369452219e-35,1.850075369852059e-35,1.8520743702518992e-35,1.8540733706517393e-35,1.8560723710515793e-35,1.8580713714514194e-35,1.8600703718512592e-35,1.8620693722510993e-35,1.8640683726509394e-35,1.8660673730507795e-35,1.8680663734506195e-35,1.8700653738504596e-35,1.8720643742502997e-35,1.8740633746501398e-35,1.87606237504998e-35,1.87806137544982e-35,1.88006037584966e-35,1.8820593762495e-35,1.8840583766493402e-35,1.8860573770491803e-35,1.8880563774490203e-35,1.8900553778488604e-35,1.8920543782487005e-35,1.8940533786485403e-35,1.8960523790483804e-35,1.8980513794482205e-35,1.9000503798480606e-35,1.9020493802479006e-35,1.9040483806477407e-35,1.9060473810475808e-35,1.908046381447421e-35,1.910045381847261e-35,1.912044382247101e-35,1.914043382646941e-35,1.9160423830467812e-35,1.9180413834466213e-35,1.9200403838464614e-35,1.9220393842463014e-35,1.9240383846461415e-35,1.9260373850459816e-35,1.9280363854458214e-35,1.9300353858456615e-35,1.9320343862455016e-35,1.9340333866453416e-35,1.9360323870451817e-35,1.9380313874450218e-35,1.940030387844862e-35,1.942029388244702e-35,1.944028388644542e-35,1.946027389044382e-35,1.9480263894442222e-35,1.9500253898440623e-35,1.9520243902439024e-35,1.9540233906437424e-35,1.9560223910435825e-35,1.9580213914434226e-35,1.9600203918432627e-35,1.9620193922431025e-35,1.9640183926429426e-35,1.9660173930427827e-35,1.9680163934426227e-35,1.9700153938424628e-35,1.972014394242303e-35,1.974013394642143e-35,1.976012395041983e-35,1.9780113954418231e-35,1.9800103958416632e-35,1.9820093962415033e-35,1.9840083966413434e-35,1.9860073970411835e-35,1.9880063974410235e-35,1.9900053978408636e-35,1.9920043982407037e-35,1.9940033986405435e-35,1.9960023990403836e-35,1.9980013994402237e-35,2.0000003998400637e-35,2.0019994002399038e-35,2.003998400639744e-35,2.005997401039584e-35,2.007996401439424e-35,2.0099954018392641e-35,2.0119944022391042e-35,2.0139934026389443e-35,2.0159924030387844e-35,2.0179914034386245e-35,2.0199904038384645e-35,2.0219894042383046e-35,2.0239884046381447e-35,2.0259874050379848e-35,2.0279864054378246e-35,2.0299854058376647e-35,2.0319844062375048e-35,2.0339834066373448e-35,2.035982407037185e-35,2.037981407437025e-35,2.039980407836865e-35,2.0419794082367052e-35,2.0439784086365452e-35,2.0459774090363853e-35,2.0479764094362254e-35,2.0499754098360655e-35,2.0519744102359056e-35,2.0539734106357456e-35,2.0559724110355857e-35,2.0579714114354258e-35,2.059970411835266e-35,2.0619694122351057e-35,2.0639684126349458e-35,2.0659674130347858e-35,2.067966413434626e-35,2.069965413834466e-35,2.071964414234306e-35,2.0739634146341462e-35,2.0759624150339862e-35,2.0779614154338263e-35,2.0799604158336664e-35,2.0819594162335065e-35,2.0839584166333466e-35,2.0859574170331866e-35,2.0879564174330267e-35,2.0899554178328668e-35,2.091954418232707e-35,2.093953418632547e-35,2.0959524190323868e-35,2.0979514194322269e-35,2.099950419832067e-35,2.101949420231907e-35,2.103948420631747e-35,2.1059474210315872e-35,2.1079464214314273e-35,2.1099454218312673e-35,2.1119444222311074e-35,2.1139434226309475e-35,2.1159424230307876e-35,2.1179414234306277e-35,2.1199404238304677e-35,2.1219394242303078e-35,2.123938424630148e-35,2.125937425029988e-35,2.1279364254298278e-35,2.1299354258296679e-35,2.131934426229508e-35,2.133933426629348e-35,2.135932427029188e-35,2.1379314274290282e-35,2.1399304278288683e-35,2.1419294282287083e-35,2.1439284286285484e-35,2.1459274290283885e-35,2.1479264294282286e-35,2.1499254298280687e-35,2.1519244302279087e-35,2.1539234306277488e-35,2.155922431027589e-35,2.157921431427429e-35,2.159920431827269e-35,2.161919432227109e-35,2.163918432626949e-35,2.165917433026789e-35,2.167916433426629e-35,2.1699154338264692e-35,2.1719144342263093e-35,2.1739134346261494e-35,2.1759124350259894e-35,2.1779114354258295e-35,2.1799104358256696e-35,2.1819094362255097e-35,2.1839084366253498e-35,2.1859074370251898e-35,2.18790643742503e-35,2.18990543782487e-35,2.19190443822471e-35,2.1939034386245502e-35,2.19590243902439e-35,2.19790143942423e-35,2.19990043982407e-35,2.2018994402239102e-35,2.2038984406237503e-35,2.2058974410235904e-35,2.2078964414234304e-35,2.2098954418232705e-35,2.2118944422231106e-35,2.2138934426229507e-35,2.2158924430227908e-35,2.2178914434226308e-35,2.219890443822471e-35,2.221889444222311e-35,2.223888444622151e-35,2.2258874450219912e-35,2.227886445421831e-35,2.229885445821671e-35,2.231884446221511e-35,2.2338834466213512e-35,2.2358824470211913e-35,2.2378814474210314e-35,2.2398804478208715e-35,2.2418794482207115e-35,2.2438784486205516e-35,2.2458774490203917e-35,2.2478764494202318e-35,2.2498754498200719e-35,2.251874450219912e-35,2.253873450619752e-35,2.255872451019592e-35,2.2578714514194322e-35,2.2598704518192723e-35,2.261869452219112e-35,2.2638684526189521e-35,2.2658674530187922e-35,2.2678664534186323e-35,2.2698654538184724e-35,2.2718644542183125e-35,2.2738634546181525e-35,2.2758624550179926e-35,2.2778614554178327e-35,2.2798604558176728e-35,2.2818594562175129e-35,2.283858456617353e-35,2.285857457017193e-35,2.287856457417033e-35,2.2898554578168732e-35,2.2918544582167133e-35,2.2938534586165533e-35,2.2958524590163932e-35,2.2978514594162332e-35,2.2998504598160733e-35,2.3018494602159134e-35,2.3038484606157535e-35,2.3058474610155936e-35,2.3078464614154336e-35,2.3098454618152737e-35,2.3118444622151138e-35,2.313843462614954e-35,2.315842463014794e-35,2.317841463414634e-35,2.319840463814474e-35,2.3218394642143142e-35,2.3238384646141543e-35,2.3258374650139944e-35,2.3278364654138344e-35,2.3298354658136742e-35,2.3318344662135143e-35,2.3338334666133544e-35,2.3358324670131945e-35,2.3378314674130346e-35,2.3398304678128746e-35,2.3418294682127147e-35,2.3438284686125548e-35,2.345827469012395e-35,2.347826469412235e-35,2.349825469812075e-35,2.351824470211915e-35,2.3538234706117552e-35,2.3558224710115953e-35,2.3578214714114354e-35,2.3598204718112754e-35,2.3618194722111153e-35,2.3638184726109553e-35,2.3658174730107954e-35,2.3678164734106355e-35,2.3698154738104756e-35,2.3718144742103157e-35,2.3738134746101557e-35,2.3758124750099958e-35,2.377811475409836e-35,2.379810475809676e-35,2.381809476209516e-35,2.383808476609356e-35,2.3858074770091962e-35,2.3878064774090363e-35,2.3898054778088764e-35,2.3918044782087164e-35,2.3938034786085565e-35,2.3958024790083963e-35,2.3978014794082364e-35,2.3998004798080765e-35,2.4017994802079166e-35,2.4037984806077567e-35,2.4057974810075967e-35,2.407796481407437e-35,2.409795481807277e-35,2.4117944822071167e-35,2.413793482606957e-35,2.415792483006797e-35,2.417791483406637e-35,2.419790483806477e-35,2.421789484206317e-35,2.423788484606157e-35,2.4257874850059973e-35,2.4277864854058374e-35,2.4297854858056774e-35,2.4317844862055175e-35,2.4337834866053576e-35,2.4357824870051977e-35,2.437781487405038e-35,2.439780487804878e-35,2.441779488204718e-35,2.443778488604558e-35,2.445777489004398e-35,2.447776489404238e-35,2.449775489804078e-35,2.4517744902039183e-35,2.4537734906037584e-35,2.4557724910035985e-35,2.4577714914034385e-35,2.4597704918032786e-35,2.4617694922031187e-35,2.463768492602959e-35,2.465767493002799e-35,2.467766493402639e-35,2.469765493802479e-35,2.471764494202319e-35,2.473763494602159e-35,2.475762495001999e-35,2.4777614954018393e-35,2.479760495801679e-35,2.481759496201519e-35,2.483758496601359e-35,2.485757497001199e-35,2.487756497401039e-35,2.4897554978008793e-35,2.4917544982007194e-35,2.4937534986005595e-35,2.4957524990003995e-35,2.4977514994002396e-35,2.4997504998000797e-35,2.50174950019992e-35,2.50374850059976e-35,2.5057475009996e-35,2.50774650139944e-35,2.50974550179928e-35,2.51174450219912e-35,2.51374350259896e-35,2.5157425029988003e-35,2.5177415033986404e-35,2.5197405037984805e-35,2.5217395041983206e-35,2.5237385045981606e-35,2.5257375049980007e-35,2.527736505397841e-35,2.529735505797681e-35,2.531734506197521e-35,2.533733506597361e-35,2.535732506997201e-35,2.537731507397041e-35,2.5397305077968813e-35,2.5417295081967214e-35,2.5437285085965614e-35,2.545727508996401e-35,2.547726509396241e-35,2.549725509796081e-35,2.551724510195921e-35,2.5537235105957613e-35,2.5557225109956014e-35,2.5577215113954415e-35,2.5597205117952815e-35,2.5617195121951216e-35,2.5637185125949617e-35,2.565717512994802e-35,2.567716513394642e-35,2.569715513794482e-35,2.571714514194322e-35,2.573713514594162e-35,2.575712514994002e-35,2.5777115153938423e-35,2.5797105157936823e-35,2.5817095161935224e-35,2.5837085165933625e-35,2.5857075169932026e-35,2.5877065173930427e-35,2.589705517792883e-35,2.591704518192723e-35,2.593703518592563e-35,2.595702518992403e-35,2.597701519392243e-35,2.599700519792083e-35,2.601699520191923e-35,2.6036985205917633e-35,2.6056975209916034e-35,2.6076965213914435e-35,2.6096955217912835e-35,2.6116945221911236e-35,2.613693522590963e-35,2.615692522990803e-35,2.6176915233906433e-35,2.6196905237904834e-35,2.6216895241903235e-35,2.6236885245901636e-35,2.6256875249900036e-35,2.6276865253898437e-35,2.629685525789684e-35,2.631684526189524e-35,2.633683526589364e-35,2.635682526989204e-35,2.637681527389044e-35,2.639680527788884e-35,2.6416795281887243e-35,2.6436785285885644e-35,2.6456775289884044e-35,2.6476765293882445e-35,2.6496755297880846e-35,2.6516745301879247e-35,2.653673530587765e-35,2.655672530987605e-35,2.657671531387445e-35,2.659670531787285e-35,2.661669532187125e-35,2.663668532586965e-35,2.665667532986805e-35,2.6676665333866453e-35,2.6696655337864854e-35,2.6716645341863255e-35,2.6736635345861656e-35,2.6756625349860056e-35,2.6776615353858457e-35,2.6796605357856853e-35,2.6816595361855253e-35,2.6836585365853654e-35,2.6856575369852055e-35,2.6876565373850456e-35,2.6896555377848857e-35,2.691654538184726e-35,2.693653538584566e-35,2.695652538984406e-35,2.697651539384246e-35,2.699650539784086e-35,2.701649540183926e-35,2.703648540583766e-35,2.7056475409836063e-35,2.7076465413834464e-35,2.7096455417832865e-35,2.7116445421831265e-35,2.7136435425829666e-35,2.7156425429828067e-35,2.717641543382647e-35,2.719640543782487e-35,2.721639544182327e-35,2.723638544582167e-35,2.725637544982007e-35,2.727636545381847e-35,2.729635545781687e-35,2.7316345461815273e-35,2.7336335465813674e-35,2.7356325469812075e-35,2.7376315473810476e-35,2.7396305477808877e-35,2.741629548180728e-35,2.743628548580568e-35,2.745627548980408e-35,2.7476265493802474e-35,2.7496255497800875e-35,2.7516245501799276e-35,2.7536235505797677e-35,2.755622550979608e-35,2.757621551379448e-35,2.759620551779288e-35,2.761619552179128e-35,2.763618552578968e-35,2.765617552978808e-35,2.767616553378648e-35,2.7696155537784883e-35,2.7716145541783284e-35,2.7736135545781685e-35,2.7756125549780086e-35,2.7776115553778486e-35,2.7796105557776887e-35,2.781609556177529e-35,2.783608556577369e-35,2.785607556977209e-35,2.787606557377049e-35,2.789605557776889e-35,2.791604558176729e-35,2.7936035585765693e-35,2.7956025589764094e-35,2.7976015593762494e-35,2.7996005597760895e-35,2.8015995601759296e-35,2.8035985605757697e-35,2.80559756097561e-35,2.80759656137545e-35,2.80959556177529e-35,2.81159456217513e-35,2.8135935625749695e-35,2.8155925629748096e-35,2.8175915633746497e-35,2.81959056377449e-35,2.82158956417433e-35,2.82358856457417e-35,2.82558756497401e-35,2.82758656537385e-35,2.82958556577369e-35,2.83158456617353e-35,2.8335835665733703e-35,2.8355825669732104e-35,2.8375815673730505e-35,2.8395805677728906e-35,2.8415795681727307e-35,2.843578568572571e-35,2.845577568972411e-35,2.847576569372251e-35,2.849575569772091e-35,2.851574570171931e-35,2.853573570571771e-35,2.855572570971611e-35,2.8575715713714513e-35,2.8595705717712914e-35,2.8615695721711315e-35,2.8635685725709715e-35,2.8655675729708116e-35,2.8675665733706517e-35,2.869565573770492e-35,2.871564574170332e-35,2.873563574570172e-35,2.875562574970012e-35,2.877561575369852e-35,2.879560575769692e-35,2.8815595761695317e-35,2.883558576569372e-35,2.885557576969212e-35,2.887556577369052e-35,2.889555577768892e-35,2.891554578168732e-35,2.893553578568572e-35,2.8955525789684123e-35,2.8975515793682524e-35,2.8995505797680924e-35,2.9015495801679325e-35,2.9035485805677726e-35,2.9055475809676127e-35,2.907546581367453e-35,2.909545581767293e-35,2.911544582167133e-35,2.913543582566973e-35,2.915542582966813e-35,2.917541583366653e-35,2.919540583766493e-35,2.9215395841663333e-35,2.9235385845661734e-35,2.9255375849660135e-35,2.9275365853658536e-35,2.9295355857656936e-35,2.9315345861655337e-35,2.933533586565374e-35,2.935532586965214e-35,2.937531587365054e-35,2.939530587764894e-35,2.941529588164734e-35,2.943528588564574e-35,2.9455275889644143e-35,2.947526589364254e-35,2.949525589764094e-35,2.951524590163934e-35,2.953523590563774e-35,2.955522590963614e-35,2.957521591363454e-35,2.9595205917632943e-35,2.9615195921631344e-35,2.9635185925629745e-35,2.9655175929628145e-35,2.9675165933626546e-35,2.9695155937624947e-35,2.971514594162335e-35,2.973513594562175e-35,2.975512594962015e-35,2.977511595361855e-35,2.979510595761695e-35,2.981509596161535e-35,2.983508596561375e-35,2.9855075969612153e-35,2.9875065973610554e-35,2.9895055977608955e-35,2.9915045981607356e-35,2.9935035985605757e-35,2.995502598960416e-35,2.997501599360256e-35,2.999500599760096e-35,3.001499600159936e-35,3.003498600559776e-35,3.005497600959616e-35,3.007496601359456e-35,3.0094956017592963e-35,3.0114946021591364e-35,3.013493602558976e-35,3.015492602958816e-35,3.017491603358656e-35,3.019490603758496e-35,3.021489604158336e-35,3.0234886045581763e-35,3.0254876049580164e-35,3.0274866053578565e-35,3.0294856057576966e-35,3.0314846061575366e-35,3.0334836065573767e-35,3.035482606957217e-35,3.037481607357057e-35,3.039480607756897e-35,3.041479608156737e-35,3.043478608556577e-35,3.045477608956417e-35,3.0474766093562573e-35,3.0494756097560974e-35,3.0514746101559374e-35,3.0534736105557775e-35,3.0554726109556176e-35,3.0574716113554577e-35,3.059470611755298e-35,3.061469612155138e-35,3.063468612554978e-35,3.065467612954818e-35,3.067466613354658e-35,3.069465613754498e-35,3.071464614154338e-35,3.0734636145541783e-35,3.0754626149540184e-35,3.0774616153538585e-35,3.0794606157536986e-35,3.081459616153538e-35,3.083458616553378e-35,3.085457616953218e-35,3.0874566173530583e-35,3.0894556177528984e-35,3.0914546181527385e-35,3.0934536185525786e-35,3.0954526189524187e-35,3.097451619352259e-35,3.099450619752099e-35,3.101449620151939e-35,3.103448620551779e-35,3.105447620951619e-35,3.107446621351459e-35,3.109445621751299e-35,3.1114446221511393e-35,3.1134436225509794e-35,3.1154426229508195e-35,3.1174416233506595e-35,3.1194406237504996e-35,3.1214396241503397e-35,3.12343862455018e-35,3.12543762495002e-35,3.12743662534986e-35,3.1294356257497e-35,3.13143462614954e-35,3.13343362654938e-35,3.13543262694922e-35,3.1374316273490603e-35,3.1394306277489004e-35,3.1414296281487405e-35,3.1434286285485806e-35,3.1454276289484207e-35,3.14742662934826e-35,3.1494256297481003e-35,3.1514246301479404e-35,3.1534236305477804e-35,3.1554226309476205e-35,3.1574216313474606e-35,3.1594206317473007e-35,3.161419632147141e-35,3.163418632546981e-35,3.165417632946821e-35,3.167416633346661e-35,3.169415633746501e-35,3.171414634146341e-35,3.173413634546181e-35,3.1754126349460213e-35,3.1774116353458614e-35,3.1794106357457015e-35,3.1814096361455416e-35,3.1834086365453816e-35,3.1854076369452217e-35,3.187406637345062e-35,3.189405637744902e-35,3.191404638144742e-35,3.193403638544582e-35,3.195402638944422e-35,3.197401639344262e-35,3.1994006397441023e-35,3.2013996401439424e-35,3.2033986405437824e-35,3.2053976409436225e-35,3.2073966413434626e-35,3.2093956417433027e-35,3.211394642143143e-35,3.213393642542983e-35,3.2153926429428224e-35,3.2173916433426625e-35,3.2193906437425025e-35,3.2213896441423426e-35,3.2233886445421827e-35,3.225387644942023e-35,3.227386645341863e-35,3.229385645741703e-35,3.231384646141543e-35,3.233383646541383e-35,3.235382646941223e-35,3.237381647341063e-35,3.2393806477409033e-35,3.2413796481407434e-35,3.2433786485405835e-35,3.2453776489404236e-35,3.2473766493402637e-35,3.249375649740104e-35,3.251374650139944e-35,3.253373650539784e-35,3.255372650939624e-35,3.257371651339464e-35,3.259370651739304e-35,3.261369652139144e-35,3.2633686525389843e-35,3.2653676529388244e-35,3.2673666533386645e-35,3.2693656537385045e-35,3.2713646541383446e-35,3.2733636545381847e-35,3.275362654938025e-35,3.277361655337865e-35,3.279360655737705e-35,3.2813596561375445e-35,3.2833586565373846e-35,3.2853576569372246e-35,3.2873566573370647e-35,3.289355657736905e-35,3.291354658136745e-35,3.293353658536585e-35,3.295352658936425e-35,3.297351659336265e-35,3.299350659736105e-35,3.3013496601359453e-35,3.3033486605357854e-35,3.3053476609356254e-35,3.3073466613354655e-35,3.3093456617353056e-35,3.3113446621351457e-35,3.313343662534986e-35,3.315342662934826e-35,3.317341663334666e-35,3.319340663734506e-35,3.321339664134346e-35,3.323338664534186e-35,3.325337664934026e-35,3.3273366653338663e-35,3.3293356657337064e-35,3.3313346661335465e-35,3.3333336665333866e-35,3.3353326669332266e-35,3.3373316673330667e-35,3.339330667732907e-35,3.341329668132747e-35,3.343328668532587e-35,3.345327668932427e-35,3.347326669332267e-35,3.3493256697321067e-35,3.351324670131947e-35,3.353323670531787e-35,3.355322670931627e-35,3.357321671331467e-35,3.359320671731307e-35,3.361319672131147e-35,3.363318672530987e-35,3.3653176729308273e-35,3.3673166733306674e-35,3.3693156737305075e-35,3.3713146741303475e-35,3.3733136745301876e-35,3.3753126749300277e-35,3.377311675329868e-35,3.379310675729708e-35,3.381309676129548e-35,3.383308676529388e-35,3.385307676929228e-35,3.387306677329068e-35,3.389305677728908e-35,3.3913046781287483e-35,3.3933036785285884e-35,3.3953026789284285e-35,3.3973016793282686e-35,3.3993006797281087e-35,3.401299680127949e-35,3.403298680527789e-35,3.405297680927629e-35,3.407296681327469e-35,3.409295681727309e-35,3.411294682127149e-35,3.413293682526989e-35,3.415292682926829e-35,3.417291683326669e-35,3.419290683726509e-35,3.421289684126349e-35,3.423288684526189e-35,3.425287684926029e-35,3.427286685325869e-35,3.4292856857257093e-35,3.4312846861255494e-35,3.4332836865253895e-35,3.4352826869252296e-35,3.4372816873250696e-35,3.4392806877249097e-35,3.44127968812475e-35,3.44327868852459e-35,3.44527768892443e-35,3.44727668932427e-35,3.44927568972411e-35,3.45127469012395e-35,3.4532736905237903e-35,3.4552726909236304e-35,3.4572716913234704e-35,3.4592706917233105e-35,3.4612696921231506e-35,3.4632686925229907e-35,3.465267692922831e-35,3.467266693322671e-35,3.469265693722511e-35,3.471264694122351e-35,3.473263694522191e-35,3.475262694922031e-35,3.477261695321871e-35,3.4792606957217113e-35,3.4812596961215514e-35,3.483258696521391e-35,3.485257696921231e-35,3.487256697321071e-35,3.489255697720911e-35,3.491254698120751e-35,3.4932536985205913e-35,3.4952526989204314e-35,3.4972516993202715e-35,3.4992506997201116e-35,3.5012497001199517e-35,3.503248700519792e-35,3.505247700919632e-35,3.507246701319472e-35,3.509245701719312e-35,3.511244702119152e-35,3.513243702518992e-35,3.515242702918832e-35,3.5172417033186723e-35,3.5192407037185124e-35,3.5212397041183525e-35,3.5232387045181925e-35,3.5252377049180326e-35,3.5272367053178727e-35,3.529235705717713e-35,3.531234706117553e-35,3.533233706517393e-35,3.535232706917233e-35,3.537231707317073e-35,3.539230707716913e-35,3.541229708116753e-35,3.5432287085165933e-35,3.5452277089164334e-35,3.5472267093162735e-35,3.549225709716113e-35,3.551224710115953e-35,3.553223710515793e-35,3.5552227109156333e-35,3.5572217113154734e-35,3.5592207117153134e-35,3.5612197121151535e-35,3.5632187125149936e-35,3.5652177129148337e-35,3.567216713314674e-35,3.569215713714514e-35,3.571214714114354e-35,3.573213714514194e-35,3.575212714914034e-35,3.577211715313874e-35,3.579210715713714e-35,3.5812097161135543e-35,3.5832087165133944e-35,3.5852077169132345e-35,3.5872067173130746e-35,3.5892057177129146e-35,3.5912047181127547e-35,3.593203718512595e-35,3.595202718912435e-35,3.597201719312275e-35,3.599200719712115e-35,3.601199720111955e-35,3.603198720511795e-35,3.6051977209116353e-35,3.6071967213114754e-35,3.6091957217113154e-35,3.6111947221111555e-35,3.6131937225109956e-35,3.615192722910835e-35,3.617191723310675e-35,3.6191907237105153e-35,3.6211897241103554e-35,3.6231887245101955e-35,3.6251877249100355e-35,3.6271867253098756e-35,3.6291857257097157e-35,3.631184726109556e-35,3.633183726509396e-35,3.635182726909236e-35,3.637181727309076e-35,3.639180727708916e-35,3.641179728108756e-35,3.643178728508596e-35,3.6451777289084363e-35,3.6471767293082764e-35,3.6491757297081165e-35,3.6511747301079566e-35,3.6531737305077967e-35,3.655172730907637e-35,3.657171731307477e-35,3.659170731707317e-35,3.661169732107157e-35,3.663168732506997e-35,3.665167732906837e-35,3.667166733306677e-35,3.6691657337065173e-35,3.6711647341063574e-35,3.6731637345061975e-35,3.6751627349060375e-35,3.6771617353058776e-35,3.6791607357057177e-35,3.681159736105558e-35,3.6831587365053973e-35,3.6851577369052374e-35,3.6871567373050775e-35,3.6891557377049176e-35,3.6911547381047576e-35,3.6931537385045977e-35,3.695152738904438e-35,3.697151739304278e-35,3.699150739704118e-35,3.701149740103958e-35,3.703148740503798e-35,3.705147740903638e-35,3.7071467413034783e-35,3.7091457417033184e-35,3.7111447421031584e-35,3.7131437425029985e-35,3.7151427429028386e-35,3.7171417433026787e-35,3.719140743702519e-35,3.721139744102359e-35,3.723138744502199e-35,3.725137744902039e-35,3.727136745301879e-35,3.729135745701719e-35,3.731134746101559e-35,3.7331337465013993e-35,3.7351327469012394e-35,3.7371317473010795e-35,3.7391307477009196e-35,3.7411297481007596e-35,3.7431287485005997e-35,3.74512774890044e-35,3.74712674930028e-35,3.7491257497001194e-35,3.7511247500999595e-35,3.7531237504997996e-35,3.7551227508996397e-35,3.75712175129948e-35,3.75912075169932e-35,3.76111975209916e-35,3.763118752499e-35,3.76511775289884e-35,3.76711675329868e-35,3.76911575369852e-35,3.7711147540983603e-35,3.7731137544982004e-35,3.7751127548980405e-35,3.7771117552978805e-35,3.7791107556977206e-35,3.7811097560975607e-35,3.783108756497401e-35,3.785107756897241e-35,3.787106757297081e-35,3.789105757696921e-35,3.791104758096761e-35,3.793103758496601e-35,3.795102758896441e-35,3.7971017592962813e-35,3.7991007596961214e-35,3.8010997600959615e-35,3.8030987604958016e-35,3.8050977608956417e-35,3.8070967612954817e-35,3.809095761695322e-35,3.811094762095162e-35,3.813093762495002e-35,3.815092762894842e-35,3.8170917632946816e-35,3.8190907636945217e-35,3.821089764094362e-35,3.823088764494202e-35,3.825087764894042e-35,3.827086765293882e-35,3.829085765693722e-35,3.831084766093562e-35,3.833083766493402e-35,3.8350827668932423e-35,3.8370817672930824e-35,3.8390807676929225e-35,3.8410797680927626e-35,3.8430787684926026e-35,3.8450777688924427e-35,3.847076769292283e-35,3.849075769692123e-35,3.851074770091963e-35,3.853073770491803e-35,3.855072770891643e-35,3.857071771291483e-35,3.8590707716913233e-35,3.8610697720911634e-35,3.8630687724910034e-35,3.8650677728908435e-35,3.8670667732906836e-35,3.8690657736905237e-35,3.871064774090364e-35,3.873063774490204e-35,3.875062774890044e-35,3.877061775289884e-35,3.879060775689724e-35,3.881059776089564e-35,3.8830587764894037e-35,3.885057776889244e-35,3.887056777289084e-35,3.889055777688924e-35,3.891054778088764e-35,3.893053778488604e-35,3.895052778888444e-35,3.897051779288284e-35,3.8990507796881243e-35,3.9010497800879644e-35,3.9030487804878045e-35,3.9050477808876446e-35,3.9070467812874847e-35,3.9090457816873247e-35,3.911044782087165e-35,3.913043782487005e-35,3.915042782886845e-35,3.917041783286685e-35,3.919040783686525e-35,3.921039784086365e-35,3.9230387844862053e-35,3.9250377848860454e-35,3.9270367852858855e-35,3.9290357856857255e-35,3.9310347860855656e-35,3.9330337864854057e-35,3.935032786885246e-35,3.937031787285086e-35,3.939030787684926e-35,3.941029788084766e-35,3.943028788484606e-35,3.945027788884446e-35,3.947026789284286e-35,3.9490257896841263e-35,3.951024790083966e-35,3.953023790483806e-35,3.955022790883646e-35,3.957021791283486e-35,3.959020791683326e-35,3.9610197920831663e-35,3.9630187924830064e-35,3.9650177928828464e-35,3.9670167932826865e-35,3.9690157936825266e-35,3.9710147940823667e-35,3.973013794482207e-35,3.975012794882047e-35,3.977011795281887e-35,3.979010795681727e-35,3.981009796081567e-35,3.983008796481407e-35,3.985007796881247e-35,3.9870067972810873e-35,3.9890057976809274e-35,3.9910047980807675e-35,3.9930037984806075e-35,3.9950027988804476e-35,3.9970017992802877e-35,3.999000799680128e-35,4.000999800079968e-35,4.002998800479808e-35,4.004997800879648e-35,4.006996801279488e-35,4.008995801679328e-35,4.0109948020791683e-35,4.0129938024790083e-35,4.0149928028788484e-35,4.016991803278688e-35,4.018990803678528e-35,4.020989804078368e-35,4.022988804478208e-35,4.0249878048780483e-35,4.0269868052778884e-35,4.0289858056777285e-35,4.0309848060775685e-35,4.0329838064774086e-35,4.0349828068772487e-35,4.036981807277089e-35,4.038980807676929e-35,4.040979808076769e-35,4.042978808476609e-35,4.044977808876449e-35,4.046976809276289e-35,4.048975809676129e-35,4.0509748100759693e-35,4.0529738104758094e-35,4.0549728108756495e-35,4.0569718112754896e-35,4.0589708116753296e-35,4.0609698120751697e-35,4.06296881247501e-35,4.06496781287485e-35,4.06696681327469e-35,4.06896581367453e-35,4.07096481407437e-35,4.07296381447421e-35,4.0749628148740503e-35,4.0769618152738904e-35,4.0789608156737304e-35,4.0809598160735705e-35,4.0829588164734106e-35,4.08495781687325e-35,4.08695681727309e-35,4.0889558176729303e-35,4.0909548180727704e-35,4.0929538184726105e-35,4.0949528188724506e-35,4.0969518192722906e-35,4.0989508196721307e-35,4.100949820071971e-35,4.102948820471811e-35,4.104947820871651e-35,4.106946821271491e-35,4.108945821671331e-35,4.110944822071171e-35,4.1129438224710113e-35,4.1149428228708513e-35,4.1169418232706914e-35,4.1189408236705315e-35,4.1209398240703716e-35,4.1229388244702117e-35,4.124937824870052e-35,4.126936825269892e-35,4.128935825669732e-35,4.130934826069572e-35,4.132933826469412e-35,4.134932826869252e-35,4.136931827269092e-35,4.1389308276689323e-35,4.1409298280687724e-35,4.1429288284686125e-35,4.1449278288684525e-35,4.1469268292682926e-35,4.1489258296681327e-35,4.150924830067972e-35,4.1529238304678123e-35,4.1549228308676524e-35,4.1569218312674925e-35,4.1589208316673326e-35,4.1609198320671727e-35,4.1629188324670127e-35,4.164917832866853e-35,4.166916833266693e-35,4.168915833666533e-35,4.170914834066373e-35,4.172913834466213e-35,4.174912834866053e-35,4.1769118352658933e-35,4.1789108356657334e-35,4.1809098360655734e-35,4.1829088364654135e-35,4.1849078368652536e-35,4.1869068372650937e-35,4.188905837664934e-35,4.190904838064774e-35,4.192903838464614e-35,4.194902838864454e-35,4.196901839264294e-35,4.198900839664134e-35,4.200899840063974e-35,4.2028988404638143e-35,4.2048978408636544e-35,4.2068968412634945e-35,4.2088958416633346e-35,4.2108948420631746e-35,4.2128938424630147e-35,4.214892842862855e-35,4.2168918432626944e-35,4.2188908436625344e-35,4.2208898440623745e-35,4.2228888444622146e-35,4.2248878448620547e-35,4.226886845261895e-35,4.228885845661735e-35,4.230884846061575e-35,4.232883846461415e-35,4.234882846861255e-35,4.236881847261095e-35,4.238880847660935e-35,4.2408798480607753e-35,4.2428788484606154e-35,4.2448778488604555e-35,4.2468768492602955e-35,4.2488758496601356e-35,4.2508748500599757e-35,4.252873850459816e-35,4.254872850859656e-35,4.256871851259496e-35,4.258870851659336e-35,4.260869852059176e-35,4.262868852459016e-35,4.264867852858856e-35,4.2668668532586963e-35,4.2688658536585364e-35,4.2708648540583765e-35,4.2728638544582166e-35,4.2748628548580567e-35,4.276861855257897e-35,4.278860855657737e-35,4.280859856057577e-35,4.282858856457417e-35,4.2848578568572565e-35,4.2868568572570966e-35,4.2888558576569367e-35,4.290854858056777e-35,4.292853858456617e-35,4.294852858856457e-35,4.296851859256297e-35,4.298850859656137e-35,4.300849860055977e-35,4.302848860455817e-35,4.3048478608556573e-35,4.3068468612554974e-35,4.3088458616553375e-35,4.3108448620551776e-35,4.3128438624550176e-35,4.3148428628548577e-35,4.316841863254698e-35,4.318840863654538e-35,4.320839864054378e-35,4.322838864454218e-35,4.324837864854058e-35,4.326836865253898e-35,4.3288358656537383e-35,4.3308348660535784e-35,4.3328338664534184e-35,4.3348328668532585e-35,4.3368318672530986e-35,4.3388308676529387e-35,4.340829868052779e-35,4.342828868452619e-35,4.344827868852459e-35,4.346826869252299e-35,4.348825869652139e-35,4.3508248700519786e-35,4.3528238704518187e-35,4.354822870851659e-35,4.356821871251499e-35,4.358820871651339e-35,4.360819872051179e-35,4.362818872451019e-35,4.364817872850859e-35,4.3668168732506993e-35,4.3688158736505393e-35,4.3708148740503794e-35,4.3728138744502195e-35,4.3748128748500596e-35,4.3768118752498997e-35,4.37881087564974e-35,4.38080987604958e-35,4.38280887644942e-35,4.38480787684926e-35,4.3868068772491e-35,4.38880587764894e-35,4.39080487804878e-35,4.3928038784486203e-35,4.3948028788484604e-35,4.3968018792483005e-35,4.3988008796481405e-35,4.4007998800479806e-35,4.4027988804478207e-35,4.404797880847661e-35,4.406796881247501e-35,4.408795881647341e-35,4.410794882047181e-35,4.412793882447021e-35,4.414792882846861e-35,4.416791883246701e-35,4.418790883646541e-35,4.420789884046381e-35,4.422788884446221e-35,4.424787884846061e-35,4.426786885245901e-35,4.428785885645741e-35,4.4307848860455813e-35,4.4327838864454214e-35,4.4347828868452614e-35,4.4367818872451015e-35,4.4387808876449416e-35,4.4407798880447817e-35,4.442778888444622e-35,4.444777888844462e-35,4.446776889244302e-35,4.448775889644142e-35,4.450774890043982e-35,4.452773890443822e-35,4.454772890843662e-35,4.4567718912435023e-35,4.4587708916433424e-35,4.4607698920431825e-35,4.4627688924430226e-35,4.4647678928428626e-35,4.4667668932427027e-35,4.468765893642543e-35,4.470764894042383e-35,4.472763894442223e-35,4.474762894842063e-35,4.476761895241903e-35,4.478760895641743e-35,4.4807598960415833e-35,4.4827588964414234e-35,4.484757896841263e-35,4.486756897241103e-35,4.488755897640943e-35,4.490754898040783e-35,4.492753898440623e-35,4.4947528988404633e-35,4.4967518992403034e-35,4.4987508996401435e-35,4.5007499000399835e-35,4.5027489004398236e-35,4.5047479008396637e-35,4.506746901239504e-35,4.508745901639344e-35,4.510744902039184e-35,4.512743902439024e-35,4.514742902838864e-35,4.516741903238704e-35,4.518740903638544e-35,4.5207399040383843e-35,4.5227389044382244e-35,4.5247379048380645e-35,4.5267369052379046e-35,4.5287359056377447e-35,4.530734906037585e-35,4.532733906437425e-35,4.534732906837265e-35,4.536731907237105e-35,4.538730907636945e-35,4.540729908036785e-35,4.542728908436625e-35,4.5447279088364653e-35,4.5467269092363054e-35,4.5487259096361455e-35,4.5507249100359855e-35,4.552723910435825e-35,4.554722910835665e-35,4.556721911235505e-35,4.5587209116353453e-35,4.5607199120351854e-35,4.5627189124350255e-35,4.5647179128348656e-35,4.5667169132347056e-35,4.5687159136345457e-35,4.570714914034386e-35,4.572713914434226e-35,4.574712914834066e-35,4.576711915233906e-35,4.578710915633746e-35,4.580709916033586e-35,4.5827089164334263e-35,4.5847079168332664e-35,4.5867069172331064e-35,4.5887059176329465e-35,4.5907049180327866e-35,4.5927039184326267e-35,4.594702918832467e-35,4.596701919232307e-35,4.598700919632147e-35,4.600699920031987e-35,4.602698920431827e-35,4.604697920831667e-35,4.606696921231507e-35,4.6086959216313473e-35,4.6106949220311874e-35,4.6126939224310275e-35,4.6146929228308676e-35,4.6166919232307076e-35,4.618690923630547e-35,4.620689924030387e-35,4.6226889244302273e-35,4.6246879248300674e-35,4.6266869252299075e-35,4.6286859256297476e-35,4.6306849260295877e-35,4.632683926429428e-35,4.634682926829268e-35,4.636681927229108e-35,4.638680927628948e-35,4.640679928028788e-35,4.642678928428628e-35,4.644677928828468e-35,4.6466769292283083e-35,4.6486759296281484e-35,4.6506749300279885e-35,4.6526739304278285e-35,4.6546729308276686e-35,4.6566719312275087e-35,4.658670931627349e-35,4.660669932027189e-35,4.662668932427029e-35,4.664667932826869e-35,4.666666933226709e-35,4.668665933626549e-35,4.670664934026389e-35,4.6726639344262293e-35,4.6746629348260694e-35,4.6766619352259095e-35,4.6786609356257496e-35,4.6806599360255897e-35,4.68265893642543e-35,4.68465793682527e-35,4.6866569372251094e-35,4.6886559376249494e-35,4.6906549380247895e-35,4.6926539384246296e-35,4.6946529388244697e-35,4.69665193922431e-35,4.69865093962415e-35,4.70064994002399e-35,4.70264894042383e-35,4.70464794082367e-35,4.70664694122351e-35,4.70864594162335e-35,4.7106449420231903e-35,4.7126439424230304e-35,4.7146429428228705e-35,4.7166419432227106e-35,4.7186409436225506e-35,4.7206399440223907e-35,4.722638944422231e-35,4.724637944822071e-35,4.726636945221911e-35,4.728635945621751e-35,4.730634946021591e-35,4.732633946421431e-35,4.7346329468212713e-35,4.7366319472211114e-35,4.7386309476209514e-35,4.7406299480207915e-35,4.7426289484206316e-35,4.7446279488204717e-35,4.746626949220312e-35,4.748625949620152e-35,4.750624950019992e-35,4.7526239504198315e-35,4.7546229508196715e-35,4.7566219512195116e-35,4.7586209516193517e-35,4.760619952019192e-35,4.762618952419032e-35,4.764617952818872e-35,4.766616953218712e-35,4.768615953618552e-35,4.770614954018392e-35,4.772613954418232e-35,4.7746129548180723e-35,4.7766119552179124e-35,4.7786109556177525e-35,4.7806099560175926e-35,4.7826089564174327e-35,4.784607956817273e-35,4.786606957217113e-35,4.788605957616953e-35,4.790604958016793e-35,4.792603958416633e-35,4.794602958816473e-35,4.796601959216313e-35,4.7986009596161533e-35,4.8005999600159934e-35,4.8025989604158335e-35,4.8045979608156735e-35,4.8065969612155136e-35,4.8085959616153537e-35,4.810594962015194e-35,4.812593962415034e-35,4.814592962814874e-35,4.816591963214713e-35,4.818590963614554e-35,4.820589964014394e-35,4.822588964414234e-35,4.824587964814074e-35,4.826586965213914e-35,4.828585965613754e-35,4.830584966013595e-35,4.832583966413434e-35,4.834582966813275e-35,4.836581967213114e-35,4.838580967612955e-35,4.840579968012794e-35,4.842578968412635e-35,4.844577968812475e-35,4.846576969212315e-35,4.848575969612155e-35,4.850574970011995e-35,4.852573970411835e-35,4.854572970811674e-35,4.856571971211515e-35,4.858570971611355e-35,4.860569972011195e-35,4.862568972411035e-35,4.864567972810875e-35,4.866566973210715e-35,4.868565973610556e-35,4.870564974010395e-35,4.872563974410236e-35,4.874562974810075e-35,4.876561975209916e-35,4.878560975609755e-35,4.880559976009596e-35,4.882558976409436e-35,4.884557976809276e-35,4.886556977209116e-35,4.888555977608956e-35,4.890554978008796e-35,4.892553978408637e-35,4.894552978808476e-35,4.896551979208317e-35,4.898550979608156e-35,4.900549980007997e-35,4.902548980407836e-35,4.904547980807677e-35,4.906546981207517e-35,4.908545981607357e-35,4.910544982007197e-35,4.912543982407037e-35,4.914542982806877e-35,4.916541983206717e-35,4.918540983606557e-35,4.920539984006397e-35,4.922538984406237e-35,4.924537984806077e-35,4.926536985205917e-35,4.928535985605757e-35,4.930534986005597e-35,4.932533986405437e-35,4.934532986805278e-35,4.936531987205117e-35,4.938530987604958e-35,4.940529988004797e-35,4.942528988404638e-35,4.944527988804478e-35,4.946526989204318e-35,4.948525989604158e-35,4.950524990003998e-35,4.952523990403838e-35,4.954522990803678e-35,4.956521991203518e-35,4.958520991603359e-35,4.960519992003198e-35,4.962518992403039e-35,4.964517992802878e-35,4.966516993202719e-35,4.968515993602558e-35,4.970514994002399e-35,4.972513994402239e-35,4.974512994802079e-35,4.976511995201919e-35,4.978510995601759e-35,4.980509996001599e-35,4.98250899640144e-35,4.984507996801279e-35,4.986506997201119e-35,4.988505997600959e-35,4.990504998000799e-35,4.992503998400639e-35,4.994502998800479e-35,4.99650199920032e-35,4.998500999600159e-35,5.0005e-35,5.002499000399839e-35,5.00449800079968e-35,5.006497001199519e-35,5.00849600159936e-35,5.0104950019992e-35,5.01249400239904e-35,5.01449300279888e-35,5.01649200319872e-35,5.01849100359856e-35,5.020490003998401e-35,5.02248900439824e-35,5.024488004798081e-35,5.02648700519792e-35,5.028486005597761e-35,5.0304850059976e-35,5.032484006397441e-35,5.034483006797281e-35,5.036482007197121e-35,5.038481007596961e-35,5.040480007996801e-35,5.042479008396641e-35,5.044478008796482e-35,5.046477009196321e-35,5.048476009596162e-35,5.050475009996001e-35,5.052474010395842e-35,5.054473010795681e-35,5.056472011195521e-35,5.058471011595362e-35,5.060470011995201e-35,5.062469012395042e-35,5.064468012794881e-35,5.066467013194722e-35,5.068466013594561e-35,5.070465013994402e-35,5.072464014394242e-35,5.074463014794082e-35,5.076462015193922e-35,5.078461015593762e-35,5.080460015993602e-35,5.082459016393442e-35,5.084458016793282e-35,5.086457017193123e-35,5.088456017592962e-35,5.090455017992803e-35,5.092454018392642e-35,5.094453018792483e-35,5.096452019192323e-35,5.098451019592163e-35,5.100450019992003e-35,5.102449020391843e-35,5.104448020791683e-35,5.106447021191523e-35,5.108446021591363e-35,5.110445021991204e-35,5.112444022391043e-35,5.114443022790884e-35,5.116442023190723e-35,5.118441023590564e-35,5.120440023990403e-35,5.122439024390243e-35,5.124438024790084e-35,5.126437025189923e-35,5.128436025589764e-35,5.130435025989603e-35,5.132434026389444e-35,5.134433026789284e-35,5.136432027189124e-35,5.138431027588964e-35,5.140430027988804e-35,5.142429028388644e-35,5.144428028788484e-35,5.146427029188324e-35,5.148426029588165e-35,5.150425029988004e-35,5.152424030387845e-35,5.154423030787684e-35,5.156422031187525e-35,5.158421031587364e-35,5.160420031987205e-35,5.162419032387045e-35,5.164418032786885e-35,5.166417033186725e-35,5.168416033586565e-35,5.170415033986405e-35,5.172414034386246e-35,5.174413034786085e-35,5.176412035185926e-35,5.178411035585765e-35,5.180410035985606e-35,5.182409036385445e-35,5.184408036785286e-35,5.186407037185126e-35,5.188406037584965e-35,5.190405037984806e-35,5.192404038384645e-35,5.194403038784486e-35,5.196402039184325e-35,5.198401039584166e-35,5.200400039984006e-35,5.202399040383846e-35,5.204398040783686e-35,5.206397041183526e-35,5.208396041583366e-35,5.210395041983207e-35,5.212394042383046e-35,5.214393042782887e-35,5.216392043182726e-35,5.218391043582567e-35,5.220390043982406e-35,5.222389044382247e-35,5.224388044782087e-35,5.226387045181927e-35,5.228386045581767e-35,5.230385045981607e-35,5.232384046381447e-35,5.234383046781287e-35,5.236382047181127e-35,5.238381047580968e-35,5.240380047980807e-35,5.242379048380648e-35,5.244378048780487e-35,5.246377049180328e-35,5.248376049580168e-35,5.250375049980008e-35,5.252374050379848e-35,5.254373050779687e-35,5.256372051179528e-35,5.258371051579367e-35,5.260370051979208e-35,5.262369052379048e-35,5.264368052778888e-35,5.266367053178728e-35,5.268366053578568e-35,5.270365053978408e-35,5.272364054378248e-35,5.274363054778088e-35,5.276362055177929e-35,5.278361055577768e-35,5.280360055977609e-35,5.282359056377448e-35,5.284358056777289e-35,5.286357057177128e-35,5.288356057576969e-35,5.290355057976809e-35,5.292354058376649e-35,5.294353058776489e-35,5.296352059176329e-35,5.298351059576169e-35,5.30035005997601e-35,5.302349060375849e-35,5.30434806077569e-35,5.306347061175529e-35,5.30834606157537e-35,5.310345061975209e-35,5.31234406237505e-35,5.31434306277489e-35,5.31634206317473e-35,5.31834106357457e-35,5.320340063974409e-35,5.32233906437425e-35,5.32433806477409e-35,5.32633706517393e-35,5.32833606557377e-35,5.33033506597361e-35,5.33233406637345e-35,5.33433306677329e-35,5.33633206717313e-35,5.338331067572971e-35,5.34033006797281e-35,5.342329068372651e-35,5.34432806877249e-35,5.346327069172331e-35,5.34832606957217e-35,5.350325069972011e-35,5.352324070371851e-35,5.354323070771691e-35,5.356322071171531e-35,5.358321071571371e-35,5.360320071971211e-35,5.362319072371052e-35,5.364318072770891e-35,5.366317073170732e-35,5.368316073570571e-35,5.370315073970412e-35,5.372314074370251e-35,5.374313074770092e-35,5.376312075169932e-35,5.378311075569772e-35,5.380310075969612e-35,5.382309076369452e-35,5.384308076769292e-35,5.386307077169132e-35,5.388306077568972e-35,5.390305077968812e-35,5.392304078368652e-35,5.394303078768492e-35,5.396302079168332e-35,5.398301079568172e-35,5.400300079968013e-35,5.402299080367852e-35,5.404298080767693e-35,5.406297081167532e-35,5.408296081567373e-35,5.410295081967212e-35,5.412294082367053e-35,5.414293082766893e-35,5.416292083166733e-35,5.418291083566573e-35,5.420290083966413e-35,5.422289084366253e-35,5.424288084766093e-35,5.426287085165933e-35,5.428286085565774e-35,5.430285085965613e-35,5.432284086365454e-35,5.434283086765293e-35,5.436282087165134e-35,5.438281087564973e-35,5.440280087964814e-35,5.442279088364654e-35,5.444278088764494e-35,5.446277089164334e-35,5.448276089564174e-35,5.450275089964014e-35,5.452274090363855e-35,5.454273090763694e-35,5.456272091163534e-35,5.458271091563374e-35,5.460270091963214e-35,5.462269092363054e-35,5.464268092762894e-35,5.466267093162735e-35,5.468266093562574e-35,5.470265093962415e-35,5.472264094362254e-35,5.474263094762095e-35,5.476262095161934e-35,5.478261095561775e-35,5.480260095961615e-35,5.482259096361455e-35,5.484258096761295e-35,5.486257097161135e-35,5.488256097560975e-35,5.490255097960816e-35,5.492254098360655e-35,5.494253098760496e-35,5.496252099160335e-35,5.498251099560176e-35,5.500250099960015e-35,5.502249100359856e-35,5.504248100759696e-35,5.506247101159536e-35,5.508246101559376e-35,5.510245101959216e-35,5.512244102359056e-35,5.514243102758897e-35,5.516242103158736e-35,5.518241103558577e-35,5.520240103958416e-35,5.522239104358256e-35,5.524238104758096e-35,5.526237105157936e-35,5.528236105557777e-35,5.530235105957616e-35,5.532234106357457e-35,5.534233106757296e-35,5.536232107157137e-35,5.538231107556976e-35,5.540230107956817e-35,5.542229108356657e-35,5.544228108756497e-35,5.546227109156337e-35,5.548226109556177e-35,5.550225109956017e-35,5.552224110355858e-35,5.554223110755697e-35,5.556222111155538e-35,5.558221111555377e-35,5.560220111955218e-35,5.562219112355057e-35,5.564218112754898e-35,5.566217113154738e-35,5.568216113554578e-35,5.570215113954418e-35,5.572214114354258e-35,5.574213114754098e-35,5.576212115153938e-35,5.578211115553778e-35,5.580210115953619e-35,5.582209116353458e-35,5.584208116753299e-35,5.586207117153138e-35,5.588206117552978e-35,5.590205117952818e-35,5.592204118352658e-35,5.594203118752499e-35,5.596202119152338e-35,5.598201119552179e-35,5.600200119952018e-35,5.602199120351859e-35,5.604198120751699e-35,5.606197121151539e-35,5.608196121551379e-35,5.610195121951219e-35,5.612194122351059e-35,5.614193122750899e-35,5.616192123150739e-35,5.61819112355058e-35,5.620190123950419e-35,5.62218912435026e-35,5.624188124750099e-35,5.62618712514994e-35,5.62818612554978e-35,5.63018512594962e-35,5.63218412634946e-35,5.6341831267493e-35,5.63618212714914e-35,5.63818112754898e-35,5.64018012794882e-35,5.642179128348661e-35,5.6441781287485e-35,5.646177129148341e-35,5.64817612954818e-35,5.650175129948021e-35,5.65217413034786e-35,5.654173130747701e-35,5.656172131147541e-35,5.65817113154738e-35,5.660170131947221e-35,5.66216913234706e-35,5.664168132746901e-35,5.66616713314674e-35,5.668166133546581e-35,5.670165133946421e-35,5.672164134346261e-35,5.674163134746101e-35,5.676162135145941e-35,5.678161135545781e-35,5.680160135945622e-35,5.682159136345461e-35,5.684158136745302e-35,5.686157137145141e-35,5.688156137544982e-35,5.690155137944821e-35,5.692154138344662e-35,5.694153138744502e-35,5.696152139144342e-35,5.698151139544182e-35,5.700150139944022e-35,5.702149140343862e-35,5.704148140743703e-35,5.706147141143542e-35,5.708146141543383e-35,5.710145141943222e-35,5.712144142343063e-35,5.714143142742902e-35,5.716142143142743e-35,5.718141143542583e-35,5.720140143942423e-35,5.722139144342263e-35,5.724138144742102e-35,5.726137145141943e-35,5.728136145541782e-35,5.730135145941623e-35,5.732134146341463e-35,5.734133146741303e-35,5.736132147141143e-35,5.738131147540983e-35,5.740130147940823e-35,5.742129148340663e-35,5.744128148740503e-35,5.746127149140344e-35,5.748126149540183e-35,5.750125149940024e-35,5.752124150339863e-35,5.754123150739704e-35,5.756122151139544e-35,5.758121151539384e-35,5.760120151939224e-35,5.762119152339064e-35,5.764118152738904e-35,5.766117153138744e-35,5.768116153538584e-35,5.770115153938425e-35,5.772114154338264e-35,5.774113154738105e-35,5.776112155137944e-35,5.778111155537785e-35,5.780110155937624e-35,5.782109156337465e-35,5.784108156737305e-35,5.786107157137145e-35,5.788106157536985e-35,5.790105157936824e-35,5.792104158336665e-35,5.794103158736504e-35,5.796102159136345e-35,5.798101159536185e-35,5.800100159936025e-35,5.802099160335865e-35,5.804098160735705e-35,5.806097161135545e-35,5.808096161535386e-35,5.810095161935225e-35,5.812094162335066e-35,5.814093162734905e-35,5.816092163134746e-35,5.818091163534585e-35,5.820090163934426e-35,5.822089164334266e-35,5.824088164734106e-35,5.826087165133946e-35,5.828086165533786e-35,5.830085165933626e-35,5.832084166333467e-35,5.834083166733306e-35,5.836082167133147e-35,5.838081167532986e-35,5.840080167932827e-35,5.842079168332666e-35,5.844078168732507e-35,5.846077169132347e-35,5.848076169532187e-35,5.850075169932027e-35,5.852074170331867e-35,5.854073170731707e-35,5.856072171131546e-35,5.858071171531387e-35,5.860070171931227e-35,5.862069172331067e-35,5.864068172730907e-35,5.866067173130747e-35,5.868066173530587e-35,5.870065173930428e-35,5.872064174330267e-35,5.874063174730108e-35,5.876062175129947e-35,5.878061175529788e-35,5.880060175929627e-35,5.882059176329468e-35,5.884058176729308e-35,5.886057177129148e-35,5.888056177528988e-35,5.890055177928828e-35,5.892054178328668e-35,5.894053178728508e-35,5.896052179128348e-35,5.898051179528189e-35,5.900050179928028e-35,5.902049180327869e-35,5.904048180727708e-35,5.906047181127549e-35,5.908046181527389e-35,5.910045181927229e-35,5.912044182327069e-35,5.914043182726909e-35,5.916042183126749e-35,5.918041183526589e-35,5.920040183926429e-35,5.922039184326269e-35,5.924038184726109e-35,5.926037185125949e-35,5.928036185525789e-35,5.930035185925629e-35,5.93203418632547e-35,5.934033186725309e-35,5.93603218712515e-35,5.938031187524989e-35,5.94003018792483e-35,5.942029188324669e-35,5.94402818872451e-35,5.94602718912435e-35,5.94802618952419e-35,5.95002518992403e-35,5.95202419032387e-35,5.95402319072371e-35,5.95602219112355e-35,5.95802119152339e-35,5.960020191923231e-35,5.96201919232307e-35,5.964018192722911e-35,5.96601719312275e-35,5.968016193522591e-35,5.97001519392243e-35,5.972014194322271e-35,5.974013194722111e-35,5.976012195121951e-35,5.978011195521791e-35,5.980010195921631e-35,5.982009196321471e-35,5.984008196721312e-35,5.986007197121151e-35,5.988006197520992e-35,5.990005197920831e-35,5.992004198320671e-35,5.994003198720511e-35,5.996002199120351e-35,5.998001199520192e-35,6.000000199920031e-35,6.001999200319872e-35,6.003998200719711e-35,6.005997201119552e-35,6.007996201519391e-35,6.009995201919232e-35,6.011994202319072e-35,6.013993202718912e-35,6.015992203118752e-35,6.017991203518592e-35,6.019990203918432e-35,6.021989204318273e-35,6.023988204718112e-35,6.025987205117953e-35,6.027986205517792e-35,6.029985205917633e-35,6.031984206317472e-35,6.033983206717313e-35,6.035982207117153e-35,6.037981207516993e-35,6.039980207916833e-35,6.041979208316673e-35,6.043978208716513e-35,6.045977209116353e-35,6.047976209516193e-35,6.049975209916034e-35,6.051974210315873e-35,6.053973210715714e-35,6.055972211115553e-35,6.057971211515393e-35,6.059970211915234e-35,6.061969212315073e-35,6.063968212714914e-35,6.065967213114753e-35,6.067966213514594e-35,6.069965213914433e-35,6.071964214314274e-35,6.073963214714114e-35,6.075962215113954e-35,6.077961215513794e-35,6.079960215913634e-35,6.081959216313474e-35,6.083958216713314e-35,6.085957217113154e-35,6.087956217512995e-35,6.089955217912834e-35,6.091954218312675e-35,6.093953218712514e-35,6.095952219112355e-35,6.097951219512194e-35,6.099950219912035e-35,6.101949220311875e-35,6.103948220711715e-35,6.105947221111555e-35,6.107946221511395e-35,6.109945221911235e-35,6.111944222311076e-35,6.113943222710915e-35,6.115942223110756e-35,6.117941223510595e-35,6.119940223910436e-35,6.121939224310275e-35,6.123938224710115e-35,6.125937225109956e-35,6.127936225509795e-35,6.129935225909636e-35,6.131934226309475e-35,6.133933226709316e-35,6.135932227109155e-35,6.137931227508996e-35,6.139930227908836e-35,6.141929228308676e-35,6.143928228708516e-35,6.145927229108356e-35,6.147926229508196e-35,6.149925229908037e-35,6.151924230307876e-35,6.153923230707717e-35,6.155922231107556e-35,6.157921231507397e-35,6.159920231907236e-35,6.161919232307077e-35,6.163918232706917e-35,6.165917233106757e-35,6.167916233506597e-35,6.169915233906437e-35,6.171914234306277e-35,6.173913234706118e-35,6.175912235105957e-35,6.177911235505798e-35,6.179910235905637e-35,6.181909236305478e-35,6.183908236705317e-35,6.185907237105158e-35,6.187906237504998e-35,6.189905237904837e-35,6.191904238304678e-35,6.193903238704517e-35,6.195902239104358e-35,6.197901239504197e-35,6.199900239904038e-35,6.201899240303878e-35,6.203898240703718e-35,6.205897241103558e-35,6.207896241503398e-35,6.209895241903238e-35,6.211894242303079e-35,6.213893242702918e-35,6.215892243102759e-35,6.217891243502598e-35,6.219890243902439e-35,6.221889244302278e-35,6.223888244702119e-35,6.225887245101959e-35,6.227886245501799e-35,6.229885245901639e-35,6.231884246301479e-35,6.233883246701319e-35,6.235882247101159e-35,6.237881247500999e-35,6.23988024790084e-35,6.241879248300679e-35,6.24387824870052e-35,6.245877249100359e-35,6.2478762495002e-35,6.24987524990004e-35,6.25187425029988e-35,6.25387325069972e-35,6.25587225109956e-35,6.2578712514994e-35,6.259870251899239e-35,6.26186925229908e-35,6.26386825269892e-35,6.26586725309876e-35,6.2678662534986e-35,6.26986525389844e-35,6.27186425429828e-35,6.27386325469812e-35,6.27586225509796e-35,6.277861255497801e-35,6.27986025589764e-35,6.281859256297481e-35,6.28385825669732e-35,6.285857257097161e-35,6.287856257497e-35,6.289855257896841e-35,6.291854258296681e-35,6.293853258696521e-35,6.295852259096361e-35,6.297851259496201e-35,6.299850259896041e-35,6.301849260295882e-35,6.303848260695721e-35,6.305847261095562e-35,6.307846261495401e-35,6.309845261895242e-35,6.311844262295081e-35,6.313843262694922e-35,6.315842263094762e-35,6.317841263494602e-35,6.319840263894442e-35,6.321839264294282e-35,6.323838264694122e-35,6.325837265093961e-35,6.327836265493802e-35,6.329835265893642e-35,6.331834266293482e-35,6.333833266693322e-35,6.335832267093162e-35,6.337831267493002e-35,6.339830267892843e-35,6.341829268292682e-35,6.343828268692523e-35,6.345827269092362e-35,6.347826269492203e-35,6.349825269892042e-35,6.351824270291883e-35,6.353823270691723e-35,6.355822271091563e-35,6.357821271491403e-35,6.359820271891243e-35,6.361819272291083e-35,6.363818272690923e-35,6.365817273090763e-35,6.367816273490604e-35,6.369815273890443e-35,6.371814274290284e-35,6.373813274690123e-35,6.375812275089964e-35,6.377811275489804e-35,6.379810275889644e-35,6.381809276289484e-35,6.383808276689324e-35,6.385807277089164e-35,6.387806277489004e-35,6.389805277888844e-35,6.391804278288684e-35,6.393803278688524e-35,6.395802279088364e-35,6.397801279488204e-35,6.399800279888044e-35,6.401799280287884e-35,6.403798280687724e-35,6.405797281087565e-35,6.407796281487404e-35,6.409795281887245e-35,6.411794282287084e-35,6.413793282686925e-35,6.415792283086765e-35,6.417791283486605e-35,6.419790283886445e-35,6.421789284286285e-35,6.423788284686125e-35,6.425787285085965e-35,6.427786285485805e-35,6.429785285885646e-35,6.431784286285485e-35,6.433783286685326e-35,6.435782287085165e-35,6.437781287485006e-35,6.439780287884845e-35,6.441779288284686e-35,6.443778288684526e-35,6.445777289084366e-35,6.447776289484206e-35,6.449775289884046e-35,6.451774290283886e-35,6.453773290683727e-35,6.455772291083566e-35,6.457771291483406e-35,6.459770291883246e-35,6.461769292283086e-35,6.463768292682926e-35,6.465767293082766e-35,6.467766293482607e-35,6.469765293882446e-35,6.471764294282287e-35,6.473763294682126e-35,6.475762295081967e-35,6.477761295481806e-35,6.479760295881647e-35,6.481759296281487e-35,6.483758296681327e-35,6.485757297081167e-35,6.487756297481007e-35,6.489755297880847e-35,6.491754298280688e-35,6.493753298680527e-35,6.495752299080368e-35,6.497751299480207e-35,6.499750299880048e-35,6.501749300279887e-35,6.503748300679728e-35,6.505747301079568e-35,6.507746301479408e-35,6.509745301879248e-35,6.511744302279088e-35,6.513743302678928e-35,6.515742303078768e-35,6.517741303478608e-35,6.519740303878449e-35,6.521739304278288e-35,6.523738304678128e-35,6.525737305077968e-35,6.527736305477808e-35,6.529735305877649e-35,6.531734306277488e-35,6.533733306677329e-35,6.535732307077168e-35,6.537731307477009e-35,6.539730307876848e-35,6.541729308276689e-35,6.543728308676529e-35,6.545727309076369e-35,6.547726309476209e-35,6.549725309876049e-35,6.551724310275889e-35,6.55372331067573e-35,6.555722311075569e-35,6.55772131147541e-35,6.559720311875249e-35,6.56171931227509e-35,6.563718312674929e-35,6.56571731307477e-35,6.56771631347461e-35,6.56971531387445e-35,6.57171431427429e-35,6.57371331467413e-35,6.57571231507397e-35,6.57771131547381e-35,6.57971031587365e-35,6.581709316273491e-35,6.58370831667333e-35,6.585707317073171e-35,6.58770631747301e-35,6.589705317872851e-35,6.59170431827269e-35,6.59370331867253e-35,6.595702319072371e-35,6.59770131947221e-35,6.599700319872051e-35,6.60169932027189e-35,6.603698320671731e-35,6.60569732107157e-35,6.607696321471411e-35,6.609695321871251e-35,6.611694322271091e-35,6.613693322670931e-35,6.615692323070771e-35,6.617691323470611e-35,6.619690323870452e-35,6.621689324270291e-35,6.623688324670132e-35,6.625687325069971e-35,6.627686325469812e-35,6.629685325869651e-35,6.631684326269492e-35,6.633683326669332e-35,6.635682327069172e-35,6.637681327469012e-35,6.639680327868852e-35,6.641679328268692e-35,6.643678328668533e-35,6.645677329068372e-35,6.647676329468213e-35,6.649675329868052e-35,6.651674330267893e-35,6.653673330667732e-35,6.655672331067573e-35,6.657671331467413e-35,6.659670331867252e-35,6.661669332267093e-35,6.663668332666932e-35,6.665667333066773e-35,6.667666333466612e-35,6.669665333866453e-35,6.671664334266293e-35,6.673663334666133e-35,6.675662335065973e-35,6.677661335465813e-35,6.679660335865653e-35,6.681659336265494e-35,6.683658336665333e-35,6.685657337065174e-35,6.687656337465013e-35,6.689655337864854e-35,6.691654338264693e-35,6.693653338664534e-35,6.695652339064374e-35,6.697651339464214e-35,6.699650339864054e-35,6.701649340263894e-35,6.703648340663734e-35,6.705647341063574e-35,6.707646341463414e-35,6.709645341863255e-35,6.711644342263094e-35,6.713643342662935e-35,6.715642343062774e-35,6.717641343462615e-35,6.719640343862454e-35,6.721639344262295e-35,6.723638344662135e-35,6.725637345061974e-35,6.727636345461815e-35,6.729635345861654e-35,6.731634346261495e-35,6.733633346661335e-35,6.735632347061175e-35,6.737631347461015e-35,6.739630347860855e-35,6.741629348260695e-35,6.743628348660535e-35,6.745627349060375e-35,6.747626349460216e-35,6.749625349860055e-35,6.751624350259896e-35,6.753623350659735e-35,6.755622351059576e-35,6.757621351459415e-35,6.759620351859256e-35,6.761619352259096e-35,6.763618352658936e-35,6.765617353058776e-35,6.767616353458616e-35,6.769615353858456e-35,6.771614354258297e-35,6.773613354658136e-35,6.775612355057977e-35,6.777611355457816e-35,6.779610355857657e-35,6.781609356257496e-35,6.783608356657337e-35,6.785607357057177e-35,6.787606357457017e-35,6.789605357856857e-35,6.791604358256696e-35,6.793603358656537e-35,6.795602359056376e-35,6.797601359456217e-35,6.799600359856057e-35,6.801599360255897e-35,6.803598360655737e-35,6.805597361055577e-35,6.807596361455417e-35,6.809595361855258e-35,6.811594362255097e-35,6.813593362654938e-35,6.815592363054777e-35,6.817591363454618e-35,6.819590363854457e-35,6.821589364254298e-35,6.823588364654138e-35,6.825587365053978e-35,6.827586365453818e-35,6.829585365853658e-35,6.831584366253498e-35,6.833583366653339e-35,6.835582367053178e-35,6.837581367453019e-35,6.839580367852858e-35,6.841579368252699e-35,6.843578368652538e-35,6.845577369052379e-35,6.847576369452219e-35,6.849575369852059e-35,6.851574370251899e-35,6.853573370651739e-35,6.855572371051579e-35,6.85757137145142e-35,6.859570371851259e-35,6.861569372251099e-35,6.863568372650939e-35,6.865567373050779e-35,6.867566373450619e-35,6.869565373850459e-35,6.8715643742503e-35,6.873563374650139e-35,6.87556237504998e-35,6.877561375449819e-35,6.87956037584966e-35,6.881559376249499e-35,6.88355837664934e-35,6.88555737704918e-35,6.88755637744902e-35,6.88955537784886e-35,6.8915543782487e-35,6.89355337864854e-35,6.89555237904838e-35,6.89755137944822e-35,6.899550379848061e-35,6.9015493802479e-35,6.903548380647741e-35,6.90554738104758e-35,6.907546381447421e-35,6.90954538184726e-35,6.911544382247101e-35,6.913543382646941e-35,6.915542383046781e-35,6.917541383446621e-35,6.919540383846461e-35,6.921539384246301e-35,6.923538384646142e-35,6.925537385045981e-35,6.927536385445821e-35,6.929535385845661e-35,6.931534386245501e-35,6.933533386645341e-35,6.935532387045181e-35,6.937531387445022e-35,6.939530387844861e-35,6.941529388244702e-35,6.943528388644541e-35,6.945527389044382e-35,6.947526389444221e-35,6.949525389844062e-35,6.951524390243902e-35,6.953523390643742e-35,6.955522391043582e-35,6.957521391443422e-35,6.959520391843262e-35,6.961519392243103e-35,6.963518392642942e-35,6.965517393042783e-35,6.967516393442622e-35,6.969515393842463e-35,6.971514394242302e-35,6.973513394642143e-35,6.975512395041983e-35,6.977511395441823e-35,6.979510395841663e-35,6.981509396241503e-35,6.983508396641343e-35,6.985507397041184e-35,6.987506397441023e-35,6.989505397840864e-35,6.991504398240703e-35,6.993503398640543e-35,6.995502399040383e-35,6.997501399440223e-35,6.999500399840064e-35,7.001499400239903e-35,7.003498400639744e-35,7.005497401039583e-35,7.007496401439424e-35,7.009495401839263e-35,7.011494402239104e-35,7.013493402638944e-35,7.015492403038784e-35,7.017491403438624e-35,7.019490403838464e-35,7.021489404238304e-35,7.023488404638144e-35,7.025487405037984e-35,7.027486405437825e-35,7.029485405837664e-35,7.031484406237505e-35,7.033483406637344e-35,7.035482407037185e-35,7.037481407437025e-35,7.039480407836865e-35,7.041479408236705e-35,7.043478408636545e-35,7.045477409036385e-35,7.047476409436225e-35,7.049475409836065e-35,7.051474410235906e-35,7.053473410635745e-35,7.055472411035586e-35,7.057471411435425e-35,7.059470411835265e-35,7.061469412235105e-35,7.063468412634945e-35,7.065467413034786e-35,7.067466413434625e-35,7.069465413834466e-35,7.071464414234305e-35,7.073463414634146e-35,7.075462415033985e-35,7.077461415433826e-35,7.079460415833666e-35,7.081459416233506e-35,7.083458416633346e-35,7.085457417033186e-35,7.087456417433026e-35,7.089455417832867e-35,7.091454418232706e-35,7.093453418632547e-35,7.095452419032386e-35,7.097451419432227e-35,7.099450419832066e-35,7.101449420231907e-35,7.103448420631747e-35,7.105447421031587e-35,7.107446421431427e-35,7.109445421831267e-35,7.111444422231107e-35,7.113443422630948e-35,7.115442423030787e-35,7.117441423430628e-35,7.119440423830467e-35,7.121439424230308e-35,7.123438424630147e-35,7.125437425029987e-35,7.127436425429828e-35,7.129435425829667e-35,7.131434426229508e-35,7.133433426629347e-35,7.135432427029188e-35,7.137431427429027e-35,7.139430427828868e-35,7.141429428228708e-35,7.143428428628548e-35,7.145427429028388e-35,7.147426429428228e-35,7.149425429828068e-35,7.151424430227909e-35,7.153423430627748e-35,7.155422431027589e-35,7.157421431427428e-35,7.159420431827269e-35,7.161419432227108e-35,7.163418432626949e-35,7.165417433026789e-35,7.167416433426629e-35,7.169415433826469e-35,7.171414434226309e-35,7.173413434626149e-35,7.17541243502599e-35,7.177411435425829e-35,7.17941043582567e-35,7.181409436225509e-35,7.18340843662535e-35,7.185407437025189e-35,7.18740643742503e-35,7.18940543782487e-35,7.19140443822471e-35,7.19340343862455e-35,7.195402439024389e-35,7.19740143942423e-35,7.199400439824069e-35,7.20139944022391e-35,7.20339844062375e-35,7.20539744102359e-35,7.20739644142343e-35,7.20939544182327e-35,7.21139444222311e-35,7.21339344262295e-35,7.21539244302279e-35,7.217391443422631e-35,7.21939044382247e-35,7.221389444222311e-35,7.22338844462215e-35,7.225387445021991e-35,7.22738644542183e-35,7.229385445821671e-35,7.231384446221511e-35,7.233383446621351e-35,7.235382447021191e-35,7.237381447421031e-35,7.239380447820871e-35,7.241379448220712e-35,7.243378448620551e-35,7.245377449020392e-35,7.247376449420231e-35,7.249375449820072e-35,7.251374450219911e-35,7.253373450619752e-35,7.255372451019592e-35,7.257371451419432e-35,7.259370451819272e-35,7.261369452219111e-35,7.263368452618952e-35,7.265367453018791e-35,7.267366453418632e-35,7.269365453818472e-35,7.271364454218312e-35,7.273363454618152e-35,7.275362455017992e-35,7.277361455417832e-35,7.279360455817673e-35,7.281359456217512e-35,7.283358456617353e-35,7.285357457017192e-35,7.287356457417033e-35,7.289355457816872e-35,7.291354458216713e-35,7.293353458616553e-35,7.295352459016393e-35,7.297351459416233e-35,7.299350459816073e-35,7.301349460215913e-35,7.303348460615754e-35,7.305347461015593e-35,7.307346461415434e-35,7.309345461815273e-35,7.311344462215114e-35,7.313343462614953e-35,7.315342463014794e-35,7.317341463414634e-35,7.319340463814474e-35,7.321339464214314e-35,7.323338464614154e-35,7.325337465013994e-35,7.327336465413833e-35,7.329335465813674e-35,7.331334466213514e-35,7.333333466613354e-35,7.335332467013194e-35,7.337331467413034e-35,7.339330467812874e-35,7.341329468212715e-35,7.343328468612554e-35,7.345327469012395e-35,7.347326469412234e-35,7.349325469812075e-35,7.351324470211914e-35,7.353323470611755e-35,7.355322471011595e-35,7.357321471411435e-35,7.359320471811275e-35,7.361319472211115e-35,7.363318472610955e-35,7.365317473010795e-35,7.367316473410635e-35,7.369315473810476e-35,7.371314474210315e-35,7.373313474610156e-35,7.375312475009995e-35,7.377311475409836e-35,7.379310475809675e-35,7.381309476209516e-35,7.383308476609356e-35,7.385307477009196e-35,7.387306477409036e-35,7.389305477808876e-35,7.391304478208716e-35,7.393303478608556e-35,7.395302479008396e-35,7.397301479408236e-35,7.399300479808076e-35,7.401299480207916e-35,7.403298480607756e-35,7.405297481007596e-35,7.407296481407437e-35,7.409295481807276e-35,7.411294482207117e-35,7.413293482606956e-35,7.415292483006797e-35,7.417291483406636e-35,7.419290483806477e-35,7.421289484206317e-35,7.423288484606157e-35,7.425287485005997e-35,7.427286485405837e-35,7.429285485805677e-35,7.431284486205518e-35,7.433283486605357e-35,7.435282487005198e-35,7.437281487405037e-35,7.439280487804878e-35,7.441279488204717e-35,7.443278488604558e-35,7.445277489004398e-35,7.447276489404238e-35,7.449275489804078e-35,7.451274490203918e-35,7.453273490603758e-35,7.455272491003599e-35,7.457271491403438e-35,7.459270491803279e-35,7.461269492203118e-35,7.463268492602958e-35,7.465267493002798e-35,7.467266493402638e-35,7.469265493802479e-35,7.471264494202318e-35,7.473263494602159e-35,7.475262495001998e-35,7.477261495401839e-35,7.479260495801678e-35,7.481259496201519e-35,7.483258496601359e-35,7.485257497001199e-35,7.487256497401039e-35,7.489255497800879e-35,7.491254498200719e-35,7.49325349860056e-35,7.495252499000399e-35,7.49725149940024e-35,7.499250499800079e-35,7.50124950019992e-35,7.503248500599759e-35,7.5052475009996e-35,7.50724650139944e-35,7.50924550179928e-35,7.51124450219912e-35,7.51324350259896e-35,7.5152425029988e-35,7.51724150339864e-35,7.51924050379848e-35,7.521239504198321e-35,7.52323850459816e-35,7.525237504998001e-35,7.52723650539784e-35,7.52923550579768e-35,7.53123450619752e-35,7.53323350659736e-35,7.535232506997201e-35,7.53723150739704e-35,7.539230507796881e-35,7.54122950819672e-35,7.543228508596561e-35,7.5452275089964e-35,7.547226509396241e-35,7.549225509796081e-35,7.551224510195921e-35,7.553223510595761e-35,7.555222510995601e-35,7.557221511395441e-35,7.559220511795282e-35,7.561219512195121e-35,7.563218512594962e-35,7.565217512994801e-35,7.567216513394642e-35,7.569215513794481e-35,7.571214514194322e-35,7.573213514594162e-35,7.575212514994002e-35,7.577211515393842e-35,7.579210515793682e-35,7.581209516193522e-35,7.583208516593363e-35,7.585207516993202e-35,7.587206517393043e-35,7.589205517792882e-35,7.591204518192723e-35,7.593203518592562e-35,7.595202518992402e-35,7.597201519392243e-35,7.599200519792082e-35,7.601199520191923e-35,7.603198520591762e-35,7.605197520991603e-35,7.607196521391442e-35,7.609195521791283e-35,7.611194522191123e-35,7.613193522590963e-35,7.615192522990803e-35,7.617191523390643e-35,7.619190523790483e-35,7.621189524190324e-35,7.623188524590163e-35,7.625187524990004e-35,7.627186525389843e-35,7.629185525789684e-35,7.631184526189523e-35,7.633183526589364e-35,7.635182526989204e-35,7.637181527389044e-35,7.639180527788884e-35,7.641179528188724e-35,7.643178528588564e-35,7.645177528988405e-35,7.647176529388244e-35,7.649175529788085e-35,7.651174530187924e-35,7.653173530587765e-35,7.655172530987604e-35,7.657171531387445e-35,7.659170531787285e-35,7.661169532187124e-35,7.663168532586965e-35,7.665167532986804e-35,7.667166533386645e-35,7.669165533786484e-35,7.671164534186325e-35,7.673163534586165e-35,7.675162534986005e-35,7.677161535385845e-35,7.679160535785685e-35,7.681159536185525e-35,7.683158536585365e-35,7.685157536985205e-35,7.687156537385046e-35,7.689155537784885e-35,7.691154538184726e-35,7.693153538584565e-35,7.695152538984406e-35,7.697151539384246e-35,7.699150539784086e-35,7.701149540183926e-35,7.703148540583766e-35,7.705147540983606e-35,7.707146541383446e-35,7.709145541783286e-35,7.711144542183127e-35,7.713143542582966e-35,7.715142542982807e-35,7.717141543382646e-35,7.719140543782487e-35,7.721139544182326e-35,7.723138544582167e-35,7.725137544982007e-35,7.727136545381846e-35,7.729135545781687e-35,7.731134546181526e-35,7.733133546581367e-35,7.735132546981206e-35,7.737131547381047e-35,7.739130547780887e-35,7.741129548180727e-35,7.743128548580567e-35,7.745127548980407e-35,7.747126549380247e-35,7.749125549780088e-35,7.751124550179927e-35,7.753123550579768e-35,7.755122550979607e-35,7.757121551379448e-35,7.759120551779287e-35,7.761119552179128e-35,7.763118552578968e-35,7.765117552978808e-35,7.767116553378648e-35,7.769115553778488e-35,7.771114554178328e-35,7.773113554578169e-35,7.775112554978008e-35,7.777111555377849e-35,7.779110555777688e-35,7.781109556177529e-35,7.783108556577368e-35,7.785107556977209e-35,7.787106557377049e-35,7.789105557776889e-35,7.791104558176729e-35,7.793103558576569e-35,7.795102558976409e-35,7.797101559376248e-35,7.799100559776089e-35,7.801099560175929e-35,7.803098560575769e-35,7.805097560975609e-35,7.807096561375449e-35,7.809095561775289e-35,7.81109456217513e-35,7.813093562574969e-35,7.81509256297481e-35,7.817091563374649e-35,7.81909056377449e-35,7.821089564174329e-35,7.82308856457417e-35,7.82508756497401e-35,7.82708656537385e-35,7.82908556577369e-35,7.83108456617353e-35,7.83308356657337e-35,7.83508256697321e-35,7.83708156737305e-35,7.839080567772891e-35,7.84107956817273e-35,7.843078568572571e-35,7.84507756897241e-35,7.847076569372251e-35,7.84907556977209e-35,7.851074570171931e-35,7.853073570571771e-35,7.855072570971611e-35,7.857071571371451e-35,7.859070571771291e-35,7.861069572171131e-35,7.86306857257097e-35,7.865067572970811e-35,7.867066573370651e-35,7.869065573770491e-35,7.871064574170331e-35,7.873063574570171e-35,7.875062574970011e-35,7.877061575369852e-35,7.879060575769691e-35,7.881059576169532e-35,7.883058576569371e-35,7.885057576969212e-35,7.887056577369051e-35,7.889055577768892e-35,7.891054578168732e-35,7.893053578568572e-35,7.895052578968412e-35,7.897051579368252e-35,7.899050579768092e-35,7.901049580167933e-35,7.903048580567772e-35,7.905047580967613e-35,7.907046581367452e-35,7.909045581767293e-35,7.911044582167132e-35,7.913043582566973e-35,7.915042582966813e-35,7.917041583366653e-35,7.919040583766493e-35,7.921039584166333e-35,7.923038584566173e-35,7.925037584966014e-35,7.927036585365853e-35,7.929035585765693e-35,7.931034586165533e-35,7.933033586565373e-35,7.935032586965213e-35,7.937031587365053e-35,7.939030587764894e-35,7.941029588164733e-35,7.943028588564574e-35,7.945027588964413e-35,7.947026589364254e-35,7.949025589764093e-35,7.951024590163934e-35,7.953023590563774e-35,7.955022590963614e-35,7.957021591363454e-35,7.959020591763294e-35,7.961019592163134e-35,7.963018592562975e-35,7.965017592962814e-35,7.967016593362655e-35,7.969015593762494e-35,7.971014594162335e-35,7.973013594562174e-35,7.975012594962015e-35,7.977011595361855e-35,7.979010595761695e-35,7.981009596161535e-35,7.983008596561375e-35,7.985007596961215e-35,7.987006597361055e-35,7.989005597760895e-35,7.991004598160736e-35,7.993003598560575e-35,7.995002598960415e-35,7.997001599360255e-35,7.999000599760095e-35,8.000999600159936e-35,8.002998600559775e-35,8.004997600959616e-35,8.006996601359455e-35,8.008995601759296e-35,8.010994602159135e-35,8.012993602558976e-35,8.014992602958816e-35,8.016991603358656e-35,8.018990603758496e-35,8.020989604158336e-35,8.022988604558176e-35,8.024987604958016e-35,8.026986605357856e-35,8.028985605757697e-35,8.030984606157536e-35,8.032983606557377e-35,8.034982606957216e-35,8.036981607357057e-35,8.038980607756896e-35,8.040979608156737e-35,8.042978608556577e-35,8.044977608956417e-35,8.046976609356257e-35,8.048975609756097e-35,8.050974610155937e-35,8.052973610555778e-35,8.054972610955617e-35,8.056971611355458e-35,8.058970611755297e-35,8.060969612155138e-35,8.062968612554977e-35,8.064967612954817e-35,8.066966613354658e-35,8.068965613754497e-35,8.070964614154338e-35,8.072963614554177e-35,8.074962614954018e-35,8.076961615353857e-35,8.078960615753698e-35,8.080959616153538e-35,8.082958616553378e-35,8.084957616953218e-35,8.086956617353058e-35,8.088955617752898e-35,8.090954618152739e-35,8.092953618552578e-35,8.094952618952419e-35,8.096951619352258e-35,8.098950619752099e-35,8.100949620151938e-35,8.102948620551779e-35,8.104947620951619e-35,8.106946621351459e-35,8.108945621751299e-35,8.110944622151139e-35,8.112943622550979e-35,8.11494262295082e-35,8.116941623350659e-35,8.1189406237505e-35,8.120939624150339e-35,8.12293862455018e-35,8.124937624950019e-35,8.12693662534986e-35,8.1289356257497e-35,8.130934626149539e-35,8.13293362654938e-35,8.134932626949219e-35,8.13693162734906e-35,8.138930627748899e-35,8.14092962814874e-35,8.14292862854858e-35,8.14492762894842e-35,8.14692662934826e-35,8.1489256297481e-35,8.15092463014794e-35,8.15292363054778e-35,8.15492263094762e-35,8.156921631347461e-35,8.1589206317473e-35,8.160919632147141e-35,8.16291863254698e-35,8.164917632946821e-35,8.16691663334666e-35,8.168915633746501e-35,8.170914634146341e-35,8.172913634546181e-35,8.174912634946021e-35,8.176911635345861e-35,8.178910635745701e-35,8.180909636145542e-35,8.182908636545381e-35,8.184907636945222e-35,8.186906637345061e-35,8.188905637744902e-35,8.190904638144741e-35,8.192903638544582e-35,8.194902638944422e-35,8.196901639344261e-35,8.198900639744102e-35,8.200899640143941e-35,8.202898640543782e-35,8.204897640943622e-35,8.206896641343462e-35,8.208895641743302e-35,8.210894642143142e-35,8.212893642542982e-35,8.214892642942822e-35,8.216891643342662e-35,8.218890643742503e-35,8.220889644142342e-35,8.222888644542183e-35,8.224887644942022e-35,8.226886645341863e-35,8.228885645741702e-35,8.230884646141543e-35,8.232883646541383e-35,8.234882646941223e-35,8.236881647341063e-35,8.238880647740903e-35,8.240879648140743e-35,8.242878648540584e-35,8.244877648940423e-35,8.246876649340264e-35,8.248875649740103e-35,8.250874650139944e-35,8.252873650539783e-35,8.254872650939624e-35,8.256871651339464e-35,8.258870651739304e-35,8.260869652139144e-35,8.262868652538983e-35,8.264867652938824e-35,8.266866653338663e-35,8.268865653738504e-35,8.270864654138344e-35,8.272863654538184e-35,8.274862654938024e-35,8.276861655337864e-35,8.278860655737704e-35,8.280859656137545e-35,8.282858656537384e-35,8.284857656937225e-35,8.286856657337064e-35,8.288855657736905e-35,8.290854658136744e-35,8.292853658536585e-35,8.294852658936425e-35,8.296851659336265e-35,8.298850659736105e-35,8.300849660135945e-35,8.302848660535785e-35,8.304847660935625e-35,8.306846661335465e-35,8.308845661735306e-35,8.310844662135145e-35,8.312843662534986e-35,8.314842662934825e-35,8.316841663334666e-35,8.318840663734506e-35,8.320839664134346e-35,8.322838664534186e-35,8.324837664934026e-35,8.326836665333866e-35,8.328835665733705e-35,8.330834666133546e-35,8.332833666533386e-35,8.334832666933226e-35,8.336831667333066e-35,8.338830667732906e-35,8.340829668132746e-35,8.342828668532586e-35,8.344827668932426e-35,8.346826669332267e-35,8.348825669732106e-35,8.350824670131947e-35,8.352823670531786e-35,8.354822670931627e-35,8.356821671331467e-35,8.358820671731307e-35,8.360819672131147e-35,8.362818672530987e-35,8.364817672930827e-35,8.366816673330667e-35,8.368815673730507e-35,8.370814674130348e-35,8.372813674530187e-35,8.374812674930028e-35,8.376811675329867e-35,8.378810675729708e-35,8.380809676129547e-35,8.382808676529388e-35,8.384807676929228e-35,8.386806677329068e-35,8.388805677728908e-35,8.390804678128748e-35,8.392803678528588e-35,8.394802678928429e-35,8.396801679328268e-35,8.398800679728108e-35,8.400799680127948e-35,8.402798680527788e-35,8.404797680927628e-35,8.406796681327468e-35,8.408795681727309e-35,8.410794682127148e-35,8.412793682526989e-35,8.414792682926828e-35,8.416791683326669e-35,8.418790683726508e-35,8.420789684126349e-35,8.422788684526189e-35,8.424787684926029e-35,8.426786685325869e-35,8.428785685725709e-35,8.430784686125549e-35,8.43278368652539e-35,8.434782686925229e-35,8.43678168732507e-35,8.438780687724909e-35,8.44077968812475e-35,8.442778688524589e-35,8.44477768892443e-35,8.44677668932427e-35,8.44877568972411e-35,8.45077469012395e-35,8.45277369052379e-35,8.45477269092363e-35,8.45677169132347e-35,8.45877069172331e-35,8.460769692123151e-35,8.46276869252299e-35,8.46476769292283e-35,8.46676669332267e-35,8.46876569372251e-35,8.47076469412235e-35,8.47276369452219e-35,8.474762694922031e-35,8.47676169532187e-35,8.478760695721711e-35,8.48075969612155e-35,8.482758696521391e-35,8.484757696921231e-35,8.486756697321071e-35,8.488755697720911e-35,8.490754698120751e-35,8.492753698520591e-35,8.494752698920431e-35,8.496751699320271e-35,8.498750699720112e-35,8.500749700119951e-35,8.502748700519792e-35,8.504747700919631e-35,8.506746701319472e-35,8.508745701719311e-35,8.510744702119152e-35,8.512743702518992e-35,8.514742702918832e-35,8.516741703318672e-35,8.518740703718512e-35,8.520739704118352e-35,8.522738704518193e-35,8.524737704918032e-35,8.526736705317873e-35,8.528735705717712e-35,8.530734706117552e-35,8.532733706517392e-35,8.534732706917232e-35,8.536731707317073e-35,8.538730707716912e-35,8.540729708116753e-35,8.542728708516592e-35,8.544727708916433e-35,8.546726709316272e-35,8.548725709716113e-35,8.550724710115953e-35,8.552723710515793e-35,8.554722710915633e-35,8.556721711315473e-35,8.558720711715313e-35,8.560719712115154e-35,8.562718712514993e-35,8.564717712914834e-35,8.566716713314673e-35,8.568715713714514e-35,8.570714714114353e-35,8.572713714514194e-35,8.574712714914034e-35,8.576711715313874e-35,8.578710715713714e-35,8.580709716113554e-35,8.582708716513394e-35,8.584707716913235e-35,8.586706717313074e-35,8.588705717712915e-35,8.590704718112754e-35,8.592703718512595e-35,8.594702718912434e-35,8.596701719312274e-35,8.598700719712115e-35,8.600699720111954e-35,8.602698720511795e-35,8.604697720911634e-35,8.606696721311475e-35,8.608695721711314e-35,8.610694722111155e-35,8.612693722510995e-35,8.614692722910835e-35,8.616691723310675e-35,8.618690723710515e-35,8.620689724110355e-35,8.622688724510196e-35,8.624687724910035e-35,8.626686725309876e-35,8.628685725709715e-35,8.630684726109556e-35,8.632683726509395e-35,8.634682726909236e-35,8.636681727309076e-35,8.638680727708916e-35,8.640679728108756e-35,8.642678728508596e-35,8.644677728908436e-35,8.646676729308276e-35,8.648675729708116e-35,8.650674730107957e-35,8.652673730507796e-35,8.654672730907637e-35,8.656671731307476e-35,8.658670731707317e-35,8.660669732107156e-35,8.662668732506997e-35,8.664667732906837e-35,8.666666733306676e-35,8.668665733706517e-35,8.670664734106356e-35,8.672663734506197e-35,8.674662734906037e-35,8.676661735305877e-35,8.678660735705717e-35,8.680659736105557e-35,8.682658736505397e-35,8.684657736905237e-35,8.686656737305077e-35,8.688655737704918e-35,8.690654738104757e-35,8.692653738504598e-35,8.694652738904437e-35,8.696651739304278e-35,8.698650739704117e-35,8.700649740103958e-35,8.702648740503798e-35,8.704647740903638e-35,8.706646741303478e-35,8.708645741703318e-35,8.710644742103158e-35,8.712643742502999e-35,8.714642742902838e-35,8.716641743302679e-35,8.718640743702518e-35,8.720639744102359e-35,8.722638744502198e-35,8.724637744902039e-35,8.726636745301879e-35,8.728635745701719e-35,8.730634746101559e-35,8.732633746501398e-35,8.734632746901239e-35,8.736631747301078e-35,8.738630747700919e-35,8.740629748100759e-35,8.742628748500599e-35,8.744627748900439e-35,8.746626749300279e-35,8.748625749700119e-35,8.75062475009996e-35,8.752623750499799e-35,8.75462275089964e-35,8.756621751299479e-35,8.75862075169932e-35,8.760619752099159e-35,8.762618752499e-35,8.76461775289884e-35,8.76661675329868e-35,8.76861575369852e-35,8.77061475409836e-35,8.7726137544982e-35,8.77461275489804e-35,8.77661175529788e-35,8.778610755697721e-35,8.78060975609756e-35,8.782608756497401e-35,8.78460775689724e-35,8.786606757297081e-35,8.78860575769692e-35,8.790604758096761e-35,8.792603758496601e-35,8.794602758896441e-35,8.796601759296281e-35,8.79860075969612e-35,8.800599760095961e-35,8.802598760495801e-35,8.804597760895641e-35,8.806596761295481e-35,8.808595761695321e-35,8.810594762095161e-35,8.812593762495001e-35,8.814592762894841e-35,8.816591763294682e-35,8.818590763694521e-35,8.820589764094362e-35,8.822588764494201e-35,8.824587764894042e-35,8.826586765293882e-35,8.828585765693722e-35,8.830584766093562e-35,8.832583766493402e-35,8.834582766893242e-35,8.836581767293082e-35,8.838580767692922e-35,8.840579768092763e-35,8.842578768492602e-35,8.844577768892443e-35,8.846576769292282e-35,8.848575769692123e-35,8.850574770091962e-35,8.852573770491803e-35,8.854572770891643e-35,8.856571771291483e-35,8.858570771691323e-35,8.860569772091163e-35,8.862568772491003e-35,8.864567772890842e-35,8.866566773290683e-35,8.868565773690523e-35,8.870564774090363e-35,8.872563774490203e-35,8.874562774890043e-35,8.876561775289883e-35,8.878560775689724e-35,8.880559776089563e-35,8.882558776489404e-35,8.884557776889243e-35,8.886556777289084e-35,8.888555777688923e-35,8.890554778088764e-35,8.892553778488604e-35,8.894552778888444e-35,8.896551779288284e-35,8.898550779688124e-35,8.900549780087964e-35,8.902548780487805e-35,8.904547780887644e-35,8.906546781287485e-35,8.908545781687324e-35,8.910544782087165e-35,8.912543782487004e-35,8.914542782886845e-35,8.916541783286685e-35,8.918540783686525e-35,8.920539784086365e-35,8.922538784486205e-35,8.924537784886045e-35,8.926536785285886e-35,8.928535785685725e-35,8.930534786085565e-35,8.932533786485405e-35,8.934532786885245e-35,8.936531787285085e-35,8.938530787684925e-35,8.940529788084766e-35,8.942528788484605e-35,8.944527788884446e-35,8.946526789284285e-35,8.948525789684126e-35,8.950524790083965e-35,8.952523790483806e-35,8.954522790883646e-35,8.956521791283486e-35,8.958520791683326e-35,8.960519792083166e-35,8.962518792483006e-35,8.964517792882846e-35,8.966516793282686e-35,8.968515793682527e-35,8.970514794082366e-35,8.972513794482207e-35,8.974512794882046e-35,8.976511795281887e-35,8.978510795681727e-35,8.980509796081567e-35,8.982508796481407e-35,8.984507796881247e-35,8.986506797281087e-35,8.988505797680927e-35,8.990504798080767e-35,8.992503798480608e-35,8.994502798880447e-35,8.996501799280288e-35,8.998500799680127e-35,9.000499800079967e-35,9.002498800479807e-35,9.004497800879647e-35,9.006496801279488e-35,9.008495801679327e-35,9.010494802079168e-35,9.012493802479007e-35,9.014492802878848e-35,9.016491803278687e-35,9.018490803678528e-35,9.020489804078368e-35,9.022488804478208e-35,9.024487804878048e-35,9.026486805277888e-35,9.028485805677728e-35,9.030484806077569e-35,9.032483806477408e-35,9.034482806877249e-35,9.036481807277088e-35,9.038480807676929e-35,9.040479808076768e-35,9.042478808476609e-35,9.044477808876449e-35,9.046476809276289e-35,9.048475809676129e-35,9.050474810075969e-35,9.052473810475809e-35,9.05447281087565e-35,9.056471811275489e-35,9.05847081167533e-35,9.060469812075169e-35,9.06246881247501e-35,9.064467812874849e-35,9.066466813274689e-35,9.06846581367453e-35,9.070464814074369e-35,9.07246381447421e-35,9.074462814874049e-35,9.07646181527389e-35,9.078460815673729e-35,9.08045981607357e-35,9.08245881647341e-35,9.08445781687325e-35,9.08645681727309e-35,9.08845581767293e-35,9.09045481807277e-35,9.09245381847261e-35,9.09445281887245e-35,9.096451819272291e-35,9.09845081967213e-35,9.100449820071971e-35,9.10244882047181e-35,9.104447820871651e-35,9.106446821271491e-35,9.108445821671331e-35,9.110444822071171e-35,9.112443822471011e-35,9.114442822870851e-35,9.116441823270691e-35,9.118440823670531e-35,9.120439824070372e-35,9.122438824470211e-35,9.124437824870052e-35,9.126436825269891e-35,9.128435825669732e-35,9.130434826069572e-35,9.132433826469411e-35,9.134432826869252e-35,9.136431827269091e-35,9.138430827668932e-35,9.140429828068771e-35,9.142428828468612e-35,9.144427828868452e-35,9.146426829268292e-35,9.148425829668132e-35,9.150424830067972e-35,9.152423830467812e-35,9.154422830867652e-35,9.156421831267492e-35,9.158420831667333e-35,9.160419832067172e-35,9.162418832467013e-35,9.164417832866852e-35,9.166416833266693e-35,9.168415833666532e-35,9.170414834066373e-35,9.172413834466213e-35,9.174412834866053e-35,9.176411835265893e-35,9.178410835665733e-35,9.180409836065573e-35,9.182408836465414e-35,9.184407836865253e-35,9.186406837265094e-35,9.188405837664933e-35,9.190404838064774e-35,9.192403838464613e-35,9.194402838864454e-35,9.196401839264294e-35,9.198400839664133e-35,9.200399840063974e-35,9.202398840463813e-35,9.204397840863654e-35,9.206396841263493e-35,9.208395841663334e-35,9.210394842063174e-35,9.212393842463014e-35,9.214392842862854e-35,9.216391843262694e-35,9.218390843662534e-35,9.220389844062375e-35,9.222388844462214e-35,9.224387844862055e-35,9.226386845261894e-35,9.228385845661735e-35,9.230384846061574e-35,9.232383846461415e-35,9.234382846861255e-35,9.236381847261095e-35,9.238380847660935e-35,9.240379848060775e-35,9.242378848460615e-35,9.244377848860456e-35,9.246376849260295e-35,9.248375849660136e-35,9.250374850059975e-35,9.252373850459816e-35,9.254372850859655e-35,9.256371851259496e-35,9.258370851659336e-35,9.260369852059176e-35,9.262368852459016e-35,9.264367852858856e-35,9.266366853258696e-35,9.268365853658535e-35,9.270364854058376e-35,9.272363854458216e-35,9.274362854858056e-35,9.276361855257896e-35,9.278360855657736e-35,9.280359856057576e-35,9.282358856457417e-35,9.284357856857256e-35,9.286356857257097e-35,9.288355857656936e-35,9.290354858056777e-35,9.292353858456616e-35,9.294352858856457e-35,9.296351859256297e-35,9.298350859656137e-35,9.300349860055977e-35,9.302348860455817e-35,9.304347860855657e-35,9.306346861255497e-35,9.308345861655337e-35,9.310344862055178e-35,9.312343862455017e-35,9.314342862854858e-35,9.316341863254697e-35,9.318340863654538e-35,9.320339864054377e-35,9.322338864454218e-35,9.324337864854058e-35,9.326336865253898e-35,9.328335865653738e-35,9.330334866053578e-35,9.332333866453418e-35,9.334332866853258e-35,9.336331867253098e-35,9.338330867652938e-35,9.340329868052778e-35,9.342328868452618e-35,9.344327868852458e-35,9.346326869252298e-35,9.348325869652139e-35,9.350324870051978e-35,9.352323870451819e-35,9.354322870851658e-35,9.356321871251499e-35,9.358320871651338e-35,9.360319872051179e-35,9.362318872451019e-35,9.364317872850859e-35,9.366316873250699e-35,9.368315873650539e-35,9.370314874050379e-35,9.37231387445022e-35,9.374312874850059e-35,9.3763118752499e-35,9.378310875649739e-35,9.38030987604958e-35,9.382308876449419e-35,9.38430787684926e-35,9.3863068772491e-35,9.38830587764894e-35,9.39030487804878e-35,9.39230387844862e-35,9.39430287884846e-35,9.3963018792483e-35,9.39830087964814e-35,9.40029988004798e-35,9.40229888044782e-35,9.40429788084766e-35,9.4062968812475e-35,9.40829588164734e-35,9.410294882047181e-35,9.41229388244702e-35,9.414292882846861e-35,9.4162918832467e-35,9.418290883646541e-35,9.42028988404638e-35,9.422288884446221e-35,9.424287884846061e-35,9.426286885245901e-35,9.428285885645741e-35,9.430284886045581e-35,9.432283886445421e-35,9.434282886845262e-35,9.436281887245101e-35,9.438280887644942e-35,9.440279888044781e-35,9.442278888444622e-35,9.444277888844461e-35,9.446276889244302e-35,9.448275889644142e-35,9.450274890043982e-35,9.452273890443822e-35,9.454272890843662e-35,9.456271891243502e-35,9.458270891643342e-35,9.460269892043182e-35,9.462268892443023e-35,9.464267892842862e-35,9.466266893242702e-35,9.468265893642542e-35,9.470264894042382e-35,9.472263894442222e-35,9.474262894842062e-35,9.476261895241903e-35,9.478260895641742e-35,9.480259896041583e-35,9.482258896441422e-35,9.484257896841263e-35,9.486256897241103e-35,9.488255897640943e-35,9.490254898040783e-35,9.492253898440623e-35,9.494252898840463e-35,9.496251899240303e-35,9.498250899640143e-35,9.500249900039984e-35,9.502248900439823e-35,9.504247900839664e-35,9.506246901239503e-35,9.508245901639344e-35,9.510244902039183e-35,9.512243902439024e-35,9.514242902838864e-35,9.516241903238704e-35,9.518240903638544e-35,9.520239904038384e-35,9.522238904438224e-35,9.524237904838065e-35,9.526236905237904e-35,9.528235905637745e-35,9.530234906037584e-35,9.532233906437424e-35,9.534232906837264e-35,9.536231907237104e-35,9.538230907636945e-35,9.540229908036784e-35,9.542228908436625e-35,9.544227908836464e-35,9.546226909236305e-35,9.548225909636144e-35,9.550224910035985e-35,9.552223910435825e-35,9.554222910835665e-35,9.556221911235505e-35,9.558220911635345e-35,9.560219912035185e-35,9.562218912435026e-35,9.564217912834865e-35,9.566216913234706e-35,9.568215913634545e-35,9.570214914034386e-35,9.572213914434225e-35,9.574212914834066e-35,9.576211915233906e-35,9.578210915633746e-35,9.580209916033586e-35,9.582208916433426e-35,9.584207916833266e-35,9.586206917233106e-35,9.588205917632946e-35,9.590204918032787e-35,9.592203918432626e-35,9.594202918832467e-35,9.596201919232306e-35,9.598200919632147e-35,9.600199920031987e-35,9.602198920431826e-35,9.604197920831667e-35,9.606196921231506e-35,9.608195921631347e-35,9.610194922031186e-35,9.612193922431027e-35,9.614192922830867e-35,9.616191923230707e-35,9.618190923630547e-35,9.620189924030387e-35,9.622188924430227e-35,9.624187924830067e-35,9.626186925229907e-35,9.628185925629748e-35,9.630184926029587e-35,9.632183926429427e-35,9.634182926829268e-35,9.636181927229108e-35,9.638180927628948e-35,9.640179928028787e-35,9.642178928428629e-35,9.644177928828468e-35,9.646176929228308e-35,9.648175929628147e-35,9.65017493002799e-35,9.652173930427829e-35,9.654172930827668e-35,9.656171931227508e-35,9.65817093162735e-35,9.660169932027189e-35,9.662168932427028e-35,9.664167932826868e-35,9.666166933226708e-35,9.66816593362655e-35,9.670164934026389e-35,9.672163934426228e-35,9.674162934826068e-35,9.67616193522591e-35,9.67816093562575e-35,9.680159936025589e-35,9.682158936425428e-35,9.68415793682527e-35,9.68615693722511e-35,9.68815593762495e-35,9.690154938024789e-35,9.69215393842463e-35,9.69415293882447e-35,9.69615193922431e-35,9.698150939624149e-35,9.70014994002399e-35,9.70214894042383e-35,9.70414794082367e-35,9.70614694122351e-35,9.70814594162335e-35,9.71014494202319e-35,9.71214394242303e-35,9.71414294282287e-35,9.716141943222711e-35,9.71814094362255e-35,9.72013994402239e-35,9.72213894442223e-35,9.724137944822071e-35,9.72613694522191e-35,9.72813594562175e-35,9.73013494602159e-35,9.732133946421432e-35,9.734132946821271e-35,9.73613194722111e-35,9.73813094762095e-35,9.74012994802079e-35,9.742128948420632e-35,9.744127948820471e-35,9.74612694922031e-35,9.74812594962015e-35,9.750124950019992e-35,9.752123950419832e-35,9.75412295081967e-35,9.75612195121951e-35,9.758120951619352e-35,9.760119952019192e-35,9.762118952419031e-35,9.76411795281887e-35,9.766116953218713e-35,9.768115953618552e-35,9.770114954018392e-35,9.772113954418231e-35,9.774112954818073e-35,9.776111955217912e-35,9.778110955617752e-35,9.780109956017592e-35,9.782108956417433e-35,9.784107956817273e-35,9.786106957217112e-35,9.788105957616952e-35,9.790104958016794e-35,9.792103958416633e-35,9.794102958816473e-35,9.796101959216312e-35,9.798100959616154e-35,9.800099960015993e-35,9.802098960415833e-35,9.804097960815673e-35,9.806096961215512e-35,9.808095961615354e-35,9.810094962015193e-35,9.812093962415033e-35,9.814092962814872e-35,9.816091963214714e-35,9.818090963614554e-35,9.820089964014393e-35,9.822088964414233e-35,9.824087964814074e-35,9.826086965213914e-35,9.828085965613753e-35,9.830084966013593e-35,9.832083966413435e-35,9.834082966813274e-35,9.836081967213114e-35,9.838080967612953e-35,9.840079968012795e-35,9.842078968412635e-35,9.844077968812474e-35,9.846076969212314e-35,9.848075969612155e-35,9.850074970011995e-35,9.852073970411834e-35,9.854072970811674e-35,9.856071971211516e-35,9.858070971611355e-35,9.860069972011195e-35,9.862068972411034e-35,9.864067972810876e-35,9.866066973210716e-35,9.868065973610555e-35,9.870064974010395e-35,9.872063974410234e-35,9.874062974810076e-35,9.876061975209915e-35,9.878060975609755e-35,9.880059976009594e-35,9.882058976409436e-35,9.884057976809276e-35,9.886056977209115e-35,9.888055977608955e-35,9.890054978008796e-35,9.892053978408636e-35,9.894052978808476e-35,9.896051979208315e-35,9.898050979608157e-35,9.900049980007996e-35,9.902048980407836e-35,9.904047980807675e-35,9.906046981207517e-35,9.908045981607357e-35,9.910044982007196e-35,9.912043982407036e-35,9.914042982806877e-35,9.916041983206717e-35,9.918040983606557e-35,9.920039984006396e-35,9.922038984406238e-35,9.924037984806077e-35,9.926036985205917e-35,9.928035985605756e-35,9.930034986005598e-35,9.932033986405438e-35,9.934032986805277e-35,9.936031987205117e-35,9.938030987604956e-35,9.940029988004798e-35,9.942028988404637e-35,9.944027988804477e-35,9.946026989204317e-35,9.948025989604158e-35,9.950024990003998e-35,9.952023990403837e-35,9.954022990803677e-35,9.956021991203519e-35,9.958020991603358e-35,9.960019992003198e-35,9.962018992403037e-35,9.964017992802879e-35,9.966016993202718e-35,9.968015993602558e-35,9.970014994002398e-35,9.97201399440224e-35,9.974012994802079e-35,9.976011995201918e-35,9.978010995601758e-35,9.9800099960016e-35,9.98200899640144e-35,9.984007996801279e-35,9.986006997201118e-35,9.98800599760096e-35,9.9900049980008e-35,9.99200399840064e-35,9.994002998800479e-35,9.99600199920032e-35,9.99800099960016e-35,1.0e-34]} diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/tiny_positive.json b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/tiny_positive.json new file mode 100644 index 00000000000..ebacee29187 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/tiny_positive.json @@ -0,0 +1 @@ +{"expected":[1.7724538e-15,1.7722767e-15,1.7720994e-15,1.7719222e-15,1.7717451e-15,1.7715677e-15,1.7713905e-15,1.7712132e-15,1.7710359e-15,1.7708585e-15,1.7706812e-15,1.7705038e-15,1.7703265e-15,1.770149e-15,1.7699717e-15,1.7697942e-15,1.7696168e-15,1.7694393e-15,1.7692619e-15,1.7690843e-15,1.7689068e-15,1.7687293e-15,1.7685517e-15,1.7683742e-15,1.7681965e-15,1.768019e-15,1.7678413e-15,1.7676636e-15,1.767486e-15,1.7673083e-15,1.7671306e-15,1.7669529e-15,1.7667752e-15,1.7665974e-15,1.7664197e-15,1.7662419e-15,1.766064e-15,1.7658862e-15,1.7657084e-15,1.7655305e-15,1.7653526e-15,1.7651747e-15,1.7649969e-15,1.7648189e-15,1.764641e-15,1.764463e-15,1.764285e-15,1.7641069e-15,1.763929e-15,1.763751e-15,1.7635729e-15,1.7633948e-15,1.7632167e-15,1.7630386e-15,1.7628604e-15,1.7626823e-15,1.7625041e-15,1.762326e-15,1.7621478e-15,1.7619696e-15,1.7617913e-15,1.7616131e-15,1.7614348e-15,1.7612565e-15,1.7610782e-15,1.7608999e-15,1.7607215e-15,1.7605432e-15,1.7603648e-15,1.7601863e-15,1.7600079e-15,1.7598295e-15,1.759651e-15,1.7594726e-15,1.7592941e-15,1.7591156e-15,1.7589371e-15,1.7587585e-15,1.75858e-15,1.7584013e-15,1.7582227e-15,1.7580441e-15,1.7578655e-15,1.7576869e-15,1.7575081e-15,1.7573295e-15,1.7571508e-15,1.7569721e-15,1.7567933e-15,1.7566145e-15,1.7564358e-15,1.756257e-15,1.7560781e-15,1.7558993e-15,1.7557205e-15,1.7555415e-15,1.7553627e-15,1.7551838e-15,1.7550048e-15,1.7548259e-15,1.754647e-15,1.7544679e-15,1.754289e-15,1.7541099e-15,1.7539309e-15,1.7537519e-15,1.7535728e-15,1.7533937e-15,1.7532146e-15,1.7530355e-15,1.7528563e-15,1.7526772e-15,1.7524979e-15,1.7523188e-15,1.7521395e-15,1.7519603e-15,1.751781e-15,1.7516018e-15,1.7514225e-15,1.7512432e-15,1.7510638e-15,1.7508844e-15,1.7507051e-15,1.7505257e-15,1.7503464e-15,1.7501669e-15,1.7499874e-15,1.749808e-15,1.7496285e-15,1.749449e-15,1.7492696e-15,1.74909e-15,1.7489104e-15,1.7487309e-15,1.7485513e-15,1.7483717e-15,1.748192e-15,1.7480125e-15,1.7478328e-15,1.7476531e-15,1.7474733e-15,1.7472937e-15,1.747114e-15,1.7469342e-15,1.7467544e-15,1.7465746e-15,1.7463948e-15,1.746215e-15,1.7460352e-15,1.7458553e-15,1.7456754e-15,1.7454955e-15,1.7453155e-15,1.7451356e-15,1.7449556e-15,1.7447757e-15,1.7445958e-15,1.7444157e-15,1.7442357e-15,1.7440556e-15,1.7438756e-15,1.7436955e-15,1.7435154e-15,1.7433353e-15,1.7431551e-15,1.742975e-15,1.7427947e-15,1.7426145e-15,1.7424343e-15,1.7422541e-15,1.7420738e-15,1.7418935e-15,1.7417133e-15,1.741533e-15,1.7413526e-15,1.7411723e-15,1.7409919e-15,1.7408115e-15,1.7406311e-15,1.7404507e-15,1.7402703e-15,1.7400897e-15,1.7399093e-15,1.7397288e-15,1.7395483e-15,1.7393678e-15,1.7391872e-15,1.7390066e-15,1.7388261e-15,1.7386455e-15,1.7384648e-15,1.7382842e-15,1.7381035e-15,1.7379228e-15,1.7377421e-15,1.7375614e-15,1.7373806e-15,1.7371999e-15,1.737019e-15,1.7368383e-15,1.7366575e-15,1.7364766e-15,1.7362958e-15,1.7361149e-15,1.735934e-15,1.7357532e-15,1.7355722e-15,1.7353913e-15,1.7352103e-15,1.7350293e-15,1.7348483e-15,1.7346673e-15,1.7344862e-15,1.7343051e-15,1.7341241e-15,1.7339429e-15,1.7337619e-15,1.7335807e-15,1.7333996e-15,1.7332184e-15,1.7330371e-15,1.732856e-15,1.7326747e-15,1.7324934e-15,1.7323122e-15,1.7321309e-15,1.7319497e-15,1.7317683e-15,1.7315869e-15,1.7314055e-15,1.7312242e-15,1.7310428e-15,1.7308613e-15,1.73068e-15,1.7304985e-15,1.730317e-15,1.7301355e-15,1.7299539e-15,1.7297725e-15,1.7295909e-15,1.7294093e-15,1.7292277e-15,1.7290461e-15,1.7288644e-15,1.7286828e-15,1.7285012e-15,1.7283195e-15,1.7281377e-15,1.727956e-15,1.7277743e-15,1.7275925e-15,1.7274107e-15,1.7272289e-15,1.7270471e-15,1.7268652e-15,1.7266833e-15,1.7265015e-15,1.7263196e-15,1.7261376e-15,1.7259557e-15,1.7257738e-15,1.7255918e-15,1.7254098e-15,1.7252278e-15,1.7250458e-15,1.7248637e-15,1.7246817e-15,1.7244996e-15,1.7243175e-15,1.7241354e-15,1.7239531e-15,1.723771e-15,1.7235888e-15,1.7234066e-15,1.7232244e-15,1.7230422e-15,1.7228598e-15,1.7226776e-15,1.7224953e-15,1.722313e-15,1.7221306e-15,1.7219482e-15,1.7217659e-15,1.7215835e-15,1.721401e-15,1.7212186e-15,1.7210362e-15,1.7208536e-15,1.7206712e-15,1.7204887e-15,1.7203061e-15,1.7201236e-15,1.719941e-15,1.7197584e-15,1.7195758e-15,1.7193931e-15,1.7192105e-15,1.7190278e-15,1.7188451e-15,1.7186625e-15,1.7184797e-15,1.718297e-15,1.7181142e-15,1.7179314e-15,1.7177486e-15,1.7175658e-15,1.7173829e-15,1.7172001e-15,1.7170172e-15,1.7168342e-15,1.7166513e-15,1.7164684e-15,1.7162855e-15,1.7161024e-15,1.7159195e-15,1.7157364e-15,1.7155534e-15,1.7153704e-15,1.7151872e-15,1.7150041e-15,1.7148211e-15,1.7146379e-15,1.7144547e-15,1.7142715e-15,1.7140884e-15,1.7139051e-15,1.7137219e-15,1.7135387e-15,1.7133554e-15,1.7131721e-15,1.7129887e-15,1.7128054e-15,1.7126221e-15,1.7124387e-15,1.7122553e-15,1.7120719e-15,1.7118884e-15,1.711705e-15,1.7115215e-15,1.7113381e-15,1.7111545e-15,1.710971e-15,1.7107874e-15,1.7106039e-15,1.7104203e-15,1.7102367e-15,1.710053e-15,1.7098694e-15,1.7096857e-15,1.709502e-15,1.7093183e-15,1.7091346e-15,1.7089508e-15,1.7087671e-15,1.7085833e-15,1.7083995e-15,1.7082157e-15,1.7080318e-15,1.707848e-15,1.7076641e-15,1.7074801e-15,1.7072962e-15,1.7071123e-15,1.7069283e-15,1.7067443e-15,1.7065603e-15,1.7063762e-15,1.7061922e-15,1.7060082e-15,1.7058241e-15,1.70564e-15,1.7054558e-15,1.7052717e-15,1.7050876e-15,1.7049034e-15,1.7047191e-15,1.7045349e-15,1.7043507e-15,1.7041664e-15,1.7039821e-15,1.7037979e-15,1.7036135e-15,1.7034292e-15,1.7032448e-15,1.7030604e-15,1.702876e-15,1.7026915e-15,1.7025071e-15,1.7023227e-15,1.7021382e-15,1.7019537e-15,1.7017691e-15,1.7015847e-15,1.7014e-15,1.7012155e-15,1.7010308e-15,1.7008463e-15,1.7006616e-15,1.700477e-15,1.7002922e-15,1.7001076e-15,1.6999228e-15,1.699738e-15,1.6995533e-15,1.6993685e-15,1.6991838e-15,1.6989989e-15,1.698814e-15,1.6986292e-15,1.6984443e-15,1.6982594e-15,1.6980745e-15,1.6978895e-15,1.6977045e-15,1.6975196e-15,1.6973346e-15,1.6971495e-15,1.6969645e-15,1.6967795e-15,1.6965944e-15,1.6964092e-15,1.6962241e-15,1.696039e-15,1.6958539e-15,1.6956686e-15,1.6954834e-15,1.6952982e-15,1.6951129e-15,1.6949276e-15,1.6947424e-15,1.6945571e-15,1.6943718e-15,1.6941864e-15,1.694001e-15,1.6938156e-15,1.6936302e-15,1.6934448e-15,1.6932593e-15,1.6930739e-15,1.6928884e-15,1.6927029e-15,1.6925173e-15,1.6923318e-15,1.6921462e-15,1.6919606e-15,1.691775e-15,1.6915894e-15,1.6914038e-15,1.6912181e-15,1.6910324e-15,1.6908466e-15,1.6906609e-15,1.6904751e-15,1.6902894e-15,1.6901036e-15,1.6899178e-15,1.6897319e-15,1.689546e-15,1.6893602e-15,1.6891743e-15,1.6889884e-15,1.6888024e-15,1.6886165e-15,1.6884305e-15,1.6882444e-15,1.6880584e-15,1.6878724e-15,1.6876864e-15,1.6875002e-15,1.6873142e-15,1.6871281e-15,1.6869419e-15,1.6867557e-15,1.6865695e-15,1.6863833e-15,1.6861971e-15,1.6860108e-15,1.6858246e-15,1.6856383e-15,1.685452e-15,1.6852656e-15,1.6850793e-15,1.684893e-15,1.6847065e-15,1.6845202e-15,1.6843337e-15,1.6841472e-15,1.6839608e-15,1.6837742e-15,1.6835878e-15,1.6834012e-15,1.6832147e-15,1.6830281e-15,1.6828414e-15,1.6826549e-15,1.6824682e-15,1.6822815e-15,1.6820949e-15,1.6819082e-15,1.6817214e-15,1.6815347e-15,1.6813479e-15,1.6811611e-15,1.6809744e-15,1.6807875e-15,1.6806007e-15,1.6804138e-15,1.680227e-15,1.68004e-15,1.6798531e-15,1.6796661e-15,1.6794791e-15,1.6792922e-15,1.6791052e-15,1.6789181e-15,1.6787311e-15,1.678544e-15,1.6783569e-15,1.6781697e-15,1.6779826e-15,1.6777955e-15,1.6776083e-15,1.6774211e-15,1.6772339e-15,1.6770467e-15,1.6768594e-15,1.6766721e-15,1.6764848e-15,1.6762975e-15,1.6761101e-15,1.6759228e-15,1.6757354e-15,1.675548e-15,1.6753604e-15,1.675173e-15,1.6749855e-15,1.6747981e-15,1.6746106e-15,1.674423e-15,1.6742355e-15,1.6740479e-15,1.6738602e-15,1.6736726e-15,1.673485e-15,1.6732974e-15,1.6731097e-15,1.6729219e-15,1.6727342e-15,1.6725465e-15,1.6723588e-15,1.6721709e-15,1.6719831e-15,1.6717953e-15,1.6716075e-15,1.6714195e-15,1.6712317e-15,1.6710438e-15,1.6708558e-15,1.6706679e-15,1.6704798e-15,1.6702919e-15,1.6701039e-15,1.6699158e-15,1.6697278e-15,1.6695396e-15,1.6693516e-15,1.6691634e-15,1.6689753e-15,1.6687871e-15,1.6685989e-15,1.6684107e-15,1.6682225e-15,1.6680342e-15,1.667846e-15,1.6676576e-15,1.6674694e-15,1.667281e-15,1.6670927e-15,1.6669042e-15,1.6667158e-15,1.6665274e-15,1.666339e-15,1.6661505e-15,1.665962e-15,1.6657735e-15,1.6655849e-15,1.6653964e-15,1.6652078e-15,1.6650192e-15,1.6648307e-15,1.664642e-15,1.6644533e-15,1.6642646e-15,1.664076e-15,1.6638872e-15,1.6636985e-15,1.6635097e-15,1.6633209e-15,1.6631321e-15,1.6629433e-15,1.6627545e-15,1.6625656e-15,1.6623767e-15,1.6621877e-15,1.6619988e-15,1.6618098e-15,1.6616208e-15,1.6614318e-15,1.6612428e-15,1.6610537e-15,1.6608647e-15,1.6606756e-15,1.6604865e-15,1.6602973e-15,1.6601082e-15,1.659919e-15,1.6597298e-15,1.6595406e-15,1.6593514e-15,1.6591621e-15,1.6589729e-15,1.6587836e-15,1.6585943e-15,1.6584049e-15,1.6582155e-15,1.6580261e-15,1.6578367e-15,1.6576473e-15,1.6574578e-15,1.6572683e-15,1.6570788e-15,1.6568893e-15,1.6566998e-15,1.6565103e-15,1.6563206e-15,1.656131e-15,1.6559414e-15,1.6557517e-15,1.6555621e-15,1.6553724e-15,1.6551826e-15,1.6549929e-15,1.6548032e-15,1.6546133e-15,1.6544236e-15,1.6542337e-15,1.6540439e-15,1.6538541e-15,1.6536641e-15,1.6534742e-15,1.6532843e-15,1.6530943e-15,1.6529043e-15,1.6527144e-15,1.6525243e-15,1.6523343e-15,1.6521442e-15,1.6519542e-15,1.651764e-15,1.6515739e-15,1.6513837e-15,1.6511935e-15,1.6510034e-15,1.6508131e-15,1.650623e-15,1.6504327e-15,1.6502423e-15,1.650052e-15,1.6498617e-15,1.6496714e-15,1.649481e-15,1.6492906e-15,1.6491002e-15,1.6489097e-15,1.6487192e-15,1.6485288e-15,1.6483383e-15,1.6481478e-15,1.6479572e-15,1.6477667e-15,1.6475761e-15,1.6473855e-15,1.6471948e-15,1.6470041e-15,1.6468135e-15,1.6466227e-15,1.646432e-15,1.6462412e-15,1.6460506e-15,1.6458598e-15,1.645669e-15,1.6454781e-15,1.6452873e-15,1.6450964e-15,1.6449055e-15,1.6447146e-15,1.6445236e-15,1.6443326e-15,1.6441417e-15,1.6439507e-15,1.6437595e-15,1.6435685e-15,1.6433774e-15,1.6431863e-15,1.6429952e-15,1.6428041e-15,1.6426129e-15,1.6424217e-15,1.6422305e-15,1.6420392e-15,1.641848e-15,1.6416567e-15,1.6414655e-15,1.6412741e-15,1.6410827e-15,1.6408914e-15,1.6407e-15,1.6405085e-15,1.6403171e-15,1.6401257e-15,1.6399342e-15,1.6397427e-15,1.6395512e-15,1.6393596e-15,1.6391681e-15,1.6389765e-15,1.6387848e-15,1.6385932e-15,1.6384015e-15,1.6382099e-15,1.6380181e-15,1.6378264e-15,1.6376347e-15,1.6374429e-15,1.6372512e-15,1.6370593e-15,1.6368675e-15,1.6366756e-15,1.6364837e-15,1.6362918e-15,1.6360999e-15,1.635908e-15,1.6357159e-15,1.635524e-15,1.635332e-15,1.6351399e-15,1.6349479e-15,1.6347558e-15,1.6345636e-15,1.6343716e-15,1.6341794e-15,1.6339872e-15,1.633795e-15,1.6336028e-15,1.6334105e-15,1.6332182e-15,1.633026e-15,1.6328337e-15,1.6326413e-15,1.6324489e-15,1.6322565e-15,1.6320641e-15,1.6318718e-15,1.6316793e-15,1.6314868e-15,1.6312943e-15,1.6311018e-15,1.6309093e-15,1.6307167e-15,1.6305241e-15,1.6303315e-15,1.6301388e-15,1.6299462e-15,1.6297535e-15,1.6295608e-15,1.6293681e-15,1.6291753e-15,1.6289826e-15,1.6287898e-15,1.628597e-15,1.6284042e-15,1.6282113e-15,1.6280184e-15,1.6278255e-15,1.6276326e-15,1.6274397e-15,1.6272466e-15,1.6270537e-15,1.6268607e-15,1.6266676e-15,1.6264746e-15,1.6262814e-15,1.6260883e-15,1.6258952e-15,1.6257021e-15,1.6255088e-15,1.6253157e-15,1.6251225e-15,1.6249293e-15,1.6247359e-15,1.6245427e-15,1.6243494e-15,1.624156e-15,1.6239626e-15,1.6237693e-15,1.6235758e-15,1.6233824e-15,1.6231889e-15,1.6229955e-15,1.6228019e-15,1.6226084e-15,1.6224148e-15,1.6222213e-15,1.6220278e-15,1.6218341e-15,1.6216404e-15,1.6214468e-15,1.6212531e-15,1.6210594e-15,1.6208656e-15,1.620672e-15,1.6204781e-15,1.6202843e-15,1.6200905e-15,1.6198966e-15,1.6197028e-15,1.6195089e-15,1.619315e-15,1.6191211e-15,1.6189271e-15,1.6187331e-15,1.618539e-15,1.6183451e-15,1.618151e-15,1.6179569e-15,1.6177628e-15,1.6175687e-15,1.6173745e-15,1.6171803e-15,1.6169861e-15,1.6167919e-15,1.6165976e-15,1.6164035e-15,1.6162092e-15,1.6160148e-15,1.6158205e-15,1.6156261e-15,1.6154317e-15,1.6152373e-15,1.6150429e-15,1.6148484e-15,1.6146539e-15,1.6144594e-15,1.6142649e-15,1.6140704e-15,1.6138758e-15,1.6136812e-15,1.6134866e-15,1.613292e-15,1.6130973e-15,1.6129026e-15,1.6127079e-15,1.6125131e-15,1.6123184e-15,1.6121236e-15,1.6119288e-15,1.611734e-15,1.6115392e-15,1.6113442e-15,1.6111493e-15,1.6109544e-15,1.6107595e-15,1.6105645e-15,1.6103695e-15,1.6101745e-15,1.6099795e-15,1.6097843e-15,1.6095893e-15,1.6093942e-15,1.609199e-15,1.6090039e-15,1.6088086e-15,1.6086135e-15,1.6084183e-15,1.608223e-15,1.6080277e-15,1.6078324e-15,1.6076371e-15,1.6074417e-15,1.6072464e-15,1.6070509e-15,1.6068555e-15,1.60666e-15,1.6064646e-15,1.6062691e-15,1.6060736e-15,1.605878e-15,1.6056825e-15,1.6054869e-15,1.6052913e-15,1.6050957e-15,1.6049e-15,1.6047043e-15,1.6045086e-15,1.6043129e-15,1.6041171e-15,1.6039214e-15,1.6037255e-15,1.6035297e-15,1.6033338e-15,1.603138e-15,1.6029421e-15,1.6027462e-15,1.6025502e-15,1.6023542e-15,1.6021583e-15,1.6019623e-15,1.6017662e-15,1.6015701e-15,1.601374e-15,1.6011779e-15,1.6009817e-15,1.6007857e-15,1.6005895e-15,1.6003933e-15,1.600197e-15,1.6000008e-15,1.5998045e-15,1.5996082e-15,1.5994118e-15,1.5992155e-15,1.5990191e-15,1.5988227e-15,1.5986262e-15,1.5984298e-15,1.5982333e-15,1.5980368e-15,1.5978403e-15,1.5976438e-15,1.5974472e-15,1.5972506e-15,1.5970539e-15,1.5968573e-15,1.5966606e-15,1.596464e-15,1.5962673e-15,1.5960705e-15,1.5958737e-15,1.5956769e-15,1.5954802e-15,1.5952833e-15,1.5950864e-15,1.5948896e-15,1.5946926e-15,1.5944957e-15,1.5942988e-15,1.5941017e-15,1.5939047e-15,1.5937077e-15,1.5935106e-15,1.5933135e-15,1.5931164e-15,1.5929193e-15,1.5927221e-15,1.592525e-15,1.5923278e-15,1.5921306e-15,1.5919333e-15,1.5917361e-15,1.5915387e-15,1.5913413e-15,1.591144e-15,1.5909466e-15,1.5907493e-15,1.5905518e-15,1.5903543e-15,1.5901569e-15,1.5899594e-15,1.5897618e-15,1.5895644e-15,1.5893668e-15,1.5891691e-15,1.5889716e-15,1.5887739e-15,1.5885762e-15,1.5883785e-15,1.5881808e-15,1.5879831e-15,1.5877853e-15,1.5875875e-15,1.5873897e-15,1.5871918e-15,1.5869939e-15,1.5867961e-15,1.5865982e-15,1.5864003e-15,1.5862023e-15,1.5860043e-15,1.5858063e-15,1.5856082e-15,1.5854102e-15,1.5852121e-15,1.585014e-15,1.5848158e-15,1.5846177e-15,1.5844195e-15,1.5842213e-15,1.584023e-15,1.5838248e-15,1.5836265e-15,1.5834281e-15,1.5832298e-15,1.5830314e-15,1.5828331e-15,1.5826347e-15,1.5824362e-15,1.5822377e-15,1.5820392e-15,1.5818407e-15,1.5816422e-15,1.5814437e-15,1.581245e-15,1.5810465e-15,1.5808478e-15,1.5806491e-15,1.5804505e-15,1.5802518e-15,1.580053e-15,1.5798543e-15,1.5796555e-15,1.5794566e-15,1.5792578e-15,1.5790589e-15,1.5788601e-15,1.5786611e-15,1.5784622e-15,1.5782633e-15,1.5780643e-15,1.5778653e-15,1.5776662e-15,1.5774672e-15,1.5772681e-15,1.5770689e-15,1.5768698e-15,1.5766706e-15,1.5764715e-15,1.5762723e-15,1.576073e-15,1.5758738e-15,1.5756745e-15,1.5754751e-15,1.5752759e-15,1.5750765e-15,1.574877e-15,1.5746777e-15,1.5744782e-15,1.5742787e-15,1.5740792e-15,1.5738798e-15,1.5736802e-15,1.5734806e-15,1.573281e-15,1.5730814e-15,1.5728817e-15,1.5726822e-15,1.5724825e-15,1.5722827e-15,1.572083e-15,1.5718832e-15,1.5716834e-15,1.5714836e-15,1.5712837e-15,1.5710839e-15,1.570884e-15,1.570684e-15,1.5704841e-15,1.5702841e-15,1.5700841e-15,1.5698841e-15,1.5696841e-15,1.569484e-15,1.5692839e-15,1.5690837e-15,1.5688836e-15,1.5686834e-15,1.5684832e-15,1.568283e-15,1.5680828e-15,1.5678824e-15,1.5676821e-15,1.5674818e-15,1.5672815e-15,1.567081e-15,1.5668807e-15,1.5666803e-15,1.5664798e-15,1.5662793e-15,1.5660788e-15,1.5658783e-15,1.5656777e-15,1.5654771e-15,1.5652765e-15,1.5650759e-15,1.5648752e-15,1.5646745e-15,1.5644738e-15,1.564273e-15,1.5640723e-15,1.5638715e-15,1.5636707e-15,1.5634698e-15,1.563269e-15,1.5630681e-15,1.5628672e-15,1.5626662e-15,1.5624652e-15,1.5622643e-15,1.5620632e-15,1.5618622e-15,1.5616611e-15,1.56146e-15,1.5612589e-15,1.5610577e-15,1.5608565e-15,1.5606553e-15,1.5604541e-15,1.5602528e-15,1.5600515e-15,1.5598502e-15,1.5596489e-15,1.5594476e-15,1.5592461e-15,1.5590447e-15,1.5588433e-15,1.5586418e-15,1.5584404e-15,1.5582389e-15,1.5580373e-15,1.5578357e-15,1.5576341e-15,1.5574325e-15,1.5572308e-15,1.5570292e-15,1.5568275e-15,1.5566257e-15,1.556424e-15,1.5562222e-15,1.5560204e-15,1.5558186e-15,1.5556167e-15,1.5554149e-15,1.555213e-15,1.5550109e-15,1.554809e-15,1.554607e-15,1.554405e-15,1.554203e-15,1.554001e-15,1.5537988e-15,1.5535967e-15,1.5533946e-15,1.5531924e-15,1.5529901e-15,1.5527879e-15,1.5525857e-15,1.5523834e-15,1.5521811e-15,1.5519788e-15,1.5517764e-15,1.551574e-15,1.5513717e-15,1.5511692e-15,1.5509668e-15,1.5507642e-15,1.5505617e-15,1.5503591e-15,1.5501566e-15,1.549954e-15,1.5497514e-15,1.5495487e-15,1.5493461e-15,1.5491433e-15,1.5489407e-15,1.5487379e-15,1.5485352e-15,1.5483323e-15,1.5481294e-15,1.5479266e-15,1.5477237e-15,1.5475208e-15,1.5473179e-15,1.5471149e-15,1.5469119e-15,1.5467088e-15,1.5465059e-15,1.5463028e-15,1.5460996e-15,1.5458965e-15,1.5456934e-15,1.5454902e-15,1.545287e-15,1.5450838e-15,1.5448805e-15,1.5446772e-15,1.5444739e-15,1.5442706e-15,1.5440672e-15,1.5438638e-15,1.5436604e-15,1.543457e-15,1.5432535e-15,1.54305e-15,1.5428464e-15,1.5426429e-15,1.5424393e-15,1.5422357e-15,1.5420321e-15,1.5418283e-15,1.5416247e-15,1.5414209e-15,1.5412172e-15,1.5410135e-15,1.5408097e-15,1.5406059e-15,1.5404019e-15,1.5401981e-15,1.5399942e-15,1.5397903e-15,1.5395864e-15,1.5393823e-15,1.5391783e-15,1.5389743e-15,1.5387702e-15,1.5385661e-15,1.538362e-15,1.5381578e-15,1.5379537e-15,1.5377495e-15,1.5375452e-15,1.537341e-15,1.5371367e-15,1.5369324e-15,1.536728e-15,1.5365237e-15,1.5363192e-15,1.5361149e-15,1.5359104e-15,1.535706e-15,1.5355014e-15,1.5352969e-15,1.5350923e-15,1.5348878e-15,1.5346832e-15,1.5344785e-15,1.5342739e-15,1.5340692e-15,1.5338644e-15,1.5336597e-15,1.5334549e-15,1.5332501e-15,1.5330452e-15,1.5328405e-15,1.5326355e-15,1.5324306e-15,1.5322257e-15,1.5320208e-15,1.5318158e-15,1.5316107e-15,1.5314057e-15,1.5312006e-15,1.5309955e-15,1.5307903e-15,1.5305851e-15,1.5303801e-15,1.5301748e-15,1.5299696e-15,1.5297643e-15,1.529559e-15,1.5293537e-15,1.5291484e-15,1.528943e-15,1.5287376e-15,1.5285322e-15,1.5283266e-15,1.5281211e-15,1.5279156e-15,1.5277101e-15,1.5275045e-15,1.5272989e-15,1.5270933e-15,1.5268876e-15,1.5266819e-15,1.5264762e-15,1.5262705e-15,1.5260647e-15,1.5258589e-15,1.5256531e-15,1.5254473e-15,1.5252414e-15,1.5250355e-15,1.5248296e-15,1.5246236e-15,1.5244176e-15,1.5242115e-15,1.5240055e-15,1.5237995e-15,1.5235934e-15,1.5233873e-15,1.5231811e-15,1.5229749e-15,1.5227687e-15,1.5225625e-15,1.5223562e-15,1.5221499e-15,1.5219436e-15,1.5217373e-15,1.5215308e-15,1.5213244e-15,1.521118e-15,1.5209115e-15,1.520705e-15,1.5204986e-15,1.520292e-15,1.5200854e-15,1.5198788e-15,1.5196722e-15,1.5194655e-15,1.5192588e-15,1.519052e-15,1.5188454e-15,1.5186386e-15,1.5184318e-15,1.5182249e-15,1.5180181e-15,1.5178113e-15,1.5176043e-15,1.5173974e-15,1.5171904e-15,1.5169834e-15,1.5167764e-15,1.5165693e-15,1.5163622e-15,1.5161551e-15,1.515948e-15,1.5157408e-15,1.5155336e-15,1.5153264e-15,1.5151192e-15,1.5149119e-15,1.5147046e-15,1.5144972e-15,1.5142898e-15,1.5140824e-15,1.513875e-15,1.5136676e-15,1.51346e-15,1.5132526e-15,1.513045e-15,1.5128375e-15,1.5126298e-15,1.5124222e-15,1.5122146e-15,1.512007e-15,1.5117992e-15,1.5115915e-15,1.5113838e-15,1.5111759e-15,1.5109681e-15,1.5107602e-15,1.5105524e-15,1.5103444e-15,1.5101365e-15,1.5099286e-15,1.5097206e-15,1.5095126e-15,1.5093045e-15,1.5090965e-15,1.5088883e-15,1.5086802e-15,1.508472e-15,1.5082638e-15,1.5080557e-15,1.5078474e-15,1.507639e-15,1.5074308e-15,1.5072224e-15,1.507014e-15,1.5068057e-15,1.5065973e-15,1.5063888e-15,1.5061803e-15,1.5059717e-15,1.5057633e-15,1.5055547e-15,1.5053461e-15,1.5051374e-15,1.5049288e-15,1.5047201e-15,1.5045114e-15,1.5043027e-15,1.5040939e-15,1.5038851e-15,1.5036763e-15,1.5034674e-15,1.5032585e-15,1.5030496e-15,1.5028407e-15,1.5026317e-15,1.5024227e-15,1.5022137e-15,1.5020046e-15,1.5017955e-15,1.5015863e-15,1.5013772e-15,1.501168e-15,1.5009588e-15,1.5007496e-15,1.5005404e-15,1.500331e-15,1.5001217e-15,1.4999124e-15,1.499703e-15,1.4994935e-15,1.4992841e-15,1.4990747e-15,1.4988651e-15,1.4986556e-15,1.4984461e-15,1.4982364e-15,1.4980269e-15,1.4978173e-15,1.4976075e-15,1.4973979e-15,1.4971881e-15,1.4969784e-15,1.4967685e-15,1.4965588e-15,1.4963489e-15,1.496139e-15,1.4959291e-15,1.4957192e-15,1.4955092e-15,1.4952991e-15,1.4950892e-15,1.4948791e-15,1.494669e-15,1.4944589e-15,1.4942487e-15,1.4940385e-15,1.4938284e-15,1.4936181e-15,1.4934078e-15,1.4931975e-15,1.4929873e-15,1.4927769e-15,1.4925665e-15,1.4923561e-15,1.4921456e-15,1.4919351e-15,1.4917247e-15,1.4915142e-15,1.4913036e-15,1.491093e-15,1.4908824e-15,1.4906717e-15,1.490461e-15,1.4902503e-15,1.4900396e-15,1.4898288e-15,1.489618e-15,1.4894072e-15,1.4891964e-15,1.4889855e-15,1.4887745e-15,1.4885635e-15,1.4883526e-15,1.4881416e-15,1.4879306e-15,1.4877195e-15,1.4875083e-15,1.4872972e-15,1.4870861e-15,1.4868749e-15,1.4866636e-15,1.4864524e-15,1.4862412e-15,1.4860298e-15,1.4858185e-15,1.4856072e-15,1.4853957e-15,1.4851843e-15,1.4849728e-15,1.4847613e-15,1.4845499e-15,1.4843383e-15,1.4841267e-15,1.4839151e-15,1.4837035e-15,1.4834918e-15,1.48328e-15,1.4830683e-15,1.4828565e-15,1.4826448e-15,1.482433e-15,1.4822212e-15,1.4820092e-15,1.4817973e-15,1.4815854e-15,1.4813734e-15,1.4811614e-15,1.4809493e-15,1.4807373e-15,1.4805252e-15,1.4803131e-15,1.4801009e-15,1.4798887e-15,1.4796766e-15,1.4794643e-15,1.479252e-15,1.4790397e-15,1.4788274e-15,1.478615e-15,1.4784026e-15,1.4781901e-15,1.4779777e-15,1.4777652e-15,1.4775527e-15,1.4773401e-15,1.4771275e-15,1.4769149e-15,1.4767023e-15,1.4764896e-15,1.4762769e-15,1.4760642e-15,1.4758515e-15,1.4756386e-15,1.4754258e-15,1.4752129e-15,1.4750001e-15,1.4747872e-15,1.4745741e-15,1.4743612e-15,1.4741482e-15,1.4739352e-15,1.473722e-15,1.473509e-15,1.4732959e-15,1.4730826e-15,1.4728695e-15,1.4726562e-15,1.472443e-15,1.4722297e-15,1.4720164e-15,1.4718031e-15,1.4715896e-15,1.4713763e-15,1.4711628e-15,1.4709493e-15,1.4707358e-15,1.4705223e-15,1.4703087e-15,1.4700951e-15,1.4698815e-15,1.4696678e-15,1.4694541e-15,1.4692404e-15,1.4690266e-15,1.4688128e-15,1.4685991e-15,1.4683852e-15,1.4681713e-15,1.4679574e-15,1.4677435e-15,1.4675295e-15,1.4673155e-15,1.4671014e-15,1.4668874e-15,1.4666733e-15,1.4664591e-15,1.466245e-15,1.4660308e-15,1.4658166e-15,1.4656024e-15,1.4653881e-15,1.4651738e-15,1.4649594e-15,1.464745e-15,1.4645306e-15,1.4643161e-15,1.4641016e-15,1.4638871e-15,1.4636726e-15,1.4634581e-15,1.4632435e-15,1.4630289e-15,1.4628141e-15,1.4625995e-15,1.4623848e-15,1.46217e-15,1.4619553e-15,1.4617404e-15,1.4615255e-15,1.4613107e-15,1.4610957e-15,1.4608808e-15,1.4606659e-15,1.4604508e-15,1.4602358e-15,1.4600207e-15,1.4598056e-15,1.4595904e-15,1.4593753e-15,1.45916e-15,1.4589449e-15,1.4587296e-15,1.4585143e-15,1.4582989e-15,1.4580836e-15,1.4578682e-15,1.4576528e-15,1.4574374e-15,1.4572218e-15,1.4570064e-15,1.4567908e-15,1.4565752e-15,1.4563597e-15,1.456144e-15,1.4559283e-15,1.4557126e-15,1.4554968e-15,1.4552811e-15,1.4550653e-15,1.4548494e-15,1.4546335e-15,1.4544176e-15,1.4542017e-15,1.4539857e-15,1.4537697e-15,1.4535537e-15,1.4533376e-15,1.4531215e-15,1.4529055e-15,1.4526892e-15,1.452473e-15,1.4522568e-15,1.4520406e-15,1.4518243e-15,1.451608e-15,1.4513917e-15,1.4511753e-15,1.4509589e-15,1.4507424e-15,1.4505259e-15,1.4503094e-15,1.4500929e-15,1.4498762e-15,1.4496597e-15,1.4494431e-15,1.4492264e-15,1.4490096e-15,1.4487929e-15,1.4485762e-15,1.4483593e-15,1.4481425e-15,1.4479256e-15,1.4477087e-15,1.4474919e-15,1.4472748e-15,1.4470579e-15,1.4468408e-15,1.4466237e-15,1.4464067e-15,1.4461895e-15,1.4459724e-15,1.4457551e-15,1.445538e-15,1.4453207e-15,1.4451034e-15,1.4448861e-15,1.4446687e-15,1.4444513e-15,1.4442338e-15,1.4440165e-15,1.4437989e-15,1.4435814e-15,1.4433638e-15,1.4431463e-15,1.4429287e-15,1.442711e-15,1.4424933e-15,1.4422756e-15,1.4420578e-15,1.44184e-15,1.4416222e-15,1.4414044e-15,1.4411865e-15,1.4409686e-15,1.4407506e-15,1.4405326e-15,1.4403146e-15,1.4400966e-15,1.4398785e-15,1.4396604e-15,1.4394423e-15,1.4392241e-15,1.4390059e-15,1.4387876e-15,1.4385693e-15,1.438351e-15,1.4381327e-15,1.4379143e-15,1.4376959e-15,1.4374775e-15,1.437259e-15,1.4370404e-15,1.4368219e-15,1.4366033e-15,1.4363847e-15,1.4361661e-15,1.4359474e-15,1.4357287e-15,1.4355099e-15,1.4352912e-15,1.4350723e-15,1.4348535e-15,1.4346346e-15,1.4344158e-15,1.4341968e-15,1.4339779e-15,1.4337588e-15,1.4335397e-15,1.4333207e-15,1.4331016e-15,1.4328824e-15,1.4326633e-15,1.432444e-15,1.4322248e-15,1.4320055e-15,1.4317862e-15,1.4315669e-15,1.4313475e-15,1.431128e-15,1.4309086e-15,1.4306892e-15,1.4304696e-15,1.4302501e-15,1.4300305e-15,1.4298109e-15,1.4295912e-15,1.4293715e-15,1.4291518e-15,1.4289321e-15,1.4287123e-15,1.4284925e-15,1.4282726e-15,1.4280528e-15,1.4278327e-15,1.4276128e-15,1.4273928e-15,1.4271728e-15,1.4269528e-15,1.4267327e-15,1.4265125e-15,1.4262924e-15,1.4260722e-15,1.425852e-15,1.4256317e-15,1.4254114e-15,1.4251911e-15,1.4249707e-15,1.4247504e-15,1.42453e-15,1.4243094e-15,1.424089e-15,1.4238684e-15,1.4236479e-15,1.4234272e-15,1.4232066e-15,1.4229859e-15,1.4227653e-15,1.4225445e-15,1.4223237e-15,1.4221029e-15,1.4218821e-15,1.4216612e-15,1.4214403e-15,1.4212193e-15,1.4209984e-15,1.4207774e-15,1.4205563e-15,1.4203352e-15,1.4201142e-15,1.419893e-15,1.4196718e-15,1.4194506e-15,1.4192293e-15,1.419008e-15,1.4187868e-15,1.4185654e-15,1.418344e-15,1.4181226e-15,1.4179011e-15,1.4176796e-15,1.4174581e-15,1.4172365e-15,1.4170149e-15,1.4167933e-15,1.4165715e-15,1.4163498e-15,1.4161281e-15,1.4159064e-15,1.4156846e-15,1.4154627e-15,1.4152409e-15,1.4150189e-15,1.414797e-15,1.414575e-15,1.414353e-15,1.4141309e-15,1.4139089e-15,1.4136868e-15,1.4134645e-15,1.4132424e-15,1.4130202e-15,1.4127979e-15,1.4125756e-15,1.4123533e-15,1.4121309e-15,1.4119085e-15,1.4116861e-15,1.4114636e-15,1.4112411e-15,1.4110185e-15,1.410796e-15,1.4105734e-15,1.4103507e-15,1.4101281e-15,1.4099053e-15,1.4096825e-15,1.4094598e-15,1.409237e-15,1.4090141e-15,1.4087912e-15,1.4085683e-15,1.4083454e-15,1.4081223e-15,1.4078993e-15,1.4076762e-15,1.4074531e-15,1.4072299e-15,1.4070069e-15,1.4067836e-15,1.4065604e-15,1.4063371e-15,1.4061138e-15,1.4058904e-15,1.4056671e-15,1.4054435e-15,1.4052201e-15,1.4049966e-15,1.4047731e-15,1.4045495e-15,1.4043259e-15,1.4041023e-15,1.4038787e-15,1.4036549e-15,1.4034312e-15,1.4032074e-15,1.4029836e-15,1.4027597e-15,1.4025359e-15,1.402312e-15,1.4020879e-15,1.401864e-15,1.4016399e-15,1.4014159e-15,1.4011918e-15,1.4009676e-15,1.4007435e-15,1.4005192e-15,1.4002951e-15,1.4000707e-15,1.3998465e-15,1.3996221e-15,1.3993976e-15,1.3991733e-15,1.3989488e-15,1.3987242e-15,1.3984998e-15,1.3982752e-15,1.3980506e-15,1.397826e-15,1.3976013e-15,1.3973765e-15,1.3971518e-15,1.3969271e-15,1.3967022e-15,1.3964774e-15,1.3962525e-15,1.3960275e-15,1.3958025e-15,1.3955775e-15,1.3953525e-15,1.3951274e-15,1.3949023e-15,1.3946772e-15,1.394452e-15,1.3942268e-15,1.3940015e-15,1.3937762e-15,1.3935509e-15,1.3933256e-15,1.3931002e-15,1.3928747e-15,1.3926492e-15,1.3924237e-15,1.3921982e-15,1.3919725e-15,1.3917469e-15,1.3915213e-15,1.3912956e-15,1.3910698e-15,1.3908441e-15,1.3906182e-15,1.3903924e-15,1.3901666e-15,1.3899406e-15,1.3897147e-15,1.3894887e-15,1.3892627e-15,1.3890366e-15,1.3888106e-15,1.3885844e-15,1.3883583e-15,1.388132e-15,1.3879057e-15,1.3876795e-15,1.3874532e-15,1.3872268e-15,1.3870005e-15,1.386774e-15,1.3865475e-15,1.386321e-15,1.3860945e-15,1.3858679e-15,1.3856413e-15,1.3854146e-15,1.3851879e-15,1.3849612e-15,1.3847344e-15,1.3845076e-15,1.3842809e-15,1.384054e-15,1.3838271e-15,1.3836e-15,1.383373e-15,1.383146e-15,1.382919e-15,1.3826919e-15,1.3824648e-15,1.3822376e-15,1.3820104e-15,1.3817832e-15,1.3815558e-15,1.3813285e-15,1.3811012e-15,1.3808738e-15,1.3806463e-15,1.3804188e-15,1.3801914e-15,1.3799638e-15,1.3797362e-15,1.3795086e-15,1.3792809e-15,1.3790532e-15,1.3788255e-15,1.3785977e-15,1.3783699e-15,1.3781421e-15,1.3779141e-15,1.3776863e-15,1.3774583e-15,1.3772303e-15,1.3770023e-15,1.3767741e-15,1.3765461e-15,1.3763179e-15,1.3760897e-15,1.3758615e-15,1.3756333e-15,1.3754049e-15,1.3751766e-15,1.3749482e-15,1.3747198e-15,1.3744914e-15,1.3742629e-15,1.3740343e-15,1.3738058e-15,1.3735771e-15,1.3733485e-15,1.3731198e-15,1.3728911e-15,1.3726623e-15,1.3724335e-15,1.3722047e-15,1.3719759e-15,1.371747e-15,1.371518e-15,1.371289e-15,1.3710599e-15,1.3708309e-15,1.3706018e-15,1.3703727e-15,1.3701434e-15,1.3699142e-15,1.369685e-15,1.3694558e-15,1.3692264e-15,1.368997e-15,1.3687677e-15,1.3685382e-15,1.3683087e-15,1.3680791e-15,1.3678496e-15,1.36762e-15,1.3673904e-15,1.3671606e-15,1.366931e-15,1.3667012e-15,1.3664715e-15,1.3662416e-15,1.3660117e-15,1.3657818e-15,1.3655519e-15,1.3653218e-15,1.3650919e-15,1.3648618e-15,1.3646317e-15,1.3644015e-15,1.3641713e-15,1.3639412e-15,1.3637109e-15,1.3634806e-15,1.3632502e-15,1.3630198e-15,1.3627894e-15,1.362559e-15,1.3623285e-15,1.3620979e-15,1.3618674e-15,1.3616368e-15,1.3614061e-15,1.3611754e-15,1.3609447e-15,1.360714e-15,1.3604831e-15,1.3602523e-15,1.3600214e-15,1.3597905e-15,1.3595596e-15,1.3593285e-15,1.3590975e-15,1.3588664e-15,1.3586352e-15,1.3584041e-15,1.358173e-15,1.3579417e-15,1.3577104e-15,1.3574791e-15,1.3572477e-15,1.3570163e-15,1.3567849e-15,1.3565534e-15,1.3563219e-15,1.3560903e-15,1.3558588e-15,1.3556271e-15,1.3553954e-15,1.3551638e-15,1.354932e-15,1.3547002e-15,1.3544684e-15,1.3542365e-15,1.3540046e-15,1.3537726e-15,1.3535407e-15,1.3533087e-15,1.3530766e-15,1.3528445e-15,1.3526123e-15,1.3523801e-15,1.3521479e-15,1.3519156e-15,1.3516833e-15,1.351451e-15,1.3512186e-15,1.3509861e-15,1.3507537e-15,1.3505212e-15,1.3502887e-15,1.3500561e-15,1.3498234e-15,1.3495907e-15,1.349358e-15,1.3491253e-15,1.3488926e-15,1.3486597e-15,1.3484268e-15,1.3481939e-15,1.3479609e-15,1.347728e-15,1.347495e-15,1.3472619e-15,1.3470288e-15,1.3467956e-15,1.3465624e-15,1.3463292e-15,1.3460959e-15,1.3458626e-15,1.3456293e-15,1.3453959e-15,1.3451624e-15,1.344929e-15,1.3446954e-15,1.3444618e-15,1.3442283e-15,1.3439946e-15,1.3437609e-15,1.3435272e-15,1.3432935e-15,1.3430597e-15,1.3428258e-15,1.342592e-15,1.342358e-15,1.3421241e-15,1.34189e-15,1.341656e-15,1.3414219e-15,1.3411878e-15,1.3409536e-15,1.3407194e-15,1.3404852e-15,1.3402509e-15,1.3400166e-15,1.3397822e-15,1.3395478e-15,1.3393134e-15,1.3390788e-15,1.3388443e-15,1.3386098e-15,1.3383752e-15,1.3381404e-15,1.3379058e-15,1.3376711e-15,1.3374362e-15,1.3372014e-15,1.3369665e-15,1.3367316e-15,1.3364967e-15,1.3362617e-15,1.3360267e-15,1.3357916e-15,1.3355564e-15,1.3353214e-15,1.3350861e-15,1.3348509e-15,1.3346156e-15,1.3343803e-15,1.334145e-15,1.3339095e-15,1.3336741e-15,1.3334387e-15,1.3332031e-15,1.3329675e-15,1.3327319e-15,1.3324962e-15,1.3322605e-15,1.3320248e-15,1.3317891e-15,1.3315533e-15,1.3313174e-15,1.3310815e-15,1.3308456e-15,1.3306096e-15,1.3303736e-15,1.3301374e-15,1.3299013e-15,1.3296651e-15,1.329429e-15,1.3291927e-15,1.3289565e-15,1.3287201e-15,1.3284837e-15,1.3282474e-15,1.328011e-15,1.3277744e-15,1.3275379e-15,1.3273014e-15,1.3270647e-15,1.3268281e-15,1.3265913e-15,1.3263546e-15,1.3261179e-15,1.325881e-15,1.3256441e-15,1.3254072e-15,1.3251702e-15,1.3249333e-15,1.3246962e-15,1.3244592e-15,1.324222e-15,1.3239848e-15,1.3237476e-15,1.3235104e-15,1.3232731e-15,1.3230357e-15,1.3227983e-15,1.322561e-15,1.3223235e-15,1.322086e-15,1.3218484e-15,1.3216108e-15,1.3213732e-15,1.3211355e-15,1.3208978e-15,1.32066e-15,1.3204222e-15,1.3201844e-15,1.3199465e-15,1.3197086e-15,1.3194705e-15,1.3192325e-15,1.3189945e-15,1.3187564e-15,1.3185183e-15,1.31828e-15,1.3180418e-15,1.3178035e-15,1.3175651e-15,1.3173268e-15,1.3170884e-15,1.3168499e-15,1.3166115e-15,1.316373e-15,1.3161344e-15,1.3158958e-15,1.3156571e-15,1.3154183e-15,1.3151796e-15,1.3149408e-15,1.314702e-15,1.3144631e-15,1.3142241e-15,1.3139852e-15,1.3137462e-15,1.3135071e-15,1.313268e-15,1.3130289e-15,1.3127897e-15,1.3125504e-15,1.3123111e-15,1.3120718e-15,1.3118324e-15,1.311593e-15,1.3113536e-15,1.3111141e-15,1.3108745e-15,1.310635e-15,1.3103953e-15,1.3101557e-15,1.309916e-15,1.3096762e-15,1.3094364e-15,1.3091966e-15,1.3089566e-15,1.3087167e-15,1.3084768e-15,1.3082368e-15,1.3079966e-15,1.3077566e-15,1.3075165e-15,1.3072762e-15,1.307036e-15,1.3067957e-15,1.3065554e-15,1.306315e-15,1.3060746e-15,1.3058342e-15,1.3055936e-15,1.305353e-15,1.3051125e-15,1.3048718e-15,1.3046312e-15,1.3043904e-15,1.3041496e-15,1.3039089e-15,1.303668e-15,1.303427e-15,1.3031861e-15,1.3029451e-15,1.3027041e-15,1.302463e-15,1.3022219e-15,1.3019807e-15,1.3017395e-15,1.3014982e-15,1.3012569e-15,1.3010155e-15,1.3007741e-15,1.3005327e-15,1.3002912e-15,1.3000497e-15,1.2998081e-15,1.2995664e-15,1.2993248e-15,1.2990831e-15,1.2988413e-15,1.2985996e-15,1.2983577e-15,1.2981158e-15,1.2978739e-15,1.2976318e-15,1.2973899e-15,1.2971477e-15,1.2969057e-15,1.2966634e-15,1.2964213e-15,1.296179e-15,1.2959367e-15,1.2956943e-15,1.295452e-15,1.2952095e-15,1.294967e-15,1.2947246e-15,1.294482e-15,1.2942393e-15,1.2939967e-15,1.293754e-15,1.2935112e-15,1.2932684e-15,1.2930255e-15,1.2927827e-15,1.2925398e-15,1.2922968e-15,1.2920538e-15,1.2918107e-15,1.2915676e-15,1.2913244e-15,1.2910812e-15,1.290838e-15,1.2905947e-15,1.2903513e-15,1.2901079e-15,1.2898644e-15,1.289621e-15,1.2893775e-15,1.2891339e-15,1.2888902e-15,1.2886466e-15,1.2884029e-15,1.2881591e-15,1.2879153e-15,1.2876715e-15,1.2874275e-15,1.2871836e-15,1.2869396e-15,1.2866956e-15,1.2864515e-15,1.2862074e-15,1.2859632e-15,1.2857189e-15,1.2854747e-15,1.2852303e-15,1.2849859e-15,1.2847416e-15,1.2844971e-15,1.2842526e-15,1.284008e-15,1.2837635e-15,1.2835188e-15,1.2832741e-15,1.2830294e-15,1.2827846e-15,1.2825398e-15,1.2822949e-15,1.28205e-15,1.281805e-15,1.28156e-15,1.2813149e-15,1.2810698e-15,1.2808247e-15,1.2805795e-15,1.2803342e-15,1.2800889e-15,1.2798436e-15,1.2795982e-15,1.2793527e-15,1.2791072e-15,1.2788617e-15,1.2786161e-15,1.2783705e-15,1.2781249e-15,1.2778791e-15,1.2776334e-15,1.2773875e-15,1.2771417e-15,1.2768957e-15,1.2766498e-15,1.2764038e-15,1.2761577e-15,1.2759117e-15,1.2756655e-15,1.2754192e-15,1.2751731e-15,1.2749268e-15,1.2746804e-15,1.274434e-15,1.2741875e-15,1.2739412e-15,1.2736946e-15,1.273448e-15,1.2732014e-15,1.2729547e-15,1.272708e-15,1.2724612e-15,1.2722144e-15,1.2719676e-15,1.2717207e-15,1.2714736e-15,1.2712266e-15,1.2709796e-15,1.2707325e-15,1.2704854e-15,1.2702381e-15,1.2699909e-15,1.2697436e-15,1.2694962e-15,1.2692488e-15,1.2690014e-15,1.2687539e-15,1.2685064e-15,1.2682588e-15,1.2680112e-15,1.2677635e-15,1.2675158e-15,1.267268e-15,1.2670202e-15,1.2667723e-15,1.2665243e-15,1.2662764e-15,1.2660284e-15,1.2657803e-15,1.2655321e-15,1.2652839e-15,1.2650358e-15,1.2647875e-15,1.2645392e-15,1.2642908e-15,1.2640424e-15,1.2637939e-15,1.2635454e-15,1.2632969e-15,1.2630483e-15,1.2627996e-15,1.2625509e-15,1.2623022e-15,1.2620534e-15,1.2618045e-15,1.2615556e-15,1.2613067e-15,1.2610577e-15,1.2608086e-15,1.2605595e-15,1.2603104e-15,1.2600611e-15,1.2598119e-15,1.2595627e-15,1.2593133e-15,1.2590639e-15,1.2588144e-15,1.258565e-15,1.2583154e-15,1.2580658e-15,1.2578162e-15,1.2575665e-15,1.2573168e-15,1.257067e-15,1.2568171e-15,1.2565672e-15,1.2563173e-15,1.2560673e-15,1.2558173e-15,1.2555672e-15,1.255317e-15,1.2550668e-15,1.2548166e-15,1.2545663e-15,1.254316e-15,1.2540656e-15,1.2538151e-15,1.2535647e-15,1.2533141e-15,1.2530636e-15,1.2528129e-15,1.2525623e-15,1.2523115e-15,1.2520607e-15,1.2518099e-15,1.2515589e-15,1.251308e-15,1.2510571e-15,1.250806e-15,1.2505549e-15,1.2503037e-15,1.2500526e-15,1.2498013e-15,1.2495501e-15,1.2492987e-15,1.2490473e-15,1.2487959e-15,1.2485444e-15,1.2482928e-15,1.2480412e-15,1.2477895e-15,1.2475379e-15,1.2472862e-15,1.2470343e-15,1.2467825e-15,1.2465306e-15,1.2462786e-15,1.2460267e-15,1.2457746e-15,1.2455225e-15,1.2452704e-15,1.2450182e-15,1.2447658e-15,1.2445135e-15,1.2442612e-15,1.2440088e-15,1.2437563e-15,1.2435038e-15,1.2432512e-15,1.2429986e-15,1.242746e-15,1.2424933e-15,1.2422405e-15,1.2419877e-15,1.2417347e-15,1.2414819e-15,1.2412288e-15,1.2409758e-15,1.2407227e-15,1.2404696e-15,1.2402164e-15,1.2399632e-15,1.2397099e-15,1.2394566e-15,1.2392032e-15,1.2389498e-15,1.2386962e-15,1.2384427e-15,1.2381892e-15,1.2379355e-15,1.2376818e-15,1.237428e-15,1.2371742e-15,1.2369203e-15,1.2366664e-15,1.2364125e-15,1.2361585e-15,1.2359044e-15,1.2356503e-15,1.2353961e-15,1.2351419e-15,1.2348876e-15,1.2346333e-15,1.2343789e-15,1.2341245e-15,1.23387e-15,1.2336155e-15,1.2333609e-15,1.2331062e-15,1.2328515e-15,1.2325967e-15,1.232342e-15,1.2320871e-15,1.2318322e-15,1.2315772e-15,1.2313223e-15,1.2310672e-15,1.230812e-15,1.2305569e-15,1.2303017e-15,1.2300464e-15,1.229791e-15,1.2295357e-15,1.2292803e-15,1.2290248e-15,1.2287692e-15,1.2285136e-15,1.228258e-15,1.2280023e-15,1.2277465e-15,1.2274907e-15,1.2272349e-15,1.226979e-15,1.226723e-15,1.226467e-15,1.2262108e-15,1.2259547e-15,1.2256986e-15,1.2254424e-15,1.225186e-15,1.2249297e-15,1.2246733e-15,1.2244168e-15,1.2241604e-15,1.2239038e-15,1.2236472e-15,1.2233905e-15,1.2231338e-15,1.222877e-15,1.2226202e-15,1.2223633e-15,1.2221064e-15,1.2218494e-15,1.2215924e-15,1.2213353e-15,1.2210781e-15,1.220821e-15,1.2205637e-15,1.2203064e-15,1.220049e-15,1.2197916e-15,1.2195341e-15,1.2192766e-15,1.219019e-15,1.2187613e-15,1.2185037e-15,1.2182459e-15,1.2179881e-15,1.2177302e-15,1.2174723e-15,1.2172144e-15,1.2169564e-15,1.2166982e-15,1.2164401e-15,1.216182e-15,1.2159237e-15,1.2156654e-15,1.215407e-15,1.2151487e-15,1.2148901e-15,1.2146317e-15,1.2143731e-15,1.2141145e-15,1.2138558e-15,1.213597e-15,1.2133383e-15,1.2130794e-15,1.2128205e-15,1.2125615e-15,1.2123026e-15,1.2120435e-15,1.2117844e-15,1.2115252e-15,1.211266e-15,1.2110067e-15,1.2107473e-15,1.2104879e-15,1.2102285e-15,1.209969e-15,1.2097094e-15,1.2094498e-15,1.2091901e-15,1.2089303e-15,1.2086706e-15,1.2084108e-15,1.2081508e-15,1.2078909e-15,1.2076309e-15,1.2073708e-15,1.2071107e-15,1.2068505e-15,1.2065903e-15,1.2063299e-15,1.2060696e-15,1.2058092e-15,1.2055487e-15,1.2052882e-15,1.2050276e-15,1.204767e-15,1.2045064e-15,1.2042456e-15,1.2039848e-15,1.2037239e-15,1.203463e-15,1.203202e-15,1.202941e-15,1.20268e-15,1.2024187e-15,1.2021575e-15,1.2018963e-15,1.201635e-15,1.2013736e-15,1.2011122e-15,1.2008508e-15,1.2005893e-15,1.2003276e-15,1.200066e-15,1.1998043e-15,1.1995425e-15,1.1992807e-15,1.1990188e-15,1.1987568e-15,1.1984949e-15,1.1982328e-15,1.1979707e-15,1.1977085e-15,1.1974463e-15,1.197184e-15,1.1969217e-15,1.1966592e-15,1.1963969e-15,1.1961343e-15,1.1958717e-15,1.1956091e-15,1.1953464e-15,1.1950837e-15,1.1948209e-15,1.1945581e-15,1.1942952e-15,1.1940322e-15,1.1937692e-15,1.1935061e-15,1.1932428e-15,1.1929797e-15,1.1927164e-15,1.1924531e-15,1.1921898e-15,1.1919262e-15,1.1916628e-15,1.1913993e-15,1.1911356e-15,1.190872e-15,1.1906083e-15,1.1903444e-15,1.1900805e-15,1.1898167e-15,1.1895527e-15,1.1892887e-15,1.1890246e-15,1.1887604e-15,1.1884963e-15,1.188232e-15,1.1879677e-15,1.1877034e-15,1.1874389e-15,1.1871744e-15,1.1869099e-15,1.1866452e-15,1.1863806e-15,1.1861158e-15,1.185851e-15,1.1855862e-15,1.1853213e-15,1.1850564e-15,1.1847914e-15,1.1845262e-15,1.1842611e-15,1.1839959e-15,1.1837307e-15,1.1834653e-15,1.1831999e-15,1.1829345e-15,1.182669e-15,1.1824035e-15,1.1821378e-15,1.1818722e-15,1.1816064e-15,1.1813405e-15,1.1810747e-15,1.1808088e-15,1.1805429e-15,1.1802768e-15,1.1800107e-15,1.1797445e-15,1.1794783e-15,1.1792121e-15,1.1789457e-15,1.1786793e-15,1.1784129e-15,1.1781463e-15,1.1778798e-15,1.1776131e-15,1.1773464e-15,1.1770797e-15,1.1768128e-15,1.1765459e-15,1.176279e-15,1.176012e-15,1.1757449e-15,1.1754778e-15,1.1752107e-15,1.1749433e-15,1.1746761e-15,1.1744087e-15,1.1741413e-15,1.1738738e-15,1.1736063e-15,1.1733386e-15,1.173071e-15,1.1728032e-15,1.1725354e-15,1.1722676e-15,1.1719997e-15,1.1717317e-15,1.1714636e-15,1.1711955e-15,1.1709273e-15,1.1706591e-15,1.1703908e-15,1.1701225e-15,1.1698541e-15,1.1695856e-15,1.1693171e-15,1.1690485e-15,1.1687799e-15,1.1685112e-15,1.1682423e-15,1.1679735e-15,1.1677047e-15,1.1674357e-15,1.1671666e-15,1.1668976e-15,1.1666284e-15,1.1663592e-15,1.1660899e-15,1.1658206e-15,1.1655512e-15,1.1652818e-15,1.1650122e-15,1.1647426e-15,1.1644729e-15,1.1642033e-15,1.1639335e-15,1.1636637e-15,1.1633937e-15,1.1631238e-15,1.1628537e-15,1.1625837e-15,1.1623135e-15,1.1620433e-15,1.161773e-15,1.1615027e-15,1.1612323e-15,1.1609619e-15,1.1606914e-15,1.1604207e-15,1.1601501e-15,1.1598794e-15,1.1596086e-15,1.1593378e-15,1.1590669e-15,1.1587959e-15,1.1585249e-15,1.1582537e-15,1.1579826e-15,1.1577114e-15,1.1574401e-15,1.1571688e-15,1.1568973e-15,1.1566258e-15,1.1563543e-15,1.1560828e-15,1.1558111e-15,1.1555393e-15,1.1552675e-15,1.1549957e-15,1.1547237e-15,1.1544517e-15,1.1541797e-15,1.1539076e-15,1.1536354e-15,1.1533632e-15,1.1530908e-15,1.1528185e-15,1.1525461e-15,1.1522736e-15,1.152001e-15,1.1517284e-15,1.1514556e-15,1.1511829e-15,1.15091e-15,1.1506372e-15,1.1503642e-15,1.1500912e-15,1.1498181e-15,1.1495449e-15,1.1492718e-15,1.1489985e-15,1.1487251e-15,1.1484517e-15,1.1481783e-15,1.1479047e-15,1.1476311e-15,1.1473575e-15,1.1470837e-15,1.1468099e-15,1.1465361e-15,1.1462622e-15,1.1459881e-15,1.145714e-15,1.1454399e-15,1.1451658e-15,1.1448914e-15,1.1446171e-15,1.1443428e-15,1.1440683e-15,1.1437938e-15,1.1435191e-15,1.1432445e-15,1.1429698e-15,1.142695e-15,1.1424202e-15,1.1421453e-15,1.1418703e-15,1.1415952e-15,1.1413201e-15,1.141045e-15,1.1407697e-15,1.1404944e-15,1.140219e-15,1.1399435e-15,1.139668e-15,1.1393924e-15,1.1391168e-15,1.1388411e-15,1.1385653e-15,1.1382895e-15,1.1380135e-15,1.1377375e-15,1.1374615e-15,1.1371854e-15,1.1369092e-15,1.136633e-15,1.1363566e-15,1.1360803e-15,1.1358038e-15,1.1355273e-15,1.1352507e-15,1.1349741e-15,1.1346973e-15,1.1344205e-15,1.1341437e-15,1.1338668e-15,1.1335897e-15,1.1333127e-15,1.1330355e-15,1.1327583e-15,1.1324811e-15,1.1322037e-15,1.1319263e-15,1.1316489e-15,1.1313714e-15,1.1310938e-15,1.1308161e-15,1.1305384e-15,1.1302605e-15,1.1299827e-15,1.1297048e-15,1.1294267e-15,1.1291486e-15,1.1288705e-15,1.1285923e-15,1.128314e-15,1.1280356e-15,1.1277572e-15,1.1274787e-15,1.1272001e-15,1.1269215e-15,1.1266429e-15,1.1263641e-15,1.1260852e-15,1.1258063e-15,1.1255273e-15,1.1252483e-15,1.1249691e-15,1.12469e-15,1.1244107e-15,1.1241314e-15,1.123852e-15,1.1235726e-15,1.1232931e-15,1.1230134e-15,1.1227338e-15,1.122454e-15,1.1221742e-15,1.1218943e-15,1.1216143e-15,1.1213344e-15,1.1210542e-15,1.1207741e-15,1.1204939e-15,1.1202136e-15,1.1199332e-15,1.1196528e-15,1.1193723e-15,1.1190917e-15,1.1188111e-15,1.1185303e-15,1.1182495e-15,1.1179687e-15,1.1176877e-15,1.1174067e-15,1.1171257e-15,1.1168445e-15,1.1165633e-15,1.1162821e-15,1.1160006e-15,1.1157192e-15,1.1154378e-15,1.1151561e-15,1.1148745e-15,1.1145929e-15,1.114311e-15,1.1140292e-15,1.1137472e-15,1.1134653e-15,1.1131832e-15,1.112901e-15,1.1126189e-15,1.1123366e-15,1.1120542e-15,1.1117718e-15,1.1114892e-15,1.1112067e-15,1.110924e-15,1.1106414e-15,1.1103585e-15,1.1100757e-15,1.1097927e-15,1.1095098e-15,1.1092267e-15,1.1089436e-15,1.1086604e-15,1.108377e-15,1.1080937e-15,1.1078103e-15,1.1075267e-15,1.1072432e-15,1.1069595e-15,1.1066758e-15,1.106392e-15,1.1061081e-15,1.1058242e-15,1.1055401e-15,1.105256e-15,1.1049718e-15,1.1046877e-15,1.1044034e-15,1.104119e-15,1.1038345e-15,1.10355e-15,1.1032654e-15,1.1029807e-15,1.102696e-15,1.1024112e-15,1.1021262e-15,1.1018412e-15,1.1015562e-15,1.101271e-15,1.1009859e-15,1.1007006e-15,1.1004152e-15,1.1001299e-15,1.0998443e-15,1.0995588e-15,1.0992732e-15,1.0989875e-15,1.0987017e-15,1.0984158e-15,1.0981299e-15,1.0978438e-15,1.0975578e-15,1.0972717e-15,1.0969854e-15,1.0966991e-15,1.0964127e-15,1.0961263e-15,1.0958398e-15,1.0955532e-15,1.0952664e-15,1.0949797e-15,1.0946929e-15,1.094406e-15,1.0941189e-15,1.0938319e-15,1.0935447e-15,1.0932576e-15,1.0929702e-15,1.0926829e-15,1.0923955e-15,1.092108e-15,1.0918204e-15,1.0915327e-15,1.091245e-15,1.0909572e-15,1.0906693e-15,1.0903813e-15,1.0900933e-15,1.0898052e-15,1.089517e-15,1.0892287e-15,1.0889404e-15,1.088652e-15,1.0883634e-15,1.0880748e-15,1.0877862e-15,1.0874974e-15,1.0872087e-15,1.0869198e-15,1.0866308e-15,1.0863418e-15,1.0860527e-15,1.0857635e-15,1.0854742e-15,1.0851848e-15,1.0848955e-15,1.084606e-15,1.0843164e-15,1.0840267e-15,1.083737e-15,1.0834471e-15,1.0831573e-15,1.0828674e-15,1.0825774e-15,1.0822871e-15,1.081997e-15,1.0817067e-15,1.0814164e-15,1.081126e-15,1.0808354e-15,1.0805448e-15,1.0802542e-15,1.0799634e-15,1.0796726e-15,1.0793817e-15,1.0790908e-15,1.0787997e-15,1.0785085e-15,1.0782174e-15,1.0779261e-15,1.0776347e-15,1.0773432e-15,1.0770517e-15,1.07676e-15,1.0764683e-15,1.0761766e-15,1.0758847e-15,1.0755928e-15,1.0753008e-15,1.0750088e-15,1.0747166e-15,1.0744243e-15,1.074132e-15,1.0738397e-15,1.0735471e-15,1.0732546e-15,1.0729619e-15,1.0726693e-15,1.0723764e-15,1.0720836e-15,1.0717906e-15,1.0714975e-15,1.0712045e-15,1.0709113e-15,1.070618e-15,1.0703246e-15,1.0700312e-15,1.0697376e-15,1.069444e-15,1.0691504e-15,1.0688566e-15,1.0685628e-15,1.0682688e-15,1.0679748e-15,1.0676808e-15,1.0673866e-15,1.0670923e-15,1.066798e-15,1.0665036e-15,1.0662091e-15,1.0659145e-15,1.0656199e-15,1.0653251e-15,1.0650303e-15,1.0647354e-15,1.0644405e-15,1.0641454e-15,1.0638502e-15,1.063555e-15,1.0632597e-15,1.0629643e-15,1.0626688e-15,1.0623733e-15,1.0620777e-15,1.061782e-15,1.0614861e-15,1.0611902e-15,1.0608943e-15,1.0605982e-15,1.0603021e-15,1.0600058e-15,1.0597096e-15,1.0594132e-15,1.0591168e-15,1.0588202e-15,1.0585235e-15,1.0582268e-15,1.0579301e-15,1.0576332e-15,1.0573362e-15,1.0570391e-15,1.056742e-15,1.0564448e-15,1.0561475e-15,1.0558501e-15,1.0555527e-15,1.0552551e-15,1.0549575e-15,1.0546598e-15,1.0543619e-15,1.0540641e-15,1.0537662e-15,1.053468e-15,1.05317e-15,1.0528717e-15,1.0525734e-15,1.052275e-15,1.0519765e-15,1.051678e-15,1.0513793e-15,1.0510806e-15,1.0507817e-15,1.0504828e-15,1.0501838e-15,1.0498848e-15,1.0495856e-15,1.0492864e-15,1.0489871e-15,1.0486877e-15,1.0483882e-15,1.0480886e-15,1.047789e-15,1.0474892e-15,1.0471894e-15,1.0468894e-15,1.0465895e-15,1.0462893e-15,1.0459891e-15,1.0456889e-15,1.0453885e-15,1.0450881e-15,1.0447875e-15,1.0444869e-15,1.0441862e-15,1.0438854e-15,1.0435845e-15,1.0432836e-15,1.0429826e-15,1.0426814e-15,1.0423802e-15,1.0420789e-15,1.0417775e-15,1.041476e-15,1.0411744e-15,1.0408727e-15,1.040571e-15,1.0402692e-15,1.0399673e-15,1.0396653e-15,1.0393632e-15,1.0390609e-15,1.0387587e-15,1.0384564e-15,1.0381539e-15,1.0378514e-15,1.0375488e-15,1.0372461e-15,1.0369432e-15,1.0366403e-15,1.0363374e-15,1.0360343e-15,1.0357311e-15,1.0354279e-15,1.0351246e-15,1.0348211e-15,1.0345177e-15,1.034214e-15,1.0339103e-15,1.0336066e-15,1.0333027e-15,1.0329987e-15,1.0326946e-15,1.0323905e-15,1.0320864e-15,1.031782e-15,1.0314775e-15,1.0311731e-15,1.0308685e-15,1.0305638e-15,1.0302591e-15,1.0299543e-15,1.0296492e-15,1.0293442e-15,1.0290392e-15,1.0287339e-15,1.0284285e-15,1.0281232e-15,1.0278177e-15,1.0275122e-15,1.0272065e-15,1.0269007e-15,1.0265948e-15,1.0262889e-15,1.0259828e-15,1.0256767e-15,1.0253705e-15,1.0250642e-15,1.0247578e-15,1.0244513e-15,1.0241447e-15,1.023838e-15,1.0235313e-15,1.0232244e-15,1.0229174e-15,1.0226104e-15,1.0223033e-15,1.0219961e-15,1.0216887e-15,1.0213813e-15,1.0210739e-15,1.0207662e-15,1.0204585e-15,1.0201507e-15,1.0198429e-15,1.0195349e-15,1.0192268e-15,1.0189187e-15,1.0186105e-15,1.0183021e-15,1.0179936e-15,1.0176851e-15,1.0173765e-15,1.0170678e-15,1.016759e-15,1.01645e-15,1.0161411e-15,1.015832e-15,1.0155228e-15,1.0152135e-15,1.0149042e-15,1.0145947e-15,1.0142851e-15,1.0139754e-15,1.0136657e-15,1.0133558e-15,1.0130459e-15,1.0127359e-15,1.0124258e-15,1.0121155e-15,1.0118052e-15,1.0114948e-15,1.0111842e-15,1.0108737e-15,1.0105629e-15,1.0102522e-15,1.0099412e-15,1.0096302e-15,1.0093192e-15,1.009008e-15,1.0086967e-15,1.0083853e-15,1.0080738e-15,1.0077623e-15,1.0074506e-15,1.0071389e-15,1.006827e-15,1.0065151e-15,1.006203e-15,1.0058909e-15,1.0055787e-15,1.0052663e-15,1.0049539e-15,1.0046413e-15,1.0043287e-15,1.004016e-15,1.0037031e-15,1.0033903e-15,1.0030772e-15,1.0027641e-15,1.0024509e-15,1.0021375e-15,1.0018241e-15,1.0015106e-15,1.001197e-15,1.0008832e-15,1.0005695e-15,1.0002556e-15,9.999416e-16,9.996275e-16,9.993133e-16,9.98999e-16,9.986846e-16,9.983701e-16,9.980555e-16,9.977408e-16,9.97426e-16,9.971111e-16,9.967961e-16,9.96481e-16,9.961658e-16,9.958505e-16,9.955352e-16,9.952197e-16,9.94904e-16,9.945884e-16,9.942726e-16,9.939566e-16,9.936407e-16,9.933246e-16,9.930084e-16,9.926921e-16,9.923758e-16,9.920592e-16,9.917426e-16,9.914259e-16,9.911091e-16,9.907922e-16,9.904752e-16,9.901581e-16,9.898409e-16,9.895236e-16,9.892062e-16,9.888886e-16,9.885711e-16,9.882534e-16,9.879355e-16,9.876177e-16,9.872996e-16,9.869814e-16,9.866633e-16,9.863449e-16,9.860265e-16,9.857079e-16,9.853893e-16,9.850705e-16,9.847517e-16,9.844328e-16,9.841137e-16,9.837946e-16,9.834753e-16,9.831559e-16,9.828365e-16,9.825169e-16,9.821973e-16,9.818774e-16,9.815576e-16,9.812376e-16,9.809175e-16,9.805973e-16,9.80277e-16,9.799566e-16,9.796361e-16,9.793155e-16,9.789948e-16,9.786739e-16,9.78353e-16,9.78032e-16,9.777109e-16,9.773896e-16,9.770683e-16,9.767467e-16,9.764252e-16,9.761035e-16,9.757817e-16,9.754599e-16,9.751379e-16,9.748158e-16,9.744936e-16,9.741713e-16,9.738489e-16,9.735264e-16,9.732037e-16,9.72881e-16,9.725581e-16,9.722352e-16,9.719122e-16,9.71589e-16,9.712657e-16,9.709423e-16,9.706189e-16,9.702953e-16,9.699715e-16,9.696477e-16,9.693239e-16,9.689998e-16,9.686757e-16,9.683515e-16,9.68027e-16,9.677026e-16,9.67378e-16,9.670534e-16,9.667285e-16,9.664037e-16,9.660787e-16,9.657536e-16,9.654284e-16,9.65103e-16,9.647776e-16,9.64452e-16,9.641264e-16,9.638006e-16,9.634747e-16,9.631487e-16,9.628226e-16,9.624963e-16,9.6217e-16,9.618436e-16,9.615171e-16,9.611904e-16,9.608637e-16,9.605367e-16,9.602098e-16,9.598827e-16,9.595555e-16,9.592282e-16,9.589007e-16,9.585731e-16,9.582455e-16,9.579177e-16,9.575898e-16,9.572618e-16,9.569337e-16,9.566056e-16,9.562771e-16,9.559487e-16,9.556201e-16,9.552915e-16,9.549627e-16,9.546338e-16,9.543048e-16,9.539756e-16,9.536464e-16,9.533171e-16,9.529876e-16,9.52658e-16,9.523284e-16,9.519985e-16,9.516686e-16,9.513385e-16,9.510084e-16,9.506781e-16,9.503478e-16,9.500172e-16,9.496866e-16,9.493559e-16,9.49025e-16,9.486941e-16,9.48363e-16,9.480318e-16,9.477005e-16,9.473691e-16,9.470376e-16,9.467059e-16,9.463741e-16,9.460422e-16,9.457103e-16,9.453781e-16,9.450459e-16,9.447135e-16,9.443811e-16,9.440485e-16,9.437157e-16,9.433829e-16,9.430501e-16,9.42717e-16,9.423838e-16,9.420505e-16,9.41717e-16,9.413835e-16,9.410499e-16,9.407162e-16,9.403822e-16,9.400483e-16,9.397141e-16,9.393799e-16,9.390455e-16,9.38711e-16,9.383765e-16,9.380418e-16,9.377069e-16,9.37372e-16,9.370369e-16,9.367017e-16,9.363663e-16,9.360309e-16,9.356954e-16,9.353597e-16,9.350239e-16,9.346879e-16,9.34352e-16,9.340158e-16,9.336795e-16,9.333432e-16,9.330066e-16,9.3267e-16,9.323332e-16,9.319963e-16,9.316593e-16,9.313221e-16,9.309849e-16,9.306475e-16,9.3031e-16,9.299724e-16,9.296346e-16,9.292968e-16,9.289588e-16,9.286207e-16,9.282825e-16,9.279441e-16,9.276057e-16,9.272671e-16,9.269283e-16,9.265895e-16,9.262504e-16,9.259114e-16,9.255722e-16,9.252328e-16,9.248934e-16,9.245537e-16,9.242141e-16,9.238742e-16,9.235342e-16,9.231941e-16,9.228538e-16,9.225135e-16,9.22173e-16,9.218324e-16,9.214917e-16,9.211509e-16,9.208099e-16,9.204688e-16,9.201275e-16,9.197862e-16,9.194447e-16,9.191032e-16,9.187614e-16,9.184195e-16,9.180775e-16,9.177354e-16,9.173931e-16,9.170508e-16,9.167083e-16,9.163657e-16,9.160229e-16,9.1568e-16,9.153369e-16,9.149939e-16,9.146505e-16,9.143072e-16,9.139637e-16,9.1362e-16,9.132762e-16,9.129323e-16,9.125882e-16,9.12244e-16,9.118998e-16,9.115553e-16,9.112107e-16,9.10866e-16,9.105212e-16,9.101763e-16,9.098311e-16,9.09486e-16,9.091406e-16,9.087951e-16,9.084495e-16,9.081037e-16,9.077579e-16,9.074119e-16,9.070657e-16,9.067194e-16,9.06373e-16,9.060265e-16,9.056798e-16,9.053331e-16,9.049861e-16,9.04639e-16,9.042918e-16,9.039445e-16,9.03597e-16,9.032494e-16,9.029017e-16,9.025537e-16,9.022058e-16,9.018576e-16,9.015093e-16,9.011609e-16,9.008124e-16,9.004637e-16,9.001149e-16,8.997659e-16,8.994169e-16,8.990677e-16,8.987183e-16,8.983688e-16,8.980191e-16,8.976694e-16,8.973195e-16,8.969695e-16,8.966193e-16,8.96269e-16,8.959185e-16,8.955679e-16,8.952173e-16,8.948664e-16,8.945154e-16,8.941643e-16,8.93813e-16,8.934616e-16,8.931101e-16,8.927583e-16,8.924065e-16,8.920545e-16,8.917024e-16,8.913502e-16,8.909978e-16,8.906453e-16,8.902926e-16,8.899398e-16,8.895869e-16,8.892338e-16,8.888806e-16,8.885272e-16,8.881737e-16,8.8782007e-16,8.874663e-16,8.871124e-16,8.867583e-16,8.864041e-16,8.8604977e-16,8.8569524e-16,8.8534065e-16,8.8498585e-16,8.8463094e-16,8.842759e-16,8.8392065e-16,8.835653e-16,8.8320983e-16,8.828542e-16,8.8249843e-16,8.821425e-16,8.8178644e-16,8.8143027e-16,8.810739e-16,8.807174e-16,8.803608e-16,8.8000397e-16,8.7964705e-16,8.7929e-16,8.789328e-16,8.785754e-16,8.782179e-16,8.7786023e-16,8.7750247e-16,8.771445e-16,8.767864e-16,8.7642817e-16,8.7606977e-16,8.7571126e-16,8.753526e-16,8.7499377e-16,8.746348e-16,8.7427564e-16,8.739164e-16,8.73557e-16,8.731974e-16,8.728377e-16,8.7247787e-16,8.7211783e-16,8.717577e-16,8.7139737e-16,8.710369e-16,8.7067634e-16,8.7031555e-16,8.6995466e-16,8.695936e-16,8.692324e-16,8.6887104e-16,8.6850957e-16,8.681479e-16,8.677861e-16,8.6742415e-16,8.6706205e-16,8.666998e-16,8.6633736e-16,8.6597483e-16,8.656121e-16,8.6524924e-16,8.6488623e-16,8.6452307e-16,8.6415974e-16,8.6379626e-16,8.634326e-16,8.6306887e-16,8.627049e-16,8.6234084e-16,8.6197657e-16,8.616122e-16,8.6124764e-16,8.6088294e-16,8.605181e-16,8.6015306e-16,8.597879e-16,8.594226e-16,8.590571e-16,8.5869146e-16,8.583257e-16,8.579597e-16,8.5759365e-16,8.5722736e-16,8.5686096e-16,8.564944e-16,8.5612765e-16,8.557608e-16,8.5539374e-16,8.550265e-16,8.5465916e-16,8.5429165e-16,8.53924e-16,8.5355616e-16,8.531882e-16,8.5282e-16,8.524517e-16,8.520832e-16,8.517146e-16,8.5134583e-16,8.509769e-16,8.5060774e-16,8.502385e-16,8.498691e-16,8.4949945e-16,8.491297e-16,8.4875984e-16,8.4838974e-16,8.4801953e-16,8.476491e-16,8.4727853e-16,8.4690785e-16,8.4653696e-16,8.461659e-16,8.457947e-16,8.454233e-16,8.450518e-16,8.446801e-16,8.4430825e-16,8.4393625e-16,8.4356403e-16,8.431917e-16,8.4281917e-16,8.424465e-16,8.420736e-16,8.417006e-16,8.4132744e-16,8.409541e-16,8.405806e-16,8.402069e-16,8.3983306e-16,8.394591e-16,8.390849e-16,8.387106e-16,8.3833604e-16,8.379614e-16,8.375865e-16,8.3721155e-16,8.3683636e-16,8.36461e-16,8.3608547e-16,8.357098e-16,8.3533394e-16,8.349579e-16,8.345817e-16,8.342054e-16,8.338288e-16,8.3345215e-16,8.330753e-16,8.3269824e-16,8.32321e-16,8.3194364e-16,8.3156607e-16,8.3118835e-16,8.3081047e-16,8.3043237e-16,8.300541e-16,8.296757e-16,8.2929714e-16,8.2891835e-16,8.285394e-16,8.281603e-16,8.2778105e-16,8.274016e-16,8.2702195e-16,8.2664216e-16,8.2626216e-16,8.25882e-16,8.255017e-16,8.251212e-16,8.247405e-16,8.243597e-16,8.239786e-16,8.235974e-16,8.23216e-16,8.228345e-16,8.2245274e-16,8.2207083e-16,8.216887e-16,8.2130644e-16,8.20924e-16,8.205414e-16,8.201586e-16,8.197756e-16,8.1939246e-16,8.190091e-16,8.186256e-16,8.182419e-16,8.17858e-16,8.1747393e-16,8.170897e-16,8.1670525e-16,8.1632064e-16,8.159359e-16,8.155509e-16,8.1516577e-16,8.147804e-16,8.143949e-16,8.1400925e-16,8.136234e-16,8.132373e-16,8.1285104e-16,8.1246463e-16,8.12078e-16,8.1169124e-16,8.1130425e-16,8.1091705e-16,8.1052974e-16,8.101422e-16,8.0975444e-16,8.0936656e-16,8.0897846e-16,8.085902e-16,8.0820173e-16,8.0781305e-16,8.074242e-16,8.070352e-16,8.06646e-16,8.0625657e-16,8.05867e-16,8.054772e-16,8.0508724e-16,8.046971e-16,8.0430675e-16,8.039162e-16,8.0352547e-16,8.0313456e-16,8.0274345e-16,8.0235217e-16,8.019607e-16,8.01569e-16,8.011771e-16,8.0078505e-16,8.003928e-16,8.000004e-16,7.9960773e-16,7.992149e-16,7.988219e-16,7.9842866e-16,7.9803527e-16,7.9764166e-16,7.9724784e-16,7.9685387e-16,7.964597e-16,7.960653e-16,7.956707e-16,7.9527595e-16,7.9488097e-16,7.944858e-16,7.940904e-16,7.9369486e-16,7.932991e-16,7.9290315e-16,7.92507e-16,7.9211064e-16,7.9171407e-16,7.9131734e-16,7.909204e-16,7.9052325e-16,7.901259e-16,7.8972836e-16,7.893306e-16,7.8893263e-16,7.885345e-16,7.8813615e-16,7.8773757e-16,7.8733883e-16,7.869399e-16,7.865407e-16,7.861414e-16,7.857418e-16,7.8534206e-16,7.8494204e-16,7.845419e-16,7.841415e-16,7.8374095e-16,7.8334015e-16,7.8293913e-16,7.8253795e-16,7.8213657e-16,7.817349e-16,7.813331e-16,7.809311e-16,7.8052884e-16,7.8012645e-16,7.797238e-16,7.793209e-16,7.7891784e-16,7.785146e-16,7.781111e-16,7.7770743e-16,7.773035e-16,7.768994e-16,7.764951e-16,7.7609055e-16,7.7568583e-16,7.752809e-16,7.748757e-16,7.7447033e-16,7.7406476e-16,7.7365893e-16,7.7325294e-16,7.7284673e-16,7.7244026e-16,7.7203363e-16,7.7162674e-16,7.7121963e-16,7.7081237e-16,7.7040484e-16,7.699971e-16,7.6958915e-16,7.69181e-16,7.687726e-16,7.68364e-16,7.679552e-16,7.675462e-16,7.6713694e-16,7.667275e-16,7.663178e-16,7.659079e-16,7.6549777e-16,7.6508743e-16,7.6467683e-16,7.642661e-16,7.6385505e-16,7.634438e-16,7.6303237e-16,7.626207e-16,7.622088e-16,7.617967e-16,7.6138436e-16,7.609718e-16,7.6055904e-16,7.60146e-16,7.5973276e-16,7.593193e-16,7.5890563e-16,7.584917e-16,7.580776e-16,7.576632e-16,7.572486e-16,7.568338e-16,7.5641874e-16,7.560035e-16,7.55588e-16,7.551723e-16,7.547563e-16,7.543401e-16,7.539237e-16,7.5350706e-16,7.5309016e-16,7.5267305e-16,7.5225573e-16,7.5183814e-16,7.5142034e-16,7.510023e-16,7.5058406e-16,7.501655e-16,7.497468e-16,7.493278e-16,7.4890863e-16,7.484892e-16,7.4806954e-16,7.476496e-16,7.4722944e-16,7.468091e-16,7.4638844e-16,7.459676e-16,7.455465e-16,7.451252e-16,7.447036e-16,7.442818e-16,7.4385973e-16,7.434375e-16,7.430149e-16,7.4259214e-16,7.4216916e-16,7.417459e-16,7.413224e-16,7.4089866e-16,7.404747e-16,7.4005046e-16,7.39626e-16,7.392013e-16,7.3877637e-16,7.3835116e-16,7.3792573e-16,7.3750005e-16,7.370741e-16,7.3664793e-16,7.362215e-16,7.3579486e-16,7.353679e-16,7.3494074e-16,7.3451336e-16,7.3408566e-16,7.3365775e-16,7.3322957e-16,7.328012e-16,7.3237253e-16,7.319436e-16,7.3151444e-16,7.3108504e-16,7.3065533e-16,7.302254e-16,7.297952e-16,7.293648e-16,7.289341e-16,7.285032e-16,7.28072e-16,7.2764053e-16,7.2720886e-16,7.267769e-16,7.263447e-16,7.2591216e-16,7.2547943e-16,7.2504644e-16,7.246132e-16,7.241797e-16,7.237459e-16,7.233119e-16,7.228776e-16,7.2244303e-16,7.2200824e-16,7.215732e-16,7.211378e-16,7.207022e-16,7.2026637e-16,7.198302e-16,7.193938e-16,7.1895717e-16,7.1852026e-16,7.180831e-16,7.176456e-16,7.172079e-16,7.1676987e-16,7.1633163e-16,7.1589314e-16,7.154543e-16,7.1501524e-16,7.145759e-16,7.1413634e-16,7.1369646e-16,7.1325627e-16,7.1281587e-16,7.123752e-16,7.119342e-16,7.11493e-16,7.110515e-16,7.106097e-16,7.101676e-16,7.097253e-16,7.092827e-16,7.088398e-16,7.0839663e-16,7.079532e-16,7.0750947e-16,7.0706546e-16,7.066212e-16,7.0617666e-16,7.057318e-16,7.052867e-16,7.048413e-16,7.043956e-16,7.0394965e-16,7.035034e-16,7.030569e-16,7.0261007e-16,7.02163e-16,7.017156e-16,7.0126795e-16,7.0081997e-16,7.0037173e-16,6.9992323e-16,6.994744e-16,6.990253e-16,6.985759e-16,6.9812625e-16,6.9767626e-16,6.97226e-16,6.9677544e-16,6.963246e-16,6.958735e-16,6.9542204e-16,6.9497036e-16,6.945183e-16,6.9406605e-16,6.936134e-16,6.931605e-16,6.9270736e-16,6.922538e-16,6.918001e-16,6.9134596e-16,6.908916e-16,6.904369e-16,6.899819e-16,6.8952664e-16,6.8907104e-16,6.886152e-16,6.8815895e-16,6.877025e-16,6.872457e-16,6.867886e-16,6.863312e-16,6.858735e-16,6.8541546e-16,6.8495716e-16,6.8449855e-16,6.840396e-16,6.8358036e-16,6.831208e-16,6.8266096e-16,6.8220076e-16,6.817403e-16,6.812795e-16,6.808184e-16,6.80357e-16,6.7989524e-16,6.7943324e-16,6.7897086e-16,6.7850817e-16,6.780452e-16,6.775819e-16,6.771183e-16,6.7665433e-16,6.7619005e-16,6.757255e-16,6.752606e-16,6.747954e-16,6.7432986e-16,6.73864e-16,6.733978e-16,6.729313e-16,6.724645e-16,6.7199735e-16,6.7152984e-16,6.7106206e-16,6.705939e-16,6.7012546e-16,6.696567e-16,6.691876e-16,6.687181e-16,6.682484e-16,6.677783e-16,6.6730786e-16,6.6683706e-16,6.6636595e-16,6.6589453e-16,6.654228e-16,6.6495067e-16,6.6447824e-16,6.640055e-16,6.6353236e-16,6.630589e-16,6.625851e-16,6.6211104e-16,6.6163655e-16,6.611618e-16,6.606866e-16,6.6021115e-16,6.5973533e-16,6.5925914e-16,6.5878263e-16,6.5830575e-16,6.5782855e-16,6.57351e-16,6.568731e-16,6.5639484e-16,6.5591627e-16,6.554373e-16,6.54958e-16,6.544784e-16,6.539984e-16,6.53518e-16,6.530373e-16,6.5255625e-16,6.520748e-16,6.5159306e-16,6.5111094e-16,6.5062845e-16,6.501456e-16,6.496624e-16,6.4917886e-16,6.4869494e-16,6.4821065e-16,6.47726e-16,6.47241e-16,6.4675566e-16,6.462699e-16,6.457838e-16,6.4529733e-16,6.448105e-16,6.443233e-16,6.438357e-16,6.433478e-16,6.4285947e-16,6.423708e-16,6.418817e-16,6.413923e-16,6.409025e-16,6.4041234e-16,6.399218e-16,6.394309e-16,6.3893956e-16,6.384479e-16,6.3795583e-16,6.374634e-16,6.369706e-16,6.364774e-16,6.359838e-16,6.354898e-16,6.3499545e-16,6.3450073e-16,6.340056e-16,6.335101e-16,6.330142e-16,6.325179e-16,6.320212e-16,6.3152415e-16,6.310267e-16,6.3052884e-16,6.300306e-16,6.29532e-16,6.290329e-16,6.285335e-16,6.280337e-16,6.2753346e-16,6.270328e-16,6.265318e-16,6.2603035e-16,6.2552854e-16,6.250263e-16,6.245237e-16,6.2402066e-16,6.235172e-16,6.230133e-16,6.225091e-16,6.220044e-16,6.214993e-16,6.2099384e-16,6.2048795e-16,6.1998164e-16,6.194749e-16,6.1896774e-16,6.184602e-16,6.179522e-16,6.174438e-16,6.16935e-16,6.164258e-16,6.1591614e-16,6.1540607e-16,6.148956e-16,6.1438465e-16,6.138733e-16,6.133615e-16,6.128493e-16,6.123367e-16,6.118236e-16,6.1131014e-16,6.107962e-16,6.1028184e-16,6.0976705e-16,6.0925185e-16,6.0873616e-16,6.082201e-16,6.077035e-16,6.0718657e-16,6.0666914e-16,6.061513e-16,6.05633e-16,6.0511425e-16,6.0459507e-16,6.040754e-16,6.0355534e-16,6.0303484e-16,6.0251386e-16,6.019924e-16,6.014705e-16,6.0094817e-16,6.004254e-16,5.9990214e-16,5.9937846e-16,5.988543e-16,5.983297e-16,5.9780457e-16,5.9727904e-16,5.9675303e-16,5.9622654e-16,5.9569964e-16,5.9517225e-16,5.9464434e-16,5.94116e-16,5.9358724e-16,5.9305795e-16,5.925282e-16,5.9199794e-16,5.914673e-16,5.909361e-16,5.904044e-16,5.8987226e-16,5.893397e-16,5.888066e-16,5.88273e-16,5.877389e-16,5.8720437e-16,5.866693e-16,5.8613383e-16,5.855978e-16,5.850613e-16,5.845243e-16,5.839868e-16,5.834488e-16,5.8291034e-16,5.823713e-16,5.8183185e-16,5.8129187e-16,5.8075136e-16,5.8021037e-16,5.796689e-16,5.791269e-16,5.785844e-16,5.780414e-16,5.7749785e-16,5.769538e-16,5.7640926e-16,5.758642e-16,5.753186e-16,5.747725e-16,5.7422587e-16,5.7367874e-16,5.731311e-16,5.725829e-16,5.7203417e-16,5.714849e-16,5.7093515e-16,5.7038484e-16,5.6983406e-16,5.692827e-16,5.687308e-16,5.681783e-16,5.6762537e-16,5.6707183e-16,5.665178e-16,5.659632e-16,5.6540804e-16,5.648524e-16,5.6429616e-16,5.637394e-16,5.6318204e-16,5.6262417e-16,5.620657e-16,5.615067e-16,5.609472e-16,5.603871e-16,5.598264e-16,5.592652e-16,5.587034e-16,5.5814103e-16,5.575781e-16,5.5701464e-16,5.5645057e-16,5.558859e-16,5.553207e-16,5.547549e-16,5.5418856e-16,5.536216e-16,5.5305407e-16,5.52486e-16,5.5191725e-16,5.51348e-16,5.5077814e-16,5.5020767e-16,5.496366e-16,5.4906497e-16,5.4849274e-16,5.479199e-16,5.4734644e-16,5.467724e-16,5.4619776e-16,5.456225e-16,5.4504664e-16,5.444702e-16,5.4389314e-16,5.433154e-16,5.4273716e-16,5.421582e-16,5.415787e-16,5.409985e-16,5.404177e-16,5.3983633e-16,5.392543e-16,5.386716e-16,5.380883e-16,5.375044e-16,5.3691984e-16,5.3633464e-16,5.357488e-16,5.3516235e-16,5.345752e-16,5.3398746e-16,5.3339904e-16,5.3281e-16,5.3222024e-16,5.3162985e-16,5.3103884e-16,5.3044713e-16,5.298548e-16,5.292618e-16,5.286681e-16,5.280738e-16,5.2747876e-16,5.268831e-16,5.262867e-16,5.2568966e-16,5.25092e-16,5.2449355e-16,5.238945e-16,5.2329473e-16,5.226943e-16,5.220931e-16,5.214913e-16,5.208888e-16,5.2028554e-16,5.196816e-16,5.19077e-16,5.184716e-16,5.1786557e-16,5.1725883e-16,5.1665135e-16,5.160432e-16,5.1543427e-16,5.1482467e-16,5.142143e-16,5.1360325e-16,5.129915e-16,5.123789e-16,5.1176566e-16,5.1115167e-16,5.1053693e-16,5.0992146e-16,5.0930524e-16,5.086883e-16,5.0807053e-16,5.074521e-16,5.0683286e-16,5.062129e-16,5.0559217e-16,5.0497066e-16,5.043484e-16,5.0372536e-16,5.031015e-16,5.0247694e-16,5.0185156e-16,5.0122545e-16,5.0059854e-16,4.9997083e-16,4.9934233e-16,4.9871304e-16,4.9808295e-16,4.974521e-16,4.9682035e-16,4.961879e-16,4.9555456e-16,4.9492045e-16,4.9428555e-16,4.936498e-16,4.9301325e-16,4.9237586e-16,4.9173767e-16,4.9109864e-16,4.9045876e-16,4.898181e-16,4.891765e-16,4.8853414e-16,4.878909e-16,4.872468e-16,4.866019e-16,4.859561e-16,4.8530943e-16,4.8466193e-16,4.840136e-16,4.8336433e-16,4.827142e-16,4.820632e-16,4.8141133e-16,4.807586e-16,4.801049e-16,4.794504e-16,4.7879496e-16,4.781386e-16,4.7748137e-16,4.768232e-16,4.761642e-16,4.7550423e-16,4.7484334e-16,4.7418154e-16,4.735188e-16,4.7285514e-16,4.7219053e-16,4.7152503e-16,4.708586e-16,4.7019117e-16,4.695228e-16,4.688535e-16,4.681832e-16,4.67512e-16,4.668398e-16,4.661666e-16,4.6549246e-16,4.648174e-16,4.641413e-16,4.634642e-16,4.627861e-16,4.6210703e-16,4.6142697e-16,4.607459e-16,4.6006383e-16,4.593807e-16,4.586966e-16,4.5801147e-16,4.573253e-16,4.566381e-16,4.559499e-16,4.552606e-16,4.545703e-16,4.5387895e-16,4.5318656e-16,4.5249305e-16,4.5179853e-16,4.511029e-16,4.504062e-16,4.497085e-16,4.490096e-16,4.4830966e-16,4.4760863e-16,4.469065e-16,4.462033e-16,4.4549894e-16,4.4479346e-16,4.4408688e-16,4.4337918e-16,4.4267035e-16,4.4196035e-16,4.4124924e-16,4.4053697e-16,4.3982355e-16,4.3910897e-16,4.3839323e-16,4.3767632e-16,4.3695822e-16,4.3623896e-16,4.3551848e-16,4.3479683e-16,4.3407397e-16,4.3334992e-16,4.3262465e-16,4.3189816e-16,4.3117045e-16,4.304415e-16,4.2971133e-16,4.289799e-16,4.2824723e-16,4.275133e-16,4.267781e-16,4.2604164e-16,4.253039e-16,4.245649e-16,4.2382458e-16,4.2308298e-16,4.2234008e-16,4.2159588e-16,4.2085033e-16,4.2010349e-16,4.1935532e-16,4.186058e-16,4.1785493e-16,4.1710271e-16,4.1634915e-16,4.155942e-16,4.1483788e-16,4.1408018e-16,4.133211e-16,4.1256063e-16,4.1179875e-16,4.1103544e-16,4.1027073e-16,4.095046e-16,4.08737e-16,4.0796797e-16,4.0719748e-16,4.0642555e-16,4.0565215e-16,4.0487725e-16,4.041009e-16,4.0332302e-16,4.0254365e-16,4.0176276e-16,4.0098037e-16,4.0019644e-16,3.9941097e-16,3.9862395e-16,3.978354e-16,3.9704524e-16,3.9625353e-16,3.9546023e-16,3.9466534e-16,3.9386884e-16,3.9307072e-16,3.92271e-16,3.9146962e-16,3.9066658e-16,3.8986192e-16,3.890556e-16,3.8824758e-16,3.8743787e-16,3.866265e-16,3.858134e-16,3.8499858e-16,3.8418204e-16,3.8336378e-16,3.8254374e-16,3.8172194e-16,3.8089838e-16,3.8007303e-16,3.792459e-16,3.7841695e-16,3.7758617e-16,3.7675356e-16,3.759191e-16,3.750828e-16,3.7424462e-16,3.7340458e-16,3.7256262e-16,3.7171877e-16,3.7087298e-16,3.7002528e-16,3.691756e-16,3.68324e-16,3.674704e-16,3.6661484e-16,3.6575724e-16,3.6489766e-16,3.6403602e-16,3.6317236e-16,3.6230664e-16,3.6143883e-16,3.6056893e-16,3.5969696e-16,3.5882282e-16,3.579466e-16,3.570682e-16,3.5618762e-16,3.5530488e-16,3.5441995e-16,3.5353279e-16,3.5264337e-16,3.5175174e-16,3.5085783e-16,3.4996164e-16,3.4906315e-16,3.4816236e-16,3.472592e-16,3.463537e-16,3.4544582e-16,3.4453555e-16,3.4362287e-16,3.4270778e-16,3.417902e-16,3.4087017e-16,3.3994767e-16,3.3902263e-16,3.3809508e-16,3.3716496e-16,3.3623227e-16,3.3529699e-16,3.343591e-16,3.3341856e-16,3.324754e-16,3.315295e-16,3.3058092e-16,3.296296e-16,3.2867554e-16,3.277187e-16,3.2675905e-16,3.2579656e-16,3.2483123e-16,3.2386305e-16,3.2289192e-16,3.219179e-16,3.2094092e-16,3.1996093e-16,3.1897794e-16,3.1799192e-16,3.1700285e-16,3.1601065e-16,3.1501534e-16,3.1401687e-16,3.1301523e-16,3.1201036e-16,3.1100225e-16,3.0999084e-16,3.0897615e-16,3.079581e-16,3.0693668e-16,3.0591185e-16,3.0488358e-16,3.0385181e-16,3.0281653e-16,3.0177772e-16,3.0073532e-16,2.9968926e-16,2.9863957e-16,2.9758615e-16,2.96529e-16,2.9546807e-16,2.9440332e-16,2.933347e-16,2.9226218e-16,2.911857e-16,2.9010524e-16,2.8902072e-16,2.8793215e-16,2.8683942e-16,2.8574251e-16,2.8464137e-16,2.8353597e-16,2.8242622e-16,2.8131214e-16,2.8019358e-16,2.7907057e-16,2.77943e-16,2.7681084e-16,2.7567405e-16,2.7453254e-16,2.7338624e-16,2.7223515e-16,2.7107916e-16,2.6991822e-16,2.6875225e-16,2.675812e-16,2.6640502e-16,2.6522362e-16,2.6403693e-16,2.6284488e-16,2.6164742e-16,2.6044442e-16,2.5923586e-16,2.5802164e-16,2.5680168e-16,2.5557589e-16,2.543442e-16,2.531065e-16,2.518627e-16,2.5061278e-16,2.4935655e-16,2.48094e-16,2.4682495e-16,2.4554937e-16,2.4426712e-16,2.429781e-16,2.4168222e-16,2.4037932e-16,2.3906936e-16,2.3775217e-16,2.3642762e-16,2.3509564e-16,2.3375605e-16,2.3240874e-16,2.3105357e-16,2.296904e-16,2.283191e-16,2.2693953e-16,2.255515e-16,2.2415488e-16,2.2274952e-16,2.2133523e-16,2.1991183e-16,2.1847917e-16,2.1703704e-16,2.1558528e-16,2.1412367e-16,2.1265202e-16,2.1117009e-16,2.0967771e-16,2.0817463e-16,2.0666061e-16,2.0513542e-16,2.0359881e-16,2.020505e-16,2.0049025e-16,1.9891775e-16,1.9733272e-16,1.9573486e-16,1.9412384e-16,1.9249935e-16,1.9086103e-16,1.8920853e-16,1.8754146e-16,1.8585945e-16,1.8416206e-16,1.824489e-16,1.8071948e-16,1.7897336e-16,1.7721004e-16,1.7542898e-16,1.7362967e-16,1.7181151e-16,1.699739e-16,1.6811621e-16,1.6623776e-16,1.6433784e-16,1.624157e-16,1.6047052e-16,1.5850149e-16,1.5650768e-16,1.5448816e-16,1.5244186e-16,1.5036772e-16,1.4826458e-16,1.4613117e-16,1.4396615e-16,1.4176806e-16,1.3953536e-16,1.3726635e-16,1.3495919e-16,1.326119e-16,1.302223e-16,1.2778804e-16,1.2530648e-16,1.2277478e-16,1.2018977e-16,1.1754791e-16,1.148453e-16,1.1207755e-16,1.0923969e-16,1.06326114e-16,1.03330416e-16,1.0024524e-16,9.706205e-17,9.3770855e-17,9.0359873e-17,8.681497e-17,8.311902e-17,7.92509e-17,7.518402e-17,7.08842e-17,6.630613e-17,6.138758e-17,5.6038985e-17,5.0122854e-17,4.3407755e-17,3.5442433e-17,2.5061898e-17,1.7724538e-19],"x":[1.0e-30,9.998000799700121e-31,9.99600159940024e-31,9.99400239910036e-31,9.992003198800481e-31,9.9900039985006e-31,9.98800479820072e-31,9.986005597900841e-31,9.98400639760096e-31,9.98200719730108e-31,9.980007997001201e-31,9.97800879670132e-31,9.97600959640144e-31,9.974010396101561e-31,9.97201119580168e-31,9.9700119955018e-31,9.96801279520192e-31,9.96601359490204e-31,9.96401439460216e-31,9.96201519430228e-31,9.9600159940024e-31,9.95801679370252e-31,9.956017593402639e-31,9.95401839310276e-31,9.95201919280288e-31,9.950019992502999e-31,9.94802079220312e-31,9.94602159190324e-31,9.944022391603359e-31,9.94202319130348e-31,9.9400239910036e-31,9.938024790703719e-31,9.93602559040384e-31,9.93402639010396e-31,9.932027189804079e-31,9.9300279895042e-31,9.92802878920432e-31,9.926029588904439e-31,9.92403038860456e-31,9.92203118830468e-31,9.920031988004799e-31,9.918032787704919e-31,9.91603358740504e-31,9.914034387105158e-31,9.912035186805279e-31,9.910035986505398e-31,9.908036786205518e-31,9.906037585905639e-31,9.904038385605758e-31,9.902039185305878e-31,9.900039985005999e-31,9.898040784706118e-31,9.896041584406238e-31,9.894042384106359e-31,9.892043183806478e-31,9.890043983506598e-31,9.888044783206719e-31,9.886045582906837e-31,9.884046382606958e-31,9.882047182307079e-31,9.880047982007197e-31,9.878048781707318e-31,9.876049581407439e-31,9.874050381107557e-31,9.872051180807678e-31,9.870051980507798e-31,9.868052780207917e-31,9.866053579908038e-31,9.864054379608158e-31,9.862055179308277e-31,9.860055979008398e-31,9.858056778708518e-31,9.856057578408637e-31,9.854058378108758e-31,9.852059177808876e-31,9.850059977508997e-31,9.848060777209118e-31,9.846061576909236e-31,9.844062376609357e-31,9.842063176309477e-31,9.840063976009596e-31,9.838064775709717e-31,9.836065575409837e-31,9.834066375109956e-31,9.832067174810077e-31,9.830067974510197e-31,9.828068774210316e-31,9.826069573910437e-31,9.824070373610557e-31,9.822071173310676e-31,9.820071973010797e-31,9.818072772710917e-31,9.816073572411036e-31,9.814074372111156e-31,9.812075171811277e-31,9.810075971511396e-31,9.808076771211516e-31,9.806077570911637e-31,9.804078370611756e-31,9.802079170311876e-31,9.800079970011997e-31,9.798080769712116e-31,9.796081569412236e-31,9.794082369112355e-31,9.792083168812476e-31,9.790083968512596e-31,9.788084768212715e-31,9.786085567912835e-31,9.784086367612956e-31,9.782087167313075e-31,9.780087967013195e-31,9.778088766713316e-31,9.776089566413435e-31,9.774090366113555e-31,9.772091165813676e-31,9.770091965513795e-31,9.768092765213915e-31,9.766093564914036e-31,9.764094364614155e-31,9.762095164314275e-31,9.760095964014396e-31,9.758096763714515e-31,9.756097563414635e-31,9.754098363114756e-31,9.752099162814874e-31,9.750099962514995e-31,9.748100762215116e-31,9.746101561915234e-31,9.744102361615355e-31,9.742103161315475e-31,9.740103961015594e-31,9.738104760715715e-31,9.736105560415834e-31,9.734106360115954e-31,9.732107159816075e-31,9.730107959516194e-31,9.728108759216314e-31,9.726109558916435e-31,9.724110358616553e-31,9.722111158316674e-31,9.720111958016795e-31,9.718112757716913e-31,9.716113557417034e-31,9.714114357117154e-31,9.712115156817273e-31,9.710115956517394e-31,9.708116756217514e-31,9.706117555917633e-31,9.704118355617754e-31,9.702119155317874e-31,9.700119955017993e-31,9.698120754718114e-31,9.696121554418234e-31,9.694122354118353e-31,9.692123153818474e-31,9.690123953518594e-31,9.688124753218713e-31,9.686125552918833e-31,9.684126352618954e-31,9.682127152319073e-31,9.680127952019193e-31,9.678128751719314e-31,9.676129551419433e-31,9.674130351119553e-31,9.672131150819672e-31,9.670131950519793e-31,9.668132750219913e-31,9.666133549920032e-31,9.664134349620153e-31,9.662135149320273e-31,9.660135949020392e-31,9.658136748720513e-31,9.656137548420633e-31,9.654138348120752e-31,9.652139147820872e-31,9.650139947520993e-31,9.648140747221112e-31,9.646141546921232e-31,9.644142346621353e-31,9.642143146321472e-31,9.640143946021592e-31,9.638144745721713e-31,9.636145545421832e-31,9.634146345121952e-31,9.632147144822073e-31,9.630147944522192e-31,9.628148744222312e-31,9.626149543922433e-31,9.624150343622551e-31,9.622151143322672e-31,9.620151943022793e-31,9.618152742722911e-31,9.616153542423032e-31,9.61415434212315e-31,9.612155141823271e-31,9.610155941523392e-31,9.60815674122351e-31,9.606157540923631e-31,9.604158340623752e-31,9.60215914032387e-31,9.600159940023991e-31,9.598160739724112e-31,9.59616153942423e-31,9.594162339124351e-31,9.592163138824472e-31,9.59016393852459e-31,9.588164738224711e-31,9.586165537924831e-31,9.58416633762495e-31,9.58216713732507e-31,9.580167937025191e-31,9.57816873672531e-31,9.57616953642543e-31,9.574170336125551e-31,9.57217113582567e-31,9.57017193552579e-31,9.568172735225911e-31,9.56617353492603e-31,9.56417433462615e-31,9.562175134326271e-31,9.56017593402639e-31,9.55817673372651e-31,9.55617753342663e-31,9.55417833312675e-31,9.55217913282687e-31,9.55017993252699e-31,9.54818073222711e-31,9.54618153192723e-31,9.54418233162735e-31,9.54218313132747e-31,9.54018393102759e-31,9.538184730727709e-31,9.53618553042783e-31,9.53418633012795e-31,9.532187129828069e-31,9.53018792952819e-31,9.52818872922831e-31,9.526189528928429e-31,9.52419032862855e-31,9.52219112832867e-31,9.520191928028789e-31,9.51819272772891e-31,9.51619352742903e-31,9.514194327129149e-31,9.51219512682927e-31,9.51019592652939e-31,9.508196726229509e-31,9.50619752592963e-31,9.50419832562975e-31,9.502199125329869e-31,9.500199925029989e-31,9.498200724730108e-31,9.496201524430228e-31,9.494202324130349e-31,9.492203123830468e-31,9.490203923530588e-31,9.488204723230709e-31,9.486205522930828e-31,9.484206322630948e-31,9.482207122331069e-31,9.480207922031188e-31,9.478208721731308e-31,9.476209521431429e-31,9.474210321131548e-31,9.472211120831668e-31,9.470211920531789e-31,9.468212720231907e-31,9.466213519932028e-31,9.464214319632149e-31,9.462215119332267e-31,9.460215919032388e-31,9.458216718732509e-31,9.456217518432627e-31,9.454218318132748e-31,9.452219117832868e-31,9.450219917532987e-31,9.448220717233108e-31,9.446221516933228e-31,9.444222316633347e-31,9.442223116333468e-31,9.440223916033587e-31,9.438224715733707e-31,9.436225515433828e-31,9.434226315133946e-31,9.432227114834067e-31,9.430227914534188e-31,9.428228714234306e-31,9.426229513934427e-31,9.424230313634547e-31,9.422231113334666e-31,9.420231913034787e-31,9.418232712734907e-31,9.416233512435026e-31,9.414234312135147e-31,9.412235111835267e-31,9.410235911535386e-31,9.408236711235507e-31,9.406237510935627e-31,9.404238310635746e-31,9.402239110335867e-31,9.400239910035987e-31,9.398240709736106e-31,9.396241509436226e-31,9.394242309136347e-31,9.392243108836466e-31,9.390243908536586e-31,9.388244708236707e-31,9.386245507936826e-31,9.384246307636946e-31,9.382247107337065e-31,9.380247907037186e-31,9.378248706737306e-31,9.376249506437425e-31,9.374250306137546e-31,9.372251105837666e-31,9.370251905537785e-31,9.368252705237905e-31,9.366253504938026e-31,9.364254304638145e-31,9.362255104338265e-31,9.360255904038386e-31,9.358256703738505e-31,9.356257503438625e-31,9.354258303138746e-31,9.352259102838865e-31,9.350259902538985e-31,9.348260702239106e-31,9.346261501939225e-31,9.344262301639345e-31,9.342263101339466e-31,9.340263901039585e-31,9.338264700739705e-31,9.336265500439826e-31,9.334266300139944e-31,9.332267099840065e-31,9.330267899540186e-31,9.328268699240304e-31,9.326269498940425e-31,9.324270298640544e-31,9.322271098340664e-31,9.320271898040785e-31,9.318272697740904e-31,9.316273497441024e-31,9.314274297141145e-31,9.312275096841264e-31,9.310275896541384e-31,9.308276696241505e-31,9.306277495941623e-31,9.304278295641744e-31,9.302279095341865e-31,9.300279895041983e-31,9.298280694742104e-31,9.296281494442224e-31,9.294282294142343e-31,9.292283093842464e-31,9.290283893542584e-31,9.288284693242703e-31,9.286285492942824e-31,9.284286292642944e-31,9.282287092343063e-31,9.280287892043184e-31,9.278288691743304e-31,9.276289491443423e-31,9.274290291143544e-31,9.272291090843664e-31,9.270291890543783e-31,9.268292690243904e-31,9.266293489944022e-31,9.264294289644143e-31,9.262295089344263e-31,9.260295889044382e-31,9.258296688744503e-31,9.256297488444623e-31,9.254298288144742e-31,9.252299087844863e-31,9.250299887544983e-31,9.248300687245102e-31,9.246301486945223e-31,9.244302286645343e-31,9.242303086345462e-31,9.240303886045583e-31,9.238304685745703e-31,9.236305485445822e-31,9.234306285145942e-31,9.232307084846063e-31,9.230307884546182e-31,9.228308684246302e-31,9.226309483946423e-31,9.224310283646542e-31,9.222311083346662e-31,9.220311883046783e-31,9.218312682746902e-31,9.216313482447022e-31,9.214314282147143e-31,9.212315081847262e-31,9.210315881547382e-31,9.208316681247501e-31,9.206317480947621e-31,9.204318280647742e-31,9.20231908034786e-31,9.200319880047981e-31,9.198320679748102e-31,9.19632147944822e-31,9.194322279148341e-31,9.192323078848462e-31,9.19032387854858e-31,9.188324678248701e-31,9.186325477948822e-31,9.18432627764894e-31,9.182327077349061e-31,9.180327877049182e-31,9.1783286767493e-31,9.176329476449421e-31,9.174330276149542e-31,9.17233107584966e-31,9.170331875549781e-31,9.168332675249902e-31,9.16633347495002e-31,9.16433427465014e-31,9.162335074350261e-31,9.16033587405038e-31,9.1583366737505e-31,9.156337473450621e-31,9.15433827315074e-31,9.15233907285086e-31,9.15033987255098e-31,9.1483406722511e-31,9.14634147195122e-31,9.14434227165134e-31,9.14234307135146e-31,9.14034387105158e-31,9.1383446707517e-31,9.13634547045182e-31,9.13434627015194e-31,9.13234706985206e-31,9.13034786955218e-31,9.1283486692523e-31,9.12634946895242e-31,9.12435026865254e-31,9.12235106835266e-31,9.120351868052779e-31,9.1183526677529e-31,9.11635346745302e-31,9.114354267153139e-31,9.11235506685326e-31,9.11035586655338e-31,9.108356666253499e-31,9.10635746595362e-31,9.10435826565374e-31,9.102359065353859e-31,9.10035986505398e-31,9.0983606647541e-31,9.096361464454219e-31,9.09436226415434e-31,9.092363063854458e-31,9.090363863554579e-31,9.0883646632547e-31,9.086365462954818e-31,9.084366262654939e-31,9.08236706235506e-31,9.080367862055178e-31,9.078368661755298e-31,9.076369461455419e-31,9.074370261155538e-31,9.072371060855658e-31,9.070371860555779e-31,9.068372660255898e-31,9.066373459956018e-31,9.064374259656139e-31,9.062375059356258e-31,9.060375859056378e-31,9.058376658756499e-31,9.056377458456618e-31,9.054378258156738e-31,9.052379057856859e-31,9.050379857556978e-31,9.048380657257098e-31,9.046381456957219e-31,9.044382256657337e-31,9.042383056357458e-31,9.040383856057579e-31,9.038384655757697e-31,9.036385455457818e-31,9.034386255157938e-31,9.032387054858057e-31,9.030387854558178e-31,9.028388654258297e-31,9.026389453958417e-31,9.024390253658538e-31,9.022391053358657e-31,9.020391853058777e-31,9.018392652758898e-31,9.016393452459016e-31,9.014394252159137e-31,9.012395051859258e-31,9.010395851559376e-31,9.008396651259497e-31,9.006397450959617e-31,9.004398250659736e-31,9.002399050359857e-31,9.000399850059977e-31,8.998400649760096e-31,8.996401449460217e-31,8.994402249160337e-31,8.992403048860456e-31,8.990403848560577e-31,8.988404648260697e-31,8.986405447960816e-31,8.984406247660937e-31,8.982407047361057e-31,8.980407847061176e-31,8.978408646761296e-31,8.976409446461417e-31,8.974410246161536e-31,8.972411045861656e-31,8.970411845561775e-31,8.968412645261896e-31,8.966413444962016e-31,8.964414244662135e-31,8.962415044362256e-31,8.960415844062376e-31,8.958416643762495e-31,8.956417443462616e-31,8.954418243162736e-31,8.952419042862855e-31,8.950419842562976e-31,8.948420642263096e-31,8.946421441963215e-31,8.944422241663335e-31,8.942423041363456e-31,8.940423841063575e-31,8.938424640763695e-31,8.936425440463816e-31,8.934426240163935e-31,8.932427039864055e-31,8.930427839564176e-31,8.928428639264295e-31,8.926429438964415e-31,8.924430238664536e-31,8.922431038364655e-31,8.920431838064775e-31,8.918432637764896e-31,8.916433437465014e-31,8.914434237165135e-31,8.912435036865254e-31,8.910435836565374e-31,8.908436636265495e-31,8.906437435965614e-31,8.904438235665734e-31,8.902439035365855e-31,8.900439835065974e-31,8.898440634766094e-31,8.896441434466215e-31,8.894442234166334e-31,8.892443033866454e-31,8.890443833566575e-31,8.888444633266693e-31,8.886445432966814e-31,8.884446232666935e-31,8.882447032367053e-31,8.880447832067174e-31,8.878448631767295e-31,8.876449431467413e-31,8.874450231167534e-31,8.872451030867654e-31,8.870451830567773e-31,8.868452630267894e-31,8.866453429968014e-31,8.864454229668133e-31,8.862455029368254e-31,8.860455829068374e-31,8.858456628768493e-31,8.856457428468614e-31,8.854458228168732e-31,8.852459027868853e-31,8.850459827568974e-31,8.848460627269092e-31,8.846461426969213e-31,8.844462226669333e-31,8.842463026369452e-31,8.840463826069573e-31,8.838464625769693e-31,8.836465425469812e-31,8.834466225169933e-31,8.832467024870053e-31,8.830467824570172e-31,8.828468624270293e-31,8.826469423970413e-31,8.824470223670532e-31,8.822471023370653e-31,8.820471823070773e-31,8.818472622770892e-31,8.816473422471012e-31,8.814474222171133e-31,8.812475021871252e-31,8.810475821571372e-31,8.808476621271493e-31,8.806477420971612e-31,8.804478220671732e-31,8.802479020371853e-31,8.800479820071972e-31,8.798480619772092e-31,8.796481419472211e-31,8.794482219172332e-31,8.792483018872452e-31,8.790483818572571e-31,8.788484618272691e-31,8.786485417972812e-31,8.78448621767293e-31,8.782487017373051e-31,8.780487817073172e-31,8.77848861677329e-31,8.776489416473411e-31,8.774490216173532e-31,8.77249101587365e-31,8.770491815573771e-31,8.768492615273892e-31,8.76649341497401e-31,8.764494214674131e-31,8.762495014374252e-31,8.76049581407437e-31,8.758496613774491e-31,8.756497413474612e-31,8.75449821317473e-31,8.752499012874851e-31,8.750499812574972e-31,8.74850061227509e-31,8.746501411975211e-31,8.744502211675331e-31,8.74250301137545e-31,8.74050381107557e-31,8.73850461077569e-31,8.73650541047581e-31,8.73450621017593e-31,8.73250700987605e-31,8.73050780957617e-31,8.72850860927629e-31,8.72650940897641e-31,8.72451020867653e-31,8.72251100837665e-31,8.72051180807677e-31,8.71851260777689e-31,8.71651340747701e-31,8.71451420717713e-31,8.71251500687725e-31,8.71051580657737e-31,8.70851660627749e-31,8.70651740597761e-31,8.70451820567773e-31,8.702519005377849e-31,8.70051980507797e-31,8.69852060477809e-31,8.696521404478209e-31,8.69452220417833e-31,8.69252300387845e-31,8.690523803578569e-31,8.68852460327869e-31,8.68652540297881e-31,8.684526202678929e-31,8.68252700237905e-31,8.680527802079168e-31,8.678528601779289e-31,8.67652940147941e-31,8.674530201179528e-31,8.672531000879649e-31,8.67053180057977e-31,8.668532600279888e-31,8.666533399980009e-31,8.66453419968013e-31,8.662534999380248e-31,8.660535799080369e-31,8.658536598780489e-31,8.656537398480608e-31,8.654538198180728e-31,8.652538997880849e-31,8.650539797580968e-31,8.648540597281088e-31,8.646541396981209e-31,8.644542196681328e-31,8.642542996381448e-31,8.640543796081569e-31,8.638544595781688e-31,8.636545395481808e-31,8.634546195181929e-31,8.632546994882048e-31,8.630547794582168e-31,8.628548594282289e-31,8.626549393982407e-31,8.624550193682528e-31,8.622550993382647e-31,8.620551793082767e-31,8.618552592782888e-31,8.616553392483007e-31,8.614554192183127e-31,8.612554991883248e-31,8.610555791583367e-31,8.608556591283487e-31,8.606557390983608e-31,8.604558190683727e-31,8.602558990383847e-31,8.600559790083968e-31,8.598560589784086e-31,8.596561389484207e-31,8.594562189184328e-31,8.592562988884446e-31,8.590563788584567e-31,8.588564588284687e-31,8.586565387984806e-31,8.584566187684927e-31,8.582566987385047e-31,8.580567787085166e-31,8.578568586785287e-31,8.576569386485407e-31,8.574570186185526e-31,8.572570985885647e-31,8.570571785585767e-31,8.568572585285886e-31,8.566573384986007e-31,8.564574184686125e-31,8.562574984386246e-31,8.560575784086367e-31,8.558576583786485e-31,8.556577383486606e-31,8.554578183186726e-31,8.552578982886845e-31,8.550579782586966e-31,8.548580582287086e-31,8.546581381987205e-31,8.544582181687326e-31,8.542582981387446e-31,8.540583781087565e-31,8.538584580787686e-31,8.536585380487806e-31,8.534586180187925e-31,8.532586979888046e-31,8.530587779588166e-31,8.528588579288285e-31,8.526589378988405e-31,8.524590178688526e-31,8.522590978388645e-31,8.520591778088765e-31,8.518592577788886e-31,8.516593377489005e-31,8.514594177189125e-31,8.512594976889246e-31,8.510595776589365e-31,8.508596576289485e-31,8.506597375989604e-31,8.504598175689725e-31,8.502598975389845e-31,8.500599775089964e-31,8.498600574790084e-31,8.496601374490205e-31,8.494602174190324e-31,8.492602973890444e-31,8.490603773590565e-31,8.488604573290684e-31,8.486605372990804e-31,8.484606172690925e-31,8.482606972391044e-31,8.480607772091164e-31,8.478608571791285e-31,8.476609371491404e-31,8.474610171191524e-31,8.472610970891645e-31,8.470611770591763e-31,8.468612570291884e-31,8.466613369992005e-31,8.464614169692123e-31,8.462614969392244e-31,8.460615769092365e-31,8.458616568792483e-31,8.456617368492604e-31,8.454618168192724e-31,8.452618967892843e-31,8.450619767592964e-31,8.448620567293083e-31,8.446621366993203e-31,8.444622166693324e-31,8.442622966393443e-31,8.440623766093563e-31,8.438624565793684e-31,8.436625365493802e-31,8.434626165193923e-31,8.432626964894044e-31,8.430627764594162e-31,8.428628564294283e-31,8.426629363994403e-31,8.424630163694522e-31,8.422630963394643e-31,8.420631763094763e-31,8.418632562794882e-31,8.416633362495003e-31,8.414634162195123e-31,8.412634961895242e-31,8.410635761595363e-31,8.408636561295483e-31,8.406637360995602e-31,8.404638160695723e-31,8.402638960395843e-31,8.400639760095962e-31,8.398640559796082e-31,8.396641359496203e-31,8.394642159196322e-31,8.392642958896442e-31,8.390643758596563e-31,8.388644558296682e-31,8.386645357996802e-31,8.384646157696921e-31,8.382646957397042e-31,8.380647757097162e-31,8.378648556797281e-31,8.376649356497402e-31,8.374650156197522e-31,8.372650955897641e-31,8.370651755597762e-31,8.368652555297882e-31,8.366653354998e-31,8.364654154698121e-31,8.362654954398242e-31,8.36065575409836e-31,8.358656553798481e-31,8.356657353498602e-31,8.35465815319872e-31,8.352658952898841e-31,8.350659752598962e-31,8.34866055229908e-31,8.346661351999201e-31,8.344662151699322e-31,8.34266295139944e-31,8.340663751099561e-31,8.338664550799682e-31,8.3366653504998e-31,8.334666150199921e-31,8.332666949900042e-31,8.33066774960016e-31,8.328668549300281e-31,8.3266693490004e-31,8.32467014870052e-31,8.32267094840064e-31,8.32067174810076e-31,8.31867254780088e-31,8.316673347501e-31,8.31467414720112e-31,8.31267494690124e-31,8.31067574660136e-31,8.30867654630148e-31,8.3066773460016e-31,8.30467814570172e-31,8.30267894540184e-31,8.30067974510196e-31,8.29868054480208e-31,8.2966813445022e-31,8.29468214420232e-31,8.29268294390244e-31,8.29068374360256e-31,8.28868454330268e-31,8.2866853430028e-31,8.284686142702919e-31,8.28268694240304e-31,8.28068774210316e-31,8.278688541803279e-31,8.2766893415034e-31,8.27469014120352e-31,8.272690940903639e-31,8.27069174060376e-31,8.268692540303878e-31,8.266693340003999e-31,8.26469413970412e-31,8.262694939404238e-31,8.260695739104359e-31,8.25869653880448e-31,8.256697338504598e-31,8.254698138204719e-31,8.25269893790484e-31,8.250699737604958e-31,8.248700537305079e-31,8.2467013370052e-31,8.244702136705318e-31,8.242702936405439e-31,8.240703736105559e-31,8.238704535805678e-31,8.236705335505798e-31,8.234706135205919e-31,8.232706934906038e-31,8.230707734606158e-31,8.228708534306279e-31,8.226709334006398e-31,8.224710133706518e-31,8.222710933406639e-31,8.220711733106758e-31,8.218712532806878e-31,8.216713332506999e-31,8.214714132207118e-31,8.212714931907238e-31,8.210715731607357e-31,8.208716531307477e-31,8.206717331007598e-31,8.204718130707717e-31,8.202718930407837e-31,8.200719730107958e-31,8.198720529808077e-31,8.196721329508197e-31,8.194722129208318e-31,8.192722928908437e-31,8.190723728608557e-31,8.188724528308678e-31,8.186725328008797e-31,8.184726127708917e-31,8.182726927409038e-31,8.180727727109156e-31,8.178728526809277e-31,8.176729326509398e-31,8.174730126209516e-31,8.172730925909637e-31,8.170731725609758e-31,8.168732525309876e-31,8.166733325009997e-31,8.164734124710117e-31,8.162734924410236e-31,8.160735724110357e-31,8.158736523810477e-31,8.156737323510596e-31,8.154738123210717e-31,8.152738922910836e-31,8.150739722610956e-31,8.148740522311077e-31,8.146741322011195e-31,8.144742121711316e-31,8.142742921411437e-31,8.140743721111555e-31,8.138744520811676e-31,8.136745320511796e-31,8.134746120211915e-31,8.132746919912036e-31,8.130747719612156e-31,8.128748519312275e-31,8.126749319012396e-31,8.124750118712516e-31,8.122750918412635e-31,8.120751718112756e-31,8.118752517812876e-31,8.116753317512995e-31,8.114754117213116e-31,8.112754916913236e-31,8.110755716613355e-31,8.108756516313475e-31,8.106757316013596e-31,8.104758115713715e-31,8.102758915413835e-31,8.100759715113956e-31,8.098760514814075e-31,8.096761314514195e-31,8.094762114214314e-31,8.092762913914435e-31,8.090763713614555e-31,8.088764513314674e-31,8.086765313014795e-31,8.084766112714915e-31,8.082766912415034e-31,8.080767712115154e-31,8.078768511815275e-31,8.076769311515394e-31,8.074770111215514e-31,8.072770910915635e-31,8.070771710615754e-31,8.068772510315874e-31,8.066773310015995e-31,8.064774109716114e-31,8.062774909416234e-31,8.060775709116355e-31,8.058776508816474e-31,8.056777308516594e-31,8.054778108216715e-31,8.052778907916834e-31,8.050779707616954e-31,8.048780507317075e-31,8.046781307017193e-31,8.044782106717314e-31,8.042782906417435e-31,8.040783706117553e-31,8.038784505817674e-31,8.036785305517793e-31,8.034786105217913e-31,8.032786904918034e-31,8.030787704618153e-31,8.028788504318273e-31,8.026789304018394e-31,8.024790103718513e-31,8.022790903418633e-31,8.020791703118754e-31,8.018792502818872e-31,8.016793302518993e-31,8.014794102219114e-31,8.012794901919232e-31,8.010795701619353e-31,8.008796501319473e-31,8.006797301019592e-31,8.004798100719713e-31,8.002798900419833e-31,8.000799700119952e-31,7.998800499820073e-31,7.996801299520193e-31,7.994802099220312e-31,7.992802898920433e-31,7.990803698620553e-31,7.988804498320672e-31,7.986805298020793e-31,7.984806097720913e-31,7.982806897421032e-31,7.980807697121152e-31,7.978808496821271e-31,7.976809296521392e-31,7.974810096221512e-31,7.972810895921631e-31,7.970811695621752e-31,7.968812495321872e-31,7.966813295021991e-31,7.964814094722112e-31,7.962814894422232e-31,7.960815694122351e-31,7.958816493822472e-31,7.956817293522592e-31,7.954818093222711e-31,7.952818892922832e-31,7.950819692622952e-31,7.948820492323071e-31,7.946821292023191e-31,7.944822091723312e-31,7.94282289142343e-31,7.940823691123551e-31,7.938824490823672e-31,7.93682529052379e-31,7.934826090223911e-31,7.932826889924032e-31,7.93082768962415e-31,7.928828489324271e-31,7.926829289024392e-31,7.92483008872451e-31,7.922830888424631e-31,7.92083168812475e-31,7.91883248782487e-31,7.916833287524991e-31,7.91483408722511e-31,7.91283488692523e-31,7.910835686625351e-31,7.90883648632547e-31,7.90683728602559e-31,7.90483808572571e-31,7.90283888542583e-31,7.90083968512595e-31,7.89884048482607e-31,7.89684128452619e-31,7.89484208422631e-31,7.89284288392643e-31,7.89084368362655e-31,7.88884448332667e-31,7.88684528302679e-31,7.88484608272691e-31,7.88284688242703e-31,7.88084768212715e-31,7.87884848182727e-31,7.87684928152739e-31,7.8748500812275095e-31,7.872850880927629e-31,7.87085168062775e-31,7.8688524803278695e-31,7.866853280027989e-31,7.86485407972811e-31,7.862854879428229e-31,7.860855679128349e-31,7.85885647882847e-31,7.856857278528589e-31,7.854858078228709e-31,7.8528588779288295e-31,7.850859677628949e-31,7.848860477329069e-31,7.846861277029189e-31,7.844862076729309e-31,7.842862876429429e-31,7.8408636761295485e-31,7.838864475829669e-31,7.836865275529789e-31,7.834866075229908e-31,7.832866874930029e-31,7.830867674630149e-31,7.828868474330268e-31,7.826869274030389e-31,7.8248700737305085e-31,7.822870873430628e-31,7.820871673130749e-31,7.8188724728308685e-31,7.816873272530988e-31,7.814874072231108e-31,7.812874871931228e-31,7.810875671631348e-31,7.808876471331468e-31,7.806877271031588e-31,7.804878070731708e-31,7.802878870431828e-31,7.800879670131948e-31,7.798880469832068e-31,7.796881269532188e-31,7.794882069232308e-31,7.792882868932428e-31,7.7908836686325475e-31,7.788884468332667e-31,7.786885268032788e-31,7.784886067732907e-31,7.782886867433027e-31,7.780887667133148e-31,7.778888466833267e-31,7.776889266533387e-31,7.7748900662335075e-31,7.772890865933627e-31,7.770891665633747e-31,7.7688924653338675e-31,7.766893265033987e-31,7.764894064734107e-31,7.762894864434227e-31,7.760895664134347e-31,7.758896463834467e-31,7.756897263534586e-31,7.754898063234707e-31,7.752898862934827e-31,7.750899662634946e-31,7.748900462335067e-31,7.746901262035187e-31,7.744902061735306e-31,7.742902861435427e-31,7.7409036611355465e-31,7.738904460835666e-31,7.736905260535787e-31,7.734906060235906e-31,7.732906859936026e-31,7.730907659636146e-31,7.728908459336266e-31,7.726909259036386e-31,7.724910058736506e-31,7.722910858436626e-31,7.720911658136746e-31,7.718912457836866e-31,7.716913257536986e-31,7.714914057237106e-31,7.7129148569372255e-31,7.710915656637346e-31,7.708916456337466e-31,7.706917256037585e-31,7.704918055737706e-31,7.702918855437826e-31,7.700919655137945e-31,7.698920454838065e-31,7.696921254538186e-31,7.694922054238305e-31,7.692922853938425e-31,7.6909236536385455e-31,7.688924453338665e-31,7.686925253038785e-31,7.684926052738905e-31,7.682926852439025e-31,7.680927652139145e-31,7.678928451839265e-31,7.676929251539385e-31,7.674930051239505e-31,7.672930850939624e-31,7.670931650639745e-31,7.668932450339865e-31,7.666933250039984e-31,7.664934049740105e-31,7.6629348494402245e-31,7.660935649140344e-31,7.658936448840465e-31,7.656937248540584e-31,7.654938048240704e-31,7.652938847940825e-31,7.650939647640944e-31,7.648940447341064e-31,7.646941247041185e-31,7.644942046741304e-31,7.642942846441424e-31,7.640943646141544e-31,7.638944445841664e-31,7.636945245541784e-31,7.6349460452419035e-31,7.632946844942024e-31,7.630947644642144e-31,7.6289484443422634e-31,7.626949244042384e-31,7.624950043742504e-31,7.622950843442623e-31,7.620951643142744e-31,7.618952442842864e-31,7.616953242542983e-31,7.614954042243103e-31,7.6129548419432235e-31,7.610955641643343e-31,7.608956441343463e-31,7.606957241043583e-31,7.604958040743703e-31,7.602958840443823e-31,7.600959640143943e-31,7.598960439844063e-31,7.596961239544183e-31,7.594962039244303e-31,7.592962838944423e-31,7.590963638644543e-31,7.588964438344663e-31,7.586965238044783e-31,7.5849660377449025e-31,7.582966837445022e-31,7.580967637145143e-31,7.5789684368452625e-31,7.576969236545382e-31,7.574970036245503e-31,7.572970835945622e-31,7.570971635645742e-31,7.568972435345863e-31,7.566973235045982e-31,7.564974034746102e-31,7.5629748344462225e-31,7.560975634146342e-31,7.558976433846462e-31,7.556977233546582e-31,7.554978033246702e-31,7.552978832946822e-31,7.5509796326469415e-31,7.548980432347062e-31,7.546981232047182e-31,7.544982031747301e-31,7.542982831447422e-31,7.540983631147542e-31,7.538984430847661e-31,7.536985230547782e-31,7.5349860302479015e-31,7.532986829948021e-31,7.530987629648142e-31,7.5289884293482615e-31,7.526989229048381e-31,7.524990028748501e-31,7.522990828448621e-31,7.520991628148741e-31,7.518992427848861e-31,7.516993227548981e-31,7.514994027249101e-31,7.512994826949221e-31,7.510995626649341e-31,7.508996426349461e-31,7.5069972260495806e-31,7.504998025749701e-31,7.502998825449821e-31,7.5009996251499405e-31,7.499000424850061e-31,7.497001224550181e-31,7.4950020242503e-31,7.49300282395042e-31,7.491003623650541e-31,7.48900442335066e-31,7.48700522305078e-31,7.4850060227509005e-31,7.48300682245102e-31,7.48100762215114e-31,7.4790084218512605e-31,7.47700922155138e-31,7.4750100212515e-31,7.47301082095162e-31,7.47101162065174e-31,7.46901242035186e-31,7.467013220051979e-31,7.4650140197521e-31,7.46301481945222e-31,7.461015619152339e-31,7.45901641885246e-31,7.45701721855258e-31,7.455018018252699e-31,7.45301881795282e-31,7.4510196176529395e-31,7.449020417353059e-31,7.44702121705318e-31,7.445022016753299e-31,7.443022816453419e-31,7.44102361615354e-31,7.439024415853659e-31,7.437025215553779e-31,7.435026015253899e-31,7.433026814954019e-31,7.431027614654139e-31,7.429028414354259e-31,7.427029214054379e-31,7.425030013754499e-31,7.4230308134546185e-31,7.421031613154739e-31,7.419032412854859e-31,7.417033212554978e-31,7.415034012255099e-31,7.413034811955219e-31,7.411035611655338e-31,7.409036411355458e-31,7.407037211055579e-31,7.405038010755698e-31,7.403038810455818e-31,7.4010396101559385e-31,7.399040409856058e-31,7.397041209556178e-31,7.395042009256298e-31,7.393042808956418e-31,7.391043608656538e-31,7.389044408356658e-31,7.387045208056778e-31,7.385046007756898e-31,7.383046807457018e-31,7.381047607157138e-31,7.379048406857258e-31,7.377049206557377e-31,7.375050006257498e-31,7.3730508059576175e-31,7.371051605657737e-31,7.369052405357858e-31,7.367053205057977e-31,7.365054004758097e-31,7.363054804458218e-31,7.361055604158337e-31,7.359056403858457e-31,7.357057203558578e-31,7.355058003258697e-31,7.353058802958817e-31,7.351059602658937e-31,7.349060402359057e-31,7.347061202059177e-31,7.3450620017592965e-31,7.343062801459417e-31,7.341063601159537e-31,7.3390644008596564e-31,7.337065200559777e-31,7.335066000259897e-31,7.333066799960016e-31,7.331067599660137e-31,7.329068399360257e-31,7.327069199060376e-31,7.325069998760497e-31,7.3230707984606165e-31,7.321071598160736e-31,7.319072397860856e-31,7.317073197560976e-31,7.315073997261096e-31,7.313074796961216e-31,7.311075596661336e-31,7.309076396361456e-31,7.307077196061576e-31,7.305077995761696e-31,7.303078795461816e-31,7.301079595161936e-31,7.299080394862056e-31,7.297081194562176e-31,7.2950819942622955e-31,7.293082793962415e-31,7.291083593662536e-31,7.2890843933626554e-31,7.287085193062775e-31,7.285085992762896e-31,7.283086792463015e-31,7.281087592163135e-31,7.279088391863256e-31,7.277089191563375e-31,7.275089991263495e-31,7.2730907909636155e-31,7.271091590663735e-31,7.269092390363855e-31,7.267093190063975e-31,7.265093989764095e-31,7.263094789464215e-31,7.2610955891643345e-31,7.259096388864455e-31,7.257097188564575e-31,7.255097988264694e-31,7.253098787964815e-31,7.251099587664935e-31,7.249100387365054e-31,7.247101187065175e-31,7.2451019867652945e-31,7.243102786465414e-31,7.241103586165535e-31,7.2391043858656544e-31,7.237105185565774e-31,7.235105985265895e-31,7.233106784966014e-31,7.231107584666134e-31,7.229108384366254e-31,7.227109184066374e-31,7.225109983766494e-31,7.223110783466614e-31,7.221111583166734e-31,7.219112382866854e-31,7.2171131825669736e-31,7.215113982267094e-31,7.213114781967214e-31,7.2111155816673335e-31,7.209116381367454e-31,7.207117181067574e-31,7.205117980767693e-31,7.203118780467813e-31,7.201119580167934e-31,7.199120379868053e-31,7.197121179568173e-31,7.1951219792682935e-31,7.193122778968413e-31,7.191123578668533e-31,7.1891243783686534e-31,7.187125178068773e-31,7.185125977768893e-31,7.183126777469013e-31,7.181127577169133e-31,7.179128376869253e-31,7.177129176569373e-31,7.175129976269493e-31,7.173130775969613e-31,7.171131575669732e-31,7.169132375369853e-31,7.1671331750699726e-31,7.165133974770092e-31,7.163134774470213e-31,7.1611355741703325e-31,7.159136373870452e-31,7.157137173570573e-31,7.155137973270692e-31,7.153138772970812e-31,7.151139572670933e-31,7.149140372371052e-31,7.147141172071172e-31,7.145141971771292e-31,7.143142771471412e-31,7.141143571171532e-31,7.139144370871652e-31,7.137145170571772e-31,7.135145970271892e-31,7.1331467699720115e-31,7.131147569672132e-31,7.129148369372252e-31,7.127149169072371e-31,7.125149968772492e-31,7.123150768472612e-31,7.121151568172731e-31,7.119152367872852e-31,7.1171531675729716e-31,7.115153967273091e-31,7.113154766973211e-31,7.1111555666733315e-31,7.109156366373451e-31,7.107157166073571e-31,7.105157965773691e-31,7.103158765473811e-31,7.101159565173931e-31,7.099160364874051e-31,7.097161164574171e-31,7.095161964274291e-31,7.093162763974411e-31,7.091163563674531e-31,7.089164363374651e-31,7.08716516307477e-31,7.085165962774891e-31,7.0831667624750105e-31,7.08116756217513e-31,7.079168361875251e-31,7.07716916157537e-31,7.07516996127549e-31,7.073170760975611e-31,7.07117156067573e-31,7.06917236037585e-31,7.0671731600759706e-31,7.06517395977609e-31,7.06317475947621e-31,7.0611755591763305e-31,7.05917635887645e-31,7.05717715857657e-31,7.0551779582766895e-31,7.05317875797681e-31,7.05117955767693e-31,7.049180357377049e-31,7.04718115707717e-31,7.04518195677729e-31,7.043182756477409e-31,7.04118355617753e-31,7.03918435587765e-31,7.037185155577769e-31,7.03518595527789e-31,7.0331867549780095e-31,7.031187554678129e-31,7.029188354378249e-31,7.027189154078369e-31,7.025189953778489e-31,7.023190753478609e-31,7.021191553178729e-31,7.019192352878849e-31,7.017193152578969e-31,7.015193952279089e-31,7.013194751979209e-31,7.011195551679329e-31,7.009196351379449e-31,7.007197151079569e-31,7.0051979507796885e-31,7.003198750479809e-31,7.001199550179929e-31,6.999200349880048e-31,6.997201149580168e-31,6.995201949280289e-31,6.993202748980408e-31,6.991203548680528e-31,6.989204348380649e-31,6.987205148080768e-31,6.985205947780888e-31,6.9832067474810085e-31,6.981207547181128e-31,6.979208346881248e-31,6.977209146581368e-31,6.975209946281488e-31,6.973210745981608e-31,6.9712115456817275e-31,6.969212345381848e-31,6.967213145081968e-31,6.965213944782087e-31,6.963214744482208e-31,6.961215544182328e-31,6.959216343882447e-31,6.957217143582568e-31,6.9552179432826875e-31,6.953218742982807e-31,6.951219542682928e-31,6.949220342383047e-31,6.947221142083167e-31,6.945221941783288e-31,6.943222741483407e-31,6.941223541183527e-31,6.939224340883647e-31,6.937225140583767e-31,6.935225940283887e-31,6.933226739984007e-31,6.931227539684127e-31,6.929228339384247e-31,6.9272291390843665e-31,6.925229938784487e-31,6.923230738484607e-31,6.9212315381847265e-31,6.919232337884847e-31,6.917233137584967e-31,6.915233937285086e-31,6.913234736985207e-31,6.911235536685327e-31,6.909236336385446e-31,6.907237136085566e-31,6.9052379357856865e-31,6.903238735485806e-31,6.901239535185926e-31,6.8992403348860464e-31,6.897241134586166e-31,6.895241934286286e-31,6.893242733986406e-31,6.891243533686526e-31,6.889244333386646e-31,6.887245133086766e-31,6.885245932786886e-31,6.883246732487006e-31,6.881247532187125e-31,6.879248331887246e-31,6.8772491315873655e-31,6.875249931287485e-31,6.873250730987606e-31,6.8712515306877255e-31,6.869252330387845e-31,6.867253130087966e-31,6.865253929788085e-31,6.863254729488205e-31,6.861255529188326e-31,6.859256328888445e-31,6.857257128588565e-31,6.8552579282886855e-31,6.853258727988805e-31,6.851259527688925e-31,6.849260327389045e-31,6.847261127089165e-31,6.845261926789285e-31,6.8432627264894045e-31,6.841263526189525e-31,6.839264325889645e-31,6.837265125589764e-31,6.835265925289885e-31,6.833266724990005e-31,6.831267524690124e-31,6.829268324390245e-31,6.8272691240903645e-31,6.825269923790484e-31,6.823270723490604e-31,6.8212715231907245e-31,6.819272322890844e-31,6.817273122590964e-31,6.815273922291084e-31,6.813274721991204e-31,6.811275521691324e-31,6.809276321391444e-31,6.807277121091564e-31,6.805277920791684e-31,6.803278720491804e-31,6.801279520191924e-31,6.799280319892044e-31,6.797281119592164e-31,6.795281919292284e-31,6.7932827189924035e-31,6.791283518692523e-31,6.789284318392644e-31,6.787285118092763e-31,6.785285917792883e-31,6.783286717493004e-31,6.781287517193123e-31,6.779288316893243e-31,6.7772891165933636e-31,6.775289916293483e-31,6.773290715993603e-31,6.7712915156937235e-31,6.769292315393843e-31,6.767293115093963e-31,6.7652939147940825e-31,6.763294714494203e-31,6.761295514194323e-31,6.759296313894442e-31,6.757297113594563e-31,6.755297913294683e-31,6.753298712994802e-31,6.751299512694923e-31,6.749300312395043e-31,6.747301112095162e-31,6.745301911795283e-31,6.7433027114954025e-31,6.741303511195522e-31,6.739304310895643e-31,6.737305110595762e-31,6.735305910295882e-31,6.733306709996002e-31,6.731307509696122e-31,6.729308309396242e-31,6.727309109096362e-31,6.725309908796482e-31,6.723310708496602e-31,6.721311508196722e-31,6.719312307896842e-31,6.717313107596962e-31,6.7153139072970815e-31,6.713314706997202e-31,6.711315506697322e-31,6.709316306397441e-31,6.707317106097561e-31,6.705317905797682e-31,6.703318705497801e-31,6.701319505197921e-31,6.699320304898042e-31,6.697321104598161e-31,6.695321904298281e-31,6.6933227039984015e-31,6.691323503698521e-31,6.689324303398641e-31,6.687325103098761e-31,6.685325902798881e-31,6.683326702499001e-31,6.681327502199121e-31,6.679328301899241e-31,6.677329101599361e-31,6.67532990129948e-31,6.673330700999601e-31,6.671331500699721e-31,6.66933230039984e-31,6.667333100099961e-31,6.6653338998000805e-31,6.6633346995002e-31,6.661335499200321e-31,6.65933629890044e-31,6.65733709860056e-31,6.655337898300681e-31,6.6533386980008e-31,6.65133949770092e-31,6.64934029740104e-31,6.64734109710116e-31,6.64534189680128e-31,6.6433426965014e-31,6.64134349620152e-31,6.63934429590164e-31,6.6373450956017595e-31,6.63534589530188e-31,6.633346695002e-31,6.6313474947021194e-31,6.62934829440224e-31,6.62734909410236e-31,6.625349893802479e-31,6.6233506935026e-31,6.62135149320272e-31,6.619352292902839e-31,6.617353092602959e-31,6.6153538923030795e-31,6.613354692003199e-31,6.611355491703319e-31,6.609356291403439e-31,6.607357091103559e-31,6.605357890803679e-31,6.603358690503799e-31,6.601359490203919e-31,6.599360289904039e-31,6.597361089604159e-31,6.595361889304279e-31,6.593362689004399e-31,6.591363488704519e-31,6.589364288404639e-31,6.5873650881047585e-31,6.585365887804878e-31,6.583366687504999e-31,6.5813674872051185e-31,6.579368286905238e-31,6.577369086605359e-31,6.575369886305478e-31,6.573370686005598e-31,6.571371485705719e-31,6.569372285405838e-31,6.567373085105958e-31,6.5653738848060785e-31,6.563374684506198e-31,6.561375484206318e-31,6.5593762839064376e-31,6.557377083606558e-31,6.555377883306678e-31,6.5533786830067975e-31,6.551379482706918e-31,6.549380282407038e-31,6.547381082107157e-31,6.545381881807278e-31,6.543382681507398e-31,6.541383481207517e-31,6.539384280907638e-31,6.5373850806077575e-31,6.535385880307877e-31,6.533386680007998e-31,6.5313874797081175e-31,6.529388279408237e-31,6.527389079108357e-31,6.525389878808477e-31,6.523390678508597e-31,6.521391478208717e-31,6.519392277908837e-31,6.517393077608957e-31,6.515393877309077e-31,6.513394677009197e-31,6.511395476709317e-31,6.5093962764094366e-31,6.507397076109557e-31,6.505397875809677e-31,6.5033986755097965e-31,6.501399475209916e-31,6.499400274910037e-31,6.497401074610156e-31,6.495401874310276e-31,6.493402674010397e-31,6.491403473710516e-31,6.489404273410636e-31,6.4874050731107565e-31,6.485405872810876e-31,6.483406672510996e-31,6.4814074722111165e-31,6.479408271911236e-31,6.477409071611356e-31,6.475409871311476e-31,6.473410671011596e-31,6.471411470711716e-31,6.469412270411835e-31,6.467413070111956e-31,6.465413869812076e-31,6.463414669512195e-31,6.461415469212316e-31,6.459416268912436e-31,6.457417068612555e-31,6.455417868312676e-31,6.4534186680127955e-31,6.451419467712915e-31,6.449420267413036e-31,6.447421067113155e-31,6.445421866813275e-31,6.443422666513395e-31,6.441423466213515e-31,6.439424265913635e-31,6.437425065613755e-31,6.435425865313875e-31,6.433426665013995e-31,6.431427464714115e-31,6.429428264414235e-31,6.427429064114355e-31,6.4254298638144745e-31,6.423430663514595e-31,6.421431463214715e-31,6.419432262914834e-31,6.417433062614955e-31,6.415433862315075e-31,6.413434662015194e-31,6.411435461715314e-31,6.409436261415435e-31,6.407437061115554e-31,6.405437860815674e-31,6.4034386605157945e-31,6.401439460215914e-31,6.399440259916034e-31,6.397441059616154e-31,6.395441859316274e-31,6.393442659016394e-31,6.391443458716514e-31,6.389444258416634e-31,6.387445058116754e-31,6.385445857816873e-31,6.383446657516994e-31,6.381447457217114e-31,6.379448256917233e-31,6.377449056617354e-31,6.3754498563174735e-31,6.373450656017593e-31,6.371451455717714e-31,6.369452255417833e-31,6.367453055117953e-31,6.365453854818074e-31,6.363454654518193e-31,6.361455454218313e-31,6.359456253918434e-31,6.357457053618553e-31,6.355457853318673e-31,6.353458653018793e-31,6.351459452718913e-31,6.349460252419033e-31,6.3474610521191525e-31,6.345461851819273e-31,6.343462651519393e-31,6.3414634512195124e-31,6.339464250919633e-31,6.337465050619753e-31,6.335465850319872e-31,6.333466650019993e-31,6.331467449720113e-31,6.329468249420232e-31,6.327469049120352e-31,6.3254698488204725e-31,6.323470648520592e-31,6.321471448220712e-31,6.319472247920832e-31,6.317473047620952e-31,6.315473847321072e-31,6.313474647021192e-31,6.311475446721312e-31,6.309476246421432e-31,6.307477046121552e-31,6.305477845821672e-31,6.303478645521792e-31,6.301479445221912e-31,6.299480244922032e-31,6.2974810446221515e-31,6.295481844322271e-31,6.293482644022392e-31,6.2914834437225114e-31,6.289484243422631e-31,6.287485043122752e-31,6.285485842822871e-31,6.283486642522991e-31,6.281487442223112e-31,6.279488241923231e-31,6.277489041623351e-31,6.2754898413234715e-31,6.273490641023591e-31,6.271491440723711e-31,6.269492240423831e-31,6.267493040123951e-31,6.265493839824071e-31,6.2634946395241905e-31,6.261495439224311e-31,6.259496238924431e-31,6.25749703862455e-31,6.255497838324671e-31,6.253498638024791e-31,6.25149943772491e-31,6.249500237425031e-31,6.2475010371251505e-31,6.24550183682527e-31,6.243502636525391e-31,6.2415034362255104e-31,6.23950423592563e-31,6.23750503562575e-31,6.23550583532587e-31,6.23350663502599e-31,6.23150743472611e-31,6.22950823442623e-31,6.22750903412635e-31,6.22550983382647e-31,6.22351063352659e-31,6.22151143322671e-31,6.2195122329268296e-31,6.21751303262695e-31,6.21551383232707e-31,6.2135146320271895e-31,6.21151543172731e-31,6.20951623142743e-31,6.207517031127549e-31,6.205517830827669e-31,6.20351863052779e-31,6.201519430227909e-31,6.199520229928029e-31,6.1975210296281495e-31,6.195521829328269e-31,6.193522629028389e-31,6.1915234287285094e-31,6.189524228428629e-31,6.187525028128749e-31,6.185525827828869e-31,6.183526627528989e-31,6.181527427229109e-31,6.179528226929228e-31,6.177529026629349e-31,6.175529826329469e-31,6.173530626029588e-31,6.171531425729709e-31,6.1695322254298286e-31,6.167533025129948e-31,6.165533824830069e-31,6.1635346245301885e-31,6.161535424230308e-31,6.159536223930429e-31,6.157537023630548e-31,6.155537823330668e-31,6.153538623030789e-31,6.151539422730908e-31,6.149540222431028e-31,6.147541022131148e-31,6.145541821831268e-31,6.143542621531388e-31,6.141543421231508e-31,6.139544220931628e-31,6.137545020631748e-31,6.1355458203318675e-31,6.133546620031988e-31,6.131547419732108e-31,6.129548219432227e-31,6.127549019132348e-31,6.125549818832468e-31,6.123550618532587e-31,6.121551418232707e-31,6.1195522179328276e-31,6.117553017632947e-31,6.115553817333067e-31,6.1135546170331875e-31,6.111555416733307e-31,6.109556216433427e-31,6.107557016133547e-31,6.105557815833667e-31,6.103558615533787e-31,6.101559415233907e-31,6.099560214934027e-31,6.097561014634147e-31,6.095561814334267e-31,6.093562614034387e-31,6.091563413734507e-31,6.089564213434626e-31,6.087565013134747e-31,6.0855658128348665e-31,6.083566612534986e-31,6.081567412235107e-31,6.079568211935226e-31,6.077569011635346e-31,6.075569811335467e-31,6.073570611035586e-31,6.071571410735706e-31,6.0695722104358266e-31,6.067573010135946e-31,6.065573809836066e-31,6.063574609536186e-31,6.061575409236306e-31,6.059576208936426e-31,6.0575770086365455e-31,6.055577808336666e-31,6.053578608036786e-31,6.051579407736905e-31,6.049580207437026e-31,6.047581007137146e-31,6.045581806837265e-31,6.043582606537386e-31,6.041583406237506e-31,6.039584205937625e-31,6.037585005637746e-31,6.0355858053378655e-31,6.033586605037985e-31,6.031587404738105e-31,6.029588204438225e-31,6.027589004138345e-31,6.025589803838465e-31,6.023590603538585e-31,6.021591403238705e-31,6.019592202938825e-31,6.017593002638945e-31,6.015593802339065e-31,6.013594602039185e-31,6.011595401739305e-31,6.009596201439425e-31,6.0075970011395445e-31,6.005597800839664e-31,6.003598600539785e-31,6.001599400239904e-31,5.999600199940024e-31,5.997600999640145e-31,5.995601799340264e-31,5.993602599040384e-31,5.991603398740505e-31,5.989604198440624e-31,5.987604998140744e-31,5.9856057978408645e-31,5.983606597540984e-31,5.981607397241104e-31,5.979608196941224e-31,5.977608996641344e-31,5.975609796341464e-31,5.9736105960415835e-31,5.971611395741704e-31,5.969612195441824e-31,5.967612995141943e-31,5.965613794842064e-31,5.963614594542184e-31,5.961615394242303e-31,5.959616193942424e-31,5.9576169936425435e-31,5.955617793342663e-31,5.953618593042784e-31,5.9516193927429034e-31,5.949620192443023e-31,5.947620992143144e-31,5.945621791843263e-31,5.943622591543383e-31,5.941623391243503e-31,5.939624190943623e-31,5.937624990643743e-31,5.935625790343863e-31,5.933626590043983e-31,5.931627389744103e-31,5.9296281894442225e-31,5.927628989144343e-31,5.925629788844463e-31,5.9236305885445825e-31,5.921631388244703e-31,5.919632187944823e-31,5.917632987644942e-31,5.915633787345062e-31,5.913634587045183e-31,5.911635386745302e-31,5.909636186445422e-31,5.9076369861455425e-31,5.905637785845662e-31,5.903638585545782e-31,5.9016393852459024e-31,5.899640184946022e-31,5.897640984646142e-31,5.895641784346262e-31,5.893642584046382e-31,5.891643383746502e-31,5.889644183446622e-31,5.887644983146742e-31,5.885645782846862e-31,5.883646582546981e-31,5.881647382247102e-31,5.8796481819472215e-31,5.877648981647341e-31,5.875649781347462e-31,5.8736505810475815e-31,5.871651380747701e-31,5.869652180447822e-31,5.867652980147941e-31,5.865653779848061e-31,5.863654579548182e-31,5.861655379248301e-31,5.859656178948421e-31,5.857656978648541e-31,5.855657778348661e-31,5.853658578048781e-31,5.851659377748901e-31,5.849660177449021e-31,5.847660977149141e-31,5.8456617768492605e-31,5.843662576549381e-31,5.841663376249501e-31,5.83966417594962e-31,5.837664975649741e-31,5.835665775349861e-31,5.83366657504998e-31,5.831667374750101e-31,5.8296681744502206e-31,5.82766897415034e-31,5.82566977385046e-31,5.8236705735505805e-31,5.8216713732507e-31,5.81967217295082e-31,5.81767297265094e-31,5.81567377235106e-31,5.81367457205118e-31,5.8116753717513e-31,5.80967617145142e-31,5.80767697115154e-31,5.80567777085166e-31,5.80367857055178e-31,5.8016793702519e-31,5.799680169952019e-31,5.79768096965214e-31,5.7956817693522595e-31,5.793682569052379e-31,5.7916833687525e-31,5.789684168452619e-31,5.787684968152739e-31,5.78568576785286e-31,5.783686567552979e-31,5.781687367253099e-31,5.7796881669532196e-31,5.777688966653339e-31,5.775689766353459e-31,5.7736905660535795e-31,5.771691365753699e-31,5.769692165453819e-31,5.7676929651539385e-31,5.765693764854059e-31,5.763694564554179e-31,5.761695364254298e-31,5.759696163954419e-31,5.757696963654539e-31,5.755697763354658e-31,5.753698563054779e-31,5.751699362754899e-31,5.749700162455018e-31,5.747700962155139e-31,5.7457017618552585e-31,5.743702561555378e-31,5.741703361255498e-31,5.739704160955618e-31,5.737704960655738e-31,5.735705760355858e-31,5.733706560055978e-31,5.731707359756098e-31,5.729708159456218e-31,5.727708959156338e-31,5.725709758856458e-31,5.723710558556578e-31,5.721711358256698e-31,5.719712157956818e-31,5.7177129576569375e-31,5.715713757357058e-31,5.713714557057178e-31,5.711715356757297e-31,5.709716156457417e-31,5.707716956157538e-31,5.705717755857657e-31,5.703718555557777e-31,5.701719355257898e-31,5.699720154958017e-31,5.697720954658137e-31,5.6957217543582575e-31,5.693722554058377e-31,5.691723353758497e-31,5.689724153458617e-31,5.687724953158737e-31,5.685725752858857e-31,5.6837265525589764e-31,5.681727352259097e-31,5.679728151959217e-31,5.677728951659336e-31,5.675729751359457e-31,5.673730551059577e-31,5.671731350759696e-31,5.669732150459817e-31,5.6677329501599365e-31,5.665733749860056e-31,5.663734549560177e-31,5.661735349260296e-31,5.659736148960416e-31,5.657736948660537e-31,5.655737748360656e-31,5.653738548060776e-31,5.651739347760896e-31,5.649740147461016e-31,5.647740947161136e-31,5.645741746861256e-31,5.643742546561376e-31,5.641743346261496e-31,5.6397441459616155e-31,5.637744945661736e-31,5.635745745361856e-31,5.6337465450619755e-31,5.631747344762096e-31,5.629748144462216e-31,5.627748944162335e-31,5.625749743862456e-31,5.623750543562576e-31,5.621751343262695e-31,5.619752142962815e-31,5.6177529426629355e-31,5.615753742363055e-31,5.613754542063175e-31,5.611755341763295e-31,5.609756141463415e-31,5.607756941163535e-31,5.605757740863655e-31,5.603758540563775e-31,5.601759340263895e-31,5.599760139964015e-31,5.597760939664135e-31,5.595761739364255e-31,5.593762539064374e-31,5.591763338764495e-31,5.5897641384646145e-31,5.587764938164734e-31,5.585765737864855e-31,5.5837665375649745e-31,5.581767337265094e-31,5.579768136965215e-31,5.577768936665334e-31,5.575769736365454e-31,5.573770536065575e-31,5.571771335765694e-31,5.569772135465814e-31,5.5677729351659345e-31,5.565773734866054e-31,5.563774534566174e-31,5.5617753342662936e-31,5.559776133966414e-31,5.557776933666534e-31,5.5557777333666535e-31,5.553778533066774e-31,5.551779332766894e-31,5.549780132467013e-31,5.547780932167134e-31,5.545781731867254e-31,5.543782531567373e-31,5.541783331267494e-31,5.5397841309676135e-31,5.537784930667733e-31,5.535785730367853e-31,5.5337865300679735e-31,5.531787329768093e-31,5.529788129468213e-31,5.527788929168333e-31,5.525789728868453e-31,5.523790528568573e-31,5.521791328268693e-31,5.519792127968813e-31,5.517792927668933e-31,5.515793727369053e-31,5.513794527069173e-31,5.511795326769293e-31,5.509796126469413e-31,5.507796926169533e-31,5.5057977258696525e-31,5.503798525569772e-31,5.501799325269893e-31,5.499800124970012e-31,5.497800924670132e-31,5.495801724370253e-31,5.493802524070372e-31,5.491803323770492e-31,5.4898041234706125e-31,5.487804923170732e-31,5.485805722870852e-31,5.4838065225709725e-31,5.481807322271092e-31,5.479808121971212e-31,5.4778089216713315e-31,5.475809721371452e-31,5.473810521071572e-31,5.471811320771691e-31,5.469812120471812e-31,5.467812920171932e-31,5.465813719872051e-31,5.463814519572172e-31,5.461815319272292e-31,5.459816118972411e-31,5.457816918672532e-31,5.4558177183726515e-31,5.453818518072771e-31,5.451819317772892e-31,5.449820117473011e-31,5.447820917173131e-31,5.445821716873251e-31,5.443822516573371e-31,5.441823316273491e-31,5.439824115973611e-31,5.437824915673731e-31,5.435825715373851e-31,5.433826515073971e-31,5.431827314774091e-31,5.429828114474211e-31,5.4278289141743305e-31,5.425829713874451e-31,5.423830513574571e-31,5.42183131327469e-31,5.41983211297481e-31,5.417832912674931e-31,5.41583371237505e-31,5.41383451207517e-31,5.411835311775291e-31,5.40983611147541e-31,5.40783691117553e-31,5.4058377108756505e-31,5.40383851057577e-31,5.40183931027589e-31,5.39984010997601e-31,5.39784090967613e-31,5.39584170937625e-31,5.39384250907637e-31,5.39184330877649e-31,5.38984410847661e-31,5.387844908176729e-31,5.38584570787685e-31,5.38384650757697e-31,5.381847307277089e-31,5.37984810697721e-31,5.3778489066773295e-31,5.375849706377449e-31,5.37385050607757e-31,5.371851305777689e-31,5.369852105477809e-31,5.36785290517793e-31,5.365853704878049e-31,5.363854504578169e-31,5.361855304278289e-31,5.359856103978409e-31,5.357856903678529e-31,5.355857703378649e-31,5.353858503078769e-31,5.351859302778889e-31,5.3498601024790085e-31,5.347860902179129e-31,5.345861701879249e-31,5.3438625015793684e-31,5.341863301279489e-31,5.339864100979609e-31,5.337864900679728e-31,5.335865700379849e-31,5.333866500079969e-31,5.331867299780088e-31,5.329868099480208e-31,5.3278688991803285e-31,5.325869698880448e-31,5.323870498580568e-31,5.321871298280688e-31,5.319872097980808e-31,5.317872897680928e-31,5.315873697381048e-31,5.313874497081168e-31,5.311875296781288e-31,5.309876096481408e-31,5.307876896181528e-31,5.305877695881648e-31,5.303878495581768e-31,5.301879295281888e-31,5.2998800949820075e-31,5.297880894682127e-31,5.295881694382248e-31,5.2938824940823674e-31,5.291883293782487e-31,5.289884093482608e-31,5.287884893182727e-31,5.285885692882847e-31,5.283886492582968e-31,5.281887292283087e-31,5.279888091983207e-31,5.2778888916833275e-31,5.275889691383447e-31,5.273890491083567e-31,5.2718912907836866e-31,5.269892090483807e-31,5.267892890183927e-31,5.2658936898840465e-31,5.263894489584167e-31,5.261895289284287e-31,5.259896088984406e-31,5.257896888684527e-31,5.255897688384647e-31,5.253898488084766e-31,5.251899287784887e-31,5.2499000874850065e-31,5.247900887185126e-31,5.245901686885247e-31,5.2439024865853664e-31,5.241903286285486e-31,5.239904085985606e-31,5.237904885685726e-31,5.235905685385846e-31,5.233906485085966e-31,5.231907284786086e-31,5.229908084486206e-31,5.227908884186326e-31,5.225909683886446e-31,5.223910483586566e-31,5.2219112832866856e-31,5.219912082986806e-31,5.217912882686926e-31,5.2159136823870455e-31,5.213914482087165e-31,5.211915281787286e-31,5.209916081487405e-31,5.207916881187525e-31,5.205917680887646e-31,5.203918480587765e-31,5.201919280287885e-31,5.1999200799880055e-31,5.197920879688125e-31,5.195921679388245e-31,5.1939224790883655e-31,5.191923278788485e-31,5.189924078488605e-31,5.187924878188725e-31,5.185925677888845e-31,5.183926477588965e-31,5.181927277289084e-31,5.179928076989205e-31,5.177928876689325e-31,5.175929676389444e-31,5.173930476089565e-31,5.1719312757896846e-31,5.169932075489804e-31,5.167932875189925e-31,5.1659336748900445e-31,5.163934474590164e-31,5.161935274290285e-31,5.159936073990404e-31,5.157936873690524e-31,5.155937673390644e-31,5.153938473090764e-31,5.151939272790884e-31,5.149940072491004e-31,5.147940872191124e-31,5.145941671891244e-31,5.143942471591364e-31,5.141943271291484e-31,5.139944070991604e-31,5.1379448706917235e-31,5.135945670391844e-31,5.133946470091964e-31,5.131947269792083e-31,5.129948069492204e-31,5.127948869192324e-31,5.125949668892443e-31,5.123950468592563e-31,5.1219512682926836e-31,5.119952067992803e-31,5.117952867692923e-31,5.1159536673930435e-31,5.113954467093163e-31,5.111955266793283e-31,5.109956066493403e-31,5.107956866193523e-31,5.105957665893643e-31,5.103958465593763e-31,5.101959265293883e-31,5.099960064994003e-31,5.097960864694122e-31,5.095961664394243e-31,5.093962464094363e-31,5.091963263794482e-31,5.089964063494603e-31,5.0879648631947225e-31,5.085965662894842e-31,5.083966462594963e-31,5.081967262295082e-31,5.079968061995202e-31,5.077968861695323e-31,5.075969661395442e-31,5.073970461095562e-31,5.071971260795683e-31,5.069972060495802e-31,5.067972860195922e-31,5.065973659896042e-31,5.063974459596162e-31,5.061975259296282e-31,5.0599760589964015e-31,5.057976858696522e-31,5.055977658396642e-31,5.053978458096761e-31,5.051979257796882e-31,5.049980057497002e-31,5.047980857197121e-31,5.045981656897242e-31,5.043982456597362e-31,5.041983256297481e-31,5.039984055997601e-31,5.0379848556977215e-31,5.035985655397841e-31,5.033986455097961e-31,5.031987254798081e-31,5.029988054498201e-31,5.027988854198321e-31,5.025989653898441e-31,5.023990453598561e-31,5.021991253298681e-31,5.019992052998801e-31,5.017992852698921e-31,5.015993652399041e-31,5.013994452099161e-31,5.011995251799281e-31,5.0099960514994005e-31,5.00799685119952e-31,5.005997650899641e-31,5.00399845059976e-31,5.00199925029988e-31,5.000000050000001e-31,4.99800084970012e-31,4.99600164940024e-31,4.994002449100361e-31,4.99200324880048e-31,4.9900040485006e-31,4.9880048482007205e-31,4.98600564790084e-31,4.98400644760096e-31,4.98200724730108e-31,4.9800080470012e-31,4.97800884670132e-31,4.9760096464014395e-31,4.97401044610156e-31,4.97201124580168e-31,4.970012045501799e-31,4.96801284520192e-31,4.96601364490204e-31,4.964014444602159e-31,4.96201524430228e-31,4.9600160440023995e-31,4.958016843702519e-31,4.95601764340264e-31,4.9540184431027594e-31,4.952019242802879e-31,4.950020042502999e-31,4.948020842203119e-31,4.946021641903239e-31,4.944022441603359e-31,4.942023241303479e-31,4.940024041003599e-31,4.938024840703719e-31,4.936025640403839e-31,4.934026440103959e-31,4.9320272398040785e-31,4.930028039504199e-31,4.928028839204319e-31,4.9260296389044385e-31,4.924030438604559e-31,4.922031238304679e-31,4.920032038004798e-31,4.918032837704918e-31,4.916033637405039e-31,4.914034437105158e-31,4.912035236805278e-31,4.9100360365053985e-31,4.908036836205518e-31,4.906037635905638e-31,4.9040384356057584e-31,4.902039235305878e-31,4.900040035005998e-31,4.898040834706118e-31,4.896041634406238e-31,4.894042434106358e-31,4.892043233806477e-31,4.890044033506598e-31,4.888044833206718e-31,4.886045632906837e-31,4.884046432606958e-31,4.8820472323070775e-31,4.880048032007197e-31,4.878048831707318e-31,4.8760496314074375e-31,4.874050431107557e-31,4.872051230807678e-31,4.870052030507797e-31,4.868052830207917e-31,4.866053629908038e-31,4.864054429608157e-31,4.862055229308277e-31,4.860056029008397e-31,4.858056828708517e-31,4.856057628408637e-31,4.854058428108757e-31,4.852059227808877e-31,4.850060027508997e-31,4.8480608272091165e-31,4.846061626909237e-31,4.844062426609357e-31,4.842063226309476e-31,4.840064026009597e-31,4.838064825709717e-31,4.836065625409836e-31,4.834066425109956e-31,4.8320672248100766e-31,4.830068024510196e-31,4.828068824210316e-31,4.8260696239104365e-31,4.824070423610556e-31,4.822071223310676e-31,4.820072023010796e-31,4.818072822710916e-31,4.816073622411036e-31,4.814074422111156e-31,4.812075221811276e-31,4.810076021511396e-31,4.808076821211516e-31,4.806077620911636e-31,4.804078420611756e-31,4.802079220311875e-31,4.800080020011996e-31,4.7980808197121155e-31,4.796081619412235e-31,4.794082419112356e-31,4.792083218812475e-31,4.790084018512595e-31,4.788084818212716e-31,4.786085617912835e-31,4.784086417612955e-31,4.7820872173130756e-31,4.780088017013195e-31,4.778088816713315e-31,4.776089616413435e-31,4.774090416113555e-31,4.772091215813675e-31,4.7700920155137945e-31,4.768092815213915e-31,4.766093614914035e-31,4.764094414614154e-31,4.762095214314275e-31,4.760096014014395e-31,4.758096813714514e-31,4.756097613414635e-31,4.754098413114755e-31,4.752099212814874e-31,4.750100012514995e-31,4.7481008122151145e-31,4.746101611915234e-31,4.744102411615354e-31,4.742103211315474e-31,4.740104011015594e-31,4.738104810715714e-31,4.736105610415834e-31,4.734106410115954e-31,4.732107209816074e-31,4.730108009516194e-31,4.728108809216314e-31,4.726109608916434e-31,4.724110408616554e-31,4.722111208316674e-31,4.7201120080167935e-31,4.718112807716913e-31,4.716113607417034e-31,4.714114407117153e-31,4.712115206817273e-31,4.710116006517394e-31,4.708116806217513e-31,4.706117605917633e-31,4.704118405617754e-31,4.702119205317873e-31,4.700120005017993e-31,4.6981208047181135e-31,4.696121604418233e-31,4.694122404118353e-31,4.692123203818473e-31,4.690124003518593e-31,4.688124803218713e-31,4.6861256029188324e-31,4.684126402618953e-31,4.682127202319073e-31,4.680128002019192e-31,4.678128801719313e-31,4.676129601419433e-31,4.674130401119552e-31,4.672131200819673e-31,4.6701320005197925e-31,4.668132800219912e-31,4.666133599920033e-31,4.664134399620152e-31,4.662135199320272e-31,4.660135999020393e-31,4.658136798720512e-31,4.656137598420632e-31,4.654138398120752e-31,4.652139197820872e-31,4.650139997520992e-31,4.648140797221112e-31,4.646141596921232e-31,4.644142396621352e-31,4.6421431963214715e-31,4.640143996021592e-31,4.638144795721712e-31,4.6361455954218315e-31,4.634146395121952e-31,4.632147194822072e-31,4.630147994522191e-31,4.628148794222311e-31,4.626149593922432e-31,4.624150393622551e-31,4.622151193322671e-31,4.6201519930227915e-31,4.618152792722911e-31,4.616153592423031e-31,4.614154392123151e-31,4.612155191823271e-31,4.610155991523391e-31,4.608156791223511e-31,4.606157590923631e-31,4.604158390623751e-31,4.602159190323871e-31,4.600159990023991e-31,4.598160789724111e-31,4.59616158942423e-31,4.594162389124351e-31,4.5921631888244705e-31,4.59016398852459e-31,4.588164788224711e-31,4.5861655879248305e-31,4.58416638762495e-31,4.582167187325071e-31,4.58016798702519e-31,4.57816878672531e-31,4.576169586425431e-31,4.57417038612555e-31,4.57217118582567e-31,4.57017198552579e-31,4.56817278522591e-31,4.56617358492603e-31,4.5641743846261496e-31,4.56217518432627e-31,4.56017598402639e-31,4.5581767837265095e-31,4.55617758342663e-31,4.55417838312675e-31,4.552179182826869e-31,4.55017998252699e-31,4.54818078222711e-31,4.546181581927229e-31,4.54418238162735e-31,4.5421831813274695e-31,4.540183981027589e-31,4.538184780727709e-31,4.5361855804278295e-31,4.534186380127949e-31,4.532187179828069e-31,4.530187979528189e-31,4.528188779228309e-31,4.526189578928429e-31,4.524190378628549e-31,4.522191178328669e-31,4.520191978028789e-31,4.518192777728909e-31,4.516193577429029e-31,4.514194377129149e-31,4.512195176829268e-31,4.510195976529389e-31,4.5081967762295085e-31,4.506197575929628e-31,4.504198375629749e-31,4.502199175329868e-31,4.500199975029988e-31,4.498200774730109e-31,4.496201574430228e-31,4.494202374130348e-31,4.4922031738304685e-31,4.490203973530588e-31,4.488204773230708e-31,4.4862055729308285e-31,4.484206372630948e-31,4.482207172331068e-31,4.4802079720311875e-31,4.478208771731308e-31,4.476209571431428e-31,4.474210371131547e-31,4.472211170831668e-31,4.470211970531788e-31,4.468212770231907e-31,4.466213569932028e-31,4.464214369632148e-31,4.462215169332267e-31,4.460215969032388e-31,4.4582167687325075e-31,4.456217568432627e-31,4.454218368132747e-31,4.452219167832867e-31,4.450219967532987e-31,4.448220767233107e-31,4.446221566933227e-31,4.444222366633347e-31,4.442223166333467e-31,4.440223966033587e-31,4.438224765733707e-31,4.436225565433827e-31,4.434226365133947e-31,4.432227164834067e-31,4.4302279645341865e-31,4.428228764234307e-31,4.426229563934427e-31,4.424230363634546e-31,4.422231163334666e-31,4.420231963034787e-31,4.418232762734906e-31,4.416233562435026e-31,4.414234362135147e-31,4.412235161835266e-31,4.410235961535386e-31,4.4082367612355065e-31,4.406237560935626e-31,4.404238360635746e-31,4.402239160335866e-31,4.400239960035986e-31,4.398240759736106e-31,4.3962415594362254e-31,4.394242359136346e-31,4.392243158836466e-31,4.390243958536585e-31,4.388244758236706e-31,4.386245557936826e-31,4.384246357636945e-31,4.382247157337066e-31,4.3802479570371855e-31,4.378248756737305e-31,4.376249556437426e-31,4.374250356137545e-31,4.372251155837665e-31,4.370251955537786e-31,4.368252755237905e-31,4.366253554938025e-31,4.364254354638145e-31,4.362255154338265e-31,4.360255954038385e-31,4.358256753738505e-31,4.356257553438625e-31,4.354258353138745e-31,4.3522591528388645e-31,4.350259952538985e-31,4.348260752239105e-31,4.3462615519392244e-31,4.344262351639345e-31,4.342263151339465e-31,4.340263951039584e-31,4.338264750739705e-31,4.336265550439825e-31,4.334266350139944e-31,4.332267149840064e-31,4.3302679495401845e-31,4.328268749240304e-31,4.326269548940424e-31,4.324270348640544e-31,4.322271148340664e-31,4.320271948040784e-31,4.318272747740904e-31,4.316273547441024e-31,4.314274347141144e-31,4.312275146841264e-31,4.310275946541384e-31,4.308276746241504e-31,4.306277545941623e-31,4.304278345641744e-31,4.3022791453418635e-31,4.300279945041983e-31,4.298280744742104e-31,4.2962815444422234e-31,4.294282344142343e-31,4.292283143842464e-31,4.290283943542583e-31,4.288284743242703e-31,4.286285542942824e-31,4.284286342642943e-31,4.282287142343063e-31,4.2802879420431835e-31,4.278288741743303e-31,4.276289541443423e-31,4.2742903411435426e-31,4.272291140843663e-31,4.270291940543783e-31,4.2682927402439025e-31,4.266293539944023e-31,4.264294339644143e-31,4.262295139344262e-31,4.260295939044383e-31,4.258296738744503e-31,4.256297538444622e-31,4.254298338144743e-31,4.2522991378448625e-31,4.250299937544982e-31,4.248300737245102e-31,4.2463015369452224e-31,4.244302336645342e-31,4.242303136345462e-31,4.240303936045582e-31,4.238304735745702e-31,4.236305535445822e-31,4.234306335145942e-31,4.232307134846062e-31,4.230307934546182e-31,4.228308734246302e-31,4.226309533946422e-31,4.2243103336465416e-31,4.222311133346662e-31,4.220311933046782e-31,4.2183127327469015e-31,4.216313532447021e-31,4.214314332147142e-31,4.212315131847261e-31,4.210315931547381e-31,4.208316731247502e-31,4.206317530947621e-31,4.204318330647741e-31,4.2023191303478615e-31,4.200319930047981e-31,4.198320729748101e-31,4.1963215294482215e-31,4.194322329148341e-31,4.192323128848461e-31,4.1903239285485805e-31,4.188324728248701e-31,4.186325527948821e-31,4.18432632764894e-31,4.182327127349061e-31,4.180327927049181e-31,4.1783287267493e-31,4.176329526449421e-31,4.1743303261495406e-31,4.17233112584966e-31,4.170331925549781e-31,4.1683327252499005e-31,4.16633352495002e-31,4.164334324650141e-31,4.16233512435026e-31,4.16033592405038e-31,4.1583367237505e-31,4.15633752345062e-31,4.15433832315074e-31,4.15233912285086e-31,4.15033992255098e-31,4.1483407222511e-31,4.14634152195122e-31,4.14434232165134e-31,4.14234312135146e-31,4.1403439210515795e-31,4.1383447207517e-31,4.13634552045182e-31,4.134346320151939e-31,4.132347119852059e-31,4.13034791955218e-31,4.128348719252299e-31,4.126349518952419e-31,4.1243503186525396e-31,4.122351118352659e-31,4.120351918052779e-31,4.1183527177528995e-31,4.116353517453019e-31,4.114354317153139e-31,4.112355116853259e-31,4.110355916553379e-31,4.108356716253499e-31,4.106357515953619e-31,4.104358315653739e-31,4.102359115353859e-31,4.100359915053978e-31,4.098360714754099e-31,4.096361514454219e-31,4.094362314154338e-31,4.092363113854459e-31,4.0903639135545785e-31,4.088364713254698e-31,4.086365512954819e-31,4.084366312654938e-31,4.082367112355058e-31,4.080367912055179e-31,4.078368711755298e-31,4.076369511455418e-31,4.074370311155538e-31,4.072371110855658e-31,4.070371910555778e-31,4.068372710255898e-31,4.066373509956018e-31,4.064374309656138e-31,4.0623751093562575e-31,4.060375909056378e-31,4.058376708756498e-31,4.056377508456617e-31,4.054378308156738e-31,4.052379107856858e-31,4.050379907556977e-31,4.048380707257098e-31,4.046381506957218e-31,4.044382306657337e-31,4.042383106357457e-31,4.0403839060575775e-31,4.038384705757697e-31,4.036385505457817e-31,4.034386305157937e-31,4.032387104858057e-31,4.030387904558177e-31,4.028388704258297e-31,4.026389503958417e-31,4.024390303658537e-31,4.022391103358657e-31,4.020391903058777e-31,4.018392702758897e-31,4.016393502459017e-31,4.014394302159137e-31,4.0123951018592565e-31,4.010395901559376e-31,4.008396701259497e-31,4.0063975009596164e-31,4.004398300659736e-31,4.002399100359857e-31,4.000399900059976e-31,3.998400699760096e-31,3.996401499460217e-31,3.994402299160336e-31,3.992403098860456e-31,3.9904038985605765e-31,3.988404698260696e-31,3.986405497960816e-31,3.9844062976609355e-31,3.982407097361056e-31,3.980407897061176e-31,3.9784086967612955e-31,3.976409496461416e-31,3.974410296161536e-31,3.972411095861655e-31,3.970411895561776e-31,3.968412695261896e-31,3.966413494962015e-31,3.964414294662136e-31,3.9624150943622555e-31,3.960415894062375e-31,3.958416693762496e-31,3.9564174934626154e-31,3.954418293162735e-31,3.952419092862855e-31,3.950419892562975e-31,3.948420692263095e-31,3.946421491963215e-31,3.944422291663335e-31,3.942423091363455e-31,3.940423891063575e-31,3.9384246907636947e-31,3.936425490463815e-31,3.9344262901639345e-31,3.9324270898640547e-31,3.930427889564175e-31,3.9284286892642945e-31,3.9264294889644146e-31,3.9244302886645347e-31,3.9224310883646544e-31,3.9204318880647745e-31,3.918432687764894e-31,3.9164334874650143e-31,3.9144342871651344e-31,3.912435086865254e-31,3.910435886565374e-31,3.9084366862654943e-31,3.906437485965614e-31,3.904438285665734e-31,3.902439085365854e-31,3.900439885065974e-31,3.898440684766094e-31,3.8964414844662137e-31,3.894442284166334e-31,3.892443083866454e-31,3.8904438835665736e-31,3.8884446832666938e-31,3.8864454829668134e-31,3.8844462826669336e-31,3.8824470823670537e-31,3.8804478820671733e-31,3.8784486817672935e-31,3.876449481467413e-31,3.8744502811675333e-31,3.8724510808676534e-31,3.870451880567773e-31,3.868452680267893e-31,3.8664534799680133e-31,3.864454279668133e-31,3.862455079368253e-31,3.8604558790683728e-31,3.858456678768493e-31,3.856457478468613e-31,3.8544582781687327e-31,3.852459077868853e-31,3.850459877568973e-31,3.8484606772690926e-31,3.8464614769692127e-31,3.8444622766693324e-31,3.8424630763694525e-31,3.8404638760695726e-31,3.8384646757696923e-31,3.8364654754698124e-31,3.8344662751699326e-31,3.8324670748700522e-31,3.8304678745701724e-31,3.828468674270292e-31,3.826469473970412e-31,3.8244702736705323e-31,3.822471073370652e-31,3.820471873070772e-31,3.8184726727708917e-31,3.816473472471012e-31,3.814474272171132e-31,3.8124750718712517e-31,3.8104758715713718e-31,3.808476671271492e-31,3.8064774709716116e-31,3.8044782706717317e-31,3.8024790703718514e-31,3.8004798700719715e-31,3.7984806697720916e-31,3.7964814694722113e-31,3.7944822691723314e-31,3.7924830688724515e-31,3.790483868572571e-31,3.7884846682726913e-31,3.786485467972811e-31,3.784486267672931e-31,3.7824870673730512e-31,3.780487867073171e-31,3.778488666773291e-31,3.776489466473411e-31,3.774490266173531e-31,3.772491065873651e-31,3.7704918655737706e-31,3.7684926652738907e-31,3.766493464974011e-31,3.7644942646741305e-31,3.7624950643742507e-31,3.7604958640743708e-31,3.7584966637744905e-31,3.7564974634746106e-31,3.7544982631747303e-31,3.7524990628748504e-31,3.7504998625749705e-31,3.74850066227509e-31,3.7465014619752103e-31,3.74450226167533e-31,3.74250306137545e-31,3.74050386107557e-31,3.73850466077569e-31,3.73650546047581e-31,3.73450626017593e-31,3.73250705987605e-31,3.73050785957617e-31,3.7285086592762896e-31,3.7265094589764097e-31,3.72451025867653e-31,3.7225110583766495e-31,3.7205118580767696e-31,3.7185126577768897e-31,3.7165134574770094e-31,3.7145142571771295e-31,3.7125150568772492e-31,3.7105158565773693e-31,3.7085166562774895e-31,3.706517455977609e-31,3.7045182556777293e-31,3.7025190553778494e-31,3.700519855077969e-31,3.698520654778089e-31,3.696521454478209e-31,3.694522254178329e-31,3.692523053878449e-31,3.6905238535785688e-31,3.688524653278689e-31,3.6865254529788086e-31,3.6845262526789287e-31,3.682527052379049e-31,3.6805278520791685e-31,3.6785286517792886e-31,3.6765294514794087e-31,3.6745302511795284e-31,3.6725310508796485e-31,3.670531850579768e-31,3.6685326502798883e-31,3.6665334499800084e-31,3.664534249680128e-31,3.6625350493802482e-31,3.6605358490803683e-31,3.658536648780488e-31,3.656537448480608e-31,3.654538248180728e-31,3.652539047880848e-31,3.650539847580968e-31,3.6485406472810877e-31,3.646541446981208e-31,3.644542246681328e-31,3.6425430463814477e-31,3.6405438460815678e-31,3.6385446457816875e-31,3.6365454454818076e-31,3.6345462451819277e-31,3.6325470448820474e-31,3.6305478445821675e-31,3.6285486442822876e-31,3.6265494439824073e-31,3.6245502436825274e-31,3.622551043382647e-31,3.620551843082767e-31,3.6185526427828873e-31,3.616553442483007e-31,3.614554242183127e-31,3.612555041883247e-31,3.610555841583367e-31,3.608556641283487e-31,3.6065574409836067e-31,3.604558240683727e-31,3.602559040383847e-31,3.6005598400839666e-31,3.5985606397840867e-31,3.5965614394842064e-31,3.5945622391843265e-31,3.5925630388844467e-31,3.5905638385845663e-31,3.5885646382846865e-31,3.5865654379848066e-31,3.5845662376849263e-31,3.5825670373850464e-31,3.580567837085166e-31,3.578568636785286e-31,3.5765694364854063e-31,3.574570236185526e-31,3.572571035885646e-31,3.570571835585766e-31,3.568572635285886e-31,3.566573434986006e-31,3.5645742346861257e-31,3.562575034386246e-31,3.560575834086366e-31,3.5585766337864856e-31,3.5565774334866057e-31,3.5545782331867254e-31,3.5525790328868455e-31,3.5505798325869656e-31,3.5485806322870853e-31,3.5465814319872054e-31,3.5445822316873255e-31,3.5425830313874452e-31,3.5405838310875653e-31,3.538584630787685e-31,3.536585430487805e-31,3.5345862301879253e-31,3.532587029888045e-31,3.530587829588165e-31,3.528588629288285e-31,3.526589428988405e-31,3.524590228688525e-31,3.5225910283886447e-31,3.5205918280887648e-31,3.518592627788885e-31,3.5165934274890046e-31,3.5145942271891247e-31,3.512595026889245e-31,3.5105958265893645e-31,3.5085966262894846e-31,3.5065974259896043e-31,3.5045982256897244e-31,3.5025990253898445e-31,3.500599825089964e-31,3.4986006247900843e-31,3.496601424490204e-31,3.494602224190324e-31,3.4926030238904442e-31,3.490603823590564e-31,3.488604623290684e-31,3.486605422990804e-31,3.484606222690924e-31,3.482607022391044e-31,3.4806078220911636e-31,3.4786086217912837e-31,3.476609421491404e-31,3.4746102211915235e-31,3.4726110208916437e-31,3.4706118205917638e-31,3.4686126202918835e-31,3.4666134199920036e-31,3.4646142196921232e-31,3.4626150193922434e-31,3.4606158190923635e-31,3.458616618792483e-31,3.4566174184926033e-31,3.4546182181927234e-31,3.452619017892843e-31,3.450619817592963e-31,3.448620617293083e-31,3.446621416993203e-31,3.444622216693323e-31,3.442623016393443e-31,3.440623816093563e-31,3.438624615793683e-31,3.4366254154938027e-31,3.434626215193923e-31,3.4326270148940425e-31,3.4306278145941626e-31,3.4286286142942827e-31,3.4266294139944024e-31,3.4246302136945225e-31,3.422631013394642e-31,3.4206318130947623e-31,3.4186326127948825e-31,3.416633412495002e-31,3.4146342121951223e-31,3.4126350118952424e-31,3.410635811595362e-31,3.408636611295482e-31,3.406637410995602e-31,3.404638210695722e-31,3.402639010395842e-31,3.4006398100959618e-31,3.398640609796082e-31,3.396641409496202e-31,3.3946422091963217e-31,3.392643008896442e-31,3.3906438085965615e-31,3.3886446082966816e-31,3.3866454079968017e-31,3.3846462076969214e-31,3.3826470073970415e-31,3.3806478070971616e-31,3.3786486067972813e-31,3.3766494064974014e-31,3.374650206197521e-31,3.3726510058976412e-31,3.3706518055977613e-31,3.368652605297881e-31,3.366653404998001e-31,3.364654204698121e-31,3.362655004398241e-31,3.360655804098361e-31,3.3586566037984807e-31,3.356657403498601e-31,3.354658203198721e-31,3.3526590028988406e-31,3.3506598025989608e-31,3.3486606022990804e-31,3.3466614019992006e-31,3.3446622016993207e-31,3.3426630013994404e-31,3.3406638010995605e-31,3.3386646007996806e-31,3.3366654004998003e-31,3.3346662001999204e-31,3.33266699990004e-31,3.33066779960016e-31,3.3286685993002803e-31,3.3266693990004e-31,3.32467019870052e-31,3.3226709984006402e-31,3.32067179810076e-31,3.31867259780088e-31,3.3166733975009997e-31,3.31467419720112e-31,3.31267499690124e-31,3.3106757966013596e-31,3.3086765963014797e-31,3.3066773960016e-31,3.3046781957017195e-31,3.3026789954018397e-31,3.3006797951019593e-31,3.2986805948020794e-31,3.2966813945021996e-31,3.2946821942023192e-31,3.2926829939024394e-31,3.290683793602559e-31,3.288684593302679e-31,3.2866853930027993e-31,3.284686192702919e-31,3.282686992403039e-31,3.280687792103159e-31,3.278688591803279e-31,3.276689391503399e-31,3.2746901912035187e-31,3.272690990903639e-31,3.270691790603759e-31,3.2686925903038786e-31,3.2666933900039987e-31,3.264694189704119e-31,3.2626949894042385e-31,3.2606957891043586e-31,3.2586965888044783e-31,3.2566973885045984e-31,3.2546981882047185e-31,3.252698987904838e-31,3.2506997876049583e-31,3.2487005873050785e-31,3.246701387005198e-31,3.2447021867053182e-31,3.242702986405438e-31,3.240703786105558e-31,3.238704585805678e-31,3.236705385505798e-31,3.234706185205918e-31,3.2327069849060376e-31,3.2307077846061578e-31,3.228708584306278e-31,3.2267093840063976e-31,3.2247101837065177e-31,3.222710983406638e-31,3.2207117831067575e-31,3.2187125828068776e-31,3.2167133825069973e-31,3.2147141822071174e-31,3.2127149819072375e-31,3.210715781607357e-31,3.2087165813074773e-31,3.2067173810075974e-31,3.204718180707717e-31,3.2027189804078372e-31,3.200719780107957e-31,3.198720579808077e-31,3.196721379508197e-31,3.194722179208317e-31,3.192722978908437e-31,3.190723778608557e-31,3.1887245783086767e-31,3.186725378008797e-31,3.1847261777089165e-31,3.1827269774090366e-31,3.1807277771091568e-31,3.1787285768092764e-31,3.1767293765093966e-31,3.1747301762095162e-31,3.1727309759096364e-31,3.1707317756097565e-31,3.168732575309876e-31,3.1667333750099963e-31,3.1647341747101164e-31,3.162734974410236e-31,3.160735774110356e-31,3.158736573810476e-31,3.156737373510596e-31,3.154738173210716e-31,3.152738972910836e-31,3.150739772610956e-31,3.148740572311076e-31,3.1467413720111957e-31,3.144742171711316e-31,3.1427429714114355e-31,3.1407437711115556e-31,3.1387445708116757e-31,3.1367453705117954e-31,3.1347461702119155e-31,3.1327469699120356e-31,3.1307477696121553e-31,3.1287485693122754e-31,3.126749369012395e-31,3.1247501687125152e-31,3.1227509684126354e-31,3.120751768112755e-31,3.118752567812875e-31,3.1167533675129953e-31,3.114754167213115e-31,3.112754966913235e-31,3.1107557666133548e-31,3.108756566313475e-31,3.106757366013595e-31,3.1047581657137147e-31,3.102758965413835e-31,3.1007597651139545e-31,3.0987605648140746e-31,3.0967613645141947e-31,3.0947621642143144e-31,3.0927629639144345e-31,3.0907637636145546e-31,3.0887645633146743e-31,3.0867653630147944e-31,3.084766162714914e-31,3.082766962415034e-31,3.0807677621151543e-31,3.078768561815274e-31,3.076769361515394e-31,3.0747701612155142e-31,3.072770960915634e-31,3.070771760615754e-31,3.0687725603158737e-31,3.066773360015994e-31,3.064774159716114e-31,3.0627749594162336e-31,3.0607757591163538e-31,3.058776558816474e-31,3.0567773585165936e-31,3.0547781582167137e-31,3.0527789579168334e-31,3.0507797576169535e-31,3.0487805573170736e-31,3.0467813570171933e-31,3.0447821567173134e-31,3.042782956417433e-31,3.040783756117553e-31,3.0387845558176733e-31,3.036785355517793e-31,3.034786155217913e-31,3.032786954918033e-31,3.030787754618153e-31,3.028788554318273e-31,3.0267893540183927e-31,3.024790153718513e-31,3.022790953418633e-31,3.0207917531187526e-31,3.0187925528188727e-31,3.016793352518993e-31,3.0147941522191125e-31,3.0127949519192326e-31,3.0107957516193523e-31,3.0087965513194724e-31,3.0067973510195926e-31,3.0047981507197122e-31,3.0027989504198324e-31,3.0007997501199525e-31,2.998800549820072e-31,2.9968013495201923e-31,2.994802149220312e-31,2.992802948920432e-31,2.990803748620552e-31,2.988804548320672e-31,2.986805348020792e-31,2.984806147720912e-31,2.982806947421032e-31,2.980807747121152e-31,2.9788085468212716e-31,2.9768093465213917e-31,2.974810146221512e-31,2.9728109459216315e-31,2.9708117456217516e-31,2.9688125453218713e-31,2.9668133450219914e-31,2.9648141447221115e-31,2.962814944422231e-31,2.9608157441223513e-31,2.9588165438224714e-31,2.956817343522591e-31,2.9548181432227112e-31,2.952818942922831e-31,2.950819742622951e-31,2.948820542323071e-31,2.946821342023191e-31,2.944822141723311e-31,2.942822941423431e-31,2.9408237411235508e-31,2.938824540823671e-31,2.9368253405237905e-31,2.9348261402239107e-31,2.932826939924031e-31,2.9308277396241505e-31,2.9288285393242706e-31,2.9268293390243907e-31,2.9248301387245104e-31,2.9228309384246305e-31,2.92083173812475e-31,2.9188325378248703e-31,2.9168333375249904e-31,2.91483413722511e-31,2.91283493692523e-31,2.91083573662535e-31,2.90883653632547e-31,2.90683733602559e-31,2.90483813572571e-31,2.90283893542583e-31,2.90083973512595e-31,2.8988405348260697e-31,2.89684133452619e-31,2.8948421342263095e-31,2.8928429339264296e-31,2.8908437336265498e-31,2.8888445333266694e-31,2.8868453330267896e-31,2.8848461327269097e-31,2.8828469324270293e-31,2.8808477321271495e-31,2.878848531827269e-31,2.8768493315273893e-31,2.8748501312275094e-31,2.872850930927629e-31,2.870851730627749e-31,2.8688525303278693e-31,2.866853330027989e-31,2.864854129728109e-31,2.8628549294282288e-31,2.860855729128349e-31,2.858856528828469e-31,2.8568573285285887e-31,2.854858128228709e-31,2.8528589279288285e-31,2.8508597276289486e-31,2.8488605273290687e-31,2.8468613270291884e-31,2.8448621267293085e-31,2.8428629264294286e-31,2.8408637261295483e-31,2.8388645258296684e-31,2.836865325529788e-31,2.8348661252299082e-31,2.8328669249300284e-31,2.830867724630148e-31,2.828868524330268e-31,2.8268693240303883e-31,2.824870123730508e-31,2.822870923430628e-31,2.8208717231307477e-31,2.818872522830868e-31,2.816873322530988e-31,2.8148741222311077e-31,2.8128749219312278e-31,2.810875721631348e-31,2.8088765213314676e-31,2.8068773210315877e-31,2.8048781207317074e-31,2.8028789204318275e-31,2.8008797201319476e-31,2.7988805198320673e-31,2.7968813195321874e-31,2.7948821192323075e-31,2.792882918932427e-31,2.7908837186325473e-31,2.788884518332667e-31,2.786885318032787e-31,2.7848861177329072e-31,2.782886917433027e-31,2.780887717133147e-31,2.7788885168332667e-31,2.776889316533387e-31,2.774890116233507e-31,2.7728909159336266e-31,2.7708917156337467e-31,2.768892515333867e-31,2.7668933150339865e-31,2.7648941147341067e-31,2.7628949144342263e-31,2.7608957141343465e-31,2.7588965138344666e-31,2.7568973135345863e-31,2.7548981132347064e-31,2.7528989129348265e-31,2.750899712634946e-31,2.7489005123350663e-31,2.746901312035186e-31,2.744902111735306e-31,2.742902911435426e-31,2.740903711135546e-31,2.738904510835666e-31,2.736905310535786e-31,2.734906110235906e-31,2.732906909936026e-31,2.7309077096361456e-31,2.7289085093362657e-31,2.726909309036386e-31,2.7249101087365055e-31,2.7229109084366256e-31,2.7209117081367453e-31,2.7189125078368654e-31,2.7169133075369855e-31,2.7149141072371052e-31,2.7129149069372253e-31,2.7109157066373455e-31,2.708916506337465e-31,2.7069173060375853e-31,2.704918105737705e-31,2.702918905437825e-31,2.700919705137945e-31,2.698920504838065e-31,2.696921304538185e-31,2.694922104238305e-31,2.6929229039384248e-31,2.690923703638545e-31,2.6889245033386646e-31,2.6869253030387847e-31,2.684926102738905e-31,2.6829269024390245e-31,2.6809277021391446e-31,2.6789285018392647e-31,2.6769293015393844e-31,2.6749301012395045e-31,2.672930900939624e-31,2.6709317006397443e-31,2.6689325003398644e-31,2.666933300039984e-31,2.6649340997401042e-31,2.6629348994402243e-31,2.660935699140344e-31,2.658936498840464e-31,2.656937298540584e-31,2.654938098240704e-31,2.652938897940824e-31,2.6509396976409437e-31,2.648940497341064e-31,2.6469412970411835e-31,2.6449420967413037e-31,2.6429428964414238e-31,2.6409436961415435e-31,2.6389444958416636e-31,2.6369452955417837e-31,2.6349460952419034e-31,2.6329468949420235e-31,2.630947694642143e-31,2.6289484943422633e-31,2.6269492940423834e-31,2.624950093742503e-31,2.622950893442623e-31,2.6209516931427433e-31,2.618952492842863e-31,2.616953292542983e-31,2.614954092243103e-31,2.612954891943223e-31,2.610955691643343e-31,2.6089564913434627e-31,2.606957291043583e-31,2.604958090743703e-31,2.6029588904438226e-31,2.6009596901439427e-31,2.5989604898440624e-31,2.5969612895441825e-31,2.5949620892443027e-31,2.5929628889444223e-31,2.5909636886445425e-31,2.588964488344662e-31,2.5869652880447823e-31,2.5849660877449024e-31,2.582966887445022e-31,2.580967687145142e-31,2.5789684868452623e-31,2.576969286545382e-31,2.574970086245502e-31,2.5729708859456218e-31,2.570971685645742e-31,2.568972485345862e-31,2.5669732850459817e-31,2.564974084746102e-31,2.562974884446222e-31,2.5609756841463416e-31,2.5589764838464617e-31,2.5569772835465814e-31,2.5549780832467015e-31,2.5529788829468216e-31,2.5509796826469413e-31,2.5489804823470614e-31,2.5469812820471815e-31,2.5449820817473012e-31,2.5429828814474213e-31,2.540983681147541e-31,2.538984480847661e-31,2.5369852805477813e-31,2.534986080247901e-31,2.532986879948021e-31,2.5309876796481407e-31,2.528988479348261e-31,2.526989279048381e-31,2.5249900787485007e-31,2.5229908784486208e-31,2.520991678148741e-31,2.5189924778488606e-31,2.5169932775489807e-31,2.5149940772491004e-31,2.5129948769492205e-31,2.5109956766493406e-31,2.5089964763494603e-31,2.5069972760495804e-31,2.5049980757497005e-31,2.50299887544982e-31,2.5009996751499403e-31,2.49900047485006e-31,2.49700127455018e-31,2.4950020742503002e-31,2.49300287395042e-31,2.49100367365054e-31,2.48900447335066e-31,2.48700527305078e-31,2.4850060727509e-31,2.4830068724510196e-31,2.4810076721511397e-31,2.47900847185126e-31,2.4770092715513795e-31,2.4750100712514997e-31,2.4730108709516198e-31,2.4710116706517395e-31,2.4690124703518596e-31,2.4670132700519793e-31,2.4650140697520994e-31,2.4630148694522195e-31,2.461015669152339e-31,2.4590164688524593e-31,2.457017268552579e-31,2.455018068252699e-31,2.453018867952819e-31,2.451019667652939e-31,2.449020467353059e-31,2.447021267053179e-31,2.445022066753299e-31,2.443022866453419e-31,2.4410236661535386e-31,2.4390244658536587e-31,2.437025265553779e-31,2.4350260652538985e-31,2.4330268649540186e-31,2.4310276646541387e-31,2.4290284643542584e-31,2.4270292640543785e-31,2.4250300637544982e-31,2.4230308634546183e-31,2.4210316631547385e-31,2.419032462854858e-31,2.4170332625549783e-31,2.4150340622550984e-31,2.413034861955218e-31,2.411035661655338e-31,2.409036461355458e-31,2.407037261055578e-31,2.405038060755698e-31,2.4030388604558178e-31,2.401039660155938e-31,2.3990404598560576e-31,2.3970412595561777e-31,2.395042059256298e-31,2.3930428589564175e-31,2.3910436586565376e-31,2.3890444583566577e-31,2.3870452580567774e-31,2.3850460577568975e-31,2.383046857457017e-31,2.3810476571571373e-31,2.3790484568572574e-31,2.377049256557377e-31,2.3750500562574972e-31,2.3730508559576173e-31,2.371051655657737e-31,2.369052455357857e-31,2.367053255057977e-31,2.365054054758097e-31,2.363054854458217e-31,2.3610556541583367e-31,2.359056453858457e-31,2.357057253558577e-31,2.3550580532586966e-31,2.3530588529588168e-31,2.3510596526589364e-31,2.3490604523590566e-31,2.3470612520591767e-31,2.3450620517592964e-31,2.3430628514594165e-31,2.3410636511595366e-31,2.3390644508596563e-31,2.3370652505597764e-31,2.335066050259896e-31,2.333066849960016e-31,2.3310676496601363e-31,2.329068449360256e-31,2.327069249060376e-31,2.325070048760496e-31,2.323070848460616e-31,2.321071648160736e-31,2.3190724478608557e-31,2.317073247560976e-31,2.315074047261096e-31,2.3130748469612156e-31,2.3110756466613357e-31,2.3090764463614554e-31,2.3070772460615755e-31,2.3050780457616957e-31,2.3030788454618153e-31,2.3010796451619355e-31,2.2990804448620556e-31,2.2970812445621752e-31,2.2950820442622954e-31,2.293082843962415e-31,2.291083643662535e-31,2.2890844433626553e-31,2.287085243062775e-31,2.285086042762895e-31,2.283086842463015e-31,2.281087642163135e-31,2.279088441863255e-31,2.2770892415633747e-31,2.275090041263495e-31,2.273090840963615e-31,2.2710916406637346e-31,2.2690924403638547e-31,2.2670932400639744e-31,2.2650940397640945e-31,2.2630948394642146e-31,2.2610956391643343e-31,2.2590964388644544e-31,2.2570972385645745e-31,2.255098038264694e-31,2.2530988379648143e-31,2.251099637664934e-31,2.249100437365054e-31,2.2471012370651743e-31,2.245102036765294e-31,2.243102836465414e-31,2.241103636165534e-31,2.239104435865654e-31,2.237105235565774e-31,2.2351060352658936e-31,2.2331068349660138e-31,2.231107634666134e-31,2.2291084343662536e-31,2.2271092340663737e-31,2.225110033766494e-31,2.2231108334666135e-31,2.2211116331667336e-31,2.2191124328668533e-31,2.2171132325669734e-31,2.2151140322670935e-31,2.213114831967213e-31,2.2111156316673333e-31,2.209116431367453e-31,2.207117231067573e-31,2.2051180307676932e-31,2.203118830467813e-31,2.201119630167933e-31,2.199120429868053e-31,2.197121229568173e-31,2.195122029268293e-31,2.1931228289684126e-31,2.1911236286685327e-31,2.189124428368653e-31,2.1871252280687725e-31,2.1851260277688926e-31,2.1831268274690128e-31,2.1811276271691324e-31,2.1791284268692526e-31,2.1771292265693722e-31,2.1751300262694924e-31,2.1731308259696125e-31,2.171131625669732e-31,2.1691324253698523e-31,2.1671332250699724e-31,2.165134024770092e-31,2.163134824470212e-31,2.161135624170332e-31,2.159136423870452e-31,2.157137223570572e-31,2.155138023270692e-31,2.153138822970812e-31,2.151139622670932e-31,2.1491404223710517e-31,2.147141222071172e-31,2.1451420217712915e-31,2.1431428214714116e-31,2.1411436211715317e-31,2.1391444208716514e-31,2.1371452205717715e-31,2.135146020271891e-31,2.1331468199720113e-31,2.1311476196721314e-31,2.129148419372251e-31,2.1271492190723712e-31,2.1251500187724914e-31,2.123150818472611e-31,2.121151618172731e-31,2.119152417872851e-31,2.117153217572971e-31,2.115154017273091e-31,2.1131548169732108e-31,2.111155616673331e-31,2.109156416373451e-31,2.1071572160735707e-31,2.105158015773691e-31,2.1031588154738105e-31,2.1011596151739306e-31,2.0991604148740507e-31,2.0971612145741704e-31,2.0951620142742905e-31,2.0931628139744106e-31,2.0911636136745303e-31,2.0891644133746504e-31,2.08716521307477e-31,2.08516601277489e-31,2.0831668124750103e-31,2.08116761217513e-31,2.07916841187525e-31,2.07716921157537e-31,2.07517001127549e-31,2.07317081097561e-31,2.0711716106757297e-31,2.06917241037585e-31,2.06717321007597e-31,2.0651740097760896e-31,2.0631748094762098e-31,2.0611756091763294e-31,2.0591764088764496e-31,2.0571772085765697e-31,2.0551780082766894e-31,2.0531788079768095e-31,2.0511796076769296e-31,2.0491804073770493e-31,2.0471812070771694e-31,2.045182006777289e-31,2.043182806477409e-31,2.0411836061775293e-31,2.039184405877649e-31,2.037185205577769e-31,2.035186005277889e-31,2.033186804978009e-31,2.031187604678129e-31,2.0291884043782487e-31,2.027189204078369e-31,2.025190003778489e-31,2.0231908034786086e-31,2.0211916031787287e-31,2.019192402878849e-31,2.0171932025789685e-31,2.0151940022790886e-31,2.0131948019792083e-31,2.0111956016793284e-31,2.0091964013794486e-31,2.0071972010795682e-31,2.0051980007796884e-31,2.003198800479808e-31,2.001199600179928e-31,1.9992003998800483e-31,1.997201199580168e-31,1.995201999280288e-31,1.993202798980408e-31,1.991203598680528e-31,1.989204398380648e-31,1.9872051980807677e-31,1.985205997780888e-31,1.983206797481008e-31,1.9812075971811276e-31,1.9792083968812477e-31,1.977209196581368e-31,1.9752099962814875e-31,1.9732107959816076e-31,1.9712115956817275e-31,1.9692123953818474e-31,1.9672131950819673e-31,1.9652139947820874e-31,1.9632147944822073e-31,1.9612155941823272e-31,1.9592163938824471e-31,1.9572171935825672e-31,1.9552179932826871e-31,1.953218792982807e-31,1.951219592682927e-31,1.9492203923830468e-31,1.947221192083167e-31,1.9452219917832869e-31,1.9432227914834068e-31,1.9412235911835267e-31,1.9392243908836468e-31,1.9372251905837667e-31,1.9352259902838866e-31,1.9332267899840065e-31,1.9312275896841266e-31,1.9292283893842465e-31,1.9272291890843664e-31,1.9252299887844863e-31,1.9232307884846064e-31,1.9212315881847263e-31,1.9192323878848462e-31,1.917233187584966e-31,1.9152339872850862e-31,1.9132347869852061e-31,1.911235586685326e-31,1.909236386385446e-31,1.907237186085566e-31,1.905237985785686e-31,1.9032387854858058e-31,1.9012395851859257e-31,1.8992403848860458e-31,1.8972411845861657e-31,1.8952419842862856e-31,1.8932427839864055e-31,1.8912435836865257e-31,1.8892443833866456e-31,1.8872451830867655e-31,1.8852459827868854e-31,1.8832467824870052e-31,1.8812475821871254e-31,1.8792483818872453e-31,1.8772491815873652e-31,1.875249981287485e-31,1.8732507809876052e-31,1.871251580687725e-31,1.869252380387845e-31,1.8672531800879649e-31,1.865253979788085e-31,1.863254779488205e-31,1.8612555791883248e-31,1.8592563788884447e-31,1.8572571785885648e-31,1.8552579782886847e-31,1.8532587779888046e-31,1.8512595776889245e-31,1.8492603773890446e-31,1.8472611770891645e-31,1.8452619767892844e-31,1.8432627764894043e-31,1.8412635761895244e-31,1.8392643758896443e-31,1.8372651755897642e-31,1.8352659752898841e-31,1.8332667749900043e-31,1.8312675746901242e-31,1.829268374390244e-31,1.827269174090364e-31,1.825269973790484e-31,1.823270773490604e-31,1.8212715731907239e-31,1.8192723728908438e-31,1.8172731725909637e-31,1.8152739722910838e-31,1.8132747719912037e-31,1.8112755716913236e-31,1.8092763713914435e-31,1.8072771710915636e-31,1.8052779707916835e-31,1.8032787704918034e-31,1.8012795701919233e-31,1.7992803698920434e-31,1.7972811695921633e-31,1.7952819692922832e-31,1.793282768992403e-31,1.7912835686925232e-31,1.7892843683926431e-31,1.787285168092763e-31,1.785285967792883e-31,1.783286767493003e-31,1.781287567193123e-31,1.7792883668932428e-31,1.7772891665933627e-31,1.7752899662934829e-31,1.7732907659936028e-31,1.7712915656937226e-31,1.7692923653938425e-31,1.7672931650939627e-31,1.7652939647940826e-31,1.7632947644942025e-31,1.7612955641943224e-31,1.7592963638944423e-31,1.7572971635945624e-31,1.7552979632946823e-31,1.7532987629948022e-31,1.751299562694922e-31,1.7493003623950422e-31,1.747301162095162e-31,1.745301961795282e-31,1.7433027614954019e-31,1.741303561195522e-31,1.739304360895642e-31,1.7373051605957618e-31,1.7353059602958817e-31,1.7333067599960018e-31,1.7313075596961217e-31,1.7293083593962416e-31,1.7273091590963615e-31,1.7253099587964816e-31,1.7233107584966015e-31,1.7213115581967214e-31,1.7193123578968413e-31,1.7173131575969614e-31,1.7153139572970813e-31,1.7133147569972012e-31,1.7113155566973211e-31,1.7093163563974413e-31,1.7073171560975612e-31,1.705317955797681e-31,1.703318755497801e-31,1.701319555197921e-31,1.699320354898041e-31,1.6973211545981609e-31,1.6953219542982808e-31,1.6933227539984007e-31,1.6913235536985208e-31,1.6893243533986407e-31,1.6873251530987606e-31,1.6853259527988805e-31,1.6833267524990006e-31,1.6813275521991205e-31,1.6793283518992404e-31,1.6773291515993603e-31,1.6753299512994804e-31,1.6733307509996003e-31,1.6713315506997202e-31,1.6693323503998401e-31,1.6673331500999602e-31,1.6653339498000801e-31,1.6633347495002e-31,1.66133554920032e-31,1.65933634890044e-31,1.65733714860056e-31,1.6553379483006798e-31,1.6533387480007997e-31,1.6513395477009199e-31,1.6493403474010398e-31,1.6473411471011597e-31,1.6453419468012796e-31,1.6433427465013997e-31,1.6413435462015196e-31,1.6393443459016395e-31,1.6373451456017594e-31,1.6353459453018795e-31,1.6333467450019994e-31,1.6313475447021193e-31,1.6293483444022392e-31,1.627349144102359e-31,1.6253499438024792e-31,1.623350743502599e-31,1.621351543202719e-31,1.619352342902839e-31,1.617353142602959e-31,1.615353942303079e-31,1.6133547420031988e-31,1.6113555417033187e-31,1.6093563414034388e-31,1.6073571411035587e-31,1.6053579408036786e-31,1.6033587405037985e-31,1.6013595402039186e-31,1.5993603399040385e-31,1.5973611396041584e-31,1.5953619393042783e-31,1.5933627390043985e-31,1.5913635387045184e-31,1.5893643384046383e-31,1.5873651381047582e-31,1.5853659378048783e-31,1.5833667375049982e-31,1.581367537205118e-31,1.579368336905238e-31,1.577369136605358e-31,1.575369936305478e-31,1.5733707360055979e-31,1.5713715357057178e-31,1.569372335405838e-31,1.5673731351059578e-31,1.5653739348060777e-31,1.5633747345061976e-31,1.5613755342063175e-31,1.5593763339064376e-31,1.5573771336065575e-31,1.5553779333066774e-31,1.5533787330067973e-31,1.5513795327069174e-31,1.5493803324070373e-31,1.5473811321071572e-31,1.5453819318072771e-31,1.5433827315073972e-31,1.5413835312075171e-31,1.539384330907637e-31,1.537385130607757e-31,1.535385930307877e-31,1.533386730007997e-31,1.5313875297081169e-31,1.5293883294082368e-31,1.5273891291083569e-31,1.5253899288084768e-31,1.5233907285085967e-31,1.5213915282087166e-31,1.5193923279088367e-31,1.5173931276089566e-31,1.5153939273090765e-31,1.5133947270091964e-31,1.5113955267093165e-31,1.5093963264094364e-31,1.5073971261095563e-31,1.5053979258096762e-31,1.5033987255097963e-31,1.5013995252099162e-31,1.4994003249100361e-31,1.497401124610156e-31,1.495401924310276e-31,1.493402724010396e-31,1.491403523710516e-31,1.4894043234106358e-31,1.4874051231107557e-31,1.4854059228108758e-31,1.4834067225109957e-31,1.4814075222111156e-31,1.4794083219112355e-31,1.4774091216113557e-31,1.4754099213114756e-31,1.4734107210115955e-31,1.4714115207117154e-31,1.4694123204118355e-31,1.4674131201119554e-31,1.4654139198120753e-31,1.4634147195121952e-31,1.4614155192123153e-31,1.4594163189124352e-31,1.457417118612555e-31,1.455417918312675e-31,1.453418718012795e-31,1.451419517712915e-31,1.449420317413035e-31,1.4474211171131548e-31,1.445421916813275e-31,1.4434227165133948e-31,1.4414235162135147e-31,1.4394243159136346e-31,1.4374251156137545e-31,1.4354259153138746e-31,1.4334267150139945e-31,1.4314275147141144e-31,1.4294283144142343e-31,1.4274291141143544e-31,1.4254299138144743e-31,1.4234307135145942e-31,1.4214315132147141e-31,1.4194323129148343e-31,1.4174331126149542e-31,1.415433912315074e-31,1.413434712015194e-31,1.411435511715314e-31,1.409436311415434e-31,1.4074371111155539e-31,1.4054379108156738e-31,1.4034387105157939e-31,1.4014395102159138e-31,1.3994403099160337e-31,1.3974411096161536e-31,1.3954419093162737e-31,1.3934427090163936e-31,1.3914435087165135e-31,1.3894443084166334e-31,1.3874451081167535e-31,1.3854459078168734e-31,1.3834467075169933e-31,1.3814475072171132e-31,1.3794483069172333e-31,1.3774491066173532e-31,1.3754499063174731e-31,1.373450706017593e-31,1.371451505717713e-31,1.369452305417833e-31,1.367453105117953e-31,1.3654539048180728e-31,1.3634547045181927e-31,1.3614555042183129e-31,1.3594563039184328e-31,1.3574571036185527e-31,1.3554579033186725e-31,1.3534587030187927e-31,1.3514595027189126e-31,1.3494603024190325e-31,1.3474611021191524e-31,1.3454619018192725e-31,1.3434627015193924e-31,1.3414635012195123e-31,1.3394643009196322e-31,1.3374651006197523e-31,1.3354659003198722e-31,1.333466700019992e-31,1.331467499720112e-31,1.3294682994202321e-31,1.327469099120352e-31,1.325469898820472e-31,1.3234706985205918e-31,1.321471498220712e-31,1.3194722979208318e-31,1.3174730976209517e-31,1.3154738973210716e-31,1.3134746970211917e-31,1.3114754967213116e-31,1.3094762964214315e-31,1.3074770961215514e-31,1.3054778958216713e-31,1.3034786955217915e-31,1.3014794952219114e-31,1.2994802949220312e-31,1.2974810946221511e-31,1.2954818943222713e-31,1.2934826940223912e-31,1.291483493722511e-31,1.289484293422631e-31,1.287485093122751e-31,1.285485892822871e-31,1.2834866925229909e-31,1.2814874922231108e-31,1.279488291923231e-31,1.2774890916233508e-31,1.2754898913234707e-31,1.2734906910235906e-31,1.2714914907237107e-31,1.2694922904238306e-31,1.2674930901239505e-31,1.2654938898240704e-31,1.2634946895241905e-31,1.2614954892243104e-31,1.2594962889244303e-31,1.2574970886245502e-31,1.2554978883246703e-31,1.2534986880247902e-31,1.2514994877249101e-31,1.24950028742503e-31,1.2475010871251502e-31,1.24550188682527e-31,1.24350268652539e-31,1.2415034862255098e-31,1.2395042859256297e-31,1.2375050856257499e-31,1.2355058853258698e-31,1.2335066850259897e-31,1.2315074847261096e-31,1.2295082844262297e-31,1.2275090841263496e-31,1.2255098838264695e-31,1.2235106835265894e-31,1.2215114832267095e-31,1.2195122829268294e-31,1.2175130826269493e-31,1.2155138823270692e-31,1.2135146820271893e-31,1.2115154817273092e-31,1.209516281427429e-31,1.207517081127549e-31,1.2055178808276691e-31,1.203518680527789e-31,1.201519480227909e-31,1.1995202799280288e-31,1.197521079628149e-31,1.1955218793282688e-31,1.1935226790283887e-31,1.1915234787285086e-31,1.1895242784286287e-31,1.1875250781287486e-31,1.1855258778288685e-31,1.1835266775289884e-31,1.1815274772291086e-31,1.1795282769292285e-31,1.1775290766293484e-31,1.1755298763294683e-31,1.1735306760295882e-31,1.1715314757297083e-31,1.1695322754298282e-31,1.167533075129948e-31,1.165533874830068e-31,1.163534674530188e-31,1.161535474230308e-31,1.1595362739304279e-31,1.1575370736305478e-31,1.155537873330668e-31,1.1535386730307878e-31,1.1515394727309077e-31,1.1495402724310276e-31,1.1475410721311477e-31,1.1455418718312676e-31,1.1435426715313875e-31,1.1415434712315074e-31,1.1395442709316275e-31,1.1375450706317474e-31,1.1355458703318673e-31,1.1335466700319872e-31,1.1315474697321073e-31,1.1295482694322272e-31,1.1275490691323471e-31,1.125549868832467e-31,1.1235506685325872e-31,1.121551468232707e-31,1.119552267932827e-31,1.1175530676329469e-31,1.1155538673330668e-31,1.1135546670331869e-31,1.1115554667333068e-31,1.1095562664334267e-31,1.1075570661335466e-31,1.1055578658336667e-31,1.1035586655337866e-31,1.1015594652339065e-31,1.0995602649340264e-31,1.0975610646341465e-31,1.0955618643342664e-31,1.0935626640343863e-31,1.0915634637345062e-31,1.0895642634346263e-31,1.0875650631347462e-31,1.0855658628348661e-31,1.083566662534986e-31,1.0815674622351061e-31,1.079568261935226e-31,1.077569061635346e-31,1.0755698613354658e-31,1.073570661035586e-31,1.0715714607357058e-31,1.0695722604358257e-31,1.0675730601359456e-31,1.0655738598360658e-31,1.0635746595361857e-31,1.0615754592363056e-31,1.0595762589364255e-31,1.0575770586365456e-31,1.0555778583366655e-31,1.0535786580367854e-31,1.0515794577369053e-31,1.0495802574370252e-31,1.0475810571371453e-31,1.0455818568372652e-31,1.043582656537385e-31,1.041583456237505e-31,1.039584255937625e-31,1.037585055637745e-31,1.035585855337865e-31,1.0335866550379848e-31,1.031587454738105e-31,1.0295882544382248e-31,1.0275890541383447e-31,1.0255898538384646e-31,1.0235906535385847e-31,1.0215914532387046e-31,1.0195922529388245e-31,1.0175930526389444e-31,1.0155938523390645e-31,1.0135946520391844e-31,1.0115954517393043e-31,1.0095962514394242e-31,1.0075970511395444e-31,1.0055978508396643e-31,1.0035986505397842e-31,1.001599450239904e-31,9.996002499400242e-32,9.97601049640144e-32,9.95601849340264e-32,9.936026490403839e-32,9.91603448740504e-32,9.896042484406239e-32,9.876050481407438e-32,9.856058478408637e-32,9.836066475409837e-32,9.816074472411036e-32,9.796082469412236e-32,9.776090466413435e-32,9.756098463414635e-32,9.736106460415834e-32,9.716114457417034e-32,9.696122454418233e-32,9.676130451419433e-32,9.656138448420632e-32,9.636146445421832e-32,9.616154442423031e-32,9.596162439424231e-32,9.57617043642543e-32,9.55617843342663e-32,9.536186430427829e-32,9.51619442742903e-32,9.496202424430228e-32,9.476210421431429e-32,9.456218418432628e-32,9.436226415433828e-32,9.416234412435027e-32,9.396242409436227e-32,9.376250406437426e-32,9.356258403438626e-32,9.336266400439825e-32,9.316274397441025e-32,9.296282394442224e-32,9.276290391443424e-32,9.256298388444623e-32,9.236306385445823e-32,9.216314382447022e-32,9.196322379448221e-32,9.176330376449421e-32,9.15633837345062e-32,9.13634637045182e-32,9.116354367453019e-32,9.096362364454219e-32,9.076370361455418e-32,9.056378358456618e-32,9.036386355457817e-32,9.016394352459017e-32,8.996402349460216e-32,8.976410346461416e-32,8.956418343462615e-32,8.936426340463815e-32,8.916434337465014e-32,8.896442334466215e-32,8.876450331467414e-32,8.856458328468614e-32,8.836466325469813e-32,8.816474322471013e-32,8.796482319472212e-32,8.776490316473412e-32,8.756498313474611e-32,8.736506310475811e-32,8.71651430747701e-32,8.69652230447821e-32,8.676530301479409e-32,8.656538298480609e-32,8.636546295481808e-32,8.616554292483008e-32,8.596562289484207e-32,8.576570286485406e-32,8.556578283486606e-32,8.536586280487805e-32,8.516594277489005e-32,8.496602274490204e-32,8.476610271491404e-32,8.456618268492603e-32,8.436626265493803e-32,8.416634262495002e-32,8.396642259496202e-32,8.376650256497401e-32,8.356658253498601e-32,8.3366662504998e-32,8.316674247501e-32,8.2966822445022e-32,8.2766902415034e-32,8.256698238504599e-32,8.236706235505799e-32,8.216714232506998e-32,8.196722229508198e-32,8.176730226509397e-32,8.156738223510597e-32,8.136746220511796e-32,8.116754217512996e-32,8.096762214514195e-32,8.076770211515395e-32,8.056778208516594e-32,8.036786205517794e-32,8.016794202518993e-32,7.996802199520193e-32,7.976810196521392e-32,7.956818193522592e-32,7.936826190523791e-32,7.91683418752499e-32,7.89684218452619e-32,7.876850181527389e-32,7.856858178528589e-32,7.836866175529788e-32,7.816874172530988e-32,7.796882169532187e-32,7.776890166533387e-32,7.756898163534586e-32,7.736906160535787e-32,7.716914157536985e-32,7.696922154538186e-32,7.676930151539385e-32,7.656938148540585e-32,7.636946145541784e-32,7.616954142542984e-32,7.596962139544183e-32,7.576970136545383e-32,7.556978133546582e-32,7.536986130547782e-32,7.516994127548981e-32,7.497002124550181e-32,7.47701012155138e-32,7.45701811855258e-32,7.437026115553779e-32,7.417034112554979e-32,7.397042109556178e-32,7.377050106557378e-32,7.357058103558577e-32,7.337066100559777e-32,7.317074097560976e-32,7.297082094562175e-32,7.277090091563375e-32,7.257098088564574e-32,7.237106085565774e-32,7.217114082566973e-32,7.197122079568173e-32,7.177130076569372e-32,7.157138073570572e-32,7.137146070571771e-32,7.117154067572972e-32,7.09716206457417e-32,7.077170061575371e-32,7.05717805857657e-32,7.03718605557777e-32,7.017194052578969e-32,6.997202049580169e-32,6.977210046581368e-32,6.957218043582568e-32,6.937226040583767e-32,6.917234037584967e-32,6.897242034586166e-32,6.877250031587366e-32,6.857258028588565e-32,6.837266025589765e-32,6.817274022590964e-32,6.797282019592164e-32,6.777290016593363e-32,6.757298013594563e-32,6.737306010595762e-32,6.717314007596962e-32,6.697322004598161e-32,6.677330001599361e-32,6.65733799860056e-32,6.637345995601759e-32,6.617353992602959e-32,6.597361989604158e-32,6.577369986605358e-32,6.557377983606557e-32,6.537385980607758e-32,6.517393977608957e-32,6.497401974610157e-32,6.477409971611356e-32,6.457417968612556e-32,6.437425965613755e-32,6.417433962614955e-32,6.397441959616154e-32,6.377449956617354e-32,6.357457953618553e-32,6.337465950619753e-32,6.317473947620952e-32,6.297481944622152e-32,6.277489941623351e-32,6.257497938624551e-32,6.23750593562575e-32,6.21751393262695e-32,6.197521929628149e-32,6.177529926629349e-32,6.157537923630548e-32,6.137545920631748e-32,6.117553917632947e-32,6.097561914634147e-32,6.077569911635346e-32,6.057577908636546e-32,6.037585905637745e-32,6.017593902638945e-32,5.997601899640144e-32,5.977609896641343e-32,5.957617893642544e-32,5.937625890643743e-32,5.917633887644943e-32,5.897641884646142e-32,5.877649881647342e-32,5.857657878648541e-32,5.837665875649741e-32,5.81767387265094e-32,5.79768186965214e-32,5.777689866653339e-32,5.757697863654539e-32,5.737705860655738e-32,5.717713857656938e-32,5.697721854658137e-32,5.677729851659337e-32,5.657737848660536e-32,5.637745845661736e-32,5.617753842662935e-32,5.597761839664135e-32,5.577769836665334e-32,5.557777833666534e-32,5.537785830667733e-32,5.517793827668933e-32,5.497801824670132e-32,5.477809821671332e-32,5.457817818672531e-32,5.437825815673731e-32,5.41783381267493e-32,5.39784180967613e-32,5.37784980667733e-32,5.357857803678528e-32,5.337865800679729e-32,5.317873797680928e-32,5.297881794682128e-32,5.277889791683327e-32,5.257897788684527e-32,5.237905785685726e-32,5.217913782686926e-32,5.197921779688125e-32,5.177929776689325e-32,5.157937773690524e-32,5.137945770691724e-32,5.117953767692923e-32,5.097961764694123e-32,5.077969761695322e-32,5.057977758696522e-32,5.037985755697721e-32,5.017993752698921e-32,4.99800174970012e-32,4.97800974670132e-32,4.958017743702519e-32,4.938025740703719e-32,4.9180337377049183e-32,4.898041734706118e-32,4.8780497317073173e-32,4.858057728708517e-32,4.8380657257097164e-32,4.818073722710916e-32,4.7980817197121155e-32,4.778089716713315e-32,4.7580977137145146e-32,4.738105710715714e-32,4.7181137077169136e-32,4.698121704718113e-32,4.6781297017193127e-32,4.658137698720512e-32,4.638145695721712e-32,4.6181536927229113e-32,4.598161689724111e-32,4.5781696867253104e-32,4.55817768372651e-32,4.5381856807277095e-32,4.518193677728909e-32,4.4982016747301085e-32,4.478209671731308e-32,4.4582176687325076e-32,4.438225665733707e-32,4.4182336627349067e-32,4.3982416597361057e-32,4.378249656737305e-32,4.3582576537385047e-32,4.338265650739704e-32,4.318273647740904e-32,4.2982816447421033e-32,4.278289641743303e-32,4.2582976387445024e-32,4.238305635745702e-32,4.2183136327469015e-32,4.198321629748101e-32,4.1783296267493005e-32,4.1583376237505e-32,4.1383456207516996e-32,4.118353617752899e-32,4.0983616147540987e-32,4.078369611755298e-32,4.058377608756498e-32,4.0383856057576973e-32,4.018393602758897e-32,3.9984015997600964e-32,3.978409596761296e-32,3.9584175937624954e-32,3.938425590763695e-32,3.9184335877648945e-32,3.898441584766094e-32,3.8784495817672936e-32,3.858457578768493e-32,3.8384655757696926e-32,3.818473572770892e-32,3.7984815697720917e-32,3.778489566773291e-32,3.758497563774491e-32,3.73850556077569e-32,3.7185135577768893e-32,3.698521554778089e-32,3.6785295517792884e-32,3.658537548780488e-32,3.6385455457816875e-32,3.618553542782887e-32,3.5985615397840865e-32,3.578569536785286e-32,3.5585775337864856e-32,3.538585530787685e-32,3.5185935277888847e-32,3.498601524790084e-32,3.478609521791284e-32,3.4586175187924833e-32,3.438625515793683e-32,3.4186335127948823e-32,3.398641509796082e-32,3.3786495067972814e-32,3.358657503798481e-32,3.3386655007996805e-32,3.31867349780088e-32,3.2986814948020796e-32,3.278689491803279e-32,3.2586974888044786e-32,3.238705485805678e-32,3.2187134828068777e-32,3.198721479808077e-32,3.178729476809277e-32,3.1587374738104763e-32,3.138745470811676e-32,3.1187534678128754e-32,3.0987614648140744e-32,3.078769461815274e-32,3.0587774588164734e-32,3.038785455817673e-32,3.0187934528188725e-32,2.998801449820072e-32,2.9788094468212716e-32,2.958817443822471e-32,2.9388254408236707e-32,2.91883343782487e-32,2.8988414348260697e-32,2.878849431827269e-32,2.858857428828469e-32,2.8388654258296683e-32,2.818873422830868e-32,2.7988814198320674e-32,2.778889416833267e-32,2.7588974138344665e-32,2.738905410835666e-32,2.7189134078368655e-32,2.698921404838065e-32,2.6789294018392646e-32,2.658937398840464e-32,2.6389453958416637e-32,2.618953392842863e-32,2.598961389844063e-32,2.5789693868452623e-32,2.558977383846462e-32,2.5389853808476614e-32,2.518993377848861e-32,2.4990013748500604e-32,2.47900937185126e-32,2.4590173688524592e-32,2.4390253658536588e-32,2.4190333628548583e-32,2.3990413598560578e-32,2.3790493568572574e-32,2.359057353858457e-32,2.3390653508596564e-32,2.319073347860856e-32,2.2990813448620552e-32,2.2790893418632548e-32,2.2590973388644543e-32,2.2391053358656538e-32,2.2191133328668534e-32,2.199121329868053e-32,2.1791293268692525e-32,2.159137323870452e-32,2.1391453208716515e-32,2.119153317872851e-32,2.0991613148740506e-32,2.07916931187525e-32,2.0591773088764497e-32,2.0391853058776492e-32,2.0191933028788487e-32,1.9992012998800483e-32,1.9792092968812475e-32,1.959217293882447e-32,1.9392252908836466e-32,1.9192332878848461e-32,1.8992412848860457e-32,1.8792492818872452e-32,1.8592572788884447e-32,1.8392652758896443e-32,1.8192732728908438e-32,1.7992812698920434e-32,1.779289266893243e-32,1.7592972638944424e-32,1.739305260895642e-32,1.7193132578968415e-32,1.699321254898041e-32,1.6793292518992406e-32,1.6593372489004398e-32,1.6393452459016394e-32,1.619353242902839e-32,1.5993612399040384e-32,1.579369236905238e-32,1.5593772339064375e-32,1.539385230907637e-32,1.5193932279088366e-32,1.499401224910036e-32,1.4794092219112357e-32,1.4594172189124352e-32,1.4394252159136347e-32,1.4194332129148343e-32,1.3994412099160338e-32,1.3794492069172333e-32,1.359457203918433e-32,1.339465200919632e-32,1.3194731979208317e-32,1.2994811949220312e-32,1.2794891919232307e-32,1.2594971889244303e-32,1.2395051859256298e-32,1.2195131829268293e-32,1.1995211799280289e-32,1.1795291769292284e-32,1.159537173930428e-32,1.1395451709316275e-32,1.119553167932827e-32,1.0995611649340264e-32,1.079569161935226e-32,1.0595771589364255e-32,1.039585155937625e-32,1.0195931529388246e-32,9.996011499400241e-33,9.796091469412236e-33,9.596171439424232e-33,9.396251409436226e-33,9.196331379448221e-33,8.996411349460216e-33,8.796491319472212e-33,8.596571289484207e-33,8.396651259496202e-33,8.196731229508198e-33,7.996811199520193e-33,7.796891169532187e-33,7.596971139544182e-33,7.397051109556178e-33,7.197131079568173e-33,6.997211049580169e-33,6.797291019592164e-33,6.597370989604159e-33,6.397450959616155e-33,6.19753092962815e-33,5.9976108996401446e-33,5.79769086965214e-33,5.5977708396641346e-33,5.39785080967613e-33,5.197930779688125e-33,4.998010749700121e-33,4.7980907197121154e-33,4.598170689724111e-33,4.398250659736106e-33,4.1983306297481014e-33,3.998410599760096e-33,3.7984905697720915e-33,3.598570539784087e-33,3.398650509796082e-33,3.198730479808077e-33,2.9988104498200722e-33,2.7988904198320676e-33,2.5989703898440626e-33,2.399050359856058e-33,2.199130329868053e-33,1.9992102998800483e-33,1.7992902698920433e-33,1.5993702399040387e-33,1.3994502099160337e-33,1.1995301799280289e-33,9.99610149940024e-34,7.996901199520192e-34,5.997700899640144e-34,3.998500599760096e-34,1.999300299880048e-34,1.0e-38]} diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/very_large_positive.json b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/very_large_positive.json new file mode 100644 index 00000000000..e852691c5e9 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/fixtures/julia/very_large_positive.json @@ -0,0 +1 @@ +{"expected":[12.533141,12.544412,12.555672,12.566922,12.578162,12.589392,12.600612,12.611821,12.623022,12.634212,12.645391,12.656562,12.667723,12.678873,12.690014,12.701145,12.712266,12.723378,12.73448,12.745572,12.756655,12.767728,12.778791,12.7898445,12.800889,12.811924,12.822949,12.833964,12.844971,12.8559675,12.866956,12.8779335,12.888903,12.899861,12.910811,12.921753,12.932684,12.943606,12.95452,12.965424,12.976318,12.987205,12.998081,13.008948,13.019807,13.030656,13.041496,13.052327,13.06315,13.073963,13.084767,13.095563,13.10635,13.117127,13.127896,13.138657,13.149408,13.160151,13.170884,13.181609,13.192326,13.203033,13.213732,13.224422,13.235104,13.245777,13.256441,13.2670965,13.277744,13.288383,13.299013,13.309635,13.320249,13.330853,13.34145,13.352037,13.3626175,13.373188,13.383751,13.394305,13.404852,13.41539,13.42592,13.436441,13.446954,13.457459,13.467956,13.478444,13.488925,13.499397,13.509862,13.520318,13.530766,13.541205,13.551638,13.562061,13.572477,13.582885,13.593286,13.603677,13.614061,13.624437,13.634806,13.645165,13.655519,13.665863,13.6762,13.686529,13.69685,13.707164,13.717469,13.727767,13.738057,13.74834,13.758615,13.768882,13.779141,13.789393,13.799638,13.809875,13.820104,13.830325,13.840539,13.850746,13.860945,13.871136,13.88132,13.891497,13.901666,13.911827,13.921982,13.932128,13.942267,13.9524,13.962524,13.972642,13.982752,13.992855,14.00295,14.013039,14.023119,14.033193,14.04326,14.053319,14.063371,14.073416,14.083453,14.093484,14.103507,14.1135235,14.123532,14.133534,14.14353,14.153518,14.163499,14.173472,14.183439,14.193399,14.203352,14.213298,14.223237,14.23317,14.243094,14.253013,14.262924,14.272828,14.282726,14.292617,14.302501,14.312378,14.3222475,14.332111,14.341968,14.351818,14.361661,14.371497,14.381327,14.3911495,14.400966,14.410775,14.420579,14.430375,14.440165,14.449947,14.459723,14.469493,14.479257,14.489013,14.498763,14.508507,14.518243,14.527973,14.537698,14.547415,14.557126,14.56683,14.576528,14.58622,14.595904,14.605583,14.615255,14.624921,14.634581,14.644234,14.65388,14.663521,14.673155,14.682782,14.692404,14.702019,14.711628,14.7212305,14.730826,14.740417,14.75,14.759578,14.76915,14.778714,14.788274,14.797827,14.807373,14.816914,14.8264475,14.835976,14.845498,14.855014,14.864524,14.874028,14.883526,14.893018,14.902503,14.911983,14.921456,14.930923,14.940386,14.9498415,14.9592905,14.968735,14.978172,14.987604,14.997029,15.00645,15.015863,15.025271,15.034674,15.04407,15.053461,15.062845,15.072225,15.081597,15.090964,15.100326,15.109681,15.119031,15.128375,15.137713,15.147045,15.156372,15.165693,15.175009,15.184318,15.193622,15.20292,15.212213,15.2214985,15.23078,15.240055,15.249325,15.25859,15.267848,15.277101,15.286348,15.295589,15.304826,15.314056,15.323281,15.332501,15.341715,15.350924,15.3601265,15.369324,15.378515,15.387702,15.396883,15.406058,15.415228,15.424393,15.433552,15.442705,15.451854,15.460997,15.470134,15.479266,15.488393,15.497514,15.50663,15.51574,15.524845,15.533945,15.54304,15.552129,15.561213,15.5702915,15.579365,15.588433,15.597496,15.606553,15.615605,15.624652,15.633694,15.642731,15.651762,15.660788,15.669809,15.678824,15.687835,15.69684,15.705841,15.714836,15.723825,15.73281,15.74179,15.750765,15.759734,15.768699,15.7776575,15.786612,15.795561,15.804504,15.813443,15.822377,15.831306,15.84023,15.849149,15.858063,15.866971,15.875875,15.884774,15.893667,15.902556,15.91144,15.92032,15.9291935,15.938062,15.946926,15.955785,15.96464,15.973489,15.982333,15.991173,16.000008,16.008837,16.017662,16.026482,16.035297,16.044107,16.052914,16.061714,16.070509,16.0793,16.088087,16.096869,16.105644,16.114416,16.123184,16.131947,16.140703,16.149456,16.158205,16.166948,16.175686,16.18442,16.19315,16.201874,16.210594,16.219309,16.22802,16.236725,16.245426,16.254124,16.262815,16.271502,16.280184,16.288862,16.297535,16.306204,16.314869,16.323528,16.332182,16.340834,16.349478,16.35812,16.366756,16.375387,16.384016,16.39264,16.401257,16.40987,16.41848,16.427084,16.435686,16.44428,16.452873,16.46146,16.470041,16.478619,16.487192,16.495762,16.504326,16.512886,16.521442,16.529993,16.53854,16.547083,16.55562,16.564154,16.572683,16.581207,16.58973,16.598244,16.606756,16.615263,16.623766,16.632265,16.640759,16.64925,16.657736,16.666216,16.674694,16.683167,16.691635,16.700098,16.708559,16.717014,16.725466,16.733912,16.742355,16.750793,16.759228,16.767656,16.776083,16.784504,16.792921,16.801334,16.809744,16.818148,16.82655,16.834946,16.843336,16.851725,16.86011,16.868488,16.876863,16.885235,16.893602,16.901964,16.910324,16.918678,16.927029,16.935375,16.943718,16.952055,16.96039,16.96872,16.977045,16.985367,16.993685,17.001999,17.01031,17.018614,17.026917,17.035213,17.043507,17.051796,17.060081,17.068363,17.076641,17.084913,17.093184,17.101448,17.10971,17.117968,17.12622,17.13447,17.142715,17.150957,17.159195,17.167427,17.175657,17.183884,17.192104,17.200323,17.208536,17.216747,17.224953,17.233154,17.241354,17.249548,17.257738,17.265924,17.274107,17.282286,17.29046,17.298632,17.306799,17.314962,17.323122,17.331278,17.33943,17.347578,17.355722,17.363863,17.371998,17.38013,17.38826,17.396385,17.404507,17.412624,17.420738,17.428848,17.436954,17.445057,17.453156,17.46125,17.469341,17.477428,17.485514,17.493593,17.501669,17.50974,17.51781,17.525875,17.533937,17.541994,17.550049,17.5581,17.566145,17.574188,17.582228,17.590263,17.598295,17.606323,17.614347,17.622368,17.630386,17.6384,17.64641,17.654415,17.662418,17.670418,17.678413,17.686405,17.694393,17.702377,17.71036,17.718336,17.72631,17.73428,17.742247,17.75021,17.75817,17.766127,17.774078,17.782026,17.789972,17.797915,17.805853,17.813787,17.821718,17.829645,17.83757,17.84549,17.853407,17.86132,17.86923,17.877138,17.88504,17.89294,17.900837,17.90873,17.916618,17.924503,17.932386,17.940264,17.94814,17.95601,17.96388,17.971745,17.979607,17.987465,17.99532,18.00317,18.011019,18.018862,18.026703,18.03454,18.042376,18.050205,18.058033,18.065857,18.073677,18.081493,18.089308,18.097118,18.104925,18.11273,18.12053,18.128326,18.13612,18.14391,18.151697,18.159481,18.167261,18.175037,18.182812,18.190582,18.198349,18.206112,18.213873,18.22163,18.229383,18.237133,18.24488,18.252625,18.260365,18.268103,18.275837,18.283567,18.291294,18.299019,18.30674,18.314457,18.322172,18.329884,18.337591,18.345295,18.352997,18.360695,18.368391,18.376081,18.38377,18.391457,18.399137,18.406816,18.414492,18.422165,18.429834,18.4375,18.445164,18.452824,18.46048,18.468134,18.475784,18.48343,18.491076,18.498714,18.506353,18.513987,18.521618,18.529247,18.536873,18.544495,18.552113,18.559729,18.56734,18.57495,18.582556,18.59016,18.59776,18.605356,18.612951,18.62054,18.628128,18.635714,18.643295,18.650873,18.65845,18.666021,18.67359,18.681156,18.688719,18.69628,18.703836,18.71139,18.71894,18.726488,18.734034,18.741575,18.749113,18.756649,18.764183,18.771711,18.779238,18.786762,18.794283,18.8018,18.809315,18.816826,18.824335,18.83184,18.839342,18.846842,18.85434,18.861832,18.869324,18.87681,18.884295,18.891777,18.899256,18.906733,18.914206,18.921675,18.929142,18.936605,18.944067,18.951525,18.95898,18.966433,18.97388,18.981327,18.988771,18.996212,19.003649,19.011084,19.018517,19.025946,19.033371,19.040794,19.048214,19.055632,19.063047,19.070457,19.077868,19.085272,19.092676,19.100077,19.107473,19.114868,19.12226,19.129648,19.137033,19.144417,19.151796,19.159174,19.166548,19.17392,19.181288,19.188654,19.196018,19.203379,19.210735,19.21809,19.225441,19.23279,19.240137,19.24748,19.254822,19.26216,19.269493,19.276827,19.284155,19.291483,19.298805,19.306128,19.313446,19.32076,19.328074,19.335384,19.342691,19.349995,19.357298,19.364595,19.371893,19.379187,19.386477,19.393764,19.40105,19.408333,19.415611,19.42289,19.430164,19.437435,19.444704,19.451971,19.459234,19.466494,19.473753,19.481009,19.48826,19.49551,19.502758,19.510002,19.517244,19.524483,19.53172,19.538954,19.546185,19.553413,19.560638,19.567862,19.575083,19.5823,19.589516,19.596727,19.603937,19.611145,19.61835,19.625551,19.632751,19.639948,19.64714,19.654333,19.661522,19.668707,19.675892,19.683071,19.69025,19.697426,19.7046,19.71177,19.718937,19.726103,19.733265,19.740425,19.747581,19.754736,19.761889,19.76904,19.776186,19.783329,19.790472,19.797611,19.804749,19.811882,19.819014,19.826143,19.83327,19.840393,19.847513,19.854633,19.86175,19.868862,19.875975,19.883081,19.890188,19.897291,19.904392,19.911491,19.918587,19.92568,19.932772,19.93986,19.946945,19.95403,19.96111,19.968187,19.975264,19.982336,19.989408,19.996475,20.003542,20.010605,20.017666,20.024723,20.03178,20.038834,20.045883,20.052933,20.059978,20.067022,20.074062,20.0811,20.088137,20.095171,20.102201,20.10923,20.116257,20.12328,20.1303,20.13732,20.144337,20.15135,20.158361,20.16537,20.172377,20.179382,20.186382,20.193382,20.20038,20.207375,20.214365,20.221355,20.228342,20.235327,20.24231,20.24929,20.256268,20.263243,20.270216,20.277185,20.284153,20.291119,20.298082,20.305044,20.312002,20.318958,20.32591,20.332863,20.339811,20.346758,20.353703,20.360643,20.367584,20.374521,20.381454,20.388388,20.395317,20.402245,20.40917,20.416094,20.423014,20.429932,20.436848,20.443762,20.450672,20.457582,20.464489,20.471392,20.478294,20.485193,20.49209,20.498985,20.505878,20.51277,20.519657,20.526543,20.533426,20.540306,20.547186,20.554062,20.560936,20.567808,20.574678,20.581545,20.58841,20.595272,20.602133,20.608992,20.615847,20.6227,20.62955,20.6364,20.643248,20.650091,20.656935,20.663774,20.670612,20.677446,20.68428,20.69111,20.697939,20.704765,20.71159,20.718412,20.725231,20.73205,20.738865,20.745678,20.752487,20.759296,20.766102,20.772907,20.779709,20.786509,20.793304,20.8001,20.806892,20.813684,20.820473,20.82726,20.834042,20.840824,20.847603,20.854382,20.861156,20.86793,20.8747,20.881468,20.888235,20.894999,20.901762,20.908522,20.91528,20.922033,20.928787,20.93554,20.942287,20.949034,20.955778,20.96252,20.969261,20.976,20.982735,20.98947,20.9962,21.00293,21.009657,21.016382,21.023106,21.029827,21.036545,21.04326,21.049976,21.056688,21.063398,21.070107,21.076813,21.083515,21.090218,21.096916,21.103615,21.11031,21.117002,21.123693,21.130383,21.13707,21.143753,21.150436,21.157116,21.163794,21.170471,21.177145,21.183817,21.190487,21.197155,21.20382,21.210484,21.217144,21.223804,21.230461,21.237118,21.24377,21.250422,21.25707,21.263718,21.27036,21.277004,21.283646,21.290283,21.29692,21.303555,21.310186,21.316816,21.323446,21.330072,21.336697,21.343317,21.349937,21.356556,21.363173,21.369785,21.376398,21.383007,21.389614,21.396221,21.402824,21.409426,21.416025,21.422623,21.429218,21.435812,21.442404,21.448994,21.45558,21.462166,21.46875,21.47533,21.48191,21.488487,21.495062,21.501637,21.508207,21.514776,21.521343,21.527908,21.534472,21.541033,21.547592,21.55415,21.560705,21.567259,21.57381,21.580359,21.586906,21.593452,21.599995,21.606537,21.613075,21.619614,21.626148,21.632683,21.639214,21.645744,21.652271,21.658796,21.66532,21.671843,21.678362,21.68488,21.691395,21.697908,21.70442,21.71093,21.717438,21.723946,21.73045,21.73695,21.74345,21.749949,21.756445,21.76294,21.769432,21.775923,21.782412,21.788898,21.795383,21.801865,21.808346,21.814825,21.821302,21.827778,21.83425,21.840721,21.84719,21.853659,21.860125,21.866587,21.873049,21.879509,21.885967,21.892422,21.898876,21.905329,21.91178,21.918226,21.924673,21.931118,21.937561,21.944002,21.95044,21.956877,21.963312,21.969746,21.976177,21.982607,21.989035,21.99546,22.001883,22.008305,22.014725,22.021143,22.02756,22.033974,22.040386,22.046797,22.053207,22.059614,22.06602,22.072422,22.078823,22.085222,22.091621,22.098017,22.10441,22.110802,22.117193,22.12358,22.129969,22.136353,22.142736,22.149117,22.155497,22.161873,22.16825,22.174623,22.180994,22.187365,22.193733,22.2001,22.206465,22.212828,22.219189,22.225548,22.231905,22.23826,22.244614,22.250965,22.257315,22.263664,22.27001,22.276354,22.282698,22.289038,22.295378,22.301716,22.30805,22.314384,22.320717,22.327047,22.333376,22.339703,22.346027,22.35235,22.358671,22.36499,22.371307,22.377625,22.383938,22.390251,22.39656,22.40287,22.409178,22.415482,22.421785,22.428087,22.434387,22.440685,22.446981,22.453276,22.45957,22.46586,22.472149,22.478437,22.484724,22.491007,22.49729,22.50357,22.50985,22.516127,22.522402,22.528675,22.534946,22.541216,22.547485,22.553751,22.560017,22.56628,22.57254,22.5788,22.585058,22.591314,22.597569,22.60382,22.610073,22.616322,22.62257,22.628815,22.63506,22.641302,22.647543,22.653782,22.660019,22.666254,22.672487,22.678719,22.68495,22.69118,22.697405,22.70363,22.709854,22.716076,22.722296,22.728514,22.734732,22.740946,22.74716,22.75337,22.75958,22.765789,22.771996,22.7782,22.784403,22.790606,22.796804,22.803003,22.809198,22.815393,22.821587,22.827778,22.833967,22.840155,22.846342,22.852526,22.85871,22.864891,22.87107,22.877249,22.883425,22.889599,22.895773,22.901943,22.908113,22.91428,22.920446,22.92661,22.932775,22.938936,22.945095,22.951254,22.95741,22.963564,22.969717,22.97587,22.98202,22.988167,22.994314,23.000458,23.006601,23.012743,23.018883,23.02502,23.031158,23.037292,23.043427,23.049559,23.055689,23.061817,23.067944,23.074068,23.080193,23.086315,23.092434,23.098553,23.104671,23.110786,23.1169,23.123013,23.129124,23.135231,23.14134,23.147446,23.15355,23.159653,23.165752,23.171852,23.17795,23.184046,23.190142,23.196234,23.202326,23.208414,23.214502,23.220589,23.226675,23.232758,23.23884,23.24492,23.251,23.257076,23.263151,23.269224,23.275297,23.281368,23.287437,23.293505,23.29957,23.305635,23.311697,23.317759,23.323818,23.329876,23.335932,23.341988,23.348042,23.354094,23.360144,23.366192,23.372238,23.378284,23.384329,23.390371,23.396412,23.40245,23.408487,23.414524,23.420559,23.426592,23.432623,23.438654,23.444681,23.450708,23.456734,23.462757,23.46878,23.4748,23.48082,23.486837,23.492853,23.498867,23.50488,23.510891,23.516901,23.52291,23.528917,23.534922,23.540926,23.546928,23.552929,23.558928,23.564926,23.57092,23.576916,23.582909,23.5889,23.59489,23.60088,23.606867,23.612852,23.618835,23.624817,23.630798,23.636778,23.642756,23.648731,23.654707,23.66068,23.666653,23.672623,23.67859,23.684559,23.690525,23.69649,23.702452,23.708412,23.714373,23.720331,23.726288,23.732243,23.738197,23.744148,23.7501,23.75605,23.761997,23.767944,23.773888,23.77983,23.785774,23.791714,23.797653,23.80359,23.809526,23.81546,23.821394,23.827326,23.833256,23.839184,23.845112,23.851036,23.85696,23.862885,23.868805,23.874725,23.880644,23.88656,23.892475,23.89839,23.9043,23.910213,23.916122,23.92203,23.927937,23.933842,23.939745,23.945648,23.951548,23.957447,23.963346,23.969242,23.975138,23.981031,23.986923,23.992813,23.998703,24.004591,24.010477,24.016361,24.022245,24.028126,24.034008,24.039886,24.045763,24.05164,24.057514,24.063389,24.06926,24.07513,24.081,24.086866,24.092733,24.098598,24.104462,24.110323,24.116184,24.122044,24.127901,24.133757,24.139612,24.145464,24.151318,24.157167,24.163017,24.168863,24.174711,24.180555,24.1864,24.192242,24.198082,24.20392,24.209759,24.215595,24.22143,24.227264,24.233095,24.238926,24.244757,24.250584,24.25641,24.262236,24.268059,24.273882,24.279703,24.285522,24.29134,24.297157,24.302973,24.308786,24.3146,24.320412,24.326221,24.33203,24.337837,24.343641,24.349445,24.35525,24.361052,24.366852,24.37265,24.378447,24.384243,24.390038,24.395832,24.401623,24.407413,24.413202,24.418991,24.424776,24.430561,24.436346,24.442127,24.447908,24.453688,24.459467,24.465244,24.47102,24.476793,24.482565,24.488337,24.494108,24.499876,24.505644,24.51141,24.517174,24.522938,24.5287,24.53446,24.540218,24.545977,24.551733,24.557487,24.563242,24.568995,24.574745,24.580496,24.586245,24.591991,24.597736,24.603481,24.609224,24.614965,24.620707,24.626446,24.632183,24.637918,24.643654,24.649387,24.65512,24.66085,24.66658,24.67231,24.678036,24.683762,24.689486,24.69521,24.700932,24.706652,24.71237,24.718088,24.723804,24.729519,24.735233,24.740946,24.746656,24.752367,24.758076,24.763783,24.769487,24.775192,24.780895,24.786598,24.7923,24.797998,24.803696,24.809393,24.815088,24.820782,24.826475,24.832167,24.837856,24.843546,24.849234,24.85492,24.860603,24.866287,24.87197,24.877651,24.883331,24.88901,24.894686,24.900362,24.906036,24.91171,24.917381,24.923054,24.928722,24.934391,24.940058,24.945723,24.951387,24.95705,24.962711,24.968372,24.974031,24.979689,24.985346,24.991001,24.996655,25.002308,25.00796,25.013609,25.019258,25.024906,25.030552,25.036198,25.041842,25.047483,25.053125,25.058765,25.064404,25.070042,25.075678,25.081312,25.086946,25.092579,25.09821,25.10384,25.109468,25.115095,25.120722,25.126347,25.13197,25.137592,25.143213,25.148832,25.154451,25.160069,25.165684,25.171299,25.176912,25.182526,25.188135,25.193745,25.199354,25.204962,25.210567,25.216171,25.221775,25.227379,25.232979,25.238579,25.244177,25.249775,25.255371,25.260965,25.26656,25.272152,25.277742,25.283333,25.288921,25.294508,25.300095,25.30568,25.311264,25.316845,25.322428,25.328007,25.333586,25.339163,25.34474,25.350315,25.355888,25.361462,25.367033,25.372602,25.378172,25.38374,25.389307,25.39487,25.400436,25.405998,25.41156,25.41712,25.42268,25.428238,25.433794,25.43935,25.444904,25.450459,25.45601,25.461561,25.46711,25.472658,25.478205,25.483751,25.489296,25.49484,25.500381,25.505922,25.511463,25.517002,25.52254,25.528076,25.533611,25.539145,25.544678,25.550209,25.555738,25.561268,25.566795,25.572323,25.577848,25.583372,25.588896,25.594418,25.599937,25.605457,25.610975,25.616493,25.62201,25.627523,25.633038,25.63855,25.644062,25.64957,25.65508,25.660587,25.666094,25.6716,25.677103,25.682606,25.688108,25.69361,25.699108,25.704607,25.710104,25.7156,25.721094,25.726587,25.73208,25.737572,25.743061,25.74855,25.754038,25.759525,25.76501,25.770494,25.775978,25.78146,25.78694,25.79242,25.797897,25.803375,25.808851,25.814325,25.8198,25.825272,25.830744,25.836214,25.841682,25.84715,25.852617,25.858084,25.863548,25.86901,25.874474,25.879934,25.885393,25.890852,25.896309,25.901766,25.90722,25.912676,25.918129,25.92358,25.929031,25.93448,25.939928,25.945375,25.950823,25.956266,25.96171,25.967154,25.972595,25.978035,25.983475,25.988913,25.99435,25.999784,26.00522,26.010654,26.016087,26.021517,26.026947,26.032377,26.037804,26.04323,26.048656,26.054081,26.059504,26.064926,26.070347,26.075768,26.081186,26.086605,26.09202,26.097437,26.10285,26.108263,26.113676,26.119087,26.124496,26.129906,26.135313,26.14072,26.146126,26.15153,26.156933,26.162334,26.167736,26.173136,26.178534,26.183931,26.189327,26.194723,26.200117,26.205511,26.210903,26.216293,26.221684,26.227072,26.23246,26.237846,26.24323,26.248615,26.254,26.25938,26.264763,26.270142,26.27552,26.2809,26.286274,26.29165,26.297024,26.302399,26.30777,26.31314,26.318512,26.32388,26.329248,26.334614,26.33998,26.345345,26.350708,26.35607,26.361431,26.36679,26.37215,26.377508,26.382866,26.388222,26.393576,26.39893,26.404282,26.409634,26.414984,26.420334,26.425682,26.431028,26.436375,26.44172,26.447063,26.452406,26.457748,26.463089,26.468428,26.473766,26.479103,26.48444,26.489775,26.49511,26.500443,26.505775,26.511105,26.516436,26.521765,26.527092,26.53242,26.537745,26.543068,26.548391,26.553715,26.559036,26.564356,26.569675,26.574993,26.58031,26.585627,26.590942,26.596256,26.601568,26.60688,26.61219,26.6175,26.622808,26.628117,26.633423,26.63873,26.644033,26.649336,26.654638,26.659939,26.66524,26.670538,26.675837,26.681133,26.68643,26.691725,26.697018,26.70231,26.707603,26.712893,26.718184,26.72347,26.72876,26.734045,26.73933,26.744616,26.749899,26.75518,26.760462,26.765743,26.77102,26.7763,26.781576,26.786854,26.792128,26.797401,26.802675,26.807947,26.813217,26.818487,26.823757,26.829023,26.834291,26.839556,26.844822,26.850084,26.855347,26.86061,26.86587,26.87113,26.876387,26.881645,26.886902,26.892157,26.897411,26.902664,26.907917,26.913168,26.918419,26.923668,26.928915,26.934162,26.93941,26.944654,26.949898,26.955141,26.960384,26.965624,26.970865,26.976105,26.981342,26.986578,26.991816,26.99705,27.002283,27.007517,27.012749,27.01798,27.023209,27.028439,27.033667,27.038893,27.044119,27.049343,27.054567,27.05979,27.065012,27.070232,27.075453,27.080671,27.08589,27.091106,27.096323,27.101538,27.10675,27.111963,27.117176,27.122387,27.127596,27.132805,27.138012,27.143219,27.148424,27.15363,27.158834,27.164036,27.169239,27.174438,27.179638,27.184837,27.190035,27.195232,27.200428,27.205624,27.210817,27.21601,27.2212,27.226393,27.231583,27.23677,27.241959,27.247147,27.252333,27.257517,27.262701,27.267883,27.273066,27.278246,27.283426,27.288605,27.293783,27.298962,27.304136,27.309313,27.314486,27.319658,27.324831,27.330002,27.335173,27.340342,27.34551,27.350677,27.355844,27.36101,27.366173,27.371336,27.3765,27.38166,27.386822,27.391981,27.397139,27.402296,27.407454,27.41261,27.417763,27.422916,27.42807,27.433222,27.438372,27.443521,27.448671,27.45382,27.458965,27.464111,27.469257,27.474401,27.479544,27.484686,27.489826,27.494967,27.500107,27.505245,27.510382,27.515518,27.520653,27.525787,27.530922,27.536055,27.541185,27.546316,27.551445,27.556574,27.5617,27.566828,27.571955,27.57708,27.582203,27.587326,27.592447,27.597569,27.60269,27.60781,27.612926,27.618044,27.62316,27.628275,27.63339,27.638504,27.643616,27.648727,27.653837,27.658947,27.664057,27.669165,27.67427,27.679377,27.684483,27.689587,27.694689,27.699791,27.704893,27.709993,27.715092,27.72019,27.725288,27.730385,27.73548,27.740574,27.745668,27.750761,27.755852,27.760944,27.766033,27.771122,27.77621,27.781298,27.786385,27.79147,27.796555,27.801638,27.806719,27.811802,27.816881,27.821962,27.82704,27.832119,27.837194,27.842272,27.847347,27.85242,27.857494,27.862566,27.867638,27.872707,27.877777,27.882847,27.887915,27.89298,27.898046,27.903112,27.908176,27.913239,27.9183,27.923363,27.928423,27.933481,27.938541,27.943598,27.948654,27.95371,27.958765,27.96382,27.968872,27.973925,27.978975,27.984026,27.989075,27.994123,27.999172,28.00422,28.009264,28.014309,28.019352,28.024395,28.029438,28.03448,28.03952,28.04456,28.049597,28.054634,28.059671,28.064707,28.069742,28.074776,28.07981,28.08484,28.089872,28.094904,28.099932,28.104961,28.10999,28.115015,28.12004,28.125067,28.13009,28.135115,28.140137,28.145157,28.150177,28.155197,28.160215,28.165234,28.170252,28.175266,28.180283,28.185297,28.19031,28.195322,28.200335,28.205345,28.210354,28.215363,28.220371,28.225378,28.230385,28.23539,28.240395,28.245398,28.2504,28.255402,28.260403,28.265404,28.270403,28.2754,28.280397,28.285395,28.29039,28.295385,28.300379,28.305372,28.310364,28.315355,28.320345,28.325335,28.330322,28.33531,28.340298,28.345284,28.35027,28.355253,28.360235,28.36522,28.3702,28.375181,28.380161,28.38514,28.390118,28.395094,28.40007,28.405046,28.41002,28.414995,28.419968,28.42494,28.42991,28.434881,28.43985,28.444818,28.449787,28.454754,28.459719,28.464684,28.469648,28.474611,28.479574,28.484535,28.489496,28.494455,28.499414,28.504374,28.50933,28.514286,28.519241,28.524197,28.52915,28.534103,28.539055,28.544006,28.548958,28.553905,28.558855,28.563803,28.56875,28.573696,28.578642,28.583586,28.58853,28.593472,28.598413,28.603354,28.608294,28.613234,28.618172,28.62311,28.628046,28.632982,28.637917,28.64285,28.647785,28.652718,28.657648,28.662579,28.66751,28.672438,28.677366,28.682293,28.68722,28.692146,28.697071,28.701994,28.706917,28.71184,28.71676,28.721682,28.7266,28.73152,28.736439,28.741356,28.746271,28.751188,28.756102,28.761017,28.765928,28.770842,28.775753,28.780663,28.785572,28.790482,28.79539,28.800297,28.805202,28.810108,28.815014,28.819918,28.82482,28.829721,28.834623,28.839523,28.844423,28.849321,28.85422,28.859118,28.864014,28.86891,28.873804,28.878698,28.88359,28.888483,28.893373,28.898264,28.903154,28.908043,28.912931,28.917818,28.922705,28.92759,28.932474,28.937359,28.942242,28.947124,28.952005,28.956886,28.961765,28.966644,28.971523,28.9764,28.981277,28.986153,28.991028,28.995901,29.000774,29.005648,29.010519,29.015388,29.02026,29.02513,29.029997,29.034864,29.03973,29.044598,29.049461,29.054325,29.059189,29.064053,29.068914,29.073774,29.078634,29.083494,29.088352,29.09321,29.098068,29.102924,29.107779,29.112633,29.117487,29.12234,29.127192,29.132044,29.136894,29.141743,29.146593,29.15144,29.156288,29.161135,29.16598,29.170824,29.175669,29.180511,29.185354,29.190195,29.195036,29.199877,29.204716,29.209555,29.214392,29.219229,29.224064,29.228899,29.233734,29.238567,29.2434,29.248232,29.253063,29.257893,29.262724,29.267551,29.272379,29.277206,29.282034,29.28686,29.291683,29.296509,29.30133,29.306154,29.310976,29.315796,29.320616,29.325436,29.330254,29.335072,29.339888,29.344704,29.34952,29.354334,29.359148,29.36396,29.368773,29.373585,29.378395,29.383205,29.388014,29.392822,29.397629,29.402435,29.407242,29.412046,29.416851,29.421654,29.426456,29.43126,29.43606,29.44086,29.44566,29.450459,29.455257,29.460054,29.464851,29.469646,29.474442,29.479235,29.484028,29.488821,29.493612,29.498404,29.503195,29.507984,29.512772,29.517561,29.522346,29.527134,29.53192,29.536705,29.541489,29.54627,29.551054,29.555836,29.560616,29.565397,29.570175,29.574955,29.579733,29.584509,29.589285,29.59406,29.598835,29.60361,29.608383,29.613155,29.617928,29.622698,29.627468,29.632236,29.637007,29.641773,29.646542,29.651308,29.656073,29.660837,29.665602,29.670364,29.675127,29.67989,29.68465,29.68941,29.69417,29.698929,29.703686,29.708443,29.7132,29.717955,29.72271,29.727465,29.732218,29.736969,29.741722,29.746473,29.751223,29.755972,29.760721,29.765469,29.770216,29.774963,29.779709,29.784452,29.789198,29.793941,29.798683,29.803425,29.808167,29.812908,29.817648,29.822386,29.827124,29.831861,29.836597,29.841333,29.84607,29.850803,29.855537,29.86027,29.865002,29.869734,29.874464,29.879194,29.883924,29.888653,29.89338,29.898108,29.902832,29.907558,29.912283,29.917007,29.92173,29.926453,29.931175,29.935896,29.940615,29.945335,29.950054,29.954771,29.95949,29.964205,29.968922,29.973637,29.97835,29.983065,29.987778,29.992489,29.9972,30.001911,30.00662,30.01133,30.016039,30.020746,30.025454,30.030159,30.034864,30.039568,30.044273,30.048977,30.053679,30.05838,30.063082,30.067781,30.072481,30.077179,30.081879,30.086575,30.091272,30.095968,30.100662,30.105356,30.11005,30.114744,30.119436,30.124126,30.128819,30.133509,30.138197,30.142885,30.147573,30.15226,30.156946,30.161633,30.166317,30.171001,30.175686,30.180368,30.18505,30.189732,30.194412,30.199091,30.20377,30.208448,30.213127,30.217804,30.222479,30.227156,30.23183,30.236504,30.241177,30.24585,30.250523,30.255194,30.259863,30.264532,30.269201,30.27387,30.278538,30.283205,30.28787,30.292536,30.297201,30.301865,30.306528,30.31119,30.315851,30.320513,30.325174,30.329834,30.334492,30.33915,30.343807,30.348465,30.35312,30.357777,30.36243,30.367085,30.371738,30.37639,30.381042,30.385693,30.390343,30.394993,30.399641,30.40429,30.408937,30.413584,30.41823,30.422876,30.42752,30.432165,30.436808,30.44145,30.446093,30.450733,30.455374,30.460014,30.464653,30.469292,30.473928,30.478565,30.483202,30.487837,30.492472,30.497107,30.50174,30.506372,30.511003,30.515635,30.520266,30.524895,30.529524,30.534153,30.53878,30.543407,30.548035,30.55266,30.557285,30.561909,30.566532,30.571156,30.575777,30.580399,30.58502,30.58964,30.59426,30.598879,30.603497,30.608112,30.61273,30.617346,30.621962,30.626575,30.63119,30.635801,30.640415,30.645027,30.649637,30.654247,30.658857,30.663465,30.668074,30.672682,30.677288,30.681894,30.6865,30.691105,30.69571,30.700314,30.704916,30.709517,30.714119,30.71872,30.72332,30.727919,30.732517,30.737116,30.741713,30.74631,30.750904,30.755499,30.760094,30.764688,30.769281,30.773874,30.778465,30.783056,30.787647,30.792236,30.796825,30.801413,30.806002,30.810589,30.815174,30.81976,30.824345,30.828928,30.833511,30.838095,30.842678,30.84726,30.85184,30.85642,30.860998,30.865578,30.870155,30.874733,30.87931,30.883886,30.888462,30.893036,30.89761,30.902184,30.906755,30.911327,30.9159,30.92047,30.92504,30.92961,30.934177,30.938745,30.943314,30.94788,30.952446,30.95701,30.961575,30.966139,30.970701,30.975266,30.979826,30.984388,30.988949,30.993507,30.998068,31.002626,31.007183,31.01174,31.016296,31.020853,31.025408,31.029963,31.034517,31.03907,31.043623,31.048174,31.052725,31.057276,31.061825,31.066374,31.070923,31.07547,31.080017,31.084564,31.08911,31.093655,31.0982,31.102743,31.107286,31.11183,31.116371,31.120913,31.125452,31.129993,31.134531,31.13907,31.143608,31.148146,31.152681,31.157217,31.161753,31.166288,31.170822,31.175354,31.179888,31.18442,31.188951,31.193481,31.198011,31.202541,31.20707,31.211597,31.216124,31.220652,31.225178,31.229702,31.234226,31.23875,31.243275,31.247797,31.25232,31.256842,31.261362,31.265882,31.270401,31.27492,31.279438,31.283955,31.288473,31.292988,31.297504,31.30202,31.306534,31.311047,31.31556,31.320072,31.324583,31.329094,31.333605,31.338116,31.342625,31.347132,31.35164,31.356148,31.360653,31.36516,31.369665,31.374168,31.378674,31.383177,31.387678,31.392181,31.396683,31.401182,31.405682,31.410181,31.41468,31.419178,31.423676,31.428173,31.432669,31.437164,31.44166,31.446154,31.450647,31.45514,31.459633,31.464125,31.468615,31.473104,31.477594,31.482084,31.486572,31.49106,31.495548,31.500034,31.50452,31.509005,31.513489,31.517973,31.522457,31.52694,31.531422,31.535902,31.540384,31.544865,31.549343,31.553822,31.5583,31.562778,31.567255,31.571732,31.576206,31.580683,31.585155,31.58963,31.594103,31.598576,31.603048,31.60752,31.61199,31.616459,31.62093,31.625397,31.629866,31.634333,31.6388,31.643267,31.647732,31.652197,31.656662,31.661125,31.665588,31.67005,31.674513,31.678972,31.683434,31.687893,31.692352,31.696812,31.70127,31.705727,31.710184,31.71464,31.719095,31.72355,31.728004,31.732458,31.736912,31.741364,31.745815,31.750267,31.754717,31.759167,31.763617,31.768064,31.772512,31.77696,31.781406,31.785852,31.790298,31.794744,31.799189,31.80363,31.808075,31.812517,31.81696,31.8214,31.82584,31.83028,31.83472,31.839159,31.843597,31.848034,31.85247,31.856907,31.861343,31.865778,31.870213,31.874647,31.87908,31.883512,31.887943,31.892376,31.896807,31.901236,31.905666,31.910095,31.914522,31.918951,31.923378,31.927803,31.93223,31.936655,31.941078,31.945503,31.949926,31.95435,31.95877,31.963192,31.967613,31.972034,31.976454,31.980873,31.98529,31.989708,31.994125,31.998543,32.00296,32.007374,32.011787,32.0162,32.020615,32.02503,32.02944,32.03385,32.038265,32.042675,32.047085,32.051495,32.055904,32.06031,32.06472,32.069126,32.073532,32.077938,32.082344,32.086746,32.091152,32.095554,32.099957,32.10436,32.10876,32.11316,32.11756,32.12196,32.126358,32.13076,32.135155,32.139553,32.14395,32.148346,32.15274,32.157135,32.16153,32.165924,32.17032,32.17471,32.1791,32.18349,32.18788,32.192272,32.196663,32.20105,32.20544,32.209827,32.214214,32.2186,32.22299,32.22737,32.23176,32.23614,32.240524,32.244907,32.24929,32.25367,32.258053,32.262432,32.26681,32.27119,32.27557,32.27995,32.284325,32.288704,32.29308,32.297455,32.30183,32.306206,32.310577,32.314953,32.319324,32.323696,32.328068,32.33244,32.33681,32.34118,32.345547,32.34992,32.354286,32.358654,32.363018,32.367386,32.37175,32.376118,32.38048,32.384846,32.38921,32.39357,32.397934,32.402294,32.406654,32.411015,32.415375,32.419735,32.424095,32.42845,32.432808,32.437164,32.44152,32.445877,32.450233,32.454586,32.458942,32.463295,32.467648,32.472,32.476353,32.4807,32.485054,32.489403,32.49375,32.4981,32.50245,32.506798,32.511143,32.51549,32.519836,32.52418,32.528526,32.53287,32.537212,32.541557,32.5459,32.55024,32.55458,32.55892,32.563263,32.5676,32.57194,32.57628,32.580616,32.584953,32.58929,32.593624,32.59796,32.602295,32.60663,32.610966,32.615295,32.61963,32.623962,32.628292,32.63262,32.636955,32.641285,32.64561,32.64994,32.65427,32.658596,32.66292,32.667248,32.671574,32.6759,32.680225,32.684547,32.68887,32.693195,32.697517,32.70184,32.706158,32.71048,32.714798,32.71912,32.72344,32.727757,32.732075,32.73639,32.740707,32.74502,32.749336,32.753654,32.757965,32.76228,32.766594,32.770905,32.77522,32.77953,32.78384,32.78815,32.79246,32.79677,32.80108,32.805386,32.809692,32.814,32.818306,32.822613,32.826916,32.831223,32.835526,32.83983,32.84413,32.848434,32.852737,32.857037,32.86134,32.86564,32.869938,32.874237,32.878536,32.88283,32.88713,32.891426,32.89572,32.900017,32.904312,32.908607,32.912903,32.917194,32.921486,32.92578,32.930073,32.934364,32.938652,32.942944,32.94723,32.951523,32.95581,32.9601,32.964386,32.96867,32.972958,32.97724,32.98153,32.985813,32.990097,32.99438,32.99866,33.002945,33.007225,33.011505,33.01579,33.02007,33.024345,33.028625,33.032906,33.03718,33.04146,33.045734,33.05001,33.054287,33.058563,33.062836,33.067112,33.071384,33.075657,33.07993,33.0842,33.08847,33.092743,33.09701,33.10128,33.10555,33.109818,33.114086,33.118355,33.12262,33.126884,33.131153,33.135418,33.139683,33.143944,33.14821,33.152473,33.156734,33.160995,33.165257,33.169518,33.17378,33.178036,33.182297,33.186554,33.19081,33.19507,33.199326,33.203583,33.20784,33.212093,33.21635,33.220604,33.224857,33.22911,33.23336,33.237614,33.241867,33.246117,33.250366,33.254616,33.258865,33.263115,33.26736,33.27161,33.275856,33.2801,33.284348,33.288593,33.29284,33.297085,33.301327,33.305573,33.309814,33.314056,33.3183,33.32254,33.32678,33.33102,33.33526,33.339497,33.343735,33.347973,33.35221,33.35645,33.360683,33.36492,33.369156,33.37339,33.377625,33.38186,33.38609,33.390324,33.394554,33.398785,33.40302,33.40725,33.411476,33.415707,33.419937,33.424164,33.42839,33.432617,33.436844,33.44107,33.445297,33.44952,33.453747,33.45797,33.462193,33.466415,33.47064,33.47486,33.47908,33.483303,33.487522,33.49174,33.49596,33.50018,33.5044,33.508617,33.512833,33.517048,33.521267,33.525482,33.529694,33.53391,33.538124,33.542336,33.54655,33.550762,33.554974,33.559185,33.563396,33.567604,33.571815,33.576023,33.580235,33.584442,33.58865,33.592854,33.59706,33.60127,33.605473,33.609676,33.613884,33.618088,33.622288,33.62649,33.630695,33.634895,33.639095,33.6433,33.6475,33.6517,33.655895,33.660095,33.664295,33.66849,33.672688,33.676884,33.68108,33.685276,33.689472,33.693665,33.697857,33.702053,33.706245,33.710438,33.71463,33.71882,33.72301,33.7272,33.73139,33.73558,33.73977,33.743958,33.748146,33.75233,33.75652,33.760704,33.76489,33.769073,33.77326,33.777443,33.781628,33.78581,33.789993,33.794174,33.798355,33.802536,33.806717,33.810898,33.815075,33.819256,33.823433,33.82761,33.831787,33.835964,33.84014,33.844315,33.84849,33.852665,33.856842,33.861015,33.86519,33.869358,33.87353,33.877705,33.881874,33.886044,33.890217,33.894386,33.898552,33.90272,33.90689,33.911057,33.915226,33.91939,33.923557,33.927723,33.93189,33.93605,33.940216,33.944378,33.948544,33.952705,33.956867,33.96103,33.965187,33.96935,33.973507,33.97767,33.981827,33.985985,33.990143,33.9943,33.998455,34.002613,34.006767,34.010925,34.01508,34.019234,34.023388,34.02754,34.031693,34.035847,34.039997,34.044147,34.048298,34.05245,34.0566,34.06075,34.064896,34.069046,34.073193,34.07734,34.081486,34.085632,34.08978,34.09392,34.09807,34.10221,34.106354,34.110497,34.11464,34.118782,34.122925,34.127064,34.131207,34.135345,34.139484,34.143623,34.147762,34.1519,34.15604,34.160175,34.164314,34.16845,34.172585,34.17672,34.180855,34.18499,34.18912,34.193256,34.197388,34.20152,34.20565,34.20978,34.213913,34.218044,34.22217,34.226303,34.23043,34.23456,34.238686,34.242813,34.24694,34.251064,34.25519,34.259315,34.263443,34.267567,34.27169,34.27581,34.279934,34.284058,34.288177,34.2923,34.29642,34.30054,34.30466,34.30878,34.312897,34.317017,34.321133,34.325253,34.32937,34.333485,34.3376,34.341717,34.34583,34.349945,34.354057,34.35817,34.36228,34.366394,34.370506,34.37462,34.37873,34.38284,34.38695,34.39106,34.39517,34.399277,34.403385,34.40749,34.4116,34.415703,34.41981,34.423916,34.42802,34.432125,34.43623,34.440334,34.444435,34.44854,34.45264,34.45674,34.460842,34.464943,34.469044,34.47314,34.47724,34.48134,34.48544,34.489536,34.493633,34.49773,34.501827,34.50592,34.510017,34.51411,34.518204,34.522297,34.52639,34.530483,34.534576,34.53867,34.54276,34.546852,34.55094,34.55503,34.55912,34.56321,34.5673,34.571384,34.575474,34.57956,34.583645,34.58773,34.591816,34.5959,34.599987,34.604073,34.608154,34.612236,34.61632,34.620403,34.624485,34.628563,34.632645,34.636726,34.640804,34.644886,34.648964,34.65304,34.65712,34.661198,34.66527,34.66935,34.673424,34.6775,34.681576,34.68565,34.689724,34.693798,34.697872,34.701942,34.706017,34.710087,34.714157,34.718227,34.722298,34.726368,34.73044,34.734505,34.738575,34.74264,34.746708,34.750774,34.75484,34.758907,34.762974,34.767036,34.771103,34.775166,34.77923,34.78329,34.787354,34.791416,34.79548,34.79954,34.8036,34.80766,34.81172,34.81578,34.81984,34.823895,34.827953,34.832012,34.836067,34.840126,34.84418,34.848236,34.85229,34.856346,34.860397,34.864452,34.868507,34.87256,34.87661,34.88066,34.884712,34.888763,34.892815,34.896862,34.900913,34.90496,34.90901,34.91306,34.917107,34.921154,34.925198,34.929245,34.93329,34.937336,34.94138,34.945423,34.949467,34.95351,34.957554,34.961597,34.965637,34.96968,34.97372,34.97776,34.9818,34.98584,34.98988,34.993916,34.997955,35.00199,35.00603,35.010067,35.014103,35.01814,35.022175,35.026207,35.030243,35.034275,35.03831,35.042343,35.046375,35.050407,35.05444,35.05847,35.0625,35.066532,35.07056,35.07459,35.078617,35.082645,35.086674,35.090702,35.09473,35.098755,35.10278,35.106808,35.110832,35.114857,35.11888,35.122906,35.126926,35.13095,35.13497,35.138996,35.143017,35.147038,35.15106,35.155075,35.159096,35.163116,35.167133,35.171154,35.17517,35.179188,35.183205,35.18722,35.191235,35.19525,35.19927,35.20328,35.207294,35.211308,35.21532,35.219334,35.223347,35.22736,35.23137,35.235382,35.23939,35.2434,35.24741,35.25142,35.25543,35.259438,35.263443,35.267452,35.271458,35.275463,35.27947,35.283474,35.28748,35.291485,35.295486,35.29949,35.303493,35.3075,35.3115,35.315502,35.319504,35.323505,35.327503,35.331505,35.335503,35.339504,35.343502,35.3475,35.351498,35.355495,35.35949,35.363487,35.36748,35.37148,35.375473,35.379467,35.38346,35.387455,35.39145,35.395443,35.399433,35.403423,35.407417,35.411407,35.415398,35.419388,35.423378,35.42737,35.431355,35.435345,35.43933,35.443317,35.447304,35.45129,35.455276,35.459263,35.46325,35.46723,35.47122,35.4752,35.479183,35.483166,35.48715,35.49113,35.495113,35.499092,35.503075,35.507053,35.511032,35.515015,35.518993,35.522972,35.526947,35.530926,35.534904,35.53888,35.542854,35.546833,35.550808,35.554783,35.558754,35.56273,35.566704,35.570675,35.57465,35.57862,35.582592,35.586563,35.590534,35.594505,35.598476,35.602444,35.606415,35.610382,35.61435,35.618317,35.622284,35.62625,35.63022,35.634186,35.63815,35.642113,35.64608,35.650043,35.654007,35.65797,35.661934,35.665897,35.669857,35.67382,35.67778,35.68174,35.6857,35.68966,35.69362,35.69758,35.701538,35.705494,35.709454,35.71341,35.717365,35.721325,35.72528,35.729233,35.73319,35.737144,35.741096,35.745052,35.749004,35.752956,35.75691,35.76086,35.764812,35.768764,35.772717,35.776665,35.780613,35.784565,35.788513,35.79246,35.79641,35.800358,35.804302,35.80825,35.812195,35.816143,35.820087,35.82403,35.827976,35.83192,35.835865,35.83981,35.84375,35.847694,35.851635,35.855576,35.859516,35.863457,35.867397,35.871338,35.87528,35.879215,35.883156,35.887093,35.89103,35.894966,35.898903,35.90284,35.906776,35.910713,35.914646,35.91858,35.922516,35.92645,35.93038,35.934315,35.938248,35.94218,35.94611,35.950043,35.95397,35.9579,35.961834,35.965763,35.969692,35.973618,35.977547,35.981476,35.9854,35.98933,35.993256,35.99718,36.001106,36.00503,36.008957,36.012882,36.016804,36.02073,36.02465,36.028572,36.032494,36.03642,36.040337,36.04426,36.04818,36.0521,36.05602,36.059937,36.063858,36.067776,36.071693,36.07561,36.07953,36.083443,36.08736,36.091274,36.095192,36.099106,36.10302,36.106934,36.110847,36.11476,36.118675,36.122585,36.1265,36.13041,36.13432,36.13823,36.14214,36.14605,36.14996,36.15387,36.15778,36.161686,36.165592,36.169502,36.17341,36.177315,36.18122,36.185127,36.18903,36.192936,36.19684,36.200745,36.204647,36.20855,36.212452,36.216354,36.220257,36.22416,36.228058,36.23196,36.23586,36.239758,36.24366,36.24756,36.251457,36.255352,36.25925,36.26315,36.267044,36.270943,36.274837,36.278732,36.282627,36.286522,36.290417,36.29431,36.298203,36.302097,36.30599,36.309883,36.313774,36.317665,36.321556,36.325447,36.329334,36.333225,36.337116,36.341003,36.34489,36.348778,36.35267,36.356556,36.36044,36.364326,36.368214,36.372097,36.375984,36.379868,36.38375,36.387638,36.39152,36.3954,36.399284,36.403168,36.40705,36.41093,36.41481,36.418694,36.422573,36.426453,36.430332,36.43421,36.438087,36.441967,36.445843,36.449722,36.453598,36.457474,36.46135,36.465225,36.4691,36.472977,36.47685,36.480724,36.484596,36.488472,36.492344,36.496216,36.500088,36.50396,36.507828,36.5117,36.51557,36.51944,36.523308,36.52718,36.531048,36.534916,36.538784,36.542652,36.546516,36.550385,36.55425,36.558117,36.56198,36.565845,36.56971,36.573574,36.57744,36.581303,36.585163,36.589027,36.592888,36.59675,36.600613,36.604473,36.608334,36.612194,36.61605,36.61991,36.62377,36.62763,36.631485,36.635345,36.639202,36.64306,36.646915,36.65077,36.654625,36.65848,36.662334,36.66619,36.670044,36.673897,36.67775,36.681602,36.685455,36.68931,36.693157,36.69701,36.70086,36.704712,36.70856,36.71241,36.71626,36.720108,36.723957,36.727802,36.73165,36.735497,36.739346,36.74319,36.747036,36.75088,36.754726,36.75857,36.762417,36.76626,36.770103,36.773945,36.77779,36.78163,36.785473,36.789314,36.793156,36.796997,36.800835,36.804676,36.808514,36.812355,36.816193,36.82003,36.823868,36.827705,36.831543,36.83538,36.839214,36.843052,36.846886,36.850723,36.854557,36.85839,36.862225,36.86606,36.869892,36.873722,36.877556,36.88139,36.88522,36.88905,36.89288,36.89671,36.90054,36.90437,36.9082,36.91203,36.915855,36.919685,36.92351,36.927338,36.931164,36.93499,36.938816,36.942642,36.94647,36.95029,36.954117,36.95794,36.961765,36.965588,36.96941,36.973232,36.977055,36.980877,36.984695,36.988518,36.992336,36.99616,36.999977,37.003796,37.007614,37.011433,37.01525,37.01907,37.022884,37.026703,37.030518,37.034336,37.03815,37.041965,37.04578,37.049595,37.05341,37.057224,37.061035,37.06485,37.06866,37.07247,37.076286,37.080097,37.083908,37.08772,37.091526,37.095337,37.099148,37.102955,37.106766,37.110573,37.11438,37.118187,37.121994,37.1258,37.12961,37.13341,37.13722,37.14102,37.14483,37.148632,37.152435,37.15624,37.16004,37.163845,37.16765,37.171448,37.17525,37.17905,37.182854,37.186653,37.190453,37.194252,37.19805,37.20185,37.20565,37.209446,37.213245,37.21704,37.22084,37.224636,37.22843,37.232227,37.236023,37.23982,37.24361,37.247406,37.2512,37.254993,37.258785,37.26258,37.266373,37.270164,37.273956,37.277744,37.281536,37.285328,37.289116,37.292908,37.296696,37.300484,37.30427,37.30806,37.311848,37.315636,37.319424,37.323208,37.326996,37.33078,37.334564,37.33835,37.342136,37.34592,37.3497,37.353485,37.35727,37.361053,37.364834,37.368614,37.3724,37.37618,37.37996,37.38374,37.38752,37.3913,37.395077,37.398857,37.402634,37.406414,37.41019,37.413967,37.417744,37.42152,37.425297,37.429073,37.43285,37.436623,37.4404,37.44417,37.447945,37.45172,37.455494,37.459267,37.46304,37.46681,37.47058,37.474354,37.478123,37.481895,37.485664,37.489433,37.493202,37.49697,37.50074,37.50451,37.508274,37.512043,37.515812,37.519577,37.523342,37.527107,37.530876,37.53464,37.538403,37.542168,37.545933,37.549698,37.55346,37.557224,37.560986,37.564747,37.56851,37.57227,37.57603,37.579792,37.583553,37.58731,37.591072,37.59483,37.598587,37.60235,37.606106,37.609863,37.61362,37.61738,37.62113,37.62489,37.628647,37.6324,37.636154,37.63991,37.643665,37.64742,37.651173,37.654926,37.658676,37.66243,37.66618,37.669933,37.673683,37.677437,37.681187,37.684937,37.688686,37.692436,37.696182,37.699932,37.703682,37.707428,37.711178,37.714924,37.71867,37.722416,37.726162,37.729908,37.733654,37.737396,37.741142,37.74489,37.74863,37.752373,37.756115,37.75986,37.763603,37.767345,37.771084,37.774826,37.77857,37.782307,37.78605,37.789787,37.793526,37.797264,37.801003,37.80474,37.80848,37.812218,37.815956,37.81969,37.82343,37.827164,37.8309,37.834637,37.83837,37.842106,37.845837,37.84957,37.853306,37.85704,37.86077,37.864502,37.868237,37.871967,37.875698,37.87943,37.88316,37.88689,37.89062,37.89435,37.89808,37.901806,37.905537,37.909264,37.91299,37.916718,37.920444,37.92417,37.9279,37.93162,37.93535,37.93907,37.9428,37.94652,37.950245,37.953968,37.95769,37.961414,37.965137,37.96886,37.97258,37.976303,37.980022,37.983746,37.987465,37.991184,37.994904,37.998623,38.002342,38.00606,38.009777,38.013496,38.017212,38.02093,38.024647,38.028362,38.032078,38.035793,38.03951,38.043224,38.04694,38.05065,38.054367,38.05808,38.061794,38.065506,38.069218,38.07293,38.07664,38.080353,38.084064,38.087772,38.091484,38.095192,38.098904,38.10261,38.10632,38.110027,38.113735,38.117443,38.12115,38.12486,38.128563,38.13227,38.135975,38.139683,38.143387,38.14709,38.150795,38.1545,38.158203,38.161907,38.165607,38.16931,38.17301,38.176716,38.180416,38.184116,38.187817,38.191517,38.195217,38.198917,38.202618,38.206318,38.210014,38.213715,38.21741,38.221107,38.224804,38.228504,38.2322,38.235893,38.23959,38.243286,38.246983,38.250675,38.25437,38.258064,38.261757,38.26545,38.269142,38.272835,38.276527,38.28022,38.283913,38.2876,38.291294,38.294983,38.29867,38.302364,38.306053,38.309742,38.31343,38.31712,38.320805,38.324493,38.328182,38.331867,38.335552,38.33924,38.342926,38.34661,38.350296,38.35398,38.357666,38.361347,38.365032,38.368717,38.3724,38.37608,38.379765,38.383446,38.387127,38.39081,38.39449,38.39817,38.401848,38.40553,38.40921,38.412888,38.416565,38.420246,38.423923,38.4276,38.43128,38.434956,38.43863,38.442307,38.445984,38.449657,38.453335,38.45701,38.460682,38.464355,38.46803,38.471703,38.475376,38.47905,38.482723,38.486393,38.490067,38.493736,38.49741,38.50108,38.50475,38.50842,38.51209,38.51576,38.519424,38.523094,38.526764,38.53043,38.5341,38.537766,38.54143,38.545097,38.548763,38.55243,38.556095,38.55976,38.563427,38.56709,38.570755,38.574417,38.57808,38.581745,38.585407,38.58907,38.59273,38.59639,38.60005,38.603714,38.607372,38.611034,38.614693,38.618355,38.622013,38.62567,38.62933,38.632988,38.636646,38.640305,38.64396,38.647617,38.65127,38.65493,38.658585,38.66224,38.665894,38.669548,38.673203,38.676857,38.68051,38.684166,38.687817,38.69147,38.69512,38.698772,38.702427,38.706078,38.70973,38.71338,38.71703,38.720676,38.724327,38.727978,38.731625,38.73527,38.738922,38.74257,38.746216,38.749863,38.75351,38.757156,38.760803,38.764446,38.768093,38.77174,38.775383,38.779026,38.782673,38.786316,38.78996,38.793602,38.797245,38.800884,38.804527,38.80817,38.81181,38.815453,38.81909,38.82273,38.82637,38.83001,38.83365,38.837288,38.840927,38.844566,38.8482,38.85184,38.855476,38.859116,38.86275,38.866386,38.87002,38.873657,38.877293,38.880928,38.884563,38.888195,38.89183,38.895466,38.899097,38.90273,38.90636,38.909992,38.913628,38.917255,38.920887,38.92452,38.92815,38.931778,38.93541,38.939037,38.942665,38.946297,38.949924,38.953552,38.95718,38.960808,38.964436,38.96806,38.971687,38.97531,38.97894,38.982563,38.986187,38.98981,38.99344,38.997063,39.000683,39.004307,39.00793,39.011555,39.015175,39.0188,39.02242,39.02604,39.02966,39.033283,39.036903,39.040524,39.04414,39.04776,39.05138,39.054996,39.058617,39.062233,39.065853,39.06947,39.073086,39.076702,39.08032,39.083935,39.08755,39.091164,39.09478,39.098392,39.10201,39.10562,39.109234,39.11285,39.116463,39.120075,39.123688,39.127296,39.13091,39.13452,39.13813,39.141743,39.14535,39.148964,39.152573,39.15618,39.15979,39.1634,39.167007,39.170612,39.17422,39.17783,39.181435,39.185043,39.18865,39.192253,39.195858,39.199467,39.20307,39.206673,39.210278,39.213882,39.217487,39.22109,39.224693,39.228294,39.231895,39.2355,39.2391,39.242702,39.246304,39.249905,39.2535,39.257103,39.260704,39.2643,39.267902,39.2715,39.275097,39.278694,39.28229,39.28589,39.289486,39.293083,39.29668,39.300278,39.30387,39.30747,39.31106,39.314655,39.318253,39.321846,39.32544,39.329033,39.332626,39.336216,39.33981,39.343403,39.346992,39.350586,39.354176,39.357765,39.36136,39.36495,39.368538,39.372128,39.375713,39.379303,39.382893,39.386482,39.390068,39.393654,39.397243,39.40083,39.404415,39.408,39.411587,39.415173,39.41876,39.422344,39.425926,39.429512,39.433094,39.43668,39.44026,39.443844,39.447426,39.45101,39.454594,39.45817,39.461754,39.465336,39.468918,39.472496,39.476078,39.479656,39.483234,39.486813,39.490395,39.493973,39.497547,39.501125,39.504704,39.50828,39.511856,39.515434,39.51901,39.522587,39.52616,39.529736,39.53331,39.536884,39.54046,39.544033,39.547607,39.551178,39.554752,39.558327,39.561897,39.565468,39.569042,39.572613,39.576183,39.579754,39.583324,39.586895,39.59046,39.594032,39.597603,39.60117,39.604736,39.608307,39.611874,39.61544,39.619007,39.622574,39.62614,39.629707,39.633274],"x":[50.0,50.08996401439424,50.17992802878848,50.26989204318273,50.35985605757697,50.44982007197121,50.53978408636545,50.6297481007597,50.71971211515394,50.80967612954818,50.89964014394242,50.98960415833667,51.07956817273091,51.16953218712515,51.25949620151939,51.34946021591364,51.43942423030788,51.52938824470212,51.61935225909636,51.7093162734906,51.79928028788485,51.88924430227909,51.97920831667333,52.06917233106757,52.15913634546182,52.24910035985606,52.3390643742503,52.42902838864454,52.51899240303879,52.60895641743303,52.69892043182727,52.78888444622151,52.87884846061576,52.96881247501,53.05877648940424,53.14874050379848,53.238704518192726,53.32866853258697,53.41863254698121,53.50859656137545,53.59856057576969,53.68852459016394,53.77848860455818,53.86845261895242,53.95841663334666,54.048380647740906,54.13834466213515,54.22830867652939,54.31827269092363,54.408236705317876,54.498200719712116,54.58816473410636,54.6781287485006,54.768092762894845,54.858056777289086,54.94802079168333,55.03798480607757,55.12794882047181,55.217912834866056,55.307876849260296,55.39784086365454,55.48780487804878,55.577768892443025,55.667732906837266,55.757696921231506,55.84766093562575,55.937624950019995,56.027588964414235,56.117552978808476,56.20751699320272,56.297481007596964,56.387445021991205,56.477409036385446,56.567373050779686,56.657337065173934,56.747301079568174,56.837265093962415,56.927229108356656,57.017193122750896,57.107157137145144,57.197121151539385,57.287085165933625,57.377049180327866,57.467013194722114,57.556977209116354,57.646941223510595,57.736905237904836,57.82686925229908,57.916833266693324,58.006797281087564,58.096761295481805,58.18672530987605,58.27668932427029,58.366653338664534,58.456617353058775,58.546581367453015,58.63654538184726,58.726509396241504,58.816473410635744,58.906437425029985,58.99640143942423,59.08636545381847,59.176329468212714,59.266293482606955,59.3562574970012,59.44622151139544,59.53618552578968,59.626149540183924,59.71611355457817,59.80607756897241,59.89604158336665,59.986005597760894,60.07596961215514,60.16593362654938,60.25589764094362,60.34586165533786,60.435825669732104,60.52578968412635,60.61575369852059,60.70571771291483,60.79568172730907,60.88564574170332,60.97560975609756,61.0655737704918,61.15553778488604,61.24550179928029,61.33546581367453,61.42542982806877,61.51539384246301,61.60535785685726,61.6953218712515,61.78528588564574,61.87524990003998,61.96521391443422,62.05517792882847,62.14514194322271,62.23510595761695,62.32506997201119,62.41503398640544,62.50499800079968,62.59496201519392,62.68492602958816,62.77489004398241,62.86485405837665,62.95481807277089,63.04478208716513,63.13474610155938,63.22471011595362,63.31467413034786,63.4046381447421,63.49460215913635,63.58456617353059,63.67453018792483,63.76449420231907,63.85445821671331,63.94442223110756,64.03438624550179,64.12435025989605,64.21431427429029,64.30427828868453,64.39424230307877,64.48420631747301,64.57417033186725,64.66413434626149,64.75409836065573,64.84406237504999,64.93402638944423,65.02399040383847,65.11395441823271,65.20391843262695,65.29388244702119,65.38384646141543,65.47381047580967,65.56377449020391,65.65373850459817,65.74370251899241,65.83366653338665,65.92363054778089,66.01359456217513,66.10355857656937,66.19352259096361,66.28348660535785,66.3734506197521,66.46341463414635,66.55337864854059,66.64334266293483,66.73330667732907,66.82327069172331,66.91323470611755,67.00319872051179,67.09316273490603,67.18312674930029,67.27309076369453,67.36305477808877,67.45301879248301,67.54298280687725,67.63294682127149,67.72291083566573,67.81287485005997,67.90283886445422,67.99280287884847,68.0827668932427,68.17273090763695,68.26269492203119,68.35265893642543,68.44262295081967,68.53258696521391,68.62255097960815,68.7125149940024,68.80247900839665,68.89244302279089,68.98240703718513,69.07237105157937,69.16233506597361,69.25229908036785,69.34226309476209,69.43222710915634,69.52219112355058,69.61215513794482,69.70211915233907,69.7920831667333,69.88204718112755,69.97201119552179,70.06197520991603,70.15193922431028,70.24190323870452,70.33186725309876,70.421831267493,70.51179528188725,70.60175929628149,70.69172331067573,70.78168732506997,70.87165133946421,70.96161535385846,71.0515793682527,71.14154338264694,71.23150739704118,71.32147141143543,71.41143542582967,71.5013994402239,71.59136345461815,71.6813274690124,71.77129148340664,71.86125549780088,71.95121951219512,72.04118352658936,72.1311475409836,72.22111155537785,72.31107556977209,72.40103958416633,72.49100359856058,72.58096761295482,72.67093162734906,72.7608956417433,72.85085965613754,72.94082367053178,73.03078768492603,73.12075169932027,73.21071571371452,73.30067972810876,73.390643742503,73.48060775689724,73.57057177129148,73.66053578568572,73.75049980007996,73.8404638144742,73.93042782886845,74.0203918432627,74.11035585765694,74.20031987205118,74.29028388644542,74.38024790083966,74.4702119152339,74.56017592962814,74.65013994402238,74.74010395841664,74.83006797281088,74.92003198720512,75.00999600159936,75.0999600159936,75.18992403038784,75.27988804478208,75.36985205917632,75.45981607357056,75.54978008796482,75.63974410235906,75.7297081167533,75.81967213114754,75.90963614554178,75.99960015993602,76.08956417433026,76.1795281887245,76.26949220311876,76.359456217513,76.44942023190724,76.53938424630148,76.62934826069572,76.71931227508996,76.8092762894842,76.89924030387844,76.9892043182727,77.07916833266694,77.16913234706118,77.25909636145542,77.34906037584966,77.4390243902439,77.52898840463814,77.61895241903238,77.70891643342662,77.79888044782088,77.88884446221512,77.97880847660936,78.0687724910036,78.15873650539784,78.24870051979208,78.33866453418632,78.42862854858056,78.51859256297482,78.60855657736906,78.6985205917633,78.78848460615754,78.87844862055178,78.96841263494602,79.05837664934026,79.1483406637345,79.23830467812874,79.328268692523,79.41823270691724,79.50819672131148,79.59816073570572,79.68812475009996,79.7780887644942,79.86805277888844,79.95801679328268,80.04798080767694,80.13794482207118,80.22790883646542,80.31787285085966,80.4078368652539,80.49780087964814,80.58776489404238,80.67772890843662,80.76769292283086,80.85765693722512,80.94762095161936,81.0375849660136,81.12754898040784,81.21751299480208,81.30747700919632,81.39744102359056,81.4874050379848,81.57736905237905,81.6673330667733,81.75729708116754,81.84726109556178,81.93722510995602,82.02718912435026,82.1171531387445,82.20711715313874,82.29708116753298,82.38704518192723,82.47700919632148,82.56697321071572,82.65693722510996,82.7469012395042,82.83686525389844,82.92682926829268,83.01679328268692,83.10675729708117,83.19672131147541,83.28668532586966,83.3766493402639,83.46661335465814,83.55657736905238,83.64654138344662,83.73650539784086,83.82646941223511,83.91643342662935,84.0063974410236,84.09636145541783,84.18632546981208,84.27628948420632,84.36625349860056,84.4562175129948,84.54618152738904,84.63614554178329,84.72610955617753,84.81607357057177,84.90603758496601,84.99600159936026,85.0859656137545,85.17592962814874,85.26589364254298,85.35585765693723,85.44582167133147,85.53578568572571,85.62574970011995,85.7157137145142,85.80567772890844,85.89564174330268,85.98560575769692,86.07556977209116,86.16553378648541,86.25549780087965,86.3454618152739,86.43542582966813,86.52538984406237,86.61535385845661,86.70531787285086,86.7952818872451,86.88524590163935,86.97520991603359,87.06517393042783,87.15513794482207,87.24510195921631,87.33506597361055,87.4250299880048,87.51499400239904,87.60495801679328,87.69492203118753,87.78488604558177,87.87485005997601,87.96481407437025,88.0547780887645,88.14474210315873,88.23470611755297,88.32467013194722,88.41463414634147,88.50459816073571,88.59456217512995,88.68452618952419,88.77449020391843,88.86445421831267,88.95441823270691,89.04438224710115,89.1343462614954,89.22431027588965,89.31427429028389,89.40423830467813,89.49420231907237,89.58416633346661,89.67413034786085,89.7640943622551,89.85405837664933,89.94402239104359,90.03398640543783,90.12395041983207,90.21391443422631,90.30387844862055,90.39384246301479,90.48380647740903,90.57377049180327,90.66373450619751,90.75369852059177,90.84366253498601,90.93362654938025,91.02359056377449,91.11355457816873,91.20351859256297,91.29348260695721,91.38344662135145,91.47341063574571,91.56337465013995,91.65333866453419,91.74330267892843,91.83326669332267,91.92323070771691,92.01319472211115,92.10315873650539,92.19312275089965,92.28308676529389,92.37305077968813,92.46301479408237,92.55297880847661,92.64294282287085,92.73290683726509,92.82287085165933,92.91283486605357,93.00279888044783,93.09276289484207,93.18272690923631,93.27269092363055,93.36265493802479,93.45261895241903,93.54258296681327,93.63254698120751,93.72251099560177,93.812475009996,93.90243902439025,93.99240303878449,94.08236705317873,94.17233106757297,94.26229508196721,94.35225909636145,94.44222311075569,94.53218712514995,94.62215113954419,94.71211515393843,94.80207916833267,94.89204318272691,94.98200719712115,95.07197121151539,95.16193522590963,95.25189924030389,95.34186325469813,95.43182726909237,95.5217912834866,95.61175529788085,95.70171931227509,95.79168332666933,95.88164734106357,95.97161135545781,96.06157536985206,96.1515393842463,96.24150339864055,96.33146741303479,96.42143142742903,96.51139544182327,96.60135945621751,96.69132347061175,96.781287485006,96.87125149940024,96.96121551379449,97.05117952818873,97.14114354258297,97.23110755697721,97.32107157137145,97.41103558576569,97.50099960015993,97.59096361455418,97.68092762894842,97.77089164334267,97.8608556577369,97.95081967213115,98.04078368652539,98.13074770091963,98.22071171531387,98.31067572970812,98.40063974410236,98.4906037584966,98.58056777289084,98.67053178728509,98.76049580167933,98.85045981607357,98.94042383046781,99.03038784486206,99.1203518592563,99.21031587365054,99.30027988804478,99.39024390243902,99.48020791683327,99.5701719312275,99.66013594562175,99.75009996001599,99.84006397441024,99.93002798880448,100.01999200319872,100.10995601759296,100.1999200319872,100.28988404638145,100.37984806077569,100.46981207516993,100.55977608956418,100.64974010395842,100.73970411835266,100.8296681327469,100.91963214714114,101.00959616153538,101.09956017592962,101.18952419032387,101.2794882047181,101.36945221911236,101.4594162335066,101.54938024790084,101.63934426229508,101.72930827668932,101.81927229108356,101.9092363054778,101.99920031987205,102.0891643342663,102.17912834866054,102.26909236305478,102.35905637744902,102.44902039184326,102.5389844062375,102.62894842063174,102.71891243502598,102.80887644942023,102.89884046381448,102.98880447820872,103.07876849260296,103.1687325069972,103.25869652139144,103.34866053578568,103.43862455017992,103.52858856457416,103.61855257896842,103.70851659336266,103.7984806077569,103.88844462215114,103.97840863654538,104.06837265093962,104.15833666533386,104.2483006797281,104.33826469412234,104.4282287085166,104.51819272291084,104.60815673730508,104.69812075169932,104.78808476609356,104.8780487804878,104.96801279488204,105.05797680927628,105.14794082367054,105.23790483806478,105.32786885245902,105.41783286685326,105.5077968812475,105.59776089564174,105.68772491003598,105.77768892443022,105.86765293882446,105.95761695321872,106.04758096761296,106.1375449820072,106.22750899640144,106.31747301079568,106.40743702518992,106.49740103958416,106.5873650539784,106.67732906837266,106.7672930827669,106.85725709716114,106.94722111155538,107.03718512594962,107.12714914034386,107.2171131547381,107.30707716913234,107.3970411835266,107.48700519792084,107.57696921231508,107.66693322670932,107.75689724110356,107.8468612554978,107.93682526989204,108.02678928428628,108.11675329868052,108.20671731307478,108.29668132746902,108.38664534186326,108.4766093562575,108.56657337065174,108.65653738504598,108.74650139944022,108.83646541383446,108.92642942822872,109.01639344262296,109.1063574570172,109.19632147141144,109.28628548580568,109.37624950019992,109.46621351459416,109.5561775289884,109.64614154338264,109.7361055577769,109.82606957217114,109.91603358656538,110.00599760095962,110.09596161535386,110.1859256297481,110.27588964414234,110.36585365853658,110.45581767293083,110.54578168732507,110.63574570171932,110.72570971611356,110.8156737305078,110.90563774490204,110.99560175929628,111.08556577369052,111.17552978808476,111.26549380247901,111.35545781687325,111.4454218312675,111.53538584566174,111.62534986005598,111.71531387445022,111.80527788884446,111.8952419032387,111.98520591763295,112.0751699320272,112.16513394642143,112.25509796081568,112.34506197520992,112.43502598960416,112.5249900039984,112.61495401839264,112.70491803278688,112.79488204718113,112.88484606157537,112.97481007596961,113.06477409036385,113.1547381047581,113.24470211915234,113.33466613354658,113.42463014794082,113.51459416233507,113.60455817672931,113.69452219112355,113.7844862055178,113.87445021991203,113.96441423430628,114.05437824870052,114.14434226309476,114.23430627748901,114.32427029188325,114.41423430627749,114.50419832067173,114.59416233506597,114.68412634946021,114.77409036385446,114.8640543782487,114.95401839264294,115.04398240703719,115.13394642143143,115.22391043582567,115.31387445021991,115.40383846461415,115.4938024790084,115.58376649340263,115.67373050779688,115.76369452219113,115.85365853658537,115.94362255097961,116.03358656537385,116.1235505797681,116.21351459416233,116.30347860855657,116.39344262295081,116.48340663734506,116.57337065173931,116.66333466613355,116.75329868052779,116.84326269492203,116.93322670931627,117.02319072371051,117.11315473810475,117.203118752499,117.29308276689325,117.38304678128749,117.47301079568173,117.56297481007597,117.65293882447021,117.74290283886445,117.8328668532587,117.92283086765293,118.01279488204717,118.10275889644143,118.19272291083567,118.28268692522991,118.37265093962415,118.46261495401839,118.55257896841263,118.64254298280687,118.73250699720111,118.82247101159537,118.91243502598961,119.00239904038385,119.09236305477809,119.18232706917233,119.27229108356657,119.36225509796081,119.45221911235505,119.5421831267493,119.63214714114355,119.72211115553779,119.81207516993203,119.90203918432627,119.99200319872051,120.08196721311475,120.17193122750899,120.26189524190323,120.35185925629749,120.44182327069173,120.53178728508597,120.62175129948021,120.71171531387445,120.80167932826869,120.89164334266293,120.98160735705717,121.07157137145141,121.16153538584567,121.25149940023991,121.34146341463415,121.43142742902839,121.52139144342263,121.61135545781687,121.70131947221111,121.79128348660535,121.8812475009996,121.97121151539385,122.06117552978809,122.15113954418233,122.24110355857657,122.33106757297081,122.42103158736505,122.51099560175929,122.60095961615355,122.69092363054779,122.78088764494203,122.87085165933627,122.96081567373051,123.05077968812475,123.14074370251899,123.23070771691323,123.32067173130747,123.41063574570173,123.50059976009597,123.5905637744902,123.68052778888445,123.77049180327869,123.86045581767293,123.95041983206717,124.04038384646141,124.13034786085566,124.2203118752499,124.31027588964415,124.40023990403839,124.49020391843263,124.58016793282687,124.67013194722111,124.76009596161535,124.85005997600959,124.94002399040384,125.02998800479808,125.11995201919233,125.20991603358657,125.2998800479808,125.38984406237505,125.47980807676929,125.56977209116353,125.65973610555778,125.74970011995202,125.83966413434626,125.9296281487405,126.01959216313475,126.10955617752899,126.19952019192323,126.28948420631747,126.37944822071171,126.46941223510596,126.5593762495002,126.64934026389444,126.73930427828869,126.82926829268293,126.91923230707717,127.0091963214714,127.09916033586565,127.1891243502599,127.27908836465414,127.36905237904838,127.45901639344262,127.54898040783686,127.6389444222311,127.72890843662535,127.81887245101959,127.90883646541383,127.99880047980808,128.0887644942023,128.17872850859655,128.2686925229908,128.35865653738506,128.4486205517793,128.53858456617354,128.62854858056778,128.71851259496202,128.80847660935626,128.8984406237505,128.98840463814474,129.07836865253898,129.16833266693322,129.25829668132747,129.3482606957217,129.43822471011595,129.5281887245102,129.61815273890443,129.70811675329867,129.7980807676929,129.88804478208718,129.97800879648142,130.06797281087566,130.1579368252699,130.24790083966414,130.33786485405838,130.42782886845262,130.51779288284686,130.6077568972411,130.69772091163534,130.78768492602958,130.87764894042382,130.96761295481807,131.0575769692123,131.14754098360655,131.2375049980008,131.32746901239503,131.4174330267893,131.50739704118354,131.59736105557778,131.68732506997202,131.77728908436626,131.8672530987605,131.95721711315474,132.04718112754898,132.13714514194322,132.22710915633746,132.3170731707317,132.40703718512594,132.49700119952018,132.58696521391443,132.67692922830867,132.7668932427029,132.85685725709718,132.94682127149142,133.03678528588566,133.1267493002799,133.21671331467414,133.30667732906838,133.39664134346262,133.48660535785686,133.5765693722511,133.66653338664534,133.75649740103958,133.84646141543382,133.93642542982806,134.0263894442223,134.11635345861654,134.20631747301078,134.29628148740503,134.3862455017993,134.47620951619353,134.56617353058778,134.65613754498202,134.74610155937626,134.8360655737705,134.92602958816474,135.01599360255898,135.10595761695322,135.19592163134746,135.2858856457417,135.37584966013594,135.46581367453018,135.55577768892442,135.64574170331866,135.7357057177129,135.82566973210714,135.9156337465014,136.00559776089565,136.0955617752899,136.18552578968414,136.27548980407838,136.36545381847262,136.45541783286686,136.5453818472611,136.63534586165534,136.72530987604958,136.81527389044382,136.90523790483806,136.9952019192323,137.08516593362654,137.17512994802078,137.26509396241502,137.35505797680926,137.44502199120353,137.53498600559777,137.624950019992,137.71491403438625,137.8048780487805,137.89484206317474,137.98480607756898,138.07477009196322,138.16473410635746,138.2546981207517,138.34466213514594,138.43462614954018,138.52459016393442,138.61455417832866,138.7045181927229,138.79448220711714,138.88444622151138,138.97441023590565,139.0643742502999,139.15433826469413,139.24430227908837,139.3342662934826,139.42423030787685,139.5141943222711,139.60415833666534,139.69412235105958,139.78408636545382,139.87405037984806,139.9640143942423,140.05397840863654,140.14394242303078,140.23390643742502,140.32387045181926,140.4138344662135,140.50379848060777,140.593762495002,140.68372650939625,140.7736905237905,140.86365453818473,140.95361855257897,141.0435825669732,141.13354658136745,141.2235105957617,141.31347461015594,141.40343862455018,141.49340263894442,141.58336665333866,141.6733306677329,141.76329468212714,141.85325869652138,141.94322271091562,142.0331867253099,142.12315073970413,142.21311475409837,142.3030787684926,142.39304278288685,142.4830067972811,142.57297081167533,142.66293482606957,142.7528988404638,142.84286285485805,142.9328268692523,143.02279088364654,143.11275489804078,143.20271891243502,143.29268292682926,143.3826469412235,143.47261095561774,143.562574970012,143.65253898440625,143.7425029988005,143.83246701319473,143.92243102758897,144.0123950419832,144.10235905637745,144.1923230707717,144.28228708516593,144.37225109956017,144.46221511395441,144.55217912834866,144.6421431427429,144.73210715713714,144.82207117153138,144.91203518592562,145.00199920031986,145.09196321471413,145.18192722910837,145.2718912435026,145.36185525789685,145.4518192722911,145.54178328668533,145.63174730107957,145.7217113154738,145.81167532986805,145.9016393442623,145.99160335865653,146.08156737305077,146.17153138744501,146.26149540183926,146.3514594162335,146.44142343062774,146.53138744502198,146.62135145941625,146.7113154738105,146.80127948820473,146.89124350259897,146.9812075169932,147.07117153138745,147.1611355457817,147.25109956017593,147.34106357457017,147.4310275889644,147.52099160335865,147.6109556177529,147.70091963214713,147.79088364654137,147.88084766093561,147.97081167532986,148.06077568972412,148.15073970411837,148.2407037185126,148.33066773290685,148.4206317473011,148.51059576169533,148.60055977608957,148.6905237904838,148.78048780487805,148.8704518192723,148.96041583366653,149.05037984806077,149.140343862455,149.23030787684925,149.3202718912435,149.41023590563773,149.50019992003197,149.59016393442624,149.68012794882048,149.77009196321472,149.86005597760897,149.9500199920032,150.03998400639745,150.1299480207917,150.21991203518593,150.30987604958017,150.3998400639744,150.48980407836865,150.5797680927629,150.66973210715713,150.75969612155137,150.8496601359456,150.93962415033985,151.0295881647341,151.11955217912836,151.2095161935226,151.29948020791684,151.38944422231108,151.47940823670532,151.56937225109957,151.6593362654938,151.74930027988805,151.8392642942823,151.92922830867653,152.01919232307077,152.109156337465,152.19912035185925,152.2890843662535,152.37904838064773,152.46901239504197,152.5589764094362,152.64894042383048,152.73890443822472,152.82886845261896,152.9188324670132,153.00879648140744,153.09876049580168,153.18872451019593,153.27868852459017,153.3686525389844,153.45861655337865,153.5485805677729,153.63854458216713,153.72850859656137,153.8184726109556,153.90843662534985,153.9984006397441,154.08836465413833,154.1783286685326,154.26829268292684,154.35825669732108,154.44822071171532,154.53818472610956,154.6281487405038,154.71811275489804,154.80807676929228,154.89804078368653,154.98800479808077,155.077968812475,155.16793282686925,155.2578968412635,155.34786085565773,155.43782487005197,155.5277888844462,155.61775289884045,155.70771691323472,155.79768092762896,155.8876449420232,155.97760895641744,156.06757297081168,156.15753698520592,156.24750099960016,156.3374650139944,156.42742902838864,156.51739304278289,156.60735705717713,156.69732107157137,156.7872850859656,156.87724910035985,156.9672131147541,157.05717712914833,157.14714114354257,157.23710515793684,157.32706917233108,157.41703318672532,157.50699720111956,157.5969612155138,157.68692522990804,157.77688924430228,157.86685325869652,157.95681727309076,158.046781287485,158.13674530187924,158.22670931627349,158.31667333066773,158.40663734506197,158.4966013594562,158.58656537385045,158.6765293882447,158.76649340263896,158.8564574170332,158.94642143142744,159.03638544582168,159.12634946021592,159.21631347461016,159.3062774890044,159.39624150339864,159.48620551779288,159.57616953218712,159.66613354658136,159.7560975609756,159.84606157536984,159.93602558976409,160.02598960415833,160.11595361855257,160.2059176329468,160.29588164734108,160.38584566173532,160.47580967612956,160.5657736905238,160.65573770491804,160.74570171931228,160.83566573370652,160.92562974810076,161.015593762495,161.10555777688924,161.19552179128348,161.28548580567772,161.37544982007196,161.4654138344662,161.55537784886045,161.64534186325469,161.73530587764893,161.8252698920432,161.91523390643744,162.00519792083168,162.09516193522592,162.18512594962016,162.2750899640144,162.36505397840864,162.45501799280288,162.54498200719712,162.63494602159136,162.7249100359856,162.81487405037984,162.90483806477408,162.99480207916832,163.08476609356256,163.1747301079568,163.26469412235107,163.35465813674531,163.44462215113955,163.5345861655338,163.62455017992804,163.71451419432228,163.80447820871652,163.89444222311076,163.984406237505,164.07437025189924,164.16433426629348,164.25429828068772,164.34426229508196,164.4342263094762,164.52419032387044,164.61415433826468,164.70411835265892,164.7940823670532,164.88404638144743,164.97401039584167,165.06397441023591,165.15393842463016,165.2439024390244,165.33386645341864,165.42383046781288,165.51379448220712,165.60375849660136,165.6937225109956,165.78368652538984,165.87365053978408,165.96361455417832,166.05357856857256,166.1435425829668,166.23350659736104,166.3234706117553,166.41343462614955,166.5033986405438,166.59336265493803,166.68332666933227,166.77329068372651,166.86325469812076,166.953218712515,167.04318272690924,167.13314674130348,167.22311075569772,167.31307477009196,167.4030387844862,167.49300279888044,167.58296681327468,167.67293082766892,167.76289484206316,167.85285885645743,167.94282287085167,168.0327868852459,168.12275089964015,168.2127149140344,168.30267892842863,168.39264294282287,168.48260695721711,168.57257097161136,168.6625349860056,168.75249900039984,168.84246301479408,168.93242702918832,169.02239104358256,169.1123550579768,169.20231907237104,169.29228308676528,169.38224710115955,169.4722111155538,169.56217512994803,169.65213914434227,169.7421031587365,169.83206717313075,169.922031187525,170.01199520191923,170.10195921631347,170.19192323070772,170.28188724510196,170.3718512594962,170.46181527389044,170.55177928828468,170.64174330267892,170.73170731707316,170.8216713314674,170.91163534586167,171.0015993602559,171.09156337465015,171.1815273890444,171.27149140343863,171.36145541783287,171.4514194322271,171.54138344662135,171.6313474610156,171.72131147540983,171.81127548980407,171.90123950419832,171.99120351859256,172.0811675329868,172.17113154738104,172.26109556177528,172.35105957616952,172.4410235905638,172.53098760495803,172.62095161935227,172.7109156337465,172.80087964814075,172.890843662535,172.98080767692923,173.07077169132347,173.1607357057177,173.25069972011195,173.3406637345062,173.43062774890043,173.52059176329468,173.61055577768892,173.70051979208316,173.7904838064774,173.88044782087164,173.9704118352659,174.06037584966015,174.1503398640544,174.24030387844863,174.33026789284287,174.4202319072371,174.51019592163135,174.6001599360256,174.69012395041983,174.78008796481407,174.8700519792083,174.96001599360255,175.0499800079968,175.13994402239103,175.22990803678528,175.31987205117952,175.40983606557376,175.49980007996803,175.58976409436227,175.6797281087565,175.76969212315075,175.859656137545,175.94962015193923,176.03958416633347,176.1295481807277,176.21951219512195,176.3094762095162,176.39944022391043,176.48940423830467,176.5793682526989,176.66933226709315,176.7592962814874,176.84926029588163,176.93922431027588,177.02918832467014,177.11915233906439,177.20911635345863,177.29908036785287,177.3890443822471,177.47900839664135,177.5689724110356,177.65893642542983,177.74890043982407,177.8388644542183,177.92882846861255,178.0187924830068,178.10875649740103,178.19872051179527,178.2886845261895,178.37864854058375,178.46861255497802,178.55857656937226,178.6485405837665,178.73850459816074,178.82846861255499,178.91843262694923,179.00839664134347,179.0983606557377,179.18832467013195,179.2782886845262,179.36825269892043,179.45821671331467,179.5481807277089,179.63814474210315,179.7281087564974,179.81807277089163,179.90803678528587,179.99800079968014,180.08796481407438,180.17792882846862,180.26789284286286,180.3578568572571,180.44782087165134,180.53778488604559,180.62774890043983,180.71771291483407,180.8076769292283,180.89764094362255,180.9876049580168,181.07756897241103,181.16753298680527,181.2574970011995,181.34746101559375,181.437425029988,181.52738904438226,181.6173530587765,181.70731707317074,181.79728108756498,181.88724510195922,181.97720911635346,182.0671731307477,182.15713714514195,182.2471011595362,182.33706517393043,182.42702918832467,182.5169932027189,182.60695721711315,182.6969212315074,182.78688524590163,182.87684926029587,182.9668132746901,183.05677728908438,183.14674130347862,183.23670531787286,183.3266693322671,183.41663334666134,183.50659736105558,183.59656137544982,183.68652538984406,183.7764894042383,183.86645341863255,183.9564174330268,184.04638144742103,184.13634546181527,184.2263094762095,184.31627349060375,184.406237504998,184.49620151939223,184.5861655337865,184.67612954818074,184.76609356257498,184.85605757696922,184.94602159136346,185.0359856057577,185.12594962015194,185.21591363454618,185.30587764894042,185.39584166333466,185.4858056777289,185.57576969212315,185.6657337065174,185.75569772091163,185.84566173530587,185.9356257497001,186.02558976409435,186.11555377848862,186.20551779288286,186.2954818072771,186.38544582167134,186.47540983606558,186.56537385045982,186.65533786485406,186.7453018792483,186.83526589364254,186.92522990803678,187.01519392243102,187.10515793682526,187.1951219512195,187.28508596561375,187.375049980008,187.46501399440223,187.55497800879647,187.64494202319074,187.73490603758498,187.82487005197922,187.91483406637346,188.0047980807677,188.09476209516194,188.18472610955618,188.27469012395042,188.36465413834466,188.4546181527389,188.54458216713314,188.63454618152738,188.72451019592162,188.81447421031586,188.9044382247101,188.99440223910435,189.0843662534986,189.17433026789286,189.2642942822871,189.35425829668134,189.44422231107558,189.53418632546982,189.62415033986406,189.7141143542583,189.80407836865254,189.89404238304678,189.98400639744102,190.07397041183526,190.1639344262295,190.25389844062374,190.34386245501798,190.43382646941222,190.52379048380647,190.6137544982007,190.70371851259497,190.79368252698922,190.88364654138346,190.9736105557777,191.06357457017194,191.15353858456618,191.24350259896042,191.33346661335466,191.4234306277489,191.51339464214314,191.60335865653738,191.69332267093162,191.78328668532586,191.8732506997201,191.96321471411434,192.05317872850858,192.14314274290282,192.2331067572971,192.32307077169133,192.41303478608557,192.50299880047982,192.59296281487406,192.6829268292683,192.77289084366254,192.86285485805678,192.95281887245102,193.04278288684526,193.1327469012395,193.22271091563374,193.31267493002798,193.40263894442222,193.49260295881646,193.5825669732107,193.67253098760497,193.7624950019992,193.85245901639345,193.9424230307877,194.03238704518193,194.12235105957618,194.21231507397042,194.30227908836466,194.3922431027589,194.48220711715314,194.57217113154738,194.66213514594162,194.75209916033586,194.8420631747301,194.93202718912434,195.02199120351858,195.11195521791282,195.2019192323071,195.29188324670133,195.38184726109557,195.4718112754898,195.56177528988405,195.6517393042783,195.74170331867253,195.83166733306678,195.92163134746102,196.01159536185526,196.1015593762495,196.19152339064374,196.28148740503798,196.37145141943222,196.46141543382646,196.5513794482207,196.64134346261494,196.7313074770092,196.82127149140345,196.9112355057977,197.00119952019193,197.09116353458617,197.1811275489804,197.27109156337465,197.3610555777689,197.45101959216314,197.54098360655738,197.63094762095162,197.72091163534586,197.8108756497401,197.90083966413434,197.99080367852858,198.08076769292282,198.17073170731706,198.26069572171133,198.35065973610557,198.4406237504998,198.53058776489405,198.6205517792883,198.71051579368253,198.80047980807677,198.890443822471,198.98040783686525,199.0703718512595,199.16033586565374,199.25029988004798,199.34026389444222,199.43022790883646,199.5201919232307,199.61015593762494,199.70011995201918,199.79008396641345,199.8800479808077,199.97001199520193,200.05997600959617,200.1499400239904,200.23990403838465,200.3298680527789,200.41983206717313,200.50979608156737,200.5997600959616,200.68972411035585,200.7796881247501,200.86965213914434,200.95961615353858,201.04958016793282,201.13954418232706,201.2295081967213,201.31947221111557,201.4094362255098,201.49940023990405,201.5893642542983,201.67932826869253,201.76929228308677,201.859256297481,201.94922031187525,202.0391843262695,202.12914834066373,202.21911235505797,202.3090763694522,202.39904038384645,202.4890043982407,202.57896841263494,202.66893242702918,202.75889644142342,202.8488604558177,202.93882447021193,203.02878848460617,203.1187524990004,203.20871651339465,203.2986805277889,203.38864454218313,203.47860855657737,203.5685725709716,203.65853658536585,203.7485005997601,203.83846461415433,203.92842862854857,204.0183926429428,204.10835665733705,204.1983206717313,204.28828468612554,204.3782487005198,204.46821271491405,204.5581767293083,204.64814074370253,204.73810475809677,204.828068772491,204.91803278688525,205.0079968012795,205.09796081567373,205.18792483006797,205.2778888444622,205.36785285885645,205.4578168732507,205.54778088764493,205.63774490203917,205.72770891643341,205.81767293082765,205.90763694522192,205.99760095961616,206.0875649740104,206.17752898840465,206.2674930027989,206.35745701719313,206.44742103158737,206.5373850459816,206.62734906037585,206.7173130747701,206.80727708916433,206.89724110355857,206.9872051179528,207.07716913234705,207.1671331467413,207.25709716113553,207.34706117552977,207.43702518992404,207.52698920431828,207.61695321871252,207.70691723310676,207.796881247501,207.88684526189525,207.9768092762895,208.06677329068373,208.15673730507797,208.2467013194722,208.33666533386645,208.4266293482607,208.51659336265493,208.60655737704917,208.6965213914434,208.78648540583765,208.87644942023192,208.96641343462616,209.0563774490204,209.14634146341464,209.23630547780888,209.32626949220312,209.41623350659737,209.5061975209916,209.59616153538585,209.6861255497801,209.77608956417433,209.86605357856857,209.9560175929628,210.04598160735705,210.1359456217513,210.22590963614553,210.31587365053977,210.40583766493404,210.49580167932828,210.58576569372252,210.67572970811676,210.765693722511,210.85565773690524,210.94562175129948,211.03558576569372,211.12554978008797,211.2155137944822,211.30547780887645,211.3954418232707,211.48540583766493,211.57536985205917,211.6653338664534,211.75529788084765,211.8452618952419,211.93522590963616,212.0251899240304,212.11515393842464,212.20511795281888,212.29508196721312,212.38504598160736,212.4750099960016,212.56497401039584,212.65493802479008,212.74490203918432,212.83486605357857,212.9248300679728,213.01479408236705,213.1047580967613,213.19472211115553,213.28468612554977,213.374650139944,213.46461415433828,213.55457816873252,213.64454218312676,213.734506197521,213.82447021191524,213.91443422630948,214.00439824070372,214.09436225509796,214.1843262694922,214.27429028388644,214.36425429828068,214.45421831267493,214.54418232706917,214.6341463414634,214.72411035585765,214.8140743702519,214.90403838464613,214.9940023990404,215.08396641343464,215.17393042782888,215.26389444222312,215.35385845661736,215.4438224710116,215.53378648540584,215.62375049980008,215.71371451419432,215.80367852858856,215.8936425429828,215.98360655737704,216.07357057177128,216.16353458616553,216.25349860055977,216.343462614954,216.43342662934825,216.52339064374252,216.61335465813676,216.703318672531,216.79328268692524,216.88324670131948,216.97321071571372,217.06317473010796,217.1531387445022,217.24310275889644,217.33306677329068,217.42303078768492,217.51299480207916,217.6029588164734,217.69292283086764,217.78288684526188,217.87285085965613,217.96281487405037,218.05277888844464,218.14274290283888,218.23270691723312,218.32267093162736,218.4126349460216,218.50259896041584,218.59256297481008,218.68252698920432,218.77249100359856,218.8624550179928,218.95241903238704,219.04238304678128,219.13234706117552,219.22231107556976,219.312275089964,219.40223910435824,219.49220311875249,219.58216713314675,219.672131147541,219.76209516193524,219.85205917632948,219.94202319072372,220.03198720511796,220.1219512195122,220.21191523390644,220.30187924830068,220.39184326269492,220.48180727708916,220.5717712914834,220.66173530587764,220.75169932027188,220.84166333466612,220.93162734906036,221.0215913634546,221.11155537784887,221.2015193922431,221.29148340663735,221.3814474210316,221.47141143542584,221.56137544982008,221.65133946421432,221.74130347860856,221.8312674930028,221.92123150739704,222.01119552179128,222.10115953618552,222.19112355057976,222.281087564974,222.37105157936824,222.46101559376248,222.55097960815675,222.640943622551,222.73090763694523,222.82087165133947,222.9108356657337,223.00079968012795,223.0907636945222,223.18072770891644,223.27069172331068,223.36065573770492,223.45061975209916,223.5405837664934,223.63054778088764,223.72051179528188,223.81047580967612,223.90043982407036,223.9904038384646,224.08036785285887,224.1703318672531,224.26029588164735,224.3502598960416,224.44022391043583,224.53018792483007,224.62015193922431,224.71011595361855,224.8000799680128,224.89004398240704,224.98000799680128,225.06997201119552,225.15993602558976,225.249900039984,225.33986405437824,225.42982806877248,225.51979208316672,225.609756097561,225.69972011195523,225.78968412634947,225.8796481407437,225.96961215513795,226.0595761695322,226.14954018392643,226.23950419832067,226.32946821271491,226.41943222710916,226.5093962415034,226.59936025589764,226.68932427029188,226.77928828468612,226.86925229908036,226.9592163134746,227.04918032786884,227.1391443422631,227.22910835665735,227.3190723710516,227.40903638544583,227.49900039984007,227.5889644142343,227.67892842862855,227.7688924430228,227.85885645741703,227.94882047181127,228.03878448620551,228.12874850059976,228.218712514994,228.30867652938824,228.39864054378248,228.48860455817672,228.57856857257096,228.66853258696523,228.75849660135947,228.8484606157537,228.93842463014795,229.0283886445422,229.11835265893643,229.20831667333067,229.2982806877249,229.38824470211915,229.4782087165134,229.56817273090763,229.65813674530187,229.74810075969611,229.83806477409036,229.9280287884846,230.01799280287884,230.10795681727308,230.19792083166735,230.2878848460616,230.37784886045583,230.46781287485007,230.5577768892443,230.64774090363855,230.7377049180328,230.82766893242703,230.91763294682127,231.0075969612155,231.09756097560975,231.187524990004,231.27748900439823,231.36745301879247,231.45741703318672,231.54738104758096,231.6373450619752,231.72730907636947,231.8172730907637,231.90723710515795,231.9972011195522,232.08716513394643,232.17712914834067,232.2670931627349,232.35705717712915,232.4470211915234,232.53698520591763,232.62694922031187,232.7169132347061,232.80687724910035,232.8968412634946,232.98680527788883,233.07676929228307,233.16673330667732,233.25669732107158,233.34666133546583,233.43662534986007,233.5265893642543,233.61655337864855,233.7065173930428,233.79648140743703,233.88644542183127,233.9764094362255,234.06637345061975,234.156337465014,234.24630147940823,234.33626549380247,234.4262295081967,234.51619352259095,234.6061575369852,234.69612155137943,234.7860855657737,234.87604958016794,234.96601359456218,235.05597760895643,235.14594162335067,235.2359056377449,235.32586965213915,235.4158336665334,235.50579768092763,235.59576169532187,235.6857257097161,235.77568972411035,235.8656537385046,235.95561775289883,236.04558176729307,236.1355457816873,236.22550979608155,236.31547381047582,236.40543782487006,236.4954018392643,236.58536585365854,236.67532986805278,236.76529388244703,236.85525789684127,236.9452219112355,237.03518592562975,237.125149940024,237.21511395441823,237.30507796881247,237.3950419832067,237.48500599760095,237.5749700119952,237.66493402638943,237.7548980407837,237.84486205517794,237.93482606957218,238.02479008396642,238.11475409836066,238.2047181127549,238.29468212714914,238.38464614154339,238.47461015593763,238.56457417033187,238.6545381847261,238.74450219912035,238.8344662135146,238.92443022790883,239.01439424230307,239.1043582566973,239.19432227109155,239.28428628548582,239.37425029988006,239.4642143142743,239.55417832866854,239.64414234306278,239.73410635745702,239.82407037185126,239.9140343862455,240.00399840063974,240.09396241503399,240.18392642942823,240.27389044382247,240.3638544582167,240.45381847261095,240.5437824870052,240.63374650139943,240.72371051579367,240.81367453018794,240.90363854458218,240.99360255897642,241.08356657337066,241.1735305877649,241.26349460215914,241.35345861655338,241.44342263094762,241.53338664534186,241.6233506597361,241.71331467413034,241.80327868852459,241.89324270291883,241.98320671731307,242.0731707317073,242.16313474610155,242.2530987604958,242.34306277489006,242.4330267892843,242.52299080367854,242.61295481807278,242.70291883246702,242.79288284686126,242.8828468612555,242.97281087564974,243.06277489004398,243.15273890443822,243.24270291883246,243.3326669332267,243.42263094762095,243.51259496201519,243.60255897640943,243.69252299080367,243.7824870051979,243.87245101959218,243.96241503398642,244.05237904838066,244.1423430627749,244.23230707716914,244.32227109156338,244.41223510595762,244.50219912035186,244.5921631347461,244.68212714914034,244.77209116353458,244.86205517792882,244.95201919232306,245.0419832067173,245.13194722111155,245.2219112355058,245.31187524990003,245.4018392642943,245.49180327868854,245.58176729308278,245.67173130747702,245.76169532187126,245.8516593362655,245.94162335065974,246.03158736505398,246.12155137944822,246.21151539384246,246.3014794082367,246.39144342263094,246.48140743702518,246.57137145141942,246.66133546581366,246.7512994802079,246.84126349460215,246.93122750899641,247.02119152339066,247.1111555377849,247.20111955217914,247.29108356657338,247.38104758096762,247.47101159536186,247.5609756097561,247.65093962415034,247.74090363854458,247.83086765293882,247.92083166733306,248.0107956817273,248.10075969612154,248.19072371051578,248.28068772491002,248.37065173930426,248.46061575369853,248.55057976809277,248.64054378248701,248.73050779688126,248.8204718112755,248.91043582566974,249.00039984006398,249.09036385445822,249.18032786885246,249.2702918832467,249.36025589764094,249.45021991203518,249.54018392642942,249.63014794082366,249.7201119552179,249.81007596961214,249.90003998400638,249.99000399840065,250.0799680127949,250.16993202718913,250.25989604158337,250.34986005597762,250.43982407037186,250.5297880847661,250.61975209916034,250.70971611355458,250.79968012794882,250.88964414234306,250.9796081567373,251.06957217113154,251.15953618552578,251.24950019992002,251.33946421431426,251.4294282287085,251.51939224310277,251.609356257497,251.69932027189125,251.7892842862855,251.87924830067973,251.96921231507397,252.05917632946822,252.14914034386246,252.2391043582567,252.32906837265094,252.41903238704518,252.50899640143942,252.59896041583366,252.6889244302279,252.77888844462214,252.86885245901638,252.95881647341065,253.0487804878049,253.13874450219913,253.22870851659337,253.3186725309876,253.40863654538185,253.4986005597761,253.58856457417033,253.67852858856457,253.76849260295882,253.85845661735306,253.9484206317473,254.03838464614154,254.12834866053578,254.21831267493002,254.30827668932426,254.3982407037185,254.48820471811277,254.578168732507,254.66813274690125,254.7580967612955,254.84806077568973,254.93802479008397,255.0279888044782,255.11795281887245,255.2079168332667,255.29788084766093,255.38784486205518,255.47780887644942,255.56777289084366,255.6577369052379,255.74770091963214,255.83766493402638,255.92762894842062,256.0175929628149,256.10755697720913,256.19752099160337,256.2874850059976,256.37744902039185,256.4674130347861,256.55737704918033,256.6473410635746,256.7373050779688,256.82726909236305,256.9172331067573,257.00719712115153,257.0971611355458,257.18712514994,257.27708916433426,257.3670531787285,257.45701719312274,257.546981207517,257.6369452219112,257.72690923630546,257.8168732506997,257.90683726509394,257.9968012794882,258.0867652938824,258.17672930827666,258.2666933226709,258.3566573370652,258.44662135145944,258.5365853658537,258.6265493802479,258.71651339464216,258.8064774090364,258.89644142343064,258.9864054378249,259.0763694522191,259.16633346661337,259.2562974810076,259.34626149540185,259.4362255097961,259.52618952419033,259.61615353858457,259.7061175529788,259.79608156737305,259.8860455817673,259.97600959616153,260.0659736105558,260.15593762495,260.24590163934425,260.3358656537385,260.42582966813274,260.515793682527,260.6057576969212,260.69572171131546,260.7856857257097,260.87564974010394,260.9656137544982,261.0555777688924,261.14554178328666,261.2355057976809,261.3254698120752,261.41543382646944,261.5053978408637,261.5953618552579,261.68532586965216,261.7752898840464,261.86525389844064,261.9552179128349,262.0451819272291,262.13514594162336,262.2251099560176,262.31507397041185,262.4050379848061,262.4950019992003,262.58496601359457,262.6749300279888,262.76489404238305,262.8548580567773,262.94482207117153,263.03478608556577,263.12475009996,263.21471411435425,263.3046781287485,263.39464214314273,263.484606157537,263.5745701719312,263.66453418632545,263.7544982007197,263.84446221511394,263.9344262295082,264.0243902439024,264.11435425829666,264.2043182726909,264.29428228708514,264.38424630147944,264.4742103158737,264.5641743302679,264.65413834466216,264.7441023590564,264.83406637345064,264.9240303878449,265.0139944022391,265.10395841663336,265.1939224310276,265.28388644542184,265.3738504598161,265.4638144742103,265.55377848860456,265.6437425029988,265.73370651739305,265.8236705317873,265.9136345461815,266.00359856057577,266.09356257497,266.18352658936425,266.2734906037585,266.36345461815273,266.45341863254697,266.5433826469412,266.63334666133545,266.7233106757297,266.81327469012393,266.9032387045182,266.9932027189124,267.08316673330665,267.1731307477009,267.26309476209514,267.3530587764894,267.4430227908837,267.5329868052779,267.62295081967216,267.7129148340664,267.80287884846064,267.8928428628549,267.9828068772491,268.07277089164336,268.1627349060376,268.25269892043184,268.3426629348261,268.4326269492203,268.52259096361456,268.6125549780088,268.70251899240304,268.7924830067973,268.8824470211915,268.97241103558576,269.06237504998,269.15233906437425,269.2423030787685,269.3322670931627,269.42223110755697,269.5121951219512,269.60215913634545,269.6921231507397,269.78208716513393,269.87205117952817,269.9620151939224,270.05197920831665,270.1419432227109,270.23190723710513,270.3218712514994,270.4118352658936,270.5017992802879,270.59176329468215,270.6817273090764,270.77169132347063,270.8616553378649,270.9516193522591,271.04158336665336,271.1315473810476,271.22151139544184,271.3114754098361,271.4014394242303,271.49140343862456,271.5813674530188,271.67133146741304,271.7612954818073,271.8512594962015,271.94122351059576,272.03118752499,272.12115153938424,272.2111155537785,272.3010795681727,272.39104358256697,272.4810075969612,272.57097161135545,272.6609356257497,272.7508996401439,272.84086365453817,272.9308276689324,273.02079168332665,273.1107556977209,273.20071971211513,273.29068372650937,273.3806477409036,273.47061175529785,273.56057576969215,273.6505397840864,273.74050379848063,273.8304678128749,273.9204318272691,274.01039584166335,274.1003598560576,274.19032387045183,274.2802878848461,274.3702518992403,274.46021591363456,274.5501799280288,274.64014394242304,274.7301079568173,274.8200719712115,274.91003598560576,275.0,275.08996401439424,275.1799280287885,275.2698920431827,275.35985605757696,275.4498200719712,275.53978408636544,275.6297481007597,275.7197121151539,275.80967612954817,275.8996401439424,275.98960415833665,276.0795681727309,276.1695321871251,276.25949620151937,276.3494602159136,276.43942423030785,276.52938824470215,276.6193522590964,276.70931627349063,276.79928028788487,276.8892443022791,276.97920831667335,277.0691723310676,277.15913634546183,277.2491003598561,277.3390643742503,277.42902838864455,277.5189924030388,277.60895641743303,277.6989204318273,277.7888844462215,277.87884846061576,277.96881247501,278.05877648940424,278.1487405037985,278.2387045181927,278.32866853258696,278.4186325469812,278.50859656137544,278.5985605757697,278.6885245901639,278.77848860455816,278.8684526189524,278.95841663334664,279.0483806477409,279.1383446621351,279.22830867652937,279.3182726909236,279.40823670531785,279.4982007197121,279.5881647341064,279.6781287485006,279.76809276289487,279.8580567772891,279.94802079168335,280.0379848060776,280.12794882047183,280.21791283486607,280.3078768492603,280.39784086365455,280.4878048780488,280.57776889244303,280.6677329068373,280.7576969212315,280.84766093562575,280.93762495002,281.02758896441424,281.1175529788085,281.2075169932027,281.29748100759696,281.3874450219912,281.47740903638544,281.5673730507797,281.6573370651739,281.74730107956816,281.8372650939624,281.92722910835664,282.0171931227509,282.1071571371451,282.19712115153936,282.2870851659336,282.37704918032784,282.4670131947221,282.5569772091163,282.6469412235106,282.73690523790486,282.8268692522991,282.91683326669335,283.0067972810876,283.0967612954818,283.18672530987607,283.2766893242703,283.36665333866455,283.4566173530588,283.54658136745303,283.63654538184727,283.7265093962415,283.81647341063575,283.90643742503,283.99640143942423,284.0863654538185,284.1763294682127,284.26629348260695,284.3562574970012,284.44622151139544,284.5361855257897,284.6261495401839,284.71611355457816,284.8060775689724,284.89604158336664,284.9860055977609,285.0759696121551,285.16593362654936,285.2558976409436,285.34586165533784,285.4358256697321,285.5257896841263,285.61575369852056,285.70571771291486,285.7956817273091,285.88564574170334,285.9756097560976,286.0655737704918,286.15553778488606,286.2455017992803,286.33546581367455,286.4254298280688,286.515393842463,286.60535785685727,286.6953218712515,286.78528588564575,286.87524990004,286.96521391443423,287.05517792882847,287.1451419432227,287.23510595761695,287.3250699720112,287.41503398640543,287.5049980007997,287.5949620151939,287.68492602958815,287.7748900439824,287.86485405837664,287.9548180727709,288.0447820871651,288.13474610155936,288.2247101159536,288.31467413034784,288.4046381447421,288.4946021591363,288.58456617353056,288.6745301879248,288.7644942023191,288.85445821671334,288.9444222311076,289.0343862455018,289.12435025989606,289.2143142742903,289.30427828868454,289.3942423030788,289.484206317473,289.57417033186726,289.6641343462615,289.75409836065575,289.84406237505,289.9340263894442,290.02399040383847,290.1139544182327,290.20391843262695,290.2938824470212,290.38384646141543,290.47381047580967,290.5637744902039,290.65373850459815,290.7437025189924,290.83366653338663,290.9236305477809,291.0135945621751,291.10355857656936,291.1935225909636,291.28348660535784,291.3734506197521,291.4634146341463,291.55337864854056,291.6433426629348,291.7333066773291,291.82327069172334,291.9132347061176,292.0031987205118,292.09316273490606,292.1831267493003,292.27309076369454,292.3630547780888,292.453018792483,292.54298280687726,292.6329468212715,292.72291083566574,292.81287485006,292.9028388644542,292.99280287884847,293.0827668932427,293.17273090763695,293.2626949220312,293.3526589364254,293.44262295081967,293.5325869652139,293.62255097960815,293.7125149940024,293.80247900839663,293.89244302279087,293.9824070371851,294.07237105157935,294.1623350659736,294.25229908036783,294.3422630947621,294.4322271091563,294.52219112355056,294.6121551379448,294.70211915233904,294.79208316673333,294.8820471811276,294.9720111955218,295.06197520991606,295.1519392243103,295.24190323870454,295.3318672530988,295.421831267493,295.51179528188726,295.6017592962815,295.69172331067574,295.78168732507,295.8716513394642,295.96161535385846,296.0515793682527,296.14154338264694,296.2315073970412,296.3214714114354,296.41143542582967,296.5013994402239,296.59136345461815,296.6813274690124,296.7712914834066,296.86125549780087,296.9512195121951,297.04118352658935,297.1311475409836,297.22111155537783,297.3110755697721,297.4010395841663,297.49100359856055,297.5809676129548,297.67093162734903,297.7608956417433,297.8508596561376,297.9408236705318,298.03078768492605,298.1207516993203,298.21071571371454,298.3006797281088,298.390643742503,298.48060775689726,298.5705717712915,298.66053578568574,298.75049980008,298.8404638144742,298.93042782886846,299.0203918432627,299.11035585765694,299.2003198720512,299.2902838864454,299.38024790083966,299.4702119152339,299.56017592962814,299.6501399440224,299.7401039584166,299.83006797281087,299.9200319872051,300.00999600159935,300.0999600159936,300.18992403038783,300.27988804478207,300.3698520591763,300.45981607357055,300.5497800879648,300.63974410235903,300.7297081167533,300.8196721311475,300.9096361455418,300.99960015993605,301.0895641743303,301.17952818872453,301.2694922031188,301.359456217513,301.44942023190725,301.5393842463015,301.62934826069574,301.71931227509,301.8092762894842,301.89924030387846,301.9892043182727,302.07916833266694,302.1691323470612,302.2590963614554,302.34906037584966,302.4390243902439,302.52898840463814,302.6189524190324,302.7089164334266,302.79888044782086,302.8888444622151,302.97880847660934,303.0687724910036,303.1587365053978,303.24870051979207,303.3386645341863,303.42862854858055,303.5185925629748,303.60855657736903,303.69852059176327,303.7884846061575,303.87844862055175,303.96841263494605,304.0583766493403,304.14834066373453,304.23830467812877,304.328268692523,304.41823270691725,304.5081967213115,304.59816073570573,304.6881247501,304.7780887644942,304.86805277888845,304.9580167932827,305.04798080767694,305.1379448220712,305.2279088364654,305.31787285085966,305.4078368652539,305.49780087964814,305.5877648940424,305.6777289084366,305.76769292283086,305.8576569372251,305.94762095161934,306.0375849660136,306.1275489804078,306.21751299480206,306.3074770091963,306.39744102359055,306.4874050379848,306.577369052379,306.66733306677327,306.7572970811675,306.84726109556175,306.93722510995605,307.0271891243503,307.1171531387445,307.20711715313877,307.297081167533,307.38704518192725,307.4770091963215,307.56697321071573,307.65693722510997,307.7469012395042,307.83686525389845,307.9268292682927,308.01679328268693,308.1067572970812,308.1967213114754,308.28668532586966,308.3766493402639,308.46661335465814,308.5565773690524,308.6465413834466,308.73650539784086,308.8264694122351,308.91643342662934,309.0063974410236,309.0963614554178,309.18632546981206,309.2762894842063,309.36625349860054,309.4562175129948,309.546181527389,309.63614554178326,309.7261095561775,309.81607357057175,309.906037584966,309.9960015993603,310.0859656137545,310.17592962814877,310.265893642543,310.35585765693725,310.4458216713315,310.5357856857257,310.62574970011997,310.7157137145142,310.80567772890845,310.8956417433027,310.98560575769693,311.07556977209117,311.1655337864854,311.25549780087965,311.3454618152739,311.43542582966813,311.5253898440624,311.6153538584566,311.70531787285086,311.7952818872451,311.88524590163934,311.9752099160336,312.0651739304278,312.15513794482206,312.2451019592163,312.33506597361054,312.4250299880048,312.514994002399,312.60495801679326,312.6949220311875,312.78488604558174,312.874850059976,312.9648140743702,313.0547780887645,313.14474210315876,313.234706117553,313.32467013194724,313.4146341463415,313.5045981607357,313.59456217512997,313.6845261895242,313.77449020391845,313.8644542183127,313.9544182327069,314.04438224710117,314.1343462614954,314.22431027588965,314.3142742902839,314.40423830467813,314.4942023190724,314.5841663334666,314.67413034786085,314.7640943622551,314.85405837664933,314.9440223910436,315.0339864054378,315.12395041983206,315.2139144342263,315.30387844862054,315.3938424630148,315.483806477409,315.57377049180326,315.6637345061975,315.75369852059174,315.843662534986,315.9336265493802,316.02359056377446,316.11355457816876,316.203518592563,316.29348260695724,316.3834466213515,316.4734106357457,316.56337465013996,316.6533386645342,316.74330267892844,316.8332666933227,316.9232307077169,317.01319472211117,317.1031587365054,317.19312275089965,317.2830867652939,317.3730507796881,317.46301479408237,317.5529788084766,317.64294282287085,317.7329068372651,317.82287085165933,317.9128348660536,318.0027988804478,318.09276289484205,318.1827269092363,318.27269092363053,318.3626549380248,318.452618952419,318.54258296681326,318.6325469812075,318.72251099560174,318.812475009996,318.9024390243902,318.99240303878446,319.0823670531787,319.172331067573,319.26229508196724,319.3522590963615,319.4422231107557,319.53218712514996,319.6221511395442,319.71211515393844,319.8020791683327,319.8920431827269,319.98200719712116,320.0719712115154,320.16193522590964,320.2518992403039,320.3418632546981,320.43182726909237,320.5217912834866,320.61175529788085,320.7017193122751,320.79168332666933,320.88164734106357,320.9716113554578,321.06157536985205,321.1515393842463,321.24150339864053,321.3314674130348,321.421431427429,321.51139544182325,321.6013594562175,321.69132347061174,321.781287485006,321.8712514994002,321.96121551379446,322.0511795281887,322.141143542583,322.23110755697724,322.3210715713715,322.4110355857657,322.50099960015996,322.5909636145542,322.68092762894844,322.7708916433427,322.8608556577369,322.95081967213116,323.0407836865254,323.13074770091964,323.2207117153139,323.3106757297081,323.40063974410236,323.4906037584966,323.58056777289084,323.6705317872851,323.7604958016793,323.85045981607357,323.9404238304678,324.03038784486205,324.1203518592563,324.21031587365053,324.30027988804477,324.390243902439,324.48020791683325,324.5701719312275,324.66013594562173,324.750099960016,324.8400639744102,324.93002798880445,325.0199920031987,325.10995601759294,325.19992003198723,325.2898840463815,325.3798480607757,325.46981207516995,325.5597760895642,325.64974010395844,325.7397041183527,325.8296681327469,325.91963214714116,326.0095961615354,326.09956017592964,326.1895241903239,326.2794882047181,326.36945221911236,326.4594162335066,326.54938024790084,326.6393442622951,326.7293082766893,326.81927229108356,326.9092363054778,326.99920031987205,327.0891643342663,327.1791283486605,327.26909236305477,327.359056377449,327.44902039184325,327.5389844062375,327.62894842063173,327.71891243502597,327.8088764494202,327.89884046381445,327.9888044782087,328.07876849260293,328.1687325069972,328.25869652139147,328.3486605357857,328.43862455017995,328.5285885645742,328.61855257896843,328.7085165933627,328.7984806077569,328.88844462215116,328.9784086365454,329.06837265093964,329.1583366653339,329.2483006797281,329.33826469412236,329.4282287085166,329.51819272291084,329.6081567373051,329.6981207516993,329.78808476609356,329.8780487804878,329.96801279488204,330.0579768092763,330.1479408236705,330.23790483806476,330.327868852459,330.41783286685325,330.5077968812475,330.5977608956417,330.68772491003597,330.7776889244302,330.86765293882445,330.9576169532187,331.04758096761293,331.13754498200717,331.2275089964014,331.3174730107957,331.40743702518995,331.4974010395842,331.58736505397843,331.67732906837267,331.7672930827669,331.85725709716115,331.9472211115554,332.03718512594963,332.1271491403439,332.2171131547381,332.30707716913236,332.3970411835266,332.48700519792084,332.5769692123151,332.6669332267093,332.75689724110356,332.8468612554978,332.93682526989204,333.0267892842863,333.1167532986805,333.20671731307476,333.296681327469,333.38664534186324,333.4766093562575,333.5665733706517,333.65653738504597,333.7465013994402,333.83646541383445,333.9264294282287,334.0163934426229,334.10635745701717,334.1963214714114,334.28628548580565,334.37624950019995,334.4662135145942,334.5561775289884,334.64614154338267,334.7361055577769,334.82606957217115,334.9160335865654,335.00599760095963,335.0959616153539,335.1859256297481,335.27588964414235,335.3658536585366,335.45581767293083,335.5457816873251,335.6357457017193,335.72570971611356,335.8156737305078,335.90563774490204,335.9956017592963,336.0855657736905,336.17552978808476,336.265493802479,336.35545781687324,336.4454218312675,336.5353858456617,336.62534986005596,336.7153138744502,336.80527788884444,336.8952419032387,336.9852059176329,337.07516993202717,337.1651339464214,337.25509796081565,337.34506197520994,337.4350259896042,337.5249900039984,337.61495401839267,337.7049180327869,337.79488204718115,337.8848460615754,337.97481007596963,338.06477409036387,338.1547381047581,338.24470211915235,338.3346661335466,338.42463014794083,338.5145941623351,338.6045581767293,338.69452219112355,338.7844862055178,338.87445021991203,338.9644142343063,339.0543782487005,339.14434226309476,339.234306277489,339.32427029188324,339.4142343062775,339.5041983206717,339.59416233506596,339.6841263494602,339.77409036385444,339.8640543782487,339.9540183926429,340.04398240703716,340.1339464214314,340.22391043582564,340.3138744502199,340.4038384646142,340.4938024790084,340.58376649340266,340.6737305077969,340.76369452219114,340.8536585365854,340.9436225509796,341.03358656537387,341.1235505797681,341.21351459416235,341.3034786085566,341.39344262295083,341.48340663734507,341.5733706517393,341.66333466613355,341.7532986805278,341.84326269492203,341.9332267093163,342.0231907237105,342.11315473810475,342.203118752499,342.29308276689324,342.3830467812875,342.4730107956817,342.56297481007596,342.6529388244702,342.74290283886444,342.8328668532587,342.9228308676529,343.01279488204716,343.1027588964414,343.19272291083564,343.2826869252299,343.3726509396241,343.4626149540184,343.55257896841266,343.6425429828069,343.73250699720114,343.8224710115954,343.9124350259896,344.00239904038386,344.0923630547781,344.18232706917235,344.2722910835666,344.3622550979608,344.45221911235507,344.5421831267493,344.63214714114355,344.7221111555378,344.81207516993203,344.90203918432627,344.9920031987205,345.08196721311475,345.171931227509,345.26189524190323,345.3518592562975,345.4418232706917,345.53178728508595,345.6217512994802,345.71171531387444,345.8016793282687,345.8916433426629,345.98160735705716,346.0715713714514,346.16153538584564,346.2514994002399,346.3414634146341,346.43142742902836,346.52139144342266,346.6113554578169,346.70131947221114,346.7912834866054,346.8812475009996,346.97121151539386,347.0611755297881,347.15113954418234,347.2411035585766,347.3310675729708,347.42103158736506,347.5109956017593,347.60095961615355,347.6909236305478,347.780887644942,347.87085165933627,347.9608156737305,348.05077968812475,348.140743702519,348.23070771691323,348.32067173130747,348.4106357457017,348.50059976009595,348.5905637744902,348.68052778888443,348.7704918032787,348.8604558176729,348.95041983206715,349.0403838464614,349.13034786085564,349.2203118752499,349.3102758896441,349.40023990403836,349.4902039184326,349.5801679328269,349.67013194722114,349.7600959616154,349.8500599760096,349.94002399040386,350.0299880047981,350.11995201919234,350.2099160335866,350.2998800479808,350.38984406237506,350.4798080767693,350.56977209116354,350.6597361055578,350.749700119952,350.83966413434626,350.9296281487405,351.01959216313475,351.109556177529,351.1995201919232,351.28948420631747,351.3794482207117,351.46941223510595,351.5593762495002,351.64934026389443,351.73930427828867,351.8292682926829,351.91923230707715,352.0091963214714,352.09916033586563,352.1891243502599,352.2790883646541,352.36905237904836,352.4590163934426,352.5489804078369,352.63894442223113,352.7289084366254,352.8188724510196,352.90883646541386,352.9988004798081,353.08876449420234,353.1787285085966,353.2686925229908,353.35865653738506,353.4486205517793,353.53858456617354,353.6285485805678,353.718512594962,353.80847660935626,353.8984406237505,353.98840463814474,354.078368652539,354.1683326669332,354.25829668132747,354.3482606957217,354.43822471011595,354.5281887245102,354.6181527389044,354.70811675329867,354.7980807676929,354.88804478208715,354.9780087964814,355.06797281087563,355.15793682526987,355.2479008396641,355.33786485405835,355.4278288684526,355.51779288284683,355.60775689724113,355.6977209116354,355.7876849260296,355.87764894042385,355.9676129548181,356.05757696921233,356.1475409836066,356.2375049980008,356.32746901239506,356.4174330267893,356.50739704118354,356.5973610555778,356.687325069972,356.77728908436626,356.8672530987605,356.95721711315474,357.047181127549,357.1371451419432,357.22710915633746,357.3170731707317,357.40703718512594,357.4970011995202,357.5869652139144,357.67692922830867,357.7668932427029,357.85685725709715,357.9468212714914,358.0367852858856,358.12674930027987,358.2167133146741,358.30667732906835,358.3966413434626,358.48660535785683,358.5765693722511,358.66653338664537,358.7564974010396,358.84646141543385,358.9364254298281,359.02638944422233,359.1163534586166,359.2063174730108,359.29628148740505,359.3862455017993,359.47620951619353,359.5661735305878,359.656137544982,359.74610155937626,359.8360655737705,359.92602958816474,360.015993602559,360.1059576169532,360.19592163134746,360.2858856457417,360.37584966013594,360.4658136745302,360.5557776889244,360.64574170331866,360.7357057177129,360.82566973210714,360.9156337465014,361.0055977608956,361.09556177528987,361.1855257896841,361.27548980407835,361.3654538184726,361.45541783286683,361.54538184726107,361.6353458616553,361.7253098760496,361.81527389044385,361.9052379048381,361.99520191923233,362.08516593362657,362.1751299480208,362.26509396241505,362.3550579768093,362.44502199120353,362.5349860055978,362.624950019992,362.71491403438625,362.8048780487805,362.89484206317474,362.984806077569,363.0747700919632,363.16473410635746,363.2546981207517,363.34466213514594,363.4346261495402,363.5245901639344,363.61455417832866,363.7045181927229,363.79448220711714,363.8844462215114,363.9744102359056,364.06437425029986,364.1543382646941,364.24430227908834,364.3342662934826,364.4242303078768,364.51419432227107,364.6041583366653,364.69412235105955,364.78408636545385,364.8740503798481,364.9640143942423,365.05397840863657,365.1439424230308,365.23390643742505,365.3238704518193,365.41383446621353,365.50379848060777,365.593762495002,365.68372650939625,365.7736905237905,365.86365453818473,365.953618552579,366.0435825669732,366.13354658136745,366.2235105957617,366.31347461015594,366.4034386245502,366.4934026389444,366.58336665333866,366.6733306677329,366.76329468212714,366.8532586965214,366.9432227109156,367.03318672530986,367.1231507397041,367.21311475409834,367.3030787684926,367.3930427828868,367.48300679728106,367.5729708116753,367.66293482606955,367.75289884046384,367.8428628548581,367.9328268692523,368.02279088364656,368.1127548980408,368.20271891243505,368.2926829268293,368.3826469412235,368.47261095561777,368.562574970012,368.65253898440625,368.7425029988005,368.83246701319473,368.92243102758897,369.0123950419832,369.10235905637745,369.1923230707717,369.28228708516593,369.3722510995602,369.4622151139544,369.55217912834866,369.6421431427429,369.73210715713714,369.8220711715314,369.9120351859256,370.00199920031986,370.0919632147141,370.18192722910834,370.2718912435026,370.3618552578968,370.45181927229106,370.5417832866853,370.63174730107954,370.7217113154738,370.8116753298681,370.9016393442623,370.99160335865656,371.0815673730508,371.17153138744504,371.2614954018393,371.3514594162335,371.44142343062776,371.531387445022,371.62135145941625,371.7113154738105,371.8012794882047,371.89124350259897,371.9812075169932,372.07117153138745,372.1611355457817,372.25109956017593,372.34106357457017,372.4310275889644,372.52099160335865,372.6109556177529,372.70091963214713,372.7908836465414,372.8808476609356,372.97081167532986,373.0607756897241,373.15073970411834,373.2407037185126,373.3306677329068,373.42063174730106,373.5105957616953,373.60055977608954,373.6905237904838,373.780487804878,373.8704518192723,373.96041583366656,374.0503798480608,374.14034386245504,374.2303078768493,374.3202718912435,374.41023590563776,374.500199920032,374.59016393442624,374.6801279488205,374.7700919632147,374.86005597760897,374.9500199920032,375.03998400639745,375.1299480207917,375.2199120351859,375.30987604958017,375.3998400639744,375.48980407836865,375.5797680927629,375.66973210715713,375.75969612155137,375.8496601359456,375.93962415033985,376.0295881647341,376.11955217912833,376.2095161935226,376.2994802079168,376.38944422231106,376.4794082367053,376.56937225109954,376.6593362654938,376.749300279888,376.83926429428226,376.92922830867656,377.0191923230708,377.10915633746504,377.1991203518593,377.2890843662535,377.37904838064776,377.469012395042,377.55897640943624,377.6489404238305,377.7389044382247,377.82886845261896,377.9188324670132,378.00879648140744,378.0987604958017,378.1887245101959,378.27868852459017,378.3686525389844,378.45861655337865,378.5485805677729,378.6385445821671,378.72850859656137,378.8184726109556,378.90843662534985,378.9984006397441,379.08836465413833,379.1783286685326,379.2682926829268,379.35825669732105,379.4482207117153,379.53818472610953,379.6281487405038,379.718112754898,379.80807676929226,379.8980407836865,379.9880047980808,380.07796881247504,380.1679328268693,380.2578968412635,380.34786085565776,380.437824870052,380.52778888444624,380.6177528988405,380.7077169132347,380.79768092762896,380.8876449420232,380.97760895641744,381.0675729708117,381.1575369852059,381.24750099960016,381.3374650139944,381.42742902838864,381.5173930427829,381.6073570571771,381.69732107157137,381.7872850859656,381.87724910035985,381.9672131147541,382.05717712914833,382.14714114354257,382.2371051579368,382.32706917233105,382.4170331867253,382.50699720111953,382.5969612155138,382.686925229908,382.77688924430225,382.8668532586965,382.9568172730908,383.04678128748503,383.1367453018793,383.2267093162735,383.31667333066775,383.406637345062,383.49660135945624,383.5865653738505,383.6765293882447,383.76649340263896,383.8564574170332,383.94642143142744,384.0363854458217,384.1263494602159,384.21631347461016,384.3062774890044,384.39624150339864,384.4862055177929,384.5761695321871,384.66613354658136,384.7560975609756,384.84606157536984,384.9360255897641,385.0259896041583,385.11595361855257,385.2059176329468,385.29588164734105,385.3858456617353,385.47580967612953,385.56577369052377,385.655737704918,385.74570171931225,385.8356657337065,385.92562974810073,386.01559376249503,386.10555777688927,386.1955217912835,386.28548580567775,386.375449820072,386.46541383446623,386.5553778488605,386.6453418632547,386.73530587764895,386.8252698920432,386.91523390643744,387.0051979208317,387.0951619352259,387.18512594962016,387.2750899640144,387.36505397840864,387.4550179928029,387.5449820071971,387.63494602159136,387.7249100359856,387.81487405037984,387.9048380647741,387.9948020791683,388.08476609356256,388.1747301079568,388.26469412235105,388.3546581367453,388.4446221511395,388.53458616553377,388.624550179928,388.71451419432225,388.8044782087165,388.89444222311073,388.98440623750497,389.07437025189927,389.1643342662935,389.25429828068775,389.344262295082,389.43422630947623,389.52419032387047,389.6141543382647,389.70411835265895,389.7940823670532,389.88404638144743,389.9740103958417,390.0639744102359,390.15393842463016,390.2439024390244,390.33386645341864,390.4238304678129,390.5137944822071,390.60375849660136,390.6937225109956,390.78368652538984,390.8736505397841,390.9636145541783,391.05357856857256,391.1435425829668,391.23350659736104,391.3234706117553,391.4134346261495,391.50339864054376,391.593362654938,391.68332666933225,391.7732906837265,391.8632546981207,391.95321871251497,392.0431827269092,392.1331467413035,392.22311075569775,392.313074770092,392.4030387844862,392.49300279888047,392.5829668132747,392.67293082766895,392.7628948420632,392.85285885645743,392.94282287085167,393.0327868852459,393.12275089964015,393.2127149140344,393.30267892842863,393.3926429428229,393.4826069572171,393.57257097161136,393.6625349860056,393.75249900039984,393.8424630147941,393.9324270291883,394.02239104358256,394.1123550579768,394.20231907237104,394.2922830867653,394.3822471011595,394.47221111555376,394.562175129948,394.65213914434224,394.7421031587365,394.8320671731307,394.92203118752496,395.0119952019192,395.1019592163135,395.19192323070774,395.281887245102,395.3718512594962,395.46181527389047,395.5517792882847,395.64174330267895,395.7317073170732,395.8216713314674,395.91163534586167,396.0015993602559,396.09156337465015,396.1815273890444,396.27149140343863,396.3614554178329,396.4514194322271,396.54138344662135,396.6313474610156,396.72131147540983,396.8112754898041,396.9012395041983,396.99120351859256,397.0811675329868,397.17113154738104,397.2610955617753,397.3510595761695,397.44102359056376,397.530987604958,397.62095161935224,397.7109156337465,397.8008796481407,397.89084366253496,397.9808076769292,398.07077169132344,398.16073570571774,398.250699720112,398.3406637345062,398.43062774890046,398.5205917632947,398.61055577768894,398.7005197920832,398.7904838064774,398.88044782087167,398.9704118352659,399.06037584966015,399.1503398640544,399.24030387844863,399.33026789284287,399.4202319072371,399.51019592163135,399.6001599360256,399.69012395041983,399.7800879648141,399.8700519792083,399.96001599360255,400.0499800079968,400.13994402239103,400.2299080367853,400.3198720511795,400.40983606557376,400.499800079968,400.58976409436224,400.6797281087565,400.7696921231507,400.85965613754496,400.9496201519392,401.03958416633344,401.1295481807277,401.219512195122,401.3094762095162,401.39944022391046,401.4894042383047,401.57936825269894,401.6693322670932,401.7592962814874,401.84926029588166,401.9392243102759,402.02918832467014,402.1191523390644,402.2091163534586,402.29908036785287,402.3890443822471,402.47900839664135,402.5689724110356,402.65893642542983,402.74890043982407,402.8388644542183,402.92882846861255,403.0187924830068,403.10875649740103,403.1987205117953,403.2886845261895,403.37864854058375,403.468612554978,403.55857656937224,403.6485405837665,403.7385045981607,403.82846861255496,403.9184326269492,404.00839664134344,404.0983606557377,404.1883246701319,404.2782886845262,404.36825269892046,404.4582167133147,404.54818072770894,404.6381447421032,404.7281087564974,404.81807277089166,404.9080367852859,404.99800079968014,405.0879648140744,405.1779288284686,405.26789284286286,405.3578568572571,405.44782087165134,405.5377848860456,405.6277489004398,405.71771291483407,405.8076769292283,405.89764094362255,405.9876049580168,406.07756897241103,406.16753298680527,406.2574970011995,406.34746101559375,406.437425029988,406.52738904438223,406.6173530587765,406.7073170731707,406.79728108756495,406.8872451019592,406.97720911635344,407.0671731307477,407.1571371451419,407.24710115953616,407.33706517393045,407.4270291883247,407.51699320271894,407.6069572171132,407.6969212315074,407.78688524590166,407.8768492602959,407.96681327469014,408.0567772890844,408.1467413034786,408.23670531787286,408.3266693322671,408.41663334666134,408.5065973610556,408.5965613754498,408.68652538984406,408.7764894042383,408.86645341863255,408.9564174330268,409.046381447421,409.13634546181527,409.2263094762095,409.31627349060375,409.406237504998,409.49620151939223,409.58616553378647,409.6761295481807,409.76609356257495,409.8560575769692,409.94602159136343,410.0359856057577,410.1259496201519,410.21591363454615,410.30587764894045,410.3958416633347,410.48580567772893,410.5757696921232,410.6657337065174,410.75569772091166,410.8456617353059,410.93562574970014,411.0255897640944,411.1155537784886,411.20551779288286,411.2954818072771,411.38544582167134,411.4754098360656,411.5653738504598,411.65533786485406,411.7453018792483,411.83526589364254,411.9252299080368,412.015193922431,412.10515793682526,412.1951219512195,412.28508596561375,412.375049980008,412.4650139944022,412.55497800879647,412.6449420231907,412.73490603758495,412.8248700519792,412.91483406637343,413.00479808076767,413.0947620951619,413.18472610955615,413.2746901239504,413.3646541383447,413.45461815273893,413.54458216713317,413.6345461815274,413.72451019592165,413.8144742103159,413.90443822471013,413.9944022391044,414.0843662534986,414.17433026789286,414.2642942822871,414.35425829668134,414.4442223110756,414.5341863254698,414.62415033986406,414.7141143542583,414.80407836865254,414.8940423830468,414.984006397441,415.07397041183526,415.1639344262295,415.25389844062374,415.343862455018,415.4338264694122,415.52379048380647,415.6137544982007,415.70371851259495,415.7936825269892,415.8836465413834,415.97361055577767,416.0635745701719,416.15353858456615,416.2435025989604,416.33346661335463,416.4234306277489,416.51339464214317,416.6033586565374,416.69332267093165,416.7832866853259,416.87325069972013,416.9632147141144,417.0531787285086,417.14314274290285,417.2331067572971,417.32307077169133,417.4130347860856,417.5029988004798,417.59296281487406,417.6829268292683,417.77289084366254,417.8628548580568,417.952818872451,418.04278288684526,418.1327469012395,418.22271091563374,418.312674930028,418.4026389444222,418.49260295881646,418.5825669732107,418.67253098760494,418.7624950019992,418.8524590163934,418.94242303078767,419.0323870451819,419.12235105957615,419.2123150739704,419.3022790883646,419.39224310275887,419.48220711715317,419.5721711315474,419.66213514594165,419.7520991603359,419.84206317473013,419.93202718912437,420.0219912035186,420.11195521791285,420.2019192323071,420.29188324670133,420.3818472610956,420.4718112754898,420.56177528988405,420.6517393042783,420.74170331867253,420.8316673330668,420.921631347461,421.01159536185526,421.1015593762495,421.19152339064374,421.281487405038,421.3714514194322,421.46141543382646,421.5513794482207,421.64134346261494,421.7313074770092,421.8212714914034,421.91123550579766,422.0011995201919,422.09116353458614,422.1811275489804,422.2710915633746,422.36105557776887,422.4510195921631,422.5409836065574,422.63094762095164,422.7209116353459,422.8108756497401,422.90083966413437,422.9908036785286,423.08076769292285,423.1707317073171,423.26069572171133,423.35065973610557,423.4406237504998,423.53058776489405,423.6205517792883,423.71051579368253,423.8004798080768,423.890443822471,423.98040783686525,424.0703718512595,424.16033586565374,424.250299880048,424.3402638944422,424.43022790883646,424.5201919232307,424.61015593762494,424.7001199520192,424.7900839664134,424.88004798080766,424.9700119952019,425.05997600959614,425.1499400239904,425.2399040383846,425.32986805277886,425.4198320671731,425.5097960815674,425.59976009596164,425.6897241103559,425.7796881247501,425.86965213914436,425.9596161535386,426.04958016793285,426.1395441823271,426.2295081967213,426.31947221111557,426.4094362255098,426.49940023990405,426.5893642542983,426.67932826869253,426.76929228308677,426.859256297481,426.94922031187525,427.0391843262695,427.12914834066373,427.219112355058,427.3090763694522,427.39904038384645,427.4890043982407,427.57896841263494,427.6689324270292,427.7588964414234,427.84886045581766,427.9388244702119,428.02878848460614,428.1187524990004,428.2087165133946,428.29868052778886,428.3886445421831,428.47860855657734,428.56857257097164,428.6585365853659,428.7485005997601,428.83846461415436,428.9284286285486,429.01839264294284,429.1083566573371,429.1983206717313,429.28828468612556,429.3782487005198,429.46821271491405,429.5581767293083,429.6481407437025,429.73810475809677,429.828068772491,429.91803278688525,430.0079968012795,430.09796081567373,430.18792483006797,430.2778888444622,430.36785285885645,430.4578168732507,430.54778088764493,430.6377449020392,430.7277089164334,430.81767293082765,430.9076369452219,430.99760095961614,431.0875649740104,431.1775289884046,431.26749300279886,431.3574570171931,431.44742103158734,431.5373850459816,431.6273490603759,431.7173130747701,431.80727708916436,431.8972411035586,431.98720511795284,432.0771691323471,432.1671331467413,432.25709716113556,432.3470611755298,432.43702518992404,432.5269892043183,432.6169532187125,432.70691723310676,432.796881247501,432.88684526189525,432.9768092762895,433.0667732906837,433.15673730507797,433.2467013194722,433.33666533386645,433.4266293482607,433.51659336265493,433.60655737704917,433.6965213914434,433.78648540583765,433.8764494202319,433.96641343462613,434.0563774490204,434.1463414634146,434.23630547780886,434.3262694922031,434.41623350659734,434.5061975209916,434.5961615353858,434.6861255497801,434.77608956417436,434.8660535785686,434.95601759296284,435.0459816073571,435.1359456217513,435.22590963614556,435.3158736505398,435.40583766493404,435.4958016793283,435.5857656937225,435.67572970811676,435.765693722511,435.85565773690524,435.9456217512995,436.0355857656937,436.12554978008797,436.2155137944822,436.30547780887645,436.3954418232707,436.4854058376649,436.57536985205917,436.6653338664534,436.75529788084765,436.8452618952419,436.93522590963613,437.02518992403037,437.1151539384246,437.20511795281885,437.2950819672131,437.38504598160733,437.4750099960016,437.5649740103958,437.65493802479006,437.74490203918435,437.8348660535786,437.92483006797283,438.0147940823671,438.1047580967613,438.19472211115556,438.2846861255498,438.37465013994404,438.4646141543383,438.5545781687325,438.64454218312676,438.734506197521,438.82447021191524,438.9144342263095,439.0043982407037,439.09436225509796,439.1843262694922,439.27429028388644,439.3642542982807,439.4542183126749,439.54418232706917,439.6341463414634,439.72411035585765,439.8140743702519,439.9040383846461,439.99400239904037,440.0839664134346,440.17393042782885,440.2638944422231,440.35385845661733,440.4438224710116,440.5337864854058,440.62375049980005,440.71371451419435,440.8036785285886,440.89364254298283,440.9836065573771,441.0735705717713,441.16353458616555,441.2534986005598,441.34346261495403,441.4334266293483,441.5233906437425,441.61335465813676,441.703318672531,441.79328268692524,441.8832467013195,441.9732107157137,442.06317473010796,442.1531387445022,442.24310275889644,442.3330667732907,442.4230307876849,442.51299480207916,442.6029588164734,442.69292283086764,442.7828868452619,442.8728508596561,442.96281487405037,443.0527788884446,443.14274290283885,443.2327069172331,443.32267093162733,443.41263494602157,443.5025989604158,443.59256297481005,443.6825269892043,443.7724910035986,443.86245501799283,443.95241903238707,444.0423830467813,444.13234706117555,444.2223110755698,444.31227508996403,444.4022391043583,444.4922031187525,444.58216713314675,444.672131147541,444.76209516193524,444.8520591763295,444.9420231907237,445.03198720511796,445.1219512195122,445.21191523390644,445.3018792483007,445.3918432626949,445.48180727708916,445.5717712914834,445.66173530587764,445.7516993202719,445.8416633346661,445.93162734906036,446.0215913634546,446.11155537784884,446.2015193922431,446.2914834066373,446.38144742103157,446.4714114354258,446.56137544982005,446.6513394642143,446.74130347860853,446.8312674930028,446.92123150739707,447.0111955217913,447.10115953618555,447.1911235505798,447.28108756497403,447.37105157936827,447.4610155937625,447.55097960815675,447.640943622551,447.73090763694523,447.8208716513395,447.9108356657337,448.00079968012795,448.0907636945222,448.18072770891644,448.2706917233107,448.3606557377049,448.45061975209916,448.5405837664934,448.63054778088764,448.7205117952819,448.8104758096761,448.90043982407036,448.9904038384646,449.08036785285884,449.1703318672531,449.2602958816473,449.35025989604156,449.4402239104358,449.53018792483005,449.6201519392243,449.7101159536185,449.80007996801277,449.89004398240706,449.9800079968013,450.06997201119555,450.1599360255898,450.249900039984,450.33986405437827,450.4298280687725,450.51979208316675,450.609756097561,450.69972011195523,450.78968412634947,450.8796481407437,450.96961215513795,451.0595761695322,451.14954018392643,451.2395041983207,451.3294682127149,451.41943222710916,451.5093962415034,451.59936025589764,451.6893242702919,451.7792882846861,451.86925229908036,451.9592163134746,452.04918032786884,452.1391443422631,452.2291083566573,452.31907237105156,452.4090363854458,452.49900039984004,452.5889644142343,452.6789284286285,452.76889244302276,452.858856457417,452.9488204718113,453.03878448620554,453.1287485005998,453.218712514994,453.30867652938826,453.3986405437825,453.48860455817675,453.578568572571,453.6685325869652,453.75849660135947,453.8484606157537,453.93842463014795,454.0283886445422,454.11835265893643,454.20831667333067,454.2982806877249,454.38824470211915,454.4782087165134,454.56817273090763,454.6581367453019,454.7481007596961,454.83806477409036,454.9280287884846,455.01799280287884,455.1079568172731,455.1979208316673,455.28788484606156,455.3778488604558,455.46781287485004,455.5577768892443,455.6477409036385,455.73770491803276,455.827668932427,455.9176329468213,456.00759696121554,456.0975609756098,456.187524990004,456.27748900439826,456.3674530187925,456.45741703318674,456.547381047581,456.6373450619752,456.72730907636947,456.8172730907637,456.90723710515795,456.9972011195522,457.0871651339464,457.17712914834067,457.2670931627349,457.35705717712915,457.4470211915234,457.53698520591763,457.6269492203119,457.7169132347061,457.80687724910035,457.8968412634946,457.98680527788883,458.0767692922831,458.1667333066773,458.25669732107156,458.3466613354658,458.43662534986004,458.5265893642543,458.6165533786485,458.70651739304276,458.796481407437,458.88644542183124,458.97640943622554,459.0663734506198,459.156337465014,459.24630147940826,459.3362654938025,459.42622950819674,459.516193522591,459.6061575369852,459.69612155137946,459.7860855657737,459.87604958016794,459.9660135945622,460.0559776089564,460.14594162335067,460.2359056377449,460.32586965213915,460.4158336665334,460.5057976809276,460.59576169532187,460.6857257097161,460.77568972411035,460.8656537385046,460.95561775289883,461.0455817672931,461.1355457816873,461.22550979608155,461.3154738104758,461.40543782487003,461.4954018392643,461.5853658536585,461.67532986805276,461.765293882447,461.85525789684124,461.9452219112355,462.0351859256298,462.125149940024,462.21511395441826,462.3050779688125,462.39504198320674,462.485005997601,462.5749700119952,462.66493402638946,462.7548980407837,462.84486205517794,462.9348260695722,463.0247900839664,463.11475409836066,463.2047181127549,463.29468212714914,463.3846461415434,463.4746101559376,463.56457417033187,463.6545381847261,463.74450219912035,463.8344662135146,463.92443022790883,464.01439424230307,464.1043582566973,464.19432227109155,464.2842862854858,464.37425029988003,464.4642143142743,464.5541783286685,464.64414234306275,464.734106357457,464.82407037185123,464.9140343862455,465.0039984006397,465.093962415034,465.18392642942825,465.2738904438225,465.36385445821674,465.453818472611,465.5437824870052,465.63374650139946,465.7237105157937,465.81367453018794,465.9036385445822,465.9936025589764,466.08356657337066,466.1735305877649,466.26349460215914,466.3534586165534,466.4434226309476,466.53338664534186,466.6233506597361,466.71331467413034,466.8032786885246,466.8932427029188,466.98320671731307,467.0731707317073,467.16313474610155,467.2530987604958,467.34306277489003,467.43302678928427,467.5229908036785,467.61295481807275,467.702918832467,467.79288284686123,467.8828468612555,467.9728108756497,468.06277489004395,468.15273890443825,468.2427029188325,468.33266693322673,468.422630947621,468.5125949620152,468.60255897640945,468.6925229908037,468.78248700519794,468.8724510195922,468.9624150339864,469.05237904838066,469.1423430627749,469.23230707716914,469.3222710915634,469.4122351059576,469.50219912035186,469.5921631347461,469.68212714914034,469.7720911635346,469.8620551779288,469.95201919232306,470.0419832067173,470.13194722111155,470.2219112355058,470.3118752499,470.40183926429427,470.4918032786885,470.58176729308275,470.671731307477,470.76169532187123,470.85165933626547,470.9416233506597,471.03158736505395,471.12155137944825,471.2115153938425,471.30147940823673,471.39144342263097,471.4814074370252,471.57137145141945,471.6613354658137,471.75129948020793,471.8412634946022,471.9312275089964,472.02119152339066,472.1111555377849,472.20111955217914,472.2910835665734,472.3810475809676,472.47101159536186,472.5609756097561,472.65093962415034,472.7409036385446,472.8308676529388,472.92083166733306,473.0107956817273,473.10075969612154,473.1907237105158,473.28068772491,473.37065173930426,473.4606157536985,473.55057976809275,473.640543782487,473.7305077968812,473.82047181127547,473.9104358256697,474.00039984006395,474.0903638544582,474.1803278688525,474.2702918832467,474.36025589764097,474.4502199120352,474.54018392642945,474.6301479408237,474.72011195521793,474.81007596961217,474.9000399840064,474.99000399840065,475.0799680127949,475.16993202718913,475.2598960415834,475.3498600559776,475.43982407037186,475.5297880847661,475.61975209916034,475.7097161135546,475.7996801279488,475.88964414234306,475.9796081567373,476.06957217113154,476.1595361855258,476.24950019992,476.33946421431426,476.4294282287085,476.51939224310274,476.609356257497,476.6993202718912,476.78928428628546,476.8792483006797,476.96921231507395,477.0591763294682,477.1491403438624,477.2391043582567,477.32906837265097,477.4190323870452,477.50899640143945,477.5989604158337,477.6889244302279,477.77888844462217,477.8688524590164,477.95881647341065,478.0487804878049,478.13874450219913,478.2287085165934,478.3186725309876,478.40863654538185,478.4986005597761,478.58856457417033,478.6785285885646,478.7684926029588,478.85845661735306,478.9484206317473,479.03838464614154,479.1283486605358,479.21831267493,479.30827668932426,479.3982407037185,479.48820471811274,479.578168732507,479.6681327469012,479.75809676129546,479.8480607756897,479.93802479008394,480.0279888044782,480.1179528188724,480.20791683326667,480.29788084766096,480.3878448620552,480.47780887644944,480.5677728908437,480.6577369052379,480.74770091963217,480.8376649340264,480.92762894842065,481.0175929628149,481.10755697720913,481.19752099160337,481.2874850059976,481.37744902039185,481.4674130347861,481.55737704918033,481.6473410635746,481.7373050779688,481.82726909236305,481.9172331067573,482.00719712115153,482.0971611355458,482.18712514994,482.27708916433426,482.3670531787285,482.45701719312274,482.546981207517,482.6369452219112,482.72690923630546,482.8168732506997,482.90683726509394,482.9968012794882,483.0867652938824,483.17672930827666,483.2666933226709,483.3566573370652,483.44662135145944,483.5365853658537,483.6265493802479,483.71651339464216,483.8064774090364,483.89644142343064,483.9864054378249,484.0763694522191,484.16633346661337,484.2562974810076,484.34626149540185,484.4362255097961,484.52618952419033,484.61615353858457,484.7061175529788,484.79608156737305,484.8860455817673,484.97600959616153,485.0659736105558,485.15593762495,485.24590163934425,485.3358656537385,485.42582966813274,485.515793682527,485.6057576969212,485.69572171131546,485.7856857257097,485.87564974010394,485.9656137544982,486.0555777688924,486.14554178328666,486.2355057976809,486.3254698120752,486.41543382646944,486.5053978408637,486.5953618552579,486.68532586965216,486.7752898840464,486.86525389844064,486.9552179128349,487.0451819272291,487.13514594162336,487.2251099560176,487.31507397041185,487.4050379848061,487.4950019992003,487.58496601359457,487.6749300279888,487.76489404238305,487.8548580567773,487.94482207117153,488.03478608556577,488.12475009996,488.21471411435425,488.3046781287485,488.39464214314273,488.484606157537,488.5745701719312,488.66453418632545,488.7544982007197,488.84446221511394,488.9344262295082,489.0243902439024,489.11435425829666,489.2043182726909,489.29428228708514,489.38424630147944,489.4742103158737,489.5641743302679,489.65413834466216,489.7441023590564,489.83406637345064,489.9240303878449,490.0139944022391,490.10395841663336,490.1939224310276,490.28388644542184,490.3738504598161,490.4638144742103,490.55377848860456,490.6437425029988,490.73370651739305,490.8236705317873,490.9136345461815,491.00359856057577,491.09356257497,491.18352658936425,491.2734906037585,491.36345461815273,491.45341863254697,491.5433826469412,491.63334666133545,491.7233106757297,491.81327469012393,491.9032387045182,491.9932027189124,492.08316673330665,492.1731307477009,492.26309476209514,492.3530587764894,492.4430227908837,492.5329868052779,492.62295081967216,492.7129148340664,492.80287884846064,492.8928428628549,492.9828068772491,493.07277089164336,493.1627349060376,493.25269892043184,493.3426629348261,493.4326269492203,493.52259096361456,493.6125549780088,493.70251899240304,493.7924830067973,493.8824470211915,493.97241103558576,494.06237504998,494.15233906437425,494.2423030787685,494.3322670931627,494.42223110755697,494.5121951219512,494.60215913634545,494.6921231507397,494.78208716513393,494.87205117952817,494.9620151939224,495.05197920831665,495.1419432227109,495.23190723710513,495.3218712514994,495.4118352658936,495.5017992802879,495.59176329468215,495.6817273090764,495.77169132347063,495.8616553378649,495.9516193522591,496.04158336665336,496.1315473810476,496.22151139544184,496.3114754098361,496.4014394242303,496.49140343862456,496.5813674530188,496.67133146741304,496.7612954818073,496.8512594962015,496.94122351059576,497.03118752499,497.12115153938424,497.2111155537785,497.3010795681727,497.39104358256697,497.4810075969612,497.57097161135545,497.6609356257497,497.7508996401439,497.84086365453817,497.9308276689324,498.02079168332665,498.1107556977209,498.20071971211513,498.29068372650937,498.3806477409036,498.47061175529785,498.56057576969215,498.6505397840864,498.74050379848063,498.8304678128749,498.9204318272691,499.01039584166335,499.1003598560576,499.19032387045183,499.2802878848461,499.3702518992403,499.46021591363456,499.5501799280288,499.64014394242304,499.7301079568173,499.8200719712115,499.91003598560576,500.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/test.js b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/test.js new file mode 100644 index 00000000000..0febdf408aa --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/test.js @@ -0,0 +1,278 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2022 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var tape = require( 'tape' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var isNegativeZero = require( '@stdlib/math/base/assert/is-negative-zero' ); +var isPositiveZero = require( '@stdlib/math/base/assert/is-positive-zero' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var EPS = require( '@stdlib/constants/float32/eps' ); +var absf = require( '@stdlib/math/base/special/absf' ); +var sqrtpif = require( './../lib' ); + + +// FIXTURES // + +var hugePositive = require( './fixtures/julia/huge_positive.json' ); +var veryLargePositive = require( './fixtures/julia/very_large_positive.json' ); +var largePositive = require( './fixtures/julia/large_positive.json' ); +var mediumPositive = require( './fixtures/julia/medium_positive.json' ); +var smallPositive = require( './fixtures/julia/small_positive.json' ); +var smaller = require( './fixtures/julia/smaller.json' ); +var tinyPositive = require( './fixtures/julia/tiny_positive.json' ); +var subnormal = require( './fixtures/julia/subnormal.json' ); + + +// TESTS // + +tape( 'main export is a function', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof sqrtpif, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function evaluates the principal square root when `x` is on the interval `[50,500]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = veryLargePositive.expected; + x = veryLargePositive.x; + for ( i = 0; i < x.length; i++ ) { + y = sqrtpif( x[i] ); + if ( y === expected[i] ) { + t.equal( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = EPS *10 * absf( expected[i] ); + t.equal( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the principal square root when `x` is on the interval `[20,50]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = largePositive.expected; + x = largePositive.x; + for ( i = 0; i < x.length; i++ ) { + y = sqrtpif( x[i] ); + if ( y === expected[i] ) { + t.equal( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = EPS *10 * absf( expected[i] ); + t.equal( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the principal square root when `x` is on the interval `[3,20]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = mediumPositive.expected; + x = mediumPositive.x; + for ( i = 0; i < x.length; i++ ) { + y = sqrtpif( x[i] ); + if ( y === expected[i] ) { + t.equal( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = EPS *10 * absf( expected[i] ); + t.equal( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the principal square root when `x` is on the interval `[0.8,3]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = smallPositive.expected; + x = smallPositive.x; + for ( i = 0; i < x.length; i++ ) { + y = sqrtpif( x[i] ); + if ( y === expected[i] ) { + t.equal( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = EPS *10 * absf( expected[i] ); + t.equal( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates principal square root when `x` is on the interval `[0.0,0.8]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = smaller.expected; + x = smaller.x; + for ( i = 0; i < x.length; i++ ) { + y = sqrtpif( x[i] ); + if ( y === expected[i] ) { + t.equal( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = EPS *10 * absf( expected[i] ); + t.equal( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the principal square root when `x` is on the interval `[1e-30,1e-38]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = tinyPositive.expected; + x = tinyPositive.x; + for ( i = 0; i < x.length; i++ ) { + y = sqrtpif( x[i] ); + if ( y === expected[i] ) { + t.equal( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = EPS *10 * absf( expected[i] ); + t.equal( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the principal square root when `x` is subnormal', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = subnormal.expected; + x = subnormal.x; + for ( i = 0; i < x.length; i++ ) { + y = sqrtpif( x[i] ); + if ( y === expected[i] ) { + t.equal( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = EPS *10 * absf( expected[i] ); + t.equal( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the principal square root for huge positive numbers', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = hugePositive.expected; + x = hugePositive.x; + for ( i = 0; i < x.length; i++ ) { + y = sqrtpif( x[i] ); + if ( y === expected[i] ) { + t.equal( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = EPS *10 * absf( expected[i] ); + t.equal( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided `NaN`', function test( t ) { + var v = sqrtpif( NaN ); + t.equal( isnan( v ), true, 'returns NaN' ); + t.end(); +}); + +tape( 'the function returns `+infinity` if provided `+infinity`', function test( t ) { + var v = sqrtpif( PINF ); + t.equal( v, PINF, 'returns +infinity' ); + t.end(); +}); + +tape( 'the function returns `+0` if provided `+0`', function test( t ) { + var v = sqrtpif( +0.0 ); + t.equal( isPositiveZero( v ), true, 'returns 0' ); + t.end(); +}); + +tape( 'the function returns `-0` if provided `-0`', function test( t ) { + var v = sqrtpif( -0.0 ); + t.equal( isNegativeZero( v ), true, 'returns -0' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided a negative number', function test( t ) { + var v = sqrtpif( -4.0 ); + t.equal( isnan( v ), true, 'returns NaN' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided `NaN`', function test( t ) { + var v = sqrtpif( NaN ); + t.equal( isnan( v ), true, 'returns NaN' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided `-infinity`', function test( t ) { + var v = sqrtpif( NINF ); + t.equal( isnan( v ), true, 'returns NaN' ); + t.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/test.native.js new file mode 100644 index 00000000000..79513bcefde --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sqrtpif/test/test.native.js @@ -0,0 +1,287 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2022 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var resolve = require( 'path' ).resolve; +var tape = require( 'tape' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var isNegativeZero = require( '@stdlib/math/base/assert/is-negative-zero' ); +var isPositiveZero = require( '@stdlib/math/base/assert/is-positive-zero' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var EPS = require( '@stdlib/constants/float32/eps' ); +var tryRequire = require( '@stdlib/utils/try-require' ); +var absf = require( '@stdlib/math/base/special/absf' ); + + +// FIXTURES // + +var hugePositive = require( './fixtures/julia/huge_positive.json' ); +var veryLargePositive = require( './fixtures/julia/very_large_positive.json' ); +var largePositive = require( './fixtures/julia/large_positive.json' ); +var mediumPositive = require( './fixtures/julia/medium_positive.json' ); +var smallPositive = require( './fixtures/julia/small_positive.json' ); +var smaller = require( './fixtures/julia/smaller.json' ); +var tinyPositive = require( './fixtures/julia/tiny_positive.json' ); +var subnormal = require( './fixtures/julia/subnormal.json' ); + + +// VARIABLES // + +var sqrtpif = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( sqrtpif instanceof Error ) +}; + + +// TESTS // + +tape( 'main export is a function', opts, function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof sqrtpif, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function evaluates the principal square root when `x` is on the interval `[50,500]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = veryLargePositive.expected; + x = veryLargePositive.x; + for ( i = 0; i < x.length; i++ ) { + y = sqrtpif( x[i] ); + if ( y === expected[i] ) { + t.equal( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = EPS * 10 * absf( expected[i] ); + t.equal( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the principal square root when `x` is on the interval `[20,50]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = largePositive.expected; + x = largePositive.x; + for ( i = 0; i < x.length; i++ ) { + y = sqrtpif( x[i] ); + if ( y === expected[i] ) { + t.equal( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = EPS * 10 * absf( expected[i] ); + t.equal( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the principal square root when `x` is on the interval `[3,20]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = mediumPositive.expected; + x = mediumPositive.x; + for ( i = 0; i < x.length; i++ ) { + y = sqrtpif( x[i] ); + if ( y === expected[i] ) { + t.equal( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = EPS * 10 * absf( expected[i] ); + t.equal( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the principal square root when `x` is on the interval `[0.8,3]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = smallPositive.expected; + x = smallPositive.x; + for ( i = 0; i < x.length; i++ ) { + y = sqrtpif( x[i] ); + if ( y === expected[i] ) { + t.equal( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = EPS * 10 * absf( expected[i] ); + t.equal( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates principal square root when `x` is on the interval `[0.0,0.8]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = smaller.expected; + x = smaller.x; + for ( i = 0; i < x.length; i++ ) { + y = sqrtpif( x[i] ); + if ( y === expected[i] ) { + t.equal( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = EPS * 10 * absf( expected[i] ); + t.equal( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the principal square root when `x` is on the interval `[1e-30,1e-38]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = tinyPositive.expected; + x = tinyPositive.x; + for ( i = 0; i < x.length; i++ ) { + y = sqrtpif( x[i] ); + if ( y === expected[i] ) { + t.equal( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = EPS * 10 * absf( expected[i] ); + t.equal( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the principal square root when `x` is subnormal', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = subnormal.expected; + x = subnormal.x; + for ( i = 0; i < x.length; i++ ) { + y = sqrtpif( x[i] ); + if ( y === expected[i] ) { + t.equal( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = EPS * 10 * absf( expected[i] ); + t.equal( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the principal square root for huge positive numbers', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = hugePositive.expected; + x = hugePositive.x; + for ( i = 0; i < x.length; i++ ) { + y = sqrtpif( x[i] ); + if ( y === expected[i] ) { + t.equal( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = EPS * 10 * absf( expected[i] ); + t.equal( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided `NaN`', opts, function test( t ) { + var v = sqrtpif( NaN ); + t.equal( isnan( v ), true, 'returns NaN' ); + t.end(); +}); + +tape( 'the function returns `+infinity` if provided `+infinity`', opts, function test( t ) { + var v = sqrtpif( PINF ); + t.equal( v, PINF, 'returns +infinity' ); + t.end(); +}); + +tape( 'the function returns `+0` if provided `+0`', opts, function test( t ) { + var v = sqrtpif( +0.0 ); + t.equal( isPositiveZero( v ), true, 'returns 0' ); + t.end(); +}); + +tape( 'the function returns `-0` if provided `-0`', opts, function test( t ) { + var v = sqrtpif( -0.0 ); + t.equal( isNegativeZero( v ), true, 'returns -0' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided a negative number', opts, function test( t ) { + var v = sqrtpif( -4.0 ); + t.equal( isnan( v ), true, 'returns NaN' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided `NaN`', opts, function test( t ) { + var v = sqrtpif( NaN ); + t.equal( isnan( v ), true, 'returns NaN' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided `-infinity`', opts, function test( t ) { + var v = sqrtpif( NINF ); + t.equal( isnan( v ), true, 'returns NaN' ); + t.end(); +});